mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 15:44:31 +03:00
f5ba22659b
Co-authored-by: Mikayla <mikayla@zed.dev>
28 lines
568 B
TOML
28 lines
568 B
TOML
[package]
|
|
name = "ui"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[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"]
|