2023-10-06 20:52:05 +00:00
|
|
|
[package]
|
|
|
|
name = "ui2"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow.workspace = true
|
|
|
|
chrono = "0.4"
|
2023-10-21 14:01:47 +00:00
|
|
|
gpui2 = { path = "../gpui2" }
|
2023-10-10 19:52:58 +00:00
|
|
|
itertools = { version = "0.11.0", optional = true }
|
2023-10-06 20:52:05 +00:00
|
|
|
serde.workspace = true
|
|
|
|
settings = { path = "../settings" }
|
|
|
|
smallvec.workspace = true
|
|
|
|
strum = { version = "0.25.0", features = ["derive"] }
|
|
|
|
theme = { path = "../theme" }
|
2023-10-25 13:50:50 +00:00
|
|
|
theme2 = { path = "../theme2" }
|
2023-10-06 20:52:05 +00:00
|
|
|
rand = "0.8"
|
2023-10-10 19:30:16 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["stories"]
|
2023-10-10 19:52:58 +00:00
|
|
|
stories = ["dep:itertools"]
|