17 lines
323 B
TOML
17 lines
323 B
TOML
[package]
|
|
name = "common"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[lib]
|
|
name = "common"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
iced = { workspace = true }
|
|
iced_layershell = { workspace = true }
|
|
toml = { workspace = true }
|
|
serde = { workspace = true }
|
|
chrono = { workspace = true }
|
|
serde_json = { workspace = true }
|