ical 0.11.0

Ical/Vcard parser for Rust
Documentation
[package]
authors = ["Peltoche <dev@halium.fr>"]
categories = ["parsing"]
description = "Ical/Vcard parser for Rust"
documentation = "https://docs.rs/ical"
homepage = "https://github.com/Peltoche/ical-rs"
keywords = ["ical", "vcard", "parser"]
license-file = "./LICENSE"
name = "ical"
readme = "./README.md"
repository = "https://github.com/Peltoche/ical-rs"
version = "0.11.0"

[badges]

[badges.travis-ci]
branch = "master"
repository = "https://travis-ci.org/Peltoche/ical-rs"

[dependencies]
thiserror = "1.0.50"
serde = { version = "1.0.193", features = ["derive"], optional = true }

[features]
default = ["vcard", "ical"]
ical = ["property"]
line = []
property = ["line"]
vcard = ["property"]
serde-derive = ["serde"]
generator = ["ical"]

[lib]
doc = true
name = "ical"
path = "src/lib.rs"
test = true