summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 58f8a0d53355ad5ba61b6a93bb01fe7abeac6cf2 (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
[package]
authors = ["Hendrik Sollich <hendrik@hoodie.de>"]
name = "icalendar"
version = "0.7.0"
license = "MIT/Apache-2.0"
edition = "2018"

description = "Early, minimal icalendar crate."
keywords = ["calendar", "ical", "ics"]

documentation = "https://docs.rs/icalendar/"
repository = "https://github.com/hoodie/icalendar-rs"
readme = "README.md"

include = [
  "Cargo.toml",
  "src/*.rs",
]


[dependencies]
chrono = "0.4"
#error-chain = "*"
#vobject = {path="../hub/vobject"}

[dependencies.uuid]
features = ["v4"]
version = "0.8"

[dev-dependencies]
pretty_assertions = "0.6"