diff options
author | Fredrik Meringdal <fmeringdal@hotmail.com> | 2020-10-25 01:38:42 +0200 |
---|---|---|
committer | Fredrik Meringdal <fmeringdal@hotmail.com> | 2020-10-25 01:38:42 +0200 |
commit | 7c1d074fe07e84ee19b30b39dabe1ebbf16a077a (patch) | |
tree | 44f6c8c04f60ba36069f30d206bfd5ee2cecfaec | |
parent | 6acba0e4ee286a6412261a89ad15db01717ac8bc (diff) | |
download | rust_rrule-7c1d074fe07e84ee19b30b39dabe1ebbf16a077a.zip |
cargo.toml
-rw-r--r-- | Cargo.toml | 9 | ||||
-rw-r--r-- | README.md | 2 |
2 files changed, 7 insertions, 4 deletions
@@ -1,11 +1,14 @@ [package] name = "rrule" -description = "Partial implementation of the ical specs" +description = "A pure Rust (partial) implementation of recurrence rules as defined in the iCalendar RFC." license = "MIT" -version = "0.1.0" -authors = ["Fredrik Meringdal <fmeringdal@hotmail.com>"] +version = "0.2.0" +authors = ["Fredrik Meringdal"] edition = "2018" +keywords = ["calendar", "rrule", "ical"] +categories = ["Date and time"] + [dependencies] chrono = "0.4.19" chrono-tz = "0.5.3" @@ -4,7 +4,7 @@ [![codecov](https://codecov.io/gh/fmeringdal/rust_rrule/branch/main/graph/badge.svg)](https://codecov.io/gh/fmeringdal/rust_rrule) [![crates.io](https://img.shields.io/crates/v/rrule.svg)](https://crates.io/crates/rrule) -A pure Rust partial implementation of recurrence rules as defined in the iCalendar RFC. +A pure Rust (partial) implementation of recurrence rules as defined in the iCalendar RFC. # Usage |