mirror of
https://github.com/zed-industries/zed.git
synced 2026-08-24 08:24:58 +00:00
Follow-up to https://github.com/zed-industries/zed/pull/59604
Build stats changes for `cargo clean && RUSTC_WRAPPER=
CARGO_BUILD_RUSTC_WRAPPER= cargo build --timings -p zed`:
```
===== BASE (441de84) =====
total schedule end: 161.5s units compiled: 1671
crate start dur end
editor 121.3 19.6 140.9
picker 131.6 2.3 133.9
picker_preview (absent)
command_palette 133.8 2.2 136.0
dev_container 133.8 5.4 139.2
onboarding 137.4 2.5 139.8
settings_profile_selector 136.1 1.8 137.8
theme_selector 134.0 2.3 136.3
===== HEAD (PR) =====
total schedule end: 158.5s units compiled: 1672
crate start dur end
editor 120.5 18.4 138.8
picker 119.5 1.7 121.2
picker_preview 131.2 1.7 132.9
command_palette 121.1 1.9 122.9
dev_container 121.0 3.3 124.3
onboarding 121.1 2.2 123.3
settings_profile_selector 121.2 1.7 122.9
theme_selector 121.2 2.0 123.2
```
Release Notes:
- N/A
40 lines
824 B
TOML
40 lines
824 B
TOML
[package]
|
|
name = "picker"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/picker.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = []
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
db.workspace = true
|
|
language.workspace = true
|
|
gpui.workspace = true
|
|
menu.workspace = true
|
|
project.workspace = true
|
|
schemars.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
settings.workspace = true
|
|
theme.workspace = true
|
|
theme_settings.workspace = true
|
|
ui.workspace = true
|
|
ui_input.workspace = true
|
|
workspace.workspace = true
|
|
zed_actions.workspace = true
|
|
util.workspace = true
|
|
|
|
[dev-dependencies]
|
|
editor = { workspace = true, features = ["test-support"] }
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
settings.workspace = true
|