diff --git a/Cargo.lock b/Cargo.lock index c2d6b7f..47d0ca1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3446,25 +3446,35 @@ dependencies = [ [[package]] name = "test-log" -version = "0.2.19" +version = "0.2.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37d53ac171c92a39e4769491c4b4dde7022c60042254b5fc044ae409d34a24d4" +checksum = "2f46bf474f0a4afebf92f076d54fd5e63423d9438b8c278a3d2ccb0f47f7cdb3" dependencies = [ "test-log-macros", "tracing-subscriber", ] [[package]] -name = "test-log-macros" -version = "0.2.19" +name = "test-log-core" +version = "0.2.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be35209fd0781c5401458ab66e4f98accf63553e8fae7425503e92fdd319783b" +checksum = "37d4d41320b48bc4a211a9021678fcc0c99569b594ea31c93735b8e517102b4c" dependencies = [ "proc-macro2", "quote", "syn", ] +[[package]] +name = "test-log-macros" +version = "0.2.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9beb9249a81e430dffd42400a49019bcf548444f1968ff23080a625de0d4d320" +dependencies = [ + "syn", + "test-log-core", +] + [[package]] name = "thiserror" version = "1.0.69" diff --git a/Cargo.toml b/Cargo.toml index 6907434..ac0ad8d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -74,7 +74,7 @@ winapi = {version = "0.3.9", features = ["winsock2","in6addr","inaddr","ws2def", [dev-dependencies] tokio-test = "0.4.5" -test-log = { version = "0.2.19", default-features = false, features = ["trace"] } +test-log = { version = "0.2.20", default-features = false, features = ["trace"] } tempfile = "3.27" hyper = { version = "1.9", features = ["full"] } hyper-util = { version = "0.1", features = ["full"] }