diff --git a/Cargo.lock b/Cargo.lock index 2933c3bf..6cec0270 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -607,9 +607,9 @@ dependencies = [ [[package]] name = "axum" -version = "0.6.1" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08b108ad2665fa3f6e6a517c3d80ec3e77d224c47d605167aefaa5d7ef97fa48" +checksum = "1304eab461cf02bd70b083ed8273388f9724c549b316ba3d1e213ce0e9e7fb7e" dependencies = [ "async-trait", "axum-core", @@ -641,9 +641,9 @@ dependencies = [ [[package]] name = "axum-core" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79b8558f5a0581152dc94dcd289132a1d377494bdeafcd41869b3258e3e2ad92" +checksum = "f487e40dc9daee24d8a1779df88522f159a54a980f99cfbe43db0be0bd3444a8" dependencies = [ "async-trait", "bytes 1.3.0", diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index ec9bc076..af736dd8 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.60" -axum = { version = "0.6.1", features = ["headers"] } +axum = { version = "0.6.2", features = ["headers"] } axum-extra = { version = "0.4.2", features = ["cookie-private"] } chrono = "0.4.23" data-encoding = "2.3.3" diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 997d2cab..1c8136cd 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] anyhow = "1.0.68" atty = "0.2.14" -axum = "0.6.1" +axum = "0.6.2" camino = "1.1.2" clap = { version = "4.0.32", features = ["derive"] } dotenv = "0.15.0" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index ed12e16a..23424c0a 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -21,7 +21,7 @@ anyhow = "1.0.68" hyper = { version = "0.14.23", features = ["full"] } tower = "0.4.13" tower-http = { version = "0.3.5", features = ["cors"] } -axum = "0.6.1" +axum = "0.6.2" axum-macros = "0.3.1" axum-extra = { version = "0.4.2", features = ["cookie-private"] } diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 80c909f1..8cc8c454 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.52.0", optional = true } aws-types = { version = "0.52.0", optional = true } -axum = { version = "0.6.1", optional = true } +axum = { version = "0.6.2", 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 f381a75e..43299766 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.1", default-features = false } +axum = { version = "0.6.2", default-features = false } serde = { version = "1.0.152", features = ["derive"] } serde_urlencoded = "0.7.1" url = "2.3.1"