16 lines
357 B
TOML
16 lines
357 B
TOML
[package]
|
|
name = "module-clock"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[lib]
|
|
name = "module_clock"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
common = { path = "../../common" }
|
|
service_datetime = { package = "service-datetime", path = "../../services/datetime" }
|
|
iced = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
toml = { workspace = true }
|