2023-10-06 20:52:05 +00:00
|
|
|
[package]
|
|
|
|
name = "ui2"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
2023-11-21 05:44:51 +00:00
|
|
|
[lib]
|
|
|
|
name = "ui2"
|
|
|
|
path = "src/ui2.rs"
|
|
|
|
|
2023-10-06 20:52:05 +00:00
|
|
|
[dependencies]
|
|
|
|
anyhow.workspace = true
|
|
|
|
chrono = "0.4"
|
2023-11-06 18:46:10 +00:00
|
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
2023-10-10 19:52:58 +00:00
|
|
|
itertools = { version = "0.11.0", optional = true }
|
2023-11-16 13:13:04 +00:00
|
|
|
menu = { package = "menu2", path = "../menu2"}
|
2023-10-06 20:52:05 +00:00
|
|
|
serde.workspace = true
|
2023-11-28 20:30:29 +00:00
|
|
|
settings = { package = "settings2", path = "../settings2" }
|
2023-10-06 20:52:05 +00:00
|
|
|
smallvec.workspace = true
|
2023-11-21 18:42:00 +00:00
|
|
|
story = { path = "../story", optional = true }
|
2023-10-06 20:52:05 +00:00
|
|
|
strum = { version = "0.25.0", features = ["derive"] }
|
2023-11-28 20:30:29 +00:00
|
|
|
theme = { package = "theme2", path = "../theme2" }
|
2023-10-06 20:52:05 +00:00
|
|
|
rand = "0.8"
|
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"]
|