chrono_light/lib.rs
1#![cfg_attr(not(feature = "std"), no_std)]
2
3#[cfg(not(feature = "std"))]
4extern crate alloc;
5mod calendar;
6mod constants;
7mod types;
8mod utils;
9
10pub mod prelude {
11 pub use super::calendar::*;
12 pub use super::types::*;
13}
14
15#[cfg(test)]
16mod tests;
17#[cfg(feature = "std")]
18#[cfg(test)]
19mod tests_props;