mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
05003ed4c5
This PR hoists `strum` up to a workspace dependency. Release Notes: - N/A
33 lines
625 B
TOML
33 lines
625 B
TOML
[package]
|
|
name = "ui"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
name = "ui"
|
|
path = "src/ui.rs"
|
|
|
|
[dependencies]
|
|
chrono.workspace = true
|
|
gpui.workspace = true
|
|
itertools = { workspace = true, optional = true }
|
|
menu.workspace = true
|
|
serde.workspace = true
|
|
settings.workspace = true
|
|
smallvec.workspace = true
|
|
story = { workspace = true, optional = true }
|
|
strum = { workspace = true, features = ["derive"] }
|
|
theme.workspace = true
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
stories = ["dep:itertools", "dep:story"]
|