use env;
/// Represents supported CPU architectures.
/// Using an enum provides type safety across the library.
/// Detects the CPU architecture at compile-time/runtime using standard constants.
///
/// WHY: We use `std::env::consts::ARCH` as it is the most reliable way
/// to get the target architecture without external dependencies in v0.1.