mirror of
https://github.com/gfx-rs/wgpu.git
synced 2025-04-14 04:56:35 +00:00
9 lines
427 B
TOML
9 lines
427 B
TOML
# NOTE: Other global Clippy config is in top-level Cargo.toml.
|
|
|
|
disallowed-types = [
|
|
{ path = "std::collections::HashMap", reason = "use hashbrown::HashMap instead" },
|
|
{ path = "std::collections::HashSet", reason = "use hashbrown::HashSet instead" },
|
|
{ path = "rustc_hash::FxHashMap", reason = "use hashbrown::HashMap instead" },
|
|
{ path = "rustc_hash::FxHashSet", reason = "use hashbrown::HashSet instead" },
|
|
]
|