Newer indexmap, pulled in by serde_json requires Rust 1.82, so pin
pack to 2.11.4 which still works with Rust 1.75.
"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"
checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5"
dependencies = [
"equivalent",
- "hashbrown 0.16.0",
+ "hashbrown",
]
[[package]]
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
dependencies = [
- "hashbrown 0.15.5",
+ "hashbrown",
]
[[package]]
dependencies = [
"clap",
"home",
+ "indexmap",
"once_cell",
"rustyline",
"rustyline-derive",
# 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" }