diff --git a/rust/Cargo.lock b/rust/Cargo.lock index ca562bb9..88a94071 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -364,12 +364,13 @@ dependencies = [ [[package]] name = "axum-server" -version = "0.7.3" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1ab4a3ec9ea8a657c72d99a03a824af695bd0fb5ec639ccbd9cd3543b41a5f9" +checksum = "b1df331683d982a0b9492b38127151e6453639cd34926eb9c07d4cd8c6d22bfc" dependencies = [ "arc-swap", "bytes", + "either", "fs-err", "http", "http-body", @@ -377,7 +378,6 @@ dependencies = [ "hyper-util", "pin-project-lite", "rustls", - "rustls-pemfile", "rustls-pki-types", "tokio", "tokio-rustls", diff --git a/rust/crates/adc-cli/Cargo.toml b/rust/crates/adc-cli/Cargo.toml index e83c61d1..8c8b3954 100644 --- a/rust/crates/adc-cli/Cargo.toml +++ b/rust/crates/adc-cli/Cargo.toml @@ -34,7 +34,7 @@ indicatif = "0.18" chrono = { version = "0.4", default-features = false, features = ["clock"] } http = "1" axum = { workspace = true } -axum-server = { version = "0.7", features = ["tls-rustls"] } +axum-server = { version = "0.8", features = ["tls-rustls"] } rustls = { workspace = true } rustls-pemfile = "2" reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] }