diff --git a/Cargo.lock b/Cargo.lock index 2d7f7f29..e1e66ad2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -208,6 +208,12 @@ dependencies = [ "syn", ] +[[package]] +name = "array-const-fn-init" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8bcb85e548c05d407fa6faff46b750ba287714ef32afc0f5e15b4641ffd6affb" + [[package]] name = "arrayref" version = "0.3.9" @@ -3925,10 +3931,11 @@ dependencies = [ [[package]] name = "prefix-trie" -version = "0.8.3" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90f561214012d3fc240a1f9c817cc4d57f5310910d066069c1b093f766bb5966" +checksum = "fbeb97a96d43f215f842f6ab81e8c7b5f6e9b912495c3178127f54f9dce28e32" dependencies = [ + "array-const-fn-init", "either", "ipnet", "num-traits", diff --git a/Cargo.toml b/Cargo.toml index 4abb4398..368d9f6d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,7 +55,7 @@ phf_shared = "0.13.1" picon = "0.1.0" plotters = { version = "0.3.7", default-features = false, features = ["area_series", "line_series"] } plotters-iced2 = "0.14.0" -prefix-trie = { version = "0.8.3", features = ["ipnet"] } +prefix-trie = { version = "0.9.2", features = ["ipnet"] } reqwest = { version = "0.13.3", features = ["json"] } rfd = "0.17.2" rodio = { version = "0.22.2", default-features = false, features = ["mp3", "playback"] }