zed/crates/ui/Cargo.toml

30 lines
598 B
TOML
Raw Normal View History

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