diff --git a/Cargo.lock b/Cargo.lock index 071283a..8fc082a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -116,9 +116,9 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" [[package]] name = "axum" -version = "0.8.8" +version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8" +checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90" dependencies = [ "axum-core", "bytes", diff --git a/handlers/Cargo.toml b/handlers/Cargo.toml index ac3d606..db15e7a 100644 --- a/handlers/Cargo.toml +++ b/handlers/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] databases = { path = "../databases" } parsing = { path = "../parsing" } -axum = "0.8.1" +axum = "0.8.9" serde = { version = "1.0.228", features = ["derive"] } tower-http = { version = "0.6.6", features = ["cors"] } tracing = "0.1.41" diff --git a/server/Cargo.toml b/server/Cargo.toml index 8111930..0f31347 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -9,7 +9,7 @@ edition = "2024" parsing = { path = "../parsing" } databases = { path = "../databases" } handlers = { path = "../handlers" } -axum = { version = "0.8.1", features = ["http2", "tracing"] } +axum = { version = "0.8.9", features = ["http2", "tracing"] } chrono = "0.4.44" clap = { version = "4.6", features = ["derive"] } tokio = { version = "1.50.0", features = ["full"] }