use RangeInclusive;
// network constants
/// Environment variable name for BRP port
pub const BRP_EXTRAS_PORT_ENV_VAR: &str = "BRP_EXTRAS_PORT";
pub const DEFAULT_BRP_EXTRAS_PORT: u16 = 15702;
/// Leave room for calculations
pub const MAX_VALID_PORT: u16 = 65534;
/// Non-privileged ports start here
pub const MIN_VALID_PORT: u16 = 1024;
pub const VALID_PORT_RANGE: = MIN_VALID_PORT..=MAX_VALID_PORT;
// query constants
pub const COMPONENT_SELECTOR_ALL: &str = "all";