From 7fade42bb55be1b0e679abaa75ba0c673de11cf8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 1 Apr 2026 23:07:55 +0000 Subject: [PATCH] fix(deps): update rust crate similar to v3 --- fuzz/Cargo.lock | 13 +++++++++++-- fuzz/Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/fuzz/Cargo.lock b/fuzz/Cargo.lock index 293cba0..c4dbfdb 100644 --- a/fuzz/Cargo.lock +++ b/fuzz/Cargo.lock @@ -1173,6 +1173,15 @@ version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa" +[[package]] +name = "similar" +version = "3.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26d0b06eba54f0ca0770f970a3e89823e766ca638dd940f8469fa0fa50c75396" +dependencies = [ + "bstr", +] + [[package]] name = "siphasher" version = "1.0.1" @@ -1383,7 +1392,7 @@ dependencies = [ "libfuzzer-sys", "rand 0.10.0", "sed", - "similar", + "similar 3.0.0", "tempfile", "uucore", "uufuzz", @@ -1408,7 +1417,7 @@ dependencies = [ "console", "libc", "rand 0.9.2", - "similar", + "similar 2.7.0", "tempfile", "uucore", ] diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 24dbcb1..1386689 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -13,7 +13,7 @@ libfuzzer-sys = "0.4.7" libc = "0.2.153" tempfile = "3.15.0" rand = { version = "0.10.0" } -similar = "2.5.0" +similar = "3.0.0" uucore = { version = "0.7.0", features = ["libc"] } uufuzz = "0.7.0"