1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//! Standard ways to interact with different parts of the tool

#![warn(
    rust_2018_idioms,
    unused,
    rust_2021_compatibility,
    nonstandard_style,
    future_incompatible,
    missing_copy_implementations,
    missing_debug_implementations,
    missing_docs
)]

pub mod console;
pub mod external;
pub mod lints;
pub mod mit;

pub mod relates;
pub mod scope;