Bump pretty_assertions from 1.3.0 to 1.4.0 (#9781)

This commit is contained in:
dependabot[bot] 2023-07-24 05:41:03 +00:00 committed by GitHub
parent b9acb61d9d
commit 4d0b6d8821
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 24 deletions

25
Cargo.lock generated
View File

@ -931,16 +931,6 @@ dependencies = [
"memchr", "memchr",
] ]
[[package]]
name = "ctor"
version = "0.1.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
dependencies = [
"quote",
"syn 1.0.109",
]
[[package]] [[package]]
name = "ctrlc" name = "ctrlc"
version = "3.4.0" version = "3.4.0"
@ -3314,15 +3304,6 @@ dependencies = [
"windows-sys 0.48.0", "windows-sys 0.48.0",
] ]
[[package]]
name = "output_vt100"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66"
dependencies = [
"winapi",
]
[[package]] [[package]]
name = "owo-colors" name = "owo-colors"
version = "3.5.0" version = "3.5.0"
@ -3933,13 +3914,11 @@ dependencies = [
[[package]] [[package]]
name = "pretty_assertions" name = "pretty_assertions"
version = "1.3.0" version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755" checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66"
dependencies = [ dependencies = [
"ctor",
"diff", "diff",
"output_vt100",
"yansi", "yansi",
] ]

View File

@ -101,7 +101,7 @@ nu-test-support = { path = "./crates/nu-test-support", version = "0.82.1" }
tempfile = "3.7" tempfile = "3.7"
assert_cmd = "2.0" assert_cmd = "2.0"
criterion = "0.5" criterion = "0.5"
pretty_assertions = "1.0" pretty_assertions = "1.4"
serial_test = "2.0" serial_test = "2.0"
rstest = { version = "0.17", default-features = false } rstest = { version = "0.17", default-features = false }