From d0a59657c71d6291547ec2f67fac4ce18efa6595 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 31 Aug 2026 04:45:04 +0000 Subject: [PATCH] build(deps): bump similar from 2.7.0 to 3.2.0 Bumps [similar](https://github.com/mitsuhiko/similar) from 2.7.0 to 3.2.0. - [Changelog](https://github.com/mitsuhiko/similar/blob/main/CHANGELOG.md) - [Commits](https://github.com/mitsuhiko/similar/compare/2.7.0...3.2.0) --- updated-dependencies: - dependency-name: similar dependency-version: 3.2.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 17 +++++++++++++++-- crates/orion-server/Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7d584af6..acaefe01 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -636,6 +636,16 @@ dependencies = [ "uuid", ] +[[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.3" @@ -4675,9 +4685,12 @@ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" [[package]] name = "similar" -version = "2.7.0" +version = "3.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa" +checksum = "4f66ca1f7aca2474dc10c942eb22feffc897735f54cd1db90138c2fddb490987" +dependencies = [ + "bstr", +] [[package]] name = "simple_asn1" diff --git a/crates/orion-server/Cargo.toml b/crates/orion-server/Cargo.toml index 026eddf2..8b9dcb70 100644 --- a/crates/orion-server/Cargo.toml +++ b/crates/orion-server/Cargo.toml @@ -200,7 +200,7 @@ tokio-rustls = { version = "0.26", default-features = false } # aws_lc_rs: the same crypto backend the in-tree rustls stack uses — one # provider, not two. jsonwebtoken = { version = "11.0.0", features = ["aws_lc_rs"] } -similar = "2" +similar = "3" # Windows cannot run librdkafka's configure build, so it keeps cmake-build — # features unify additively with the base rdkafka entry above, per target.