1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#![cfg_attr(not(feature = "std"), no_std)]

#[cfg(not(feature = "std"))]
extern crate alloc;
mod calendar;
mod constants;
mod types;
mod utils;

pub mod prelude {
    pub use super::calendar::*;
    pub use super::types::*;
}

#[cfg(test)]
mod tests;
#[cfg(feature = "std")]
#[cfg(test)]
mod tests_props;