1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
#![doc(html_logo_url = "https://cdn.v-sn.io/dateless-logo")]

/*!

# Dateless

Dateless is an events & calendar library for Rust.

## Usage

First, add `dateless` as a dependency in your project's Cargo.toml:

```toml
[dependencies]
dateless = "0.3.1"
```

And then, you can start with creating a calendar:

```rust
use dateless::prelude::*;

fn main() {
    let mut calendar = Calendar::new();
}
```

Now, let's create an `Event` and assign it to the newly created `Calendar` instance. It can be done simply with `EventPartial`:

```rust
use dateless::prelude::*;
use chrono::Utc;

fn main() {
    let mut calendar = Calendar::new();

    let event = EventPartial::new(String::from("Anne's birthday"))
        .whole_day(Utc::today())
        .daily()
        .complete();

    calendar.add_event(event);
}
```

Above, we created a new `Event` called "Anne's birthday" lasting all day today and set it to be recurring every week. In the last line we assigned the event to `calendar`.

Finally, we can check a specific day for occurrences of events.


```rust
use dateless::prelude::*;
use chrono::{Utc, Duration};

fn main() {
    let mut calendar = Calendar::new();

    let event = EventPartial::new(String::from("Anne's birthday"))
        .whole_day(Utc::today())
        .daily()
        .complete();

    calendar.add_event(event);

    let seven_days_later = Utc::today() + Duration::days(7);

    println!("{:#?}", calendar.day(seven_days_later));
}
```

It prints to `stdout`:

```json
[
    EventOccurrence {
        name: "Anne's birthday",
        description: None,
        period: WholeDays(
            2021-05-08Z,
            2021-05-08Z,
        ),
    },
]
```

*/

#[macro_use]
mod codegen;

mod calendar;
mod chrono;
mod event;
pub mod prelude;

#[cfg(test)]
mod test;

#[cfg(feature = "serde_support")]
mod serde;

pub use calendar::Calendar;
pub use event::{Cyclicity, Event, EventOccurrence, EventPartial, Period};