From d0faed18e3b4d4eaa19ea4f657c4ba94271f7d2c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Jan 2025 10:54:24 +0000 Subject: [PATCH] chore: bump diesel from 2.2.3 to 2.2.6 Bumps [diesel](https://github.com/diesel-rs/diesel) from 2.2.3 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.3...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 ++-- db/Cargo.toml | 2 +- store/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 015189ab9..71c2d5189 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -819,9 +819,9 @@ dependencies = [ [[package]] name = "diesel" -version = "2.2.3" +version = "2.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65e13bab2796f412722112327f3e575601a3e9cdcbe426f0d30dbf43f3f5dc71" +checksum = "ccf1bedf64cdb9643204a36dd15b19a6ce8e7aa7f7b105868e9f1fad5ffa7d12" dependencies = [ "bitflags 2.5.0", "byteorder", diff --git a/db/Cargo.toml b/db/Cargo.toml index 25ef58b8b..d16b0469a 100644 --- a/db/Cargo.toml +++ b/db/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] anyhow = "1.0" -diesel = { version = "2.2.3", features = ["sqlite", "postgres", "r2d2"] } +diesel = { version = "2.2.6", features = ["sqlite", "postgres", "r2d2"] } fdo-data-formats = { path = "../data-formats", version = "0.5.2" } diff --git a/store/Cargo.toml b/store/Cargo.toml index c43aa026d..06e9101ac 100644 --- a/store/Cargo.toml +++ b/store/Cargo.toml @@ -25,7 +25,7 @@ serde_cbor = { version = "0.11", optional = true } # database fdo-db = { path = "../db", version = "0.5.2"} -diesel = { version = "2.2.3", features = ["sqlite", "postgres", "r2d2"], optional = true } +diesel = { version = "2.2.6", features = ["sqlite", "postgres", "r2d2"], optional = true } [features] directory = ["xattr", "serde_cbor"]