mirror of
https://github.com/Pumpkin-MC/Pumpkin.git
synced 2026-08-31 08:22:33 +00:00
* update build.rs formatting code * update build.rs don't save generated file when no change * generated files use BTreeMap no build changes * disallow HashMap in build scripts * fmt
3 lines
231 B
TOML
3 lines
231 B
TOML
disallowed-types = [
|
|
{ path = "std::collections::HashMap", reason = "If you need a map, use BTreeMap for deterministic ordering. Otherwise it forces a rebuild after every change.", replacement = "std::collections::BTreeMap" }
|
|
] |