From 1897fb8edc5cfcdc91f458c99c8a2e5cd6043831 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 02:45:10 +0000 Subject: [PATCH 1/2] Bump diesel from 2.2.4 to 2.2.6 Bumps [diesel](https://github.com/diesel-rs/diesel) from 2.2.4 to 2.2.6. - [Release notes](https://github.com/diesel-rs/diesel/releases) - [Changelog](https://github.com/diesel-rs/diesel/blob/v2.2.6/CHANGELOG.md) - [Commits](https://github.com/diesel-rs/diesel/compare/v2.2.4...v2.2.6) --- updated-dependencies: - dependency-name: diesel dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- svanill-vault-server/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d513c865..108415c4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1244,9 +1244,9 @@ dependencies = [ [[package]] name = "diesel" -version = "2.2.4" +version = "2.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "158fe8e2e68695bd615d7e4f3227c0727b151330d3e253b525086c348d055d5e" +checksum = "ccf1bedf64cdb9643204a36dd15b19a6ce8e7aa7f7b105868e9f1fad5ffa7d12" dependencies = [ "diesel_derives", "libsqlite3-sys", diff --git a/svanill-vault-server/Cargo.toml b/svanill-vault-server/Cargo.toml index 85329d69..ff1e7e2c 100644 --- a/svanill-vault-server/Cargo.toml +++ b/svanill-vault-server/Cargo.toml @@ -16,7 +16,7 @@ actix-cors = "0.7.0" actix-web-httpauth = "0.8.2" env_logger = "0.10.2" structopt = "0.3.26" -diesel = { version = "2.2.4", features = ["sqlite", "r2d2"] } +diesel = { version = "2.2.6", features = ["sqlite", "r2d2"] } diesel_migrations = "2.2.0" libsqlite3-sys = { version = "0.30.1", features = ["bundled"] } serde = "1.0.214" From 14882178ce56db7bcb46358e9d368526a88431e9 Mon Sep 17 00:00:00 2001 From: Riccardo Attilio Galli Date: Thu, 2 Jan 2025 11:39:20 -0800 Subject: [PATCH 2/2] Make our clippy overlord happy --- svanill-vault-server/src/post_policy.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svanill-vault-server/src/post_policy.rs b/svanill-vault-server/src/post_policy.rs index eda9b820..e1ce2e13 100644 --- a/svanill-vault-server/src/post_policy.rs +++ b/svanill-vault-server/src/post_policy.rs @@ -49,7 +49,7 @@ fn format_date_time(time: DateTime) -> Result { struct Condition<'a>((&'a str, &'a str, &'a str)); -impl<'a> Serialize for Condition<'a> { +impl Serialize for Condition<'_> { fn serialize(&self, serializer: S) -> Result where S: Serializer,