= [
# prefer hashbrown
"std::collections::HashMap",
"std::collections::HashSet",
]
= [
# only allowed in main.rs
"std::print",
"std::println",
# use log crate instead
"std::eprint",
"std::eprintln",
]
# Run time of these methods scales linearly with the number of cores.
# Useful for performance debugging
# disallowed-methods = [
# "dashmap::DashMap::len",
# "dashmap::DashMap::iter",
# "dashmap::DashMap::clear",
# ]
= 350