From b015d4fda286c4f867e3265738b2642349e93c23 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 25 Jan 2026 21:23:03 +0000 Subject: [PATCH] deps(cli)(deps): bump the rust-cli group Updates the requirements on [thiserror](https://github.com/dtolnay/thiserror) 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 `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: reqwest dependency-version: 0.12.28 dependency-type: direct:production dependency-group: rust-cli ... Signed-off-by: dependabot[bot] --- crates/signia-cli/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/signia-cli/Cargo.toml b/crates/signia-cli/Cargo.toml index a7926aa..2a83156 100644 --- a/crates/signia-cli/Cargo.toml +++ b/crates/signia-cli/Cargo.toml @@ -9,7 +9,7 @@ readme = "README.md" [dependencies] anyhow = "1" -thiserror = "1" +thiserror = "2" serde = { version = "1", features = ["derive"] } serde_json = "1" time = { version = "0.3", features = ["std"] } @@ -18,7 +18,7 @@ sha2 = "0.10" 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"