diff --git a/Cargo.lock b/Cargo.lock index e34bc0bf..e9968439 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -631,9 +631,9 @@ dependencies = [ [[package]] name = "axum" -version = "0.6.0" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "744864363a200a5e724a7e61bc8c11b6628cf2e3ec519c8a1a48e609a8156b40" +checksum = "08b108ad2665fa3f6e6a517c3d80ec3e77d224c47d605167aefaa5d7ef97fa48" dependencies = [ "async-trait", "axum-core 0.3.0", @@ -646,7 +646,7 @@ dependencies = [ "http-body", "hyper", "itoa 1.0.4", - "matchit 0.6.0", + "matchit 0.7.0", "memchr", "mime", "percent-encoding", @@ -705,7 +705,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d1933e5206aa0a213ae64bbd53b3006f4dc171f02314fb5efaf4d2212d2705b8" dependencies = [ - "axum 0.6.0", + "axum 0.6.1", "bytes 1.3.0", "cookie", "futures-util", @@ -2636,7 +2636,7 @@ name = "mas-axum-utils" version = "0.1.0" dependencies = [ "async-trait", - "axum 0.6.0", + "axum 0.6.1", "axum-extra", "bincode", "chrono", @@ -2674,7 +2674,7 @@ dependencies = [ "anyhow", "argon2", "atty", - "axum 0.6.0", + "axum 0.6.1", "camino", "clap", "dotenv", @@ -2807,7 +2807,7 @@ dependencies = [ "anyhow", "argon2", "async-graphql", - "axum 0.6.0", + "axum 0.6.1", "axum-extra", "axum-macros", "camino", @@ -2854,7 +2854,7 @@ dependencies = [ "anyhow", "aws-smithy-http", "aws-types", - "axum 0.6.0", + "axum 0.6.1", "bytes 1.3.0", "futures-util", "headers", @@ -3053,7 +3053,7 @@ dependencies = [ name = "mas-router" version = "0.1.0" dependencies = [ - "axum 0.6.0", + "axum 0.6.1", "serde", "serde_urlencoded", "serde_with", @@ -3164,9 +3164,9 @@ checksum = "73cbba799671b762df5a175adf59ce145165747bb891505c43d09aefbbf38beb" [[package]] name = "matchit" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3dfc802da7b1cf80aefffa0c7b2f77247c8b32206cc83c270b61264f5b360a80" +checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40" [[package]] name = "md-5" diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index 18f9ab6f..51666f36 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.59" -axum = { version = "0.6.0", features = ["headers"] } +axum = { version = "0.6.1", features = ["headers"] } axum-extra = { version = "0.4.0", features = ["cookie-private"] } bincode = "1.3.3" chrono = "0.4.23" diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index ce6d2a15..2887ed18 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" +axum = "0.6.1" camino = "1.1.1" clap = { version = "4.0.29", features = ["derive"] } dotenv = "0.15.0" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index d114d7ac..f56a6d52 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", features = ["ws"] } +axum = { version = "0.6.1", features = ["ws"] } axum-macros = "0.3.0" axum-extra = { version = "0.4.0", features = ["cookie-private"] } diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 0ab80f79..e0337050 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", optional = true } +axum = { version = "0.6.1", optional = true } bytes = "1.3.0" futures-util = "0.3.25" headers = "0.3.8" diff --git a/crates/router/Cargo.toml b/crates/router/Cargo.toml index 50dc844c..d5d67727 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", default-features = false } +axum = { version = "0.6.1", default-features = false } serde = { version = "1.0.148", features = ["derive"] } serde_urlencoded = "0.7.1" serde_with = "2.1.0"