From 06859fe5e8d9cb3b24d03dc1ce77620d6628a7be Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 29 Mar 2026 21:17:56 +0000 Subject: [PATCH] deps(api)(deps): bump the rust-api group across 1 directory with 5 updates Updates the requirements on [thiserror](https://github.com/dtolnay/thiserror), [sha2](https://github.com/RustCrypto/hashes), [axum](https://github.com/tokio-rs/axum), [tower](https://github.com/tower-rs/tower) 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 `axum` to 0.8.8 - [Release notes](https://github.com/tokio-rs/axum/releases) - [Changelog](https://github.com/tokio-rs/axum/blob/main/CHANGELOG.md) - [Commits](https://github.com/tokio-rs/axum/compare/axum-v0.7.0...axum-v0.8.8) Updates `tower` to 0.5.3 - [Release notes](https://github.com/tower-rs/tower/releases) - [Commits](https://github.com/tower-rs/tower/compare/tower-0.4.0...tower-0.5.3) 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-api - dependency-name: sha2 dependency-version: 0.11.0 dependency-type: direct:production dependency-group: rust-api - dependency-name: axum dependency-version: 0.8.8 dependency-type: direct:production dependency-group: rust-api - dependency-name: tower dependency-version: 0.5.3 dependency-type: direct:production dependency-group: rust-api - dependency-name: reqwest dependency-version: 0.12.28 dependency-type: direct:production dependency-group: rust-api ... Signed-off-by: dependabot[bot] --- crates/signia-api/Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/crates/signia-api/Cargo.toml b/crates/signia-api/Cargo.toml index 6dc5d7d..ab4436b 100644 --- a/crates/signia-api/Cargo.toml +++ b/crates/signia-api/Cargo.toml @@ -13,17 +13,17 @@ engine = [] [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" -axum = { version = "0.7", features = ["macros", "json"] } +axum = { version = "0.8", features = ["macros", "json"] } tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal"] } -tower = "0.4" +tower = "0.5" tower-http = { version = "0.6", features = ["cors", "trace", "request-id"] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "json"] } @@ -34,5 +34,5 @@ signia-plugins = { path = "../signia-plugins" } signia-store = { path = "../signia-store" } [dev-dependencies] -reqwest = { version = "0.12", features = ["json", "rustls-tls"] } +reqwest = { version = "0.13", features = ["json", "rustls-tls"] } tempfile = "3"