diff --git a/Cargo.lock b/Cargo.lock index 88e2ad5b0..7a9f7a17d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -902,13 +902,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", ] @@ -2329,13 +2329,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", "pest", "pest_derive", "ron", diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index fbb3eaaa8..dae3959c7 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -45,7 +45,7 @@ zebra-node-services = { path = "../zebra-node-services" } zebra-state = { path = "../zebra-state" } [dev-dependencies] -insta = { version = "1.20.0", features = ["redactions", "json"] } +insta = { version = "1.21.0", features = ["redactions", "json"] } proptest = "0.10.1" proptest-derive = "0.3.0" serde_json = "1.0.85" diff --git a/zebra-state/Cargo.toml b/zebra-state/Cargo.toml index 03b19365f..1eda6fb69 100644 --- a/zebra-state/Cargo.toml +++ b/zebra-state/Cargo.toml @@ -47,7 +47,7 @@ once_cell = "1.15.0" spandoc = "0.2.2" hex = { version = "0.4.3", features = ["serde"] } -insta = { version = "1.20.0", features = ["ron"] } +insta = { version = "1.21.0", features = ["ron"] } proptest = "0.10.1" proptest-derive = "0.3.0" diff --git a/zebra-test/Cargo.toml b/zebra-test/Cargo.toml index c1342aa88..4464632fe 100644 --- a/zebra-test/Cargo.toml +++ b/zebra-test/Cargo.toml @@ -11,7 +11,7 @@ edition = "2021" hex = "0.4.3" indexmap = "1.9.1" lazy_static = "1.4.0" -insta = "1.20.0" +insta = "1.21.0" proptest = "0.10.1" once_cell = "1.15.0" rand = { version = "0.8.5", package = "rand" }