mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-10 14:06:11 +03:00
64376ad37a
This PR updates the `ui2` crate to reference the `theme2` and `settings2` crates without the `2` the way we do in our other crates. Release Notes: - N/A
28 lines
656 B
TOML
28 lines
656 B
TOML
[package]
|
|
name = "ui2"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "ui2"
|
|
path = "src/ui2.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
chrono = "0.4"
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
|
itertools = { version = "0.11.0", optional = true }
|
|
menu = { package = "menu2", path = "../menu2"}
|
|
serde.workspace = true
|
|
settings = { package = "settings2", path = "../settings2" }
|
|
smallvec.workspace = true
|
|
story = { path = "../story", optional = true }
|
|
strum = { version = "0.25.0", features = ["derive"] }
|
|
theme = { package = "theme2", path = "../theme2" }
|
|
rand = "0.8"
|
|
|
|
[features]
|
|
default = []
|
|
stories = ["dep:itertools", "dep:story"]
|