From fb32f3315408dbad9a0e0f98c0091198bb0f4abe Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 14 Oct 2022 12:40:12 +0300 Subject: [PATCH] chore(deps): update rust crate pretty_assertions to v1 (#361) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Cargo.lock | 22 ++++++++++++++++++++-- crates/testing-framework/Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2a57c09c..9bb36998 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -39,7 +39,7 @@ dependencies = [ "non-empty-vec", "once_cell", "polyplets", - "pretty_assertions", + "pretty_assertions 0.6.1", "semver 1.0.14", "serde", "serde_json", @@ -192,7 +192,7 @@ dependencies = [ "maplit", "nom 7.1.1", "nom_locate", - "pretty_assertions", + "pretty_assertions 1.3.0", "serde_json", "strum", ] @@ -2071,6 +2071,18 @@ dependencies = [ "output_vt100", ] +[[package]] +name = "pretty_assertions" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755" +dependencies = [ + "ctor", + "diff", + "output_vt100", + "yansi", +] + [[package]] name = "proc-macro-error" version = "1.0.4" @@ -3124,3 +3136,9 @@ name = "windows_x86_64_msvc" version = "0.36.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" + +[[package]] +name = "yansi" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" diff --git a/crates/testing-framework/Cargo.toml b/crates/testing-framework/Cargo.toml index 698cef87..8420bffe 100644 --- a/crates/testing-framework/Cargo.toml +++ b/crates/testing-framework/Cargo.toml @@ -25,7 +25,7 @@ serde_json = "1.0.85" [dev-dependencies] maplit = "1.0.2" -pretty_assertions = "0.6.1" +pretty_assertions = "1.3.0" # We do not want to depend on wasm binary path air-test-utils = { path = "../air-lib/test-utils", features = ["test_with_native_code"] }