mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-17 15:53:13 +00:00
31336b0b7d
This cuts down LLVM IR size from 3 million lines to 700k in debug build. This then leads to ~3s compile time in debug build (without incremental on ui itself), as opposed to 10.5s on main.
22 lines
515 B
TOML
22 lines
515 B
TOML
[package]
|
|
name = "ui2"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[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
|
|
settings2 = { path = "../settings2" }
|
|
smallvec.workspace = true
|
|
strum = { version = "0.25.0", features = ["derive"] }
|
|
theme2 = { path = "../theme2" }
|
|
rand = "0.8"
|
|
|
|
[features]
|
|
default = []
|
|
stories = ["dep:itertools"]
|