// cargo target kinds
pub const CARGO_TARGET_KIND_BENCH: &str = "bench";
pub const CARGO_TARGET_KIND_BIN: &str = "bin";
pub const CARGO_TARGET_KIND_EXAMPLE: &str = "example";
pub const CARGO_TARGET_KIND_LIB: &str = "lib";
pub const CARGO_TARGET_KIND_MAIN: &str = "main";
pub const CARGO_TARGET_KIND_TEST: &str = "test";