diff --git a/Cargo.lock b/Cargo.lock index 661fcc184..3ee62ec56 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -300,13 +300,13 @@ dependencies = [ [[package]] name = "console" -version = "0.15.1" +version = "0.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89eab4d20ce20cea182308bca13088fecea9c05f6776cf287205d41a0ed3c847" +checksum = "c050367d967ced717c04b65d8c619d863ef9292ce0c5760028655a2fb298718c" dependencies = [ "encode_unicode", + "lazy_static", "libc", - "once_cell", "terminal_size", "winapi", ] @@ -624,13 +624,13 @@ dependencies = [ [[package]] name = "insta" -version = "1.20.0" +version = "1.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58a931b01c76064c5be919faa2ef0dc570e9a889dcd1e5fef08a8ca6eb4d6c0b" +checksum = "581d4e3314cae4536e5d22ffd23189d4a374696c5ef733eadafae0ed273fd303" dependencies = [ "console", + "lazy_static", "linked-hash-map", - "once_cell", "similar", "yaml-rust", ] diff --git a/Cargo.toml b/Cargo.toml index 3648a2e45..39d91ad1a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,7 +60,7 @@ thiserror = "1.0.37" assert_cmd = "2.0.4" criterion = "0.4.0" criterion_bencher_compat = "0.4.0" -insta = "1.20.0" +insta = "1.21.0" lazy_static = "1.4.0" regex = "1.6.0" predicates = "2.1.1" diff --git a/lib/Cargo.toml b/lib/Cargo.toml index bdf42c2f5..eb9612f56 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -42,7 +42,7 @@ zstd = "0.11.2" [dev-dependencies] assert_matches = "1.5.0" -insta = "1.20.0" +insta = "1.21.0" num_cpus = "1.13.1" test-case = "2.2.1"