blob: 7e1ea739b5a2199bfc1f4ca10644a8f59ff546e5 (
plain)
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
|
<h1 align="center">RRule.rs</h1>
<p align="center">A pure and efficient Rust implementation (partial) of recurrence rules as defined in the iCalendar RFC..</p>
<p align="center">
<a href="https://travis-ci.com/fmeringdal/rust_rrule"><img src="https://travis-ci.com/fmeringdal/rust_rrule.svg?branch=main" /></a>
<a href="https://codecov.io/gh/fmeringdal/rust_rrule"><img src="https://codecov.io/gh/fmeringdal/rust_rrule/branch/main/graph/badge.svg" /></a>
<a href="https://crates.io/crates/rrule"><img src="https://img.shields.io/crates/v/rrule.svg" /></a>
</p>
# :zap: Quick start
```rust
extern crate rrule;
use rrule::build_rrule;
let mut rrule = build_rrule("DTSTART:20120201T093000Z\nRRULE:FREQ=DAILY;COUNT=3");
// Get all occurrences of the rrule
let occurences = rrule.all();
assert_eq!(occurences.len(), 3);
```
# Documentation and more examples
[Documentation and more examples](https://docs.rs/rrule)
# Inspired by
- [python-dateutil library](http://labix.org/python-dateutil/)
- [rrule.js](https://github.com/jakubroztocil/rrule)
# Todos
- Validations
- tests for minutes and seconds frequencies
- cache
|