Documentation
1
2
3
4
5
6
7
8
9
10
11
type-complexity-threshold = 300
too-many-arguments-threshold = 15
disallowed-types = [
    { path = "std::collections::HashMap", reason = "slow std implementation" },
    { path = "std::collections::HashSet", reason = "slow std implementation" },
    { path = "std::collections::BTreeMap", reason = "slow std implementation" },
    { path = "std::collections::BTreeSet", reason = "slow std implementation" },
    { path = "std::collections::LinkedList", reason = "slow std implementation" },
    { path = "std::collections::BinaryHeap", reason = "slow std implementation" },
]