zed/crates/ui/Cargo.toml

29 lines
541 B
TOML
Raw Normal View History

2023-10-06 20:52:05 +00:00
[package]
name = "ui"
2023-10-06 20:52:05 +00:00
version = "0.1.0"
edition = "2021"
publish = false
license = "GPL-3.0-or-later"
[lints]
workspace = true
2023-11-21 05:44:51 +00:00
[lib]
name = "ui"
path = "src/ui.rs"
2023-11-21 05:44:51 +00:00
2023-10-06 20:52:05 +00:00
[dependencies]
chrono.workspace = true
gpui.workspace = true
itertools = { workspace = true, optional = true }
menu.workspace = true
settings.workspace = true
2023-10-06 20:52:05 +00:00
smallvec.workspace = true
story = { workspace = true, optional = true }
2023-10-06 20:52:05 +00:00
strum = { version = "0.25.0", features = ["derive"] }
theme.workspace = true
[features]
default = []
stories = ["dep:itertools", "dep:story"]