1[package]
2name = "ui"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8name = "ui"
9path = "src/ui.rs"
10
11[dependencies]
12anyhow.workspace = true
13chrono = "0.4"
14gpui = { path = "../gpui" }
15itertools = { version = "0.11.0", optional = true }
16menu = { path = "../menu"}
17serde.workspace = true
18settings = { path = "../settings" }
19smallvec.workspace = true
20story = { path = "../story", optional = true }
21strum = { version = "0.25.0", features = ["derive"] }
22theme = { path = "../theme" }
23rand = "0.8"
24
25[features]
26default = []
27stories = ["dep:itertools", "dep:story"]