mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-14 00:17:16 +00:00
14 lines
382 B
TOML
14 lines
382 B
TOML
|
disallowed-types = [
|
||
|
# Inefficient. Use `.queue(…)` instead.
|
||
|
"crossterm::style::Stylize",
|
||
|
"crossterm::style::styled_content::StyledContent",
|
||
|
]
|
||
|
|
||
|
disallowed-methods = [
|
||
|
# We use `ahash` instead of the default hasher.
|
||
|
"std::collections::HashSet::new",
|
||
|
"std::collections::HashSet::with_capacity",
|
||
|
# Inefficient. Use `.queue(…)` instead.
|
||
|
"crossterm::style::style",
|
||
|
]
|