From a902d40c0a375f2fb4c73539c89f959e713b3dbb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 May 2026 22:16:46 +0000 Subject: [PATCH] Bump prefix-trie from 0.8.3 to 0.9.0 Bumps [prefix-trie](https://github.com/tiborschneider/prefix-trie) from 0.8.3 to 0.9.0. - [Release notes](https://github.com/tiborschneider/prefix-trie/releases) - [Commits](https://github.com/tiborschneider/prefix-trie/compare/v0.8.3...v0.9.0) --- updated-dependencies: - dependency-name: prefix-trie dependency-version: 0.9.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 11 +++++++++-- Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cdcca14..9594259 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -17,6 +17,12 @@ version = "1.0.101" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea" +[[package]] +name = "array-const-fn-init" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8bcb85e548c05d407fa6faff46b750ba287714ef32afc0f5e15b4641ffd6affb" + [[package]] name = "async-trait" version = "0.1.89" @@ -652,10 +658,11 @@ dependencies = [ [[package]] name = "prefix-trie" -version = "0.8.3" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90f561214012d3fc240a1f9c817cc4d57f5310910d066069c1b093f766bb5966" +checksum = "213da6195cb7a0de6d6a39ff149104be782141b670b5c0f81111245eab51d81d" dependencies = [ + "array-const-fn-init", "either", "ipnet", "num-traits", diff --git a/Cargo.toml b/Cargo.toml index f1f5728..137a232 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ getrandom = { version = "0.4", features = ["wasm_js"], default-features = false sha2 = "0.11.0" pin-project-lite = "0.2.17" -prefix-trie = "0.8.3" +prefix-trie = "0.9.0" ipnet = "2.12.0" serde = { version = "1.0.195", features = ["derive"], default-features = false }