zed/crates/ui/Cargo.toml
2024-01-27 13:51:16 +01:00

30 lines
598 B
TOML

[package]
name = "ui"
version = "0.1.0"
edition = "2021"
publish = false
license = "GPL-3.0-or-later"
[lib]
name = "ui"
path = "src/ui.rs"
[dependencies]
anyhow.workspace = true
chrono = "0.4"
gpui = { path = "../gpui" }
itertools = { version = "0.11.0", optional = true }
menu = { path = "../menu"}
serde.workspace = true
settings = { path = "../settings" }
smallvec.workspace = true
story = { path = "../story", optional = true }
strum = { version = "0.25.0", features = ["derive"] }
theme = { path = "../theme" }
rand = "0.8"
[features]
default = []
stories = ["dep:itertools", "dep:story"]