2022-08-02 08:04:48 +02:00
|
|
|
[package]
|
|
|
|
name = "calendar"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
2023-01-28 09:30:33 +01:00
|
|
|
[features]
|
|
|
|
tracing = ["dep:lttng-ust"]
|
2022-08-02 08:04:48 +02:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
#iced = "0.4.2"
|
|
|
|
#iced_native = "0.5.1"
|
2023-05-21 13:41:16 +02:00
|
|
|
iced = { path = "../iced", features = ["advanced"] }
|
2024-04-27 09:40:47 +02:00
|
|
|
iced_aw = { path = "../iced_aw", default-features = false, features = ["segmented_button", "tab_bar", "icons"] }
|
2024-04-28 13:03:57 +02:00
|
|
|
chrono = { version = "0.4", features = ["unstable-locales"] }
|
2023-01-28 09:30:33 +01:00
|
|
|
lttng-ust = { version = "0.1.0", optional = true }
|
2023-07-09 18:49:42 +02:00
|
|
|
icalendar = "0.15.4"
|
|
|
|
directories = "5.0.1"
|
|
|
|
clap = { version = "4.3.11", features = ["derive"] }
|
2024-01-28 10:20:02 +01:00
|
|
|
log = { version = "0.4", features = ["std", "serde"] }
|
|
|
|
simplelog = { version = "^0.12.0", default-features = false }
|
2023-01-28 09:30:33 +01:00
|
|
|
|
|
|
|
[build-dependencies]
|
2023-07-09 18:49:42 +02:00
|
|
|
#lttng-ust-generate = "0.1.0"
|
|
|
|
lttng-ust-generate = { path = "../lttng-ust-rs/lttng-ust-generate" }
|