1 2 3 4 5 6 7 8 9 10 11 12 13 14
pub mod components; /// The current version of the crate. pub const VERSION: &str = env!("CARGO_PKG_VERSION"); #[cfg(test)] mod tests { use super::*; #[test] fn test_version() { assert!(!VERSION.is_empty()); } }