2023-10-06 23:52:05 +03:00
|
|
|
[package]
|
2024-01-03 23:33:51 +03:00
|
|
|
name = "ui"
|
2023-10-06 23:52:05 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2023-11-21 08:44:51 +03:00
|
|
|
[lib]
|
2024-01-03 23:33:51 +03:00
|
|
|
name = "ui"
|
|
|
|
path = "src/ui.rs"
|
2023-11-21 08:44:51 +03:00
|
|
|
|
2023-10-06 23:52:05 +03:00
|
|
|
[dependencies]
|
|
|
|
anyhow.workspace = true
|
2024-02-26 02:52:59 +03:00
|
|
|
chrono.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui.workspace = true
|
2023-10-10 22:52:58 +03:00
|
|
|
itertools = { version = "0.11.0", optional = true }
|
2024-02-06 22:41:36 +03:00
|
|
|
menu.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
rand = "0.8"
|
2023-10-06 23:52:05 +03:00
|
|
|
serde.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
settings.workspace = true
|
2023-10-06 23:52:05 +03:00
|
|
|
smallvec.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
story = { workspace = true, optional = true }
|
2023-10-06 23:52:05 +03:00
|
|
|
strum = { version = "0.25.0", features = ["derive"] }
|
2024-02-06 22:41:36 +03:00
|
|
|
theme.workspace = true
|
2023-10-10 22:30:16 +03:00
|
|
|
|
|
|
|
[features]
|
2023-11-19 13:41:29 +03:00
|
|
|
default = []
|
2023-11-21 21:42:00 +03:00
|
|
|
stories = ["dep:itertools", "dep:story"]
|