diff --git a/Cargo.lock b/Cargo.lock index dc62bfad2ab..9a10c6bf6b3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1543,7 +1543,7 @@ dependencies = [ "hex", "lazy_static", "lru_time_cache", - "pretty_assertions 1.0.0", + "pretty_assertions 1.3.0", "semver 1.0.4", "serde", "serde_json", @@ -1569,7 +1569,7 @@ dependencies = [ "lazy_static", "once_cell", "parking_lot 0.11.2", - "pretty_assertions 1.0.0", + "pretty_assertions 1.3.0", "stable-hash", "test-store", ] @@ -3084,14 +3084,14 @@ dependencies = [ [[package]] name = "pretty_assertions" -version = "1.0.0" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec0cfe1b2403f172ba0f234e500906ee0a3e493fb81092dac23ebefe129301cc" +checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755" dependencies = [ - "ansi_term", "ctor", "diff", "output_vt100", + "yansi", ] [[package]] @@ -5534,6 +5534,12 @@ dependencies = [ "linked-hash-map", ] +[[package]] +name = "yansi" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" + [[package]] name = "zstd" version = "0.6.1+zstd.1.4.9" diff --git a/core/Cargo.toml b/core/Cargo.toml index b9cf9e85fa2..0a9e4c5c65c 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -31,5 +31,5 @@ walkdir = "2.3.2" test-store = { path = "../store/test-store" } hex = "0.4.3" graphql-parser = "0.4.0" -pretty_assertions = "1.0.0" +pretty_assertions = "1.3.0" anyhow = "1.0" diff --git a/graphql/Cargo.toml b/graphql/Cargo.toml index 7e1e95784da..3c7a4763d0f 100644 --- a/graphql/Cargo.toml +++ b/graphql/Cargo.toml @@ -19,6 +19,6 @@ parking_lot = "0.11" anyhow = "1.0" [dev-dependencies] -pretty_assertions = "1.0.0" +pretty_assertions = "1.3.0" test-store = { path = "../store/test-store" } graph-chain-ethereum = { path = "../chain/ethereum" }