diff --git a/Cargo.lock b/Cargo.lock index 3b438268..3f40bf17 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -763,6 +763,12 @@ version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" +[[package]] +name = "foldhash" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" + [[package]] name = "foreign-types" version = "0.3.2" @@ -992,6 +998,9 @@ name = "hashbrown" version = "0.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" +dependencies = [ + "foldhash", +] [[package]] name = "heck" @@ -1781,11 +1790,12 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" [[package]] name = "petgraph" -version = "0.7.1" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772" +checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455" dependencies = [ "fixedbitset", + "hashbrown 0.15.2", "indexmap", ] diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index b3e3fe3e..3f513aa3 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -57,7 +57,7 @@ cranelift-entity = { version = "0.118" } fixedbitset = { version = "0.5.7" } fxhash = { version = "0.2" } html5gum = { git = "https://github.com/liveviewnative/html5gum", branch = "lvn" } -petgraph = { version = "0.7.1", default-features = false, features = [ +petgraph = { version = "0.8.3", default-features = false, features = [ "graphmap", ] } futures = "0.3.31"