diff --git a/rust/Cargo.lock.in b/rust/Cargo.lock.in index a6ef1793d9..d1f3addb33 100644 --- a/rust/Cargo.lock.in +++ b/rust/Cargo.lock.in @@ -649,12 +649,6 @@ dependencies = [ "foldhash", ] -[[package]] -name = "hashbrown" -version = "0.16.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" - [[package]] name = "heck" version = "0.5.0" @@ -701,7 +695,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5" dependencies = [ "equivalent", - "hashbrown 0.16.0", + "hashbrown", ] [[package]] @@ -793,7 +787,7 @@ version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" dependencies = [ - "hashbrown 0.15.5", + "hashbrown", ] [[package]] @@ -1639,6 +1633,7 @@ version = "9.0.0-dev" dependencies = [ "clap", "home", + "indexmap", "once_cell", "rustyline", "rustyline-derive", diff --git a/rust/suricatasc/Cargo.toml.in b/rust/suricatasc/Cargo.toml.in index 359a10850d..b40c1e2b40 100644 --- a/rust/suricatasc/Cargo.toml.in +++ b/rust/suricatasc/Cargo.toml.in @@ -25,3 +25,6 @@ serde_json = { version = "1.0.140", default-features = false, features = ["prese # Pinned back to support Rust 1.75.0. Not used directly by us, but by rustyline. home = { version = "=0.5.9" } + +# Pinned back to support Rust 1.75.0. Not used directly by us, but by serde_json. +indexmap = { version = "=2.11.4" }