diff --git a/Cargo.lock b/Cargo.lock index 5a36eec..359ea88 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -26,7 +26,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "acee9fd5073ab6b045a275b3e709c163dd36c90685219cb21804a147b58dba43" dependencies = [ "async-trait", - "axum-core", + "axum-core 0.2.9", "bitflags", "bytes", "futures-util", @@ -66,13 +66,30 @@ dependencies = [ "tower-service", ] +[[package]] +name = "axum-core" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1cae3e661676ffbacb30f1a824089a8c9150e71017f7e1e38f2aa32009188d34" +dependencies = [ + "async-trait", + "bytes", + "futures-util", + "http", + "http-body", + "mime", + "rustversion", + "tower-layer", + "tower-service", +] + [[package]] name = "axum-xml" version = "0.2.0" dependencies = [ "async-trait", "axum", - "axum-core", + "axum-core 0.3.2", "bytes", "http", "http-body", @@ -622,6 +639,12 @@ dependencies = [ "winreg", ] +[[package]] +name = "rustversion" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70" + [[package]] name = "ryu" version = "1.0.9" diff --git a/Cargo.toml b/Cargo.toml index 7836856..239a654 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ encoding = ["quick-xml/encoding"] [dependencies] async-trait = "0.1" -axum-core = "0.2" +axum-core = "0.3" bytes = "1.4" http = "0.2" http-body = "0.4"