diff options
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | README.md | 8 |
2 files changed, 5 insertions, 5 deletions
@@ -2,7 +2,7 @@ name = "rrule" description = "A pure Rust (partial) implementation of recurrence rules as defined in the iCalendar RFC." license = "MIT" -version = "0.3.0" +version = "0.3.1" documentation = "https://docs.rs/rrule" repository = "https://github.com/fmeringdal/rust_rrule" authors = ["Fredrik Meringdal"] @@ -6,7 +6,7 @@ <a href="https://crates.io/crates/rrule"><img src="https://img.shields.io/crates/v/rrule.svg" /></a> </p> -# :zap: Quick start +## :zap: Quick start ```rust extern crate rrule; @@ -20,7 +20,7 @@ let recurrences = rrule.all(); assert_eq!(recurrences.len(), 3); ``` -# Documentation and more examples +## Documentation and more examples [Documentation and more examples](https://docs.rs/rrule) @@ -30,11 +30,11 @@ This project is licensed under the [MIT license]. [mit license]: https://github.com/fmeringdal/rust_rrule/blob/main/LICENSE -# Inspired by +## Inspired by - [python-dateutil library](http://labix.org/python-dateutil/) - [rrule.js](https://github.com/jakubroztocil/rrule) -# Todos +## Todos - cache |