diff --git a/Cargo.lock b/Cargo.lock index f735b310..131a3b6f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -610,9 +610,9 @@ dependencies = [ [[package]] name = "axum" -version = "0.6.0-rc.4" +version = "0.6.0-rc.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11ce1fe515f70a98649f95d9434e8ad2ce8d581b5c9763a15470da5f6ef2e481" +checksum = "21b6b56b1bdef08d4d50e63683d79c797dbf2ae467586c7502b283241b5e2b8a" dependencies = [ "async-trait", "axum-core 0.3.0-rc.3", @@ -682,7 +682,7 @@ version = "0.4.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fa4236821ba5932aa38a08a45e4068ff2318c2882672c30ff26a433bc84b14e6" dependencies = [ - "axum 0.6.0-rc.4", + "axum 0.6.0-rc.5", "bytes 1.2.1", "cookie", "futures-util", @@ -2461,7 +2461,7 @@ name = "mas-axum-utils" version = "0.1.0" dependencies = [ "async-trait", - "axum 0.6.0-rc.4", + "axum 0.6.0-rc.5", "axum-extra", "bincode", "chrono", @@ -2499,7 +2499,7 @@ dependencies = [ "anyhow", "argon2", "atty", - "axum 0.6.0-rc.4", + "axum 0.6.0-rc.5", "camino", "clap", "dotenv", @@ -2632,7 +2632,7 @@ dependencies = [ "anyhow", "argon2", "async-graphql", - "axum 0.6.0-rc.4", + "axum 0.6.0-rc.5", "axum-extra", "axum-macros", "camino", @@ -2679,7 +2679,7 @@ dependencies = [ "anyhow", "aws-smithy-http", "aws-types", - "axum 0.6.0-rc.4", + "axum 0.6.0-rc.5", "bytes 1.2.1", "futures-util", "headers", @@ -2837,7 +2837,7 @@ dependencies = [ name = "mas-router" version = "0.1.0" dependencies = [ - "axum 0.6.0-rc.4", + "axum 0.6.0-rc.5", "serde", "serde_urlencoded", "serde_with", diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index 41a492d0..cd3ffccd 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" [dependencies] async-trait = "0.1.58" -axum = { version = "0.6.0-rc.4", features = ["headers"] } +axum = { version = "0.6.0-rc.5", features = ["headers"] } axum-extra = { version = "0.4.0-rc.2", features = ["cookie-private"] } bincode = "1.3.3" chrono = "0.4.23" diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index a367270b..a33d2e36 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0" anyhow = "1.0.66" argon2 = { version = "0.4.1", features = ["password-hash"] } atty = "0.2.14" -axum = "0.6.0-rc.4" +axum = "0.6.0-rc.5" camino = "1.1.1" clap = { version = "4.0.26", features = ["derive"] } dotenv = "0.15.0" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index b5847ea1..094e9735 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -21,7 +21,7 @@ anyhow = "1.0.66" hyper = { version = "0.14.23", features = ["full"] } tower = "0.4.13" tower-http = { version = "0.3.4", features = ["cors"] } -axum = { version = "0.6.0-rc.4", features = ["ws"] } +axum = { version = "0.6.0-rc.5", features = ["ws"] } axum-macros = "0.3.0-rc.2" axum-extra = { version = "0.4.0-rc.2", features = ["cookie-private"] } diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index ce33492a..aaf7e760 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] aws-smithy-http = { version = "0.51.0", optional = true } aws-types = { version = "0.51.0", optional = true } -axum = { version = "0.6.0-rc.4", optional = true } +axum = { version = "0.6.0-rc.5", optional = true } bytes = "1.2.1" futures-util = "0.3.25" headers = "0.3.8" diff --git a/crates/router/Cargo.toml b/crates/router/Cargo.toml index dfa00832..15a3623e 100644 --- a/crates/router/Cargo.toml +++ b/crates/router/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -axum = { version = "0.6.0-rc.4", default-features = false } +axum = { version = "0.6.0-rc.5", default-features = false } serde = { version = "1.0.147", features = ["derive"] } serde_urlencoded = "0.7.1" serde_with = "2.1.0"