From 7156e8f3c1aa78249ea287b1de9f0c7c2089876e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 29 Mar 2026 21:22:51 +0000 Subject: [PATCH] deps(cli)(deps): bump the rust-cli group across 1 directory with 3 updates Updates the requirements on [thiserror](https://github.com/dtolnay/thiserror), [sha2](https://github.com/RustCrypto/hashes) and [reqwest](https://github.com/seanmonstar/reqwest) 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 `reqwest` to 0.12.28 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.12.0...v0.12.28) --- updated-dependencies: - dependency-name: thiserror dependency-version: 2.0.18 dependency-type: direct:production dependency-group: rust-cli - dependency-name: sha2 dependency-version: 0.11.0 dependency-type: direct:production dependency-group: rust-cli - dependency-name: reqwest dependency-version: 0.12.28 dependency-type: direct:production dependency-group: rust-cli ... Signed-off-by: dependabot[bot] --- crates/signia-cli/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/signia-cli/Cargo.toml b/crates/signia-cli/Cargo.toml index a7926aa..9243247 100644 --- a/crates/signia-cli/Cargo.toml +++ b/crates/signia-cli/Cargo.toml @@ -9,16 +9,16 @@ readme = "README.md" [dependencies] anyhow = "1" -thiserror = "1" +thiserror = "2" serde = { version = "1", features = ["derive"] } serde_json = "1" time = { version = "0.3", features = ["std"] } uuid = { version = "1", features = ["v4"] } -sha2 = "0.10" +sha2 = "0.11" hex = "0.4" walkdir = "2" url = "2" -reqwest = { version = "0.12", features = ["json", "rustls-tls"] } +reqwest = { version = "0.13", features = ["json", "rustls-tls"] } tokio = { version = "1", features = ["rt-multi-thread", "macros"] } clap = { version = "4", features = ["derive"] } indicatif = "0.17"