1//! Cyclic Redundancy Check (CRC) 2#[cfg_attr(crc_v1, path = "v1.rs")] 3#[cfg_attr(crc_v2, path = "v2v3.rs")] 4#[cfg_attr(crc_v3, path = "v2v3.rs")] 5mod _version; 6 7pub use _version::*;