diff --git a/Cargo.lock b/Cargo.lock index 9eeca117b67..e11fadaa298 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1042,12 +1042,14 @@ checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" [[package]] name = "goldenfile" -version = "1.5.2" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86342e69ffaa1cd5450d6bad08a80da96c441d891a0e07c72c62c4abdd281713" +checksum = "e4a67453a3b358bd8213aedafd4feed75eecab9fb04bed26ba6fdf94694be560" dependencies = [ + "scopeguard", "similar-asserts", "tempfile", + "yansi 1.0.0-rc.1", ] [[package]] @@ -2025,7 +2027,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66" dependencies = [ "diff", - "yansi", + "yansi 0.5.1", ] [[package]] @@ -2432,6 +2434,12 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + [[package]] name = "sct" version = "0.7.0" @@ -3763,6 +3771,12 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" +[[package]] +name = "yansi" +version = "1.0.0-rc.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1367295b8f788d371ce2dbc842c7b709c73ee1364d30351dd300ec2203b12377" + [[package]] name = "zeroize" version = "1.6.0" diff --git a/quick-junit/Cargo.toml b/quick-junit/Cargo.toml index 882b70859bd..d464dbd095d 100644 --- a/quick-junit/Cargo.toml +++ b/quick-junit/Cargo.toml @@ -21,5 +21,5 @@ nextest-workspace-hack = { version = "0.1", path = "../workspace-hack" } strip-ansi-escapes = "0.2.0" [dev-dependencies] -goldenfile = "1.5.2" +goldenfile = "1.6.0" owo-colors = "3.5.0"