chore(deps): update rust crate pretty_assertions to v1 (#361)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
renovate[bot] 2022-10-14 12:40:12 +03:00 committed by GitHub
parent 8c3f9a3090
commit fb32f33154
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 3 deletions

22
Cargo.lock generated
View File

@ -39,7 +39,7 @@ dependencies = [
"non-empty-vec", "non-empty-vec",
"once_cell", "once_cell",
"polyplets", "polyplets",
"pretty_assertions", "pretty_assertions 0.6.1",
"semver 1.0.14", "semver 1.0.14",
"serde", "serde",
"serde_json", "serde_json",
@ -192,7 +192,7 @@ dependencies = [
"maplit", "maplit",
"nom 7.1.1", "nom 7.1.1",
"nom_locate", "nom_locate",
"pretty_assertions", "pretty_assertions 1.3.0",
"serde_json", "serde_json",
"strum", "strum",
] ]
@ -2071,6 +2071,18 @@ dependencies = [
"output_vt100", "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]] [[package]]
name = "proc-macro-error" name = "proc-macro-error"
version = "1.0.4" version = "1.0.4"
@ -3124,3 +3136,9 @@ name = "windows_x86_64_msvc"
version = "0.36.1" version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
[[package]]
name = "yansi"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"

View File

@ -25,7 +25,7 @@ serde_json = "1.0.85"
[dev-dependencies] [dev-dependencies]
maplit = "1.0.2" maplit = "1.0.2"
pretty_assertions = "0.6.1" pretty_assertions = "1.3.0"
# We do not want to depend on wasm binary path # We do not want to depend on wasm binary path
air-test-utils = { path = "../air-lib/test-utils", features = ["test_with_native_code"] } air-test-utils = { path = "../air-lib/test-utils", features = ["test_with_native_code"] }