mirror of
https://github.com/Noratrieb/dilaria.git
synced 2026-01-14 17:35:03 +01:00
6 lines
456 B
TOML
6 lines
456 B
TOML
disallowed-types = [
|
|
{ path = "std::collections::HashMap", reason = "may be fxhash or siphash, depending on the feature, stay flexible" },
|
|
{ path = "std::collections::HashSet", reason = "may be fxhash or siphash, depending on the feature, stay flexible" },
|
|
{ path = "std::collections::Vec", reason = "we generally want to use bumpalos collections" },
|
|
{ path = "std::boxed::Box", reason = "we generally want to use bumpalos allocation" },
|
|
]
|