summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 0cd15d4f20cb6f88dade6db685a4a973502ed977 (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
37
38
[package]
authors = ["Hendrik Sollich <hendrik@hoodie.de>"]
name = "icalendar"
version = "0.7.1"
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"

[dependencies.libical]
git = "https://github.com/matthiasbeyer/libical"
optional = true

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

[dev-dependencies]
pretty_assertions = "0.6"


[features]
default = []
parser = ["libical"]