[package] name = "desmond" version = "0.1.0" edition = "2018" license = "GPL-3.0-or-later" description = "A Markdown to iCalendar converter." readme = "README.md" repository = "https://gitlab.com/john_t/desmond" keywords = ["calendar", "ical", "markdown", "todo"] categories = ["command-line-utilities", "parsing"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] ics = "0.5" regex = "1" lazy_static = "1" uuid = {version = "0.8", features = ["v4"]} chrono = "0.4" structopt = {version = "0.3", optional = true } [[bin]] name = "des" path = "src/main.rs" required-features = ["structopt"]