11[package ]
22name = " indexmap"
33edition = " 2021"
4- version = " 2.11.4 "
4+ version = " 2.12.0 "
55documentation = " https://docs.rs/indexmap/"
66repository = " https://github.com/indexmap-rs/indexmap"
77license = " Apache-2.0 OR MIT"
88description = " A hash table with consistent order and fast iteration."
99keywords = [" hashmap" , " no_std" ]
1010categories = [" data-structures" , " no-std" ]
11- rust-version = " 1.63 "
11+ rust-version = " 1.82 "
1212
1313[lib ]
1414bench = false
1515
1616[dependencies ]
1717equivalent = { version = " 1.0" , default-features = false }
18+ hashbrown = { version = " 0.16" , default-features = false }
1819
1920arbitrary = { version = " 1.0" , optional = true , default-features = false }
2021quickcheck = { version = " 1.0" , optional = true , default-features = false }
@@ -25,10 +26,6 @@ sval = { version = "2", optional = true, default-features = false }
2526# deprecated: use borsh's "indexmap" feature instead.
2627borsh = { version = " 1.2" , optional = true , default-features = false }
2728
28- [dependencies .hashbrown ]
29- version = " >= 0.15.0, < 0.17.0"
30- default-features = false
31-
3229# serde v1.0.220 is the first version that released with `serde_core`.
3330# This is required to avoid conflict with other `serde` users which may require an older version.
3431[target .'cfg(any())' .dependencies ]
@@ -64,5 +61,16 @@ rustdoc-args = ["--cfg", "docsrs"]
6461[workspace ]
6562members = [" test-nostd" , " test-serde" , " test-sval" ]
6663
64+ [lints .rust ]
65+ private-bounds = " deny"
66+ private-interfaces = " deny"
67+ unnameable-types = " deny"
68+ unreachable-pub = " deny"
69+
70+ # We *mostly* avoid unsafe code, but there are a few fine-grained cases allowed
71+ unsafe-code = " deny"
72+
73+ rust-2018-idioms = " warn"
74+
6775[lints .clippy ]
6876style = " allow"
0 commit comments