diff --git a/Cargo.lock b/Cargo.lock index 1ab1880..c78c43b 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.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f487e40dc9daee24d8a1779df88522f159a54a980f99cfbe43db0be0bd3444a8" +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.1", "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 521ee78..193e0f3 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.3" http = "0.2" http-body = "0.4"