diff --git a/Cargo.lock b/Cargo.lock index 5801807..4d4b3cc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -68,22 +68,50 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f" dependencies = [ "async-trait", - "axum-core", + "axum-core 0.4.5", "bytes", "futures-util", "http 1.2.0", "http-body 1.0.1", "http-body-util", + "itoa", + "matchit 0.7.3", + "memchr", + "mime", + "percent-encoding", + "pin-project-lite", + "rustversion", + "serde", + "sync_wrapper 1.0.2", + "tower", + "tower-layer", + "tower-service", +] + +[[package]] +name = "axum" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d6fd624c75e18b3b4c6b9caf42b1afe24437daaee904069137d8bab077be8b8" +dependencies = [ + "axum-core 0.5.0", + "bytes", + "form_urlencoded", + "futures-util", + "http 1.2.0", + "http-body 1.0.1", + "http-body-util", "hyper 1.5.2", "hyper-util", "itoa", - "matchit", + "matchit 0.8.4", "memchr", "mime", "percent-encoding", "pin-project-lite", "rustversion", "serde", + "serde_path_to_error", "serde_urlencoded", "sync_wrapper 1.0.2", "tokio", @@ -112,14 +140,33 @@ dependencies = [ "tower-service", ] +[[package]] +name = "axum-core" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df1362f362fd16024ae199c1970ce98f9661bf5ef94b9808fee734bc3698b733" +dependencies = [ + "bytes", + "futures-util", + "http 1.2.0", + "http-body 1.0.1", + "http-body-util", + "mime", + "pin-project-lite", + "rustversion", + "sync_wrapper 1.0.2", + "tower-layer", + "tower-service", +] + [[package]] name = "axum-extra" version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c794b30c904f0a1c2fb7740f7df7f7972dfaa14ef6f57cb6178dc63e5dca2f04" dependencies = [ - "axum", - "axum-core", + "axum 0.7.9", + "axum-core 0.4.5", "bytes", "cookie", "futures-util", @@ -1152,7 +1199,7 @@ name = "jitsi-openid" version = "2.0.12" dependencies = [ "anyhow", - "axum", + "axum 0.8.1", "axum-extra", "config", "jsonwebtoken", @@ -1235,6 +1282,12 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" +[[package]] +name = "matchit" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" + [[package]] name = "memchr" version = "2.7.4" diff --git a/Cargo.toml b/Cargo.toml index dd62af5..a3e2def 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" tokio = { version = "1.42", features = ["macros", "rt-multi-thread", "sync"], default-features = false } openidconnect = { version = "3.5", features = ["reqwest", "rustls-tls"], default-features = false } tracing-subscriber = { version = "0.3", features = ["fmt", "ansi"], default-features = false } -axum = { version = "0.7", features = ["tokio", "http1", "query"], default-features = false } +axum = { version = "0.8", features = ["tokio", "http1", "query"], default-features = false } axum-extra = { version = "0.9", features = ["cookie"], default-features = false } anyhow = { version = "1.0", features = ["std"], default-features = false } uuid = { version = "1.11", features = ["v4"], default-features = false }