-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathclippy.toml
More file actions
12 lines (12 loc) · 806 Bytes
/
clippy.toml
File metadata and controls
12 lines (12 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
disallowed-types = [
{ path = "std::collections::HashMap", reason = "prefer faster & deterministic hash alternative", replacement = "rustc_hash::FxHashMap" },
{ path = "std::collections::HashSet", reason = "prefer faster & deterministic hash alternative", replacement = "rustc_hash::FxHashSet" },
{ path = "std::hash::DefaultHasher", reason = "prefer faster & deterministic hash alternative", replacement = "rustc_hash::FxHasher" },
{ path = "std::hash::RandomState", reason = "prefer faster & deterministic hash alternative", replacement = "rustc_hash::FxBuildHasher" },
]
enforced-import-renames = [
{ path = "pindakaas::Lit", rename = "RawLit" },
{ path = "pindakaas::Var", rename = "RawVar" },
{ path = "pindakaas::solver::Solver", rename = "SolverTrait" },
]
type-complexity-threshold = 350