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