From eaa31536a081aff734d1b197b53453cff25afe6c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 29 Mar 2026 21:17:54 +0000 Subject: [PATCH] deps(rust)(deps): bump the rust-store group across 1 directory with 4 updates Updates the requirements on [thiserror](https://github.com/dtolnay/thiserror), [sha2](https://github.com/RustCrypto/hashes), [bytesize](https://github.com/bytesize-rs/bytesize) and [rusqlite](https://github.com/rusqlite/rusqlite) to permit the latest version. Updates `thiserror` to 2.0.18 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.0...2.0.18) Updates `sha2` to 0.11.0 - [Commits](https://github.com/RustCrypto/hashes/compare/groestl-v0.10.0...sha2-v0.11.0) Updates `bytesize` to 2.3.1 - [Release notes](https://github.com/bytesize-rs/bytesize/releases) - [Changelog](https://github.com/bytesize-rs/bytesize/blob/master/CHANGELOG.md) - [Commits](https://github.com/bytesize-rs/bytesize/compare/release-1.0.0...bytesize-v2.3.1) Updates `rusqlite` to 0.39.0 - [Release notes](https://github.com/rusqlite/rusqlite/releases) - [Changelog](https://github.com/rusqlite/rusqlite/blob/master/Changelog.md) - [Commits](https://github.com/rusqlite/rusqlite/compare/v0.31.0...v0.39.0) --- updated-dependencies: - dependency-name: thiserror dependency-version: 2.0.18 dependency-type: direct:production dependency-group: rust-store - dependency-name: sha2 dependency-version: 0.11.0 dependency-type: direct:production dependency-group: rust-store - dependency-name: bytesize dependency-version: 2.3.1 dependency-type: direct:production dependency-group: rust-store - dependency-name: rusqlite dependency-version: 0.39.0 dependency-type: direct:production dependency-group: rust-store ... Signed-off-by: dependabot[bot] --- crates/signia-store/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/signia-store/Cargo.toml b/crates/signia-store/Cargo.toml index 848a908..cfb8894 100644 --- a/crates/signia-store/Cargo.toml +++ b/crates/signia-store/Cargo.toml @@ -17,15 +17,15 @@ s3 = ["dep:aws-config", "dep:aws-sdk-s3", "dep:bytes", "dep:tokio"] anyhow = "1" serde = { version = "1", features = ["derive"] } serde_json = "1" -thiserror = "1" +thiserror = "2" time = { version = "0.3", features = ["std"] } -sha2 = "0.10" +sha2 = "0.11" hex = "0.4" -bytesize = "1" +bytesize = "2" parking_lot = "0.12" walkdir = "2" -rusqlite = { version = "0.31", optional = true, features = ["bundled"] } +rusqlite = { version = "0.39", optional = true, features = ["bundled"] } aws-config = { version = "1", optional = true } aws-sdk-s3 = { version = "1", optional = true }