rs-calendar/Cargo.toml
Fabrizio Iannetti ca0bc137ad debug: add optional tracing via lttng-ust
* new feature `tracing`, enable with `--features tracing`
* draw entry/exit tracepoints

Signed-off-by: Fabrizio Iannetti <fabrizio.iannetti@gmail.com>
2023-01-28 09:30:33 +01:00

18 lines
344 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" }
iced_native = { path = "../iced/native" }
chrono = "0.4"
lttng-ust = { version = "0.1.0", optional = true }
[build-dependencies]
lttng-ust-generate = "0.1.0"