mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-12 19:11:23 +03:00
22 lines
455 B
TOML
22 lines
455 B
TOML
[package]
|
|
name = "ui2"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
chrono = "0.4"
|
|
gpui2 = { path = "../gpui2" }
|
|
itertools = { version = "0.11.0", optional = true }
|
|
serde.workspace = true
|
|
settings = { path = "../settings" }
|
|
smallvec.workspace = true
|
|
strum = { version = "0.25.0", features = ["derive"] }
|
|
theme = { path = "../theme" }
|
|
rand = "0.8"
|
|
|
|
[features]
|
|
default = ["stories"]
|
|
stories = ["dep:itertools"]
|