From 4bf6af911e93d376d97ebea956465754ac9f5c30 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 10 Jul 2023 00:13:17 +0000 Subject: [PATCH] Update Rust crate pretty_assertions to 1.4.0 --- Cargo.lock | 27 +++------------------------ Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 25 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dd4551a..0a16a47 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -102,16 +102,6 @@ version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" -[[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]] name = "ctor" version = "0.2.3" @@ -240,7 +230,7 @@ dependencies = [ name = "frida-deepfreeze-rs" version = "0.1.0" dependencies = [ - "ctor 0.2.3", + "ctor", "frida", "goblin", "lazy_static", @@ -671,15 +661,6 @@ dependencies = [ "vcpkg", ] -[[package]] -name = "output_vt100" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66" -dependencies = [ - "winapi", -] - [[package]] name = "peeking_take_while" version = "0.1.2" @@ -718,13 +699,11 @@ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" [[package]] name = "pretty_assertions" -version = "1.3.0" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755" +checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66" dependencies = [ - "ctor 0.1.26", "diff", - "output_vt100", "yansi", ] diff --git a/Cargo.toml b/Cargo.toml index 2f2b73c..5054b09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,5 +34,5 @@ ctor = "0.2.3" goblin = "0.7.1" [dev-dependencies] -pretty_assertions = "1.3.0" +pretty_assertions = "1.4.0" mylib = { path = "tests/mylib" }