1#![crate_name = "rust_calendar"] 2#![crate_type = "lib"] 3 4pub mod calendar; 5pub use calendar::Calendar; 6mod test; 7pub mod options;