From 8ea18d520520bf8449d5da155cb9446c05a004ff Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 11 Aug 2026 23:11:31 +0000 Subject: [PATCH] fix(deps): update rust crate similar to v3 --- Cargo.lock | 17 +++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5ebf11e..ffb9f77 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -313,6 +313,16 @@ dependencies = [ "tinyvec", ] +[[package]] +name = "bstr" +version = "1.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6bb31b46c14244e20ee9984b11bf5c992b91fb6939fea616e3512c8baecdbe5f" +dependencies = [ + "memchr", + "serde_core", +] + [[package]] name = "bumpalo" version = "3.20.2" @@ -2338,9 +2348,12 @@ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" [[package]] name = "similar" -version = "2.7.0" +version = "3.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa" +checksum = "85ee016af5d736b69fc89e19254540fa4b5f5492853fb5503920f084011c78b6" +dependencies = [ + "bstr", +] [[package]] name = "siphasher" diff --git a/Cargo.toml b/Cargo.toml index e4ffc3a..2283ab8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ crossterm = { version = "0.29", features = ["event-stream"] } url = "2" anyhow = "1" pulldown-cmark = "0.13" -similar = "2" +similar = "3" fuzzy-matcher = "0.3" syntect = { version = "5", default-features = false, features = ["default-syntaxes", "default-themes", "regex-onig"] } unicode-width = "0.2"