diff --git a/Cargo.lock b/Cargo.lock index 4cbcfd750..f31ba28e1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1522,9 +1522,18 @@ checksum = "507e9898683b6c43a9aa55b64259b721b52ba226e0f3779137e50ad114a4c90b" [[package]] name = "test-case" -version = "2.0.2" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6344589a99d3971d6fa4e8314dbcbeca2df6273a6b642e46906971779159af1f" +checksum = "196e8a70562e252cc51eaaaee3ecddc39803d9b7fd4a772b7c7dae7cdf42a859" +dependencies = [ + "test-case-macros", +] + +[[package]] +name = "test-case-macros" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8dd461f47ade621665c9f4e44b20449341769911c253275dc5cb03726cbb852c" dependencies = [ "cfg-if", "proc-macro-error", diff --git a/Cargo.toml b/Cargo.toml index 7f1cbd224..30a6adc8d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -63,7 +63,7 @@ criterion_bencher_compat = "0.3.4" insta = "1.14.0" regex = "1.5.5" predicates = "2.1.1" -test-case = "2.0.2" +test-case = "2.1.0" [features] default = ["vendored-openssl"] diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 62f83f2c5..8bd3fbb8e 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -44,7 +44,7 @@ zstd = "0.11.2" assert_matches = "1.5.0" insta = "1.14.0" num_cpus = "1.13.1" -test-case = "2.0.2" +test-case = "2.1.0" [features] vendored-openssl = ["git2/vendored-openssl"]