19 lines
446 B
TOML
19 lines
446 B
TOML
[package]
|
|
name = "core"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[[bin]]
|
|
name = "core"
|
|
|
|
[dependencies]
|
|
common = { path = "../common" }
|
|
iced = { workspace = true }
|
|
iced_layershell = { workspace = true }
|
|
tokio = { workspace = true }
|
|
chrono = { workspace = true }
|
|
# Modules
|
|
module_clock = { package = "module-clock", path = "../modules/clock" }
|
|
# Services
|
|
service_datatime = { package = "service-datatime", path = "../services/datatime" }
|