summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFredrik Meringdal <fmeringdal@hotmail.com>2021-01-05 23:04:42 +0100
committerFredrik Meringdal <fmeringdal@hotmail.com>2021-01-05 23:04:42 +0100
commit4b12b6328955612dcb4a248a14d64864d9aecdf1 (patch)
tree5e9913ef8487b318a5213ec3ec8543aabb9989e4
parent079ef65aace2d8b6cc1796e61b46224e1d71811a (diff)
downloadrust_rrule-4b12b6328955612dcb4a248a14d64864d9aecdf1.zip
expsing a struct
-rw-r--r--Cargo.toml2
-rw-r--r--src/lib.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 36f0785..c75429f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"]
diff --git a/src/lib.rs b/src/lib.rs
index ba4aedc..c78b18d 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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;