mirror of
https://github.com/Noratrieb/dilaria.git
synced 2026-01-14 17:35:03 +01:00
8 lines
350 B
TOML
8 lines
350 B
TOML
disallowed-types = [
|
|
# we want to use our custom HashMap/HashSet from `values.rs`, so that consumers can choose between which HashMap they want
|
|
"std::collections::HashMap",
|
|
"std::collections::HashSet",
|
|
# we want to use bumpalo::collections::Vec, this can be removed later I guess
|
|
"std::collections::Vec",
|
|
"std::boxed::Box",
|
|
]
|