From 693a54b2cf9d6b75109f1956f5a71447ab2300f5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 18 Jun 2026 17:53:37 +0000 Subject: [PATCH] chore(deps): update cargo dependencies --- Cargo.lock | 28 ++++++++++++++-------------- Cargo.toml | 46 +++++++++++++++++++++++----------------------- 2 files changed, 37 insertions(+), 37 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7d0d5ab..d4a2055 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -78,9 +78,9 @@ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb" [[package]] name = "bytes" -version = "1.11.1" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" +checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593" [[package]] name = "cast" @@ -117,9 +117,9 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.44" +version = "0.4.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" +checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327" dependencies = [ "iana-time-zone", "num-traits", @@ -195,9 +195,9 @@ dependencies = [ [[package]] name = "criterion" -version = "0.8.1" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d883447757bb0ee46f233e9dc22eb84d93a9508c9b868687b274fc431d886bf" +checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3" dependencies = [ "alloca", "anes", @@ -462,9 +462,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" [[package]] name = "http" -version = "1.4.0" +version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" +checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425" dependencies = [ "bytes", "itoa", @@ -706,9 +706,9 @@ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" [[package]] name = "libc" -version = "0.2.185" +version = "0.2.186" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f" +checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66" [[package]] name = "litemap" @@ -1043,9 +1043,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.149" +version = "1.0.150" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" +checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9" dependencies = [ "itoa", "memchr", @@ -1189,9 +1189,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.52.1" +version = "1.52.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b67dee974fe86fd92cc45b7a95fdd2f99a36a6d7b0d431a231178d3d670bbcc6" +checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe" dependencies = [ "bytes", "libc", diff --git a/Cargo.toml b/Cargo.toml index c388510..c0cca98 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,8 +23,8 @@ server = ["path-tree"] full = ["client", "server"] [dependencies] -interprocess = { version = "2.4", features = ["tokio"] } -tokio = { version = "1.49.0", features = [ +interprocess = { version = "2.4.2", features = ["tokio"] } +tokio = { version = "1.52.3", features = [ "rt", "rt-multi-thread", "io-util", @@ -33,35 +33,35 @@ tokio = { version = "1.49.0", features = [ "macros", "signal", ] } -tokio-stream = { version = "0.1", features = ["io-util"] } -tokio-util = { version = "0.7", features = ["codec", "io"] } -futures = "0.3" -thiserror = "2.0" -serde_json = "1.0" -serde = { version = "1.0", features = ["derive"] } -httparse = "1.10" -http = "1.4" -bytes = { version = "1.11" } -tracing = "0.1" -parking_lot = "0.12" -pin-project-lite = "0.2" -toml = "0.9" -rand = "0.10" -path-tree = { version = "0.8", optional = true } -url = "2.5" +tokio-stream = { version = "0.1.18", features = ["io-util"] } +tokio-util = { version = "0.7.18", features = ["codec", "io"] } +futures = "0.3.32" +thiserror = "2.0.18" +serde_json = "1.0.150" +serde = { version = "1.0.228", features = ["derive"] } +httparse = "1.10.1" +http = "1.4.2" +bytes = { version = "1.12.0" } +tracing = "0.1.44" +parking_lot = "0.12.5" +pin-project-lite = "0.2.17" +toml = "0.9.12" +rand = "0.10.1" +path-tree = { version = "0.8.3", optional = true } +url = "2.5.8" [target.'cfg(unix)'.dependencies] -libc = "0.2" +libc = "0.2.186" [target.'cfg(windows)'.dependencies] -widestring = "1.2" +widestring = "1.2.1" [dev-dependencies] dotenvy = "0.15.7" -criterion = { version = "=0.8.1", features = ["async_tokio"] } +criterion = { version = "=0.8.2", features = ["async_tokio"] } async-trait = "0.1.89" -tracing-subscriber = "0.3.22" -chrono = { version = "0.4.42", default-features = false, features = [ +tracing-subscriber = "0.3.23" +chrono = { version = "0.4.45", default-features = false, features = [ "std", "clock", ] }