diff --git a/Cargo.lock b/Cargo.lock index 7fb8a9f..2c5fc69 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -120,7 +120,7 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "axum" version = "0.6.16" -source = "git+https://github.com/tokio-rs/axum.git?branch=main#c8cf147657093bff3aad5cbf2dafa336235a37c6" +source = "git+https://github.com/tokio-rs/axum.git?branch=main#7093cee0ace5c3cb81ab6f970ae6ff0e966643ea" dependencies = [ "async-trait", "axum-core", @@ -152,7 +152,7 @@ dependencies = [ [[package]] name = "axum-core" version = "0.3.4" -source = "git+https://github.com/tokio-rs/axum.git?branch=main#c8cf147657093bff3aad5cbf2dafa336235a37c6" +source = "git+https://github.com/tokio-rs/axum.git?branch=main#7093cee0ace5c3cb81ab6f970ae6ff0e966643ea" dependencies = [ "async-trait", "bytes", @@ -170,7 +170,7 @@ dependencies = [ [[package]] name = "axum-macros" version = "0.3.7" -source = "git+https://github.com/tokio-rs/axum.git?branch=main#c8cf147657093bff3aad5cbf2dafa336235a37c6" +source = "git+https://github.com/tokio-rs/axum.git?branch=main#7093cee0ace5c3cb81ab6f970ae6ff0e966643ea" dependencies = [ "heck", "proc-macro2", @@ -681,18 +681,18 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "proc-macro2" -version = "1.0.66" +version = "1.0.67" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" +checksum = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328" dependencies = [ "unicode-ident", ] [[package]] name = "quote" -version = "1.0.32" +version = "1.0.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965" +checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" dependencies = [ "proc-macro2", ] @@ -856,9 +856,9 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" [[package]] name = "syn" -version = "2.0.31" +version = "2.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "718fa2415bcb8d8bd775917a1bf12a7931b6dfa890753378538118181e0cb398" +checksum = "7303ef2c05cd654186cb250d29049a24840ca25d2747c25c0381c8d9e2f582e8" dependencies = [ "proc-macro2", "quote", @@ -883,9 +883,9 @@ dependencies = [ [[package]] name = "time" -version = "0.3.28" +version = "0.3.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17f6bb557fd245c28e6411aa56b6403c689ad95061f50e4be16c274e70a17e48" +checksum = "426f806f4089c493dcac0d24c29c01e2c38baf8e30f1b716ee37e83d200b18fe" dependencies = [ "deranged", "itoa", @@ -896,15 +896,15 @@ dependencies = [ [[package]] name = "time-core" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" +checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" [[package]] name = "time-macros" -version = "0.2.14" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a942f44339478ef67935ab2bbaec2fb0322496cf3cbe84b261e06ac3814c572" +checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20" dependencies = [ "time-core", ] @@ -1096,9 +1096,9 @@ dependencies = [ [[package]] name = "unicode-ident" -version = "1.0.11" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" +checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" [[package]] name = "utf8parse" diff --git a/Cargo.toml b/Cargo.toml index f136f30..f031a9f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ mime_guess = "2.0.4" mime = "0.3.17" base64 = "0.21.4" percent-encoding = "2.3.0" -time = { version = "0.3.28", features = ["formatting"] } +time = { version = "0.3.29", features = ["formatting"] } clap = { version = "4.4.5", features = ["derive"] } axum-macros = { git = "https://github.com/tokio-rs/axum.git", branch = "main"}