cargo-mend 0.16.1

Opinionated visibility auditing for Rust crates and workspaces
1
2
3
4
5
6
7
// cargo target kinds
pub(crate) const CARGO_TARGET_KIND_BENCH: &str = "bench";
pub(crate) const CARGO_TARGET_KIND_BIN: &str = "bin";
pub(crate) const CARGO_TARGET_KIND_EXAMPLE: &str = "example";
pub(crate) const CARGO_TARGET_KIND_LIB: &str = "lib";
pub(crate) const CARGO_TARGET_KIND_MAIN: &str = "main";
pub(crate) const CARGO_TARGET_KIND_TEST: &str = "test";