14 lines
296 B
TOML
14 lines
296 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_datatime = { package = "service-datatime", path = "../../services/datatime" }
|
|
iced = { workspace = true }
|