unitx_core/
lib.rs

1pub mod currency;
2pub mod distance;
3pub mod error;
4pub mod providers;
5pub mod temperature;
6pub mod validation;
7
8pub use error::UnitxError;
9
10pub fn version() -> &'static str {
11    env!("CARGO_PKG_VERSION")
12}