diff --git a/core/Cargo.toml b/core/Cargo.toml index 5eb973c..c9f31df 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -17,7 +17,7 @@ tower = ["dep:tower", "pin-project", "futures-util"] [dependencies] futures-util = { version = "0.3.30", optional = true } -tower = { version = "0.4.13", optional = true, default-features = false } +tower = { version = "0.5.0", optional = true, default-features = false } pin-project = { version = "1.1.3", optional = true } http = { version = "1.1.0" } diff --git a/protect-axum/Cargo.toml b/protect-axum/Cargo.toml index 50eb611..9f05e49 100644 --- a/protect-axum/Cargo.toml +++ b/protect-axum/Cargo.toml @@ -23,7 +23,7 @@ macro-check = ["protect-endpoints-proc-macro"] axum = { version = "0.7.5", default-features = false } protect-endpoints-core = { workspace = true, features = ["tower"] } protect-endpoints-proc-macro = { workspace = true, features = ["axum"], optional = true } -tower = { version = "0.4.13", default-features = false } +tower = { version = "0.5.0", default-features = false } [dev-dependencies] axum = { version = "0.7.2" } diff --git a/protect-salvo/Cargo.toml b/protect-salvo/Cargo.toml index 15c745a..53cbb7c 100644 --- a/protect-salvo/Cargo.toml +++ b/protect-salvo/Cargo.toml @@ -23,7 +23,7 @@ macro-check = ["protect-endpoints-proc-macro"] salvo = { version = "0.70.0", default-features = false, features = ["tower-compat"] } protect-endpoints-core = { workspace = true, features = ["tower"] } protect-endpoints-proc-macro = { workspace = true, features = ["salvo"], optional = true } -tower = { version = "0.4.13", default-features = false } +tower = { version = "0.5.0", default-features = false } [dev-dependencies] chrono = "0.4.35"