// cargo install paths
pub const CARGO_BIN_DIR: &str = "bin";
// src tui running_targets app_tick
pub const BENCHES_DIR: &str = "benches";
pub const EXAMPLES_DIR: &str = "examples";
pub const SOURCE_DIR: &str = "src";
// src tui running_targets mod
/// Ceiling on the ancestor walk, against parent-link cycles from PID reuse.
/// Real process trees are nowhere near this deep.
pub const ANCESTOR_WALK_CAP: usize = 32;
pub const MIN_HEX_HASH_LEN: usize = 16;