summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/missing_enforced_import_rename/clippy.toml
blob: 05ba822874d596f86c1acff77e0a9a285bb49d44 (plain)
1
2
3
4
5
6
7
8
9
10
enforced-import-renames = [
    { path = "std::option::Option", rename = "Maybe" },
    { path = "std::process::Child", rename = "Kid" },
    { path = "std::process::exit", rename = "goodbye" },
    { path = "std::collections::BTreeMap", rename = "Map" },
    { path = "std::clone", rename = "foo" },
    { path = "std::thread::sleep", rename = "thread_sleep" },
    { path = "std::any::type_name", rename = "ident" },
    { path = "std::sync::Mutex", rename = "StdMutie" }
]