diff --git a/Cargo.lock b/Cargo.lock index c0ff6fd1..635780dd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -79,9 +79,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.82" +version = "1.0.83" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519" +checksum = "25bdb32cbbdce2b519a9cd7df3a678443100e265d5e25ca763b7572a5104f5f3" [[package]] name = "arrayvec" @@ -3122,18 +3122,18 @@ checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" [[package]] name = "thiserror" -version = "1.0.59" +version = "1.0.60" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0126ad08bff79f29fc3ae6a55cc72352056dfff61e3ff8bb7129476d44b23aa" +checksum = "579e9083ca58dd9dcf91a9923bb9054071b9ebbd800b342194c9feb0ee89fc18" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.59" +version = "1.0.60" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1cd413b5d558b4c5bf3680e324a6fa5014e7b7c067a51e69dbdf47eb7148b66" +checksum = "e2470041c06ec3ac1ab38d0356a6119054dedaea53e12fbefc0de730a1c08524" dependencies = [ "proc-macro2", "quote", @@ -3293,9 +3293,9 @@ dependencies = [ [[package]] name = "tokio-util" -version = "0.7.10" +version = "0.7.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" +checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1" dependencies = [ "bytes", "futures-core", @@ -3303,7 +3303,6 @@ dependencies = [ "futures-sink", "pin-project-lite", "tokio", - "tracing", ] [[package]] diff --git a/crates/robbb_commands/Cargo.toml b/crates/robbb_commands/Cargo.toml index 0f7b6352..c081d431 100644 --- a/crates/robbb_commands/Cargo.toml +++ b/crates/robbb_commands/Cargo.toml @@ -22,7 +22,7 @@ byte-unit = { version = "5.1.4", features = ["u128"] } regex = "1.10.4" reqwest = { version = "0.11" } tokio = { version = "1.21", features = ["macros", "fs", "rt-multi-thread"] } -tokio-util = { version = "0.7.10", features = ["compat"] } +tokio-util = { version = "0.7.11", features = ["compat"] } futures = "0.3.30" unicase = "2.7.0" diff --git a/crates/robbb_util/Cargo.toml b/crates/robbb_util/Cargo.toml index 78769b95..54d83336 100644 --- a/crates/robbb_util/Cargo.toml +++ b/crates/robbb_util/Cargo.toml @@ -16,7 +16,7 @@ lazy_static = "1.4" chrono = "0.4.38" chrono-humanize = "0.2.3" itertools = "0.11.0" -tokio-util = { version = "0.7.10", features = ["compat"] } +tokio-util = { version = "0.7.11", features = ["compat"] } tokio = { version = "1.21", features = ["macros", "fs", "rt-multi-thread"]} futures = "0.3.30" tracing = "0.1.40"