diff options
author | Fredrik Meringdal <fmeringdal@hotmail.com> | 2021-01-05 23:04:42 +0100 |
---|---|---|
committer | Fredrik Meringdal <fmeringdal@hotmail.com> | 2021-01-05 23:04:42 +0100 |
commit | 4b12b6328955612dcb4a248a14d64864d9aecdf1 (patch) | |
tree | 5e9913ef8487b318a5213ec3ec8543aabb9989e4 | |
parent | 079ef65aace2d8b6cc1796e61b46224e1d71811a (diff) | |
download | rust_rrule-4b12b6328955612dcb4a248a14d64864d9aecdf1.zip |
expsing a struct
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/lib.rs | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ name = "rrule" description = "A pure Rust implementation of recurrence rules as defined in the iCalendar RFC." license = "MIT" -version = "0.3.7" +version = "0.3.8" documentation = "https://docs.rs/rrule" repository = "https://github.com/fmeringdal/rust_rrule" authors = ["Fredrik Meringdal"] @@ -208,7 +208,7 @@ mod rruleset_iter; mod rrulestr; mod utils; -pub use crate::options::{Frequenzy, Options, ParsedOptions}; +pub use crate::options::{Frequenzy, Options, ParsedOptions, NWeekday}; pub use crate::rrule::RRule; pub use crate::rruleset::RRuleSet; pub use chrono::Weekday; |