From ec2eac517f57b02395fe712ff00a3305e8a3953c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Sep 2025 11:47:11 +0000 Subject: [PATCH] build(deps): update salvo requirement from 0.75 to 0.84 Updates the requirements on [salvo](https://github.com/salvo-rs/salvo) to permit the latest version. - [Release notes](https://github.com/salvo-rs/salvo/releases) - [Commits](https://github.com/salvo-rs/salvo/compare/v0.75.0...v0.84.0) --- updated-dependencies: - dependency-name: salvo dependency-version: 0.84.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- proc-macro/Cargo.toml | 2 +- protect-salvo/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/proc-macro/Cargo.toml b/proc-macro/Cargo.toml index 798dd02..2a9d201 100644 --- a/proc-macro/Cargo.toml +++ b/proc-macro/Cargo.toml @@ -37,4 +37,4 @@ rocket = { version = "0.5.0", features = ["json"] } rocket-grants = { path = "../rocket-grants" } serde = { version = "1.0", features = ["derive"] } protect-salvo = { path = "../protect-salvo" } -salvo = { version = "0.75" } +salvo = { version = "0.84" } diff --git a/protect-salvo/Cargo.toml b/protect-salvo/Cargo.toml index cb092c6..1311b4c 100644 --- a/protect-salvo/Cargo.toml +++ b/protect-salvo/Cargo.toml @@ -21,7 +21,7 @@ default = ["macro-check"] macro-check = ["protect-endpoints-proc-macro"] [dependencies] -salvo = { version = "0.75.0", default-features = false } +salvo = { version = "0.84.0", default-features = false } salvo_extra = { version = "0.75.0", default-features = false, features = ["tower-compat"] } protect-endpoints-core = { workspace = true, features = ["tower"] } protect-endpoints-proc-macro = { workspace = true, features = ["salvo"], optional = true } @@ -32,7 +32,7 @@ chrono = "0.4" http-body-util = "0.1.0" jsonwebtoken = "9.1.0" parse-display = "0.10.0" -salvo = { version = "0.75", default-features = false, features = ["test"] } +salvo = { version = "0.84", default-features = false, features = ["test"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.64" tokio = { version = "1.34.0", features = ["rt-multi-thread"] }