dilaria/clippy.toml
2021-12-30 13:50:52 +01:00

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" },
]