[package]
edition = "2021"
name = "vobject"
version = "0.9.0"
authors = ["Markus Unterwaditzer <markus@unterwaditzer.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple VObject parsing library."
homepage = "http://rust-vobject.unterwaditzer.net/"
documentation = "http://rust-vobject.unterwaditzer.net/"
readme = "README.md"
keywords = [
"vobject",
"icalendar",
"calendar",
"contacts",
]
license = "MIT"
repository = "https://github.com/untitaker/rust-vobject"
[features]
default = []
timeconversions = ["chrono"]
[lib]
name = "vobject"
path = "src/lib.rs"
[[test]]
name = "lib"
path = "tests/lib.rs"
[dependencies.chrono]
version = "0.4"
optional = true
[dependencies.thiserror]
version = "1.0"