diff --git a/Cargo.lock b/Cargo.lock index 2a7c88e7..b814dfa0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -95,7 +95,7 @@ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f" dependencies = [ "async-trait", "axum-core", - "axum-macros", + "axum-macros 0.4.2", "bytes", "futures-util", "http", @@ -154,6 +154,17 @@ dependencies = [ "syn", ] +[[package]] +name = "axum-macros" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "604fde5e028fea851ce1d8570bbdc034bec850d157f7569d10f347d06808c05c" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "backtrace" version = "0.3.74" @@ -1153,7 +1164,7 @@ dependencies = [ "anyhow", "async-recursion", "axum", - "axum-macros", + "axum-macros 0.5.0", "bit-set", "bytes", "chrono", diff --git a/Cargo.toml b/Cargo.toml index a01b6cab..6f4cc47d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ rusqlite = { version = "0.32.1", features = ["bundled", "serde_json"] } tower = { version = "0.5", features = ["util"] } tower-http = { version = "0.6.2", features = ["fs", "normalize-path"] } axum = { version = "0.7", features = ["macros"] } -axum-macros = "0.4.1" +axum-macros = "0.5.0" http-body-util = "0.1.2" percent-encoding = "2.3.1" mime_guess = "2.0"