From 1fe5c0bef8f16baf9b458f2055c996d16ab63106 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 10:40:43 -0800 Subject: [PATCH] chore(deps): bump serde from 1.0.215 to 1.0.216 in the cargo-dependencies group (#77) * ignore log files * chore(deps): bump serde in the cargo-dependencies group Bumps the cargo-dependencies group with 1 update: [serde](https://github.com/serde-rs/serde). Updates `serde` from 1.0.215 to 1.0.216 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.215...v1.0.216) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-dependencies ... Signed-off-by: dependabot[bot] * bump msrv to 1.78 --------- Signed-off-by: dependabot[bot] Co-authored-by: Josh McKinney Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/check.yml | 2 +- .gitignore | 1 + Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 1a6e586..c850a95 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -12,4 +12,4 @@ jobs: checks: write uses: joshka/github-workflows/.github/workflows/rust-check.yml@main with: - msrv: 1.76.0 # this is optional defaults to 1.56.0 + msrv: 1.78.0 diff --git a/.gitignore b/.gitignore index 5164c0c..81ac741 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /target /.data +nitidus.log diff --git a/Cargo.lock b/Cargo.lock index 4d49d1f..2a46148 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3976,9 +3976,9 @@ checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" [[package]] name = "serde" -version = "1.0.215" +version = "1.0.216" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f" +checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e" dependencies = [ "serde_derive", ] @@ -4006,9 +4006,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.215" +version = "1.0.216" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0" +checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 6a6af92..08bd5e5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ figment = { version = "0.10.19", features = ["env", "toml"] } himalaya = { version = "1.0.0" } pimalaya-tui = { version = "0.2.1", features = ["keyring", "config"] } ratatui = "0.29.0" -serde = "1.0.215" +serde = "1.0.216" serde_with = "3.11.0" tokio = { version = "1.42.0", features = ["rt-multi-thread"] } toml = "0.8.19"