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