rs-calendar/Cargo.toml
Fabrizio Iannetti ab28f9227e many improvements
* latest iced
* read events from ical files (using the  icalendar crate)
* ical files specified on command line (using clap, bit overkill)

Signed-off-by: Fabrizio Iannetti <fabrizio.iannetti@gmail.com>
2023-07-09 18:49:42 +02:00

22 lines
494 B
TOML

[package]
name = "calendar"
version = "0.1.0"
edition = "2021"
[features]
tracing = ["dep:lttng-ust"]
[dependencies]
#iced = "0.4.2"
#iced_native = "0.5.1"
iced = { path = "../iced", features = ["advanced"] }
chrono = "0.4"
lttng-ust = { version = "0.1.0", optional = true }
icalendar = "0.15.4"
directories = "5.0.1"
clap = { version = "4.3.11", features = ["derive"] }
[build-dependencies]
#lttng-ust-generate = "0.1.0"
lttng-ust-generate = { path = "../lttng-ust-rs/lttng-ust-generate" }