mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
We've been considering removing workspace-hack for a couple reasons: - Lukas ran into a situation where its build script seemed to be causing spurious rebuilds. This seems more likely to be a cargo bug than an issue with workspace-hack itself (given that it has an empty build script), but we don't necessarily want to take the time to hunt that down right now. - Marshall mentioned hakari interacts poorly with automated crate updates (in our case provided by rennovate) because you'd need to have `cargo hakari generate && cargo hakari manage-deps` after their changes and we prefer to not have actions that make commits. Currently removing workspace-hack causes our workspace to grow from ~1700 to ~2000 crates being built (depending on platform), which is mainly a problem when you're building the whole workspace or running tests across the the normal and remote binaries (which is where feature-unification nets us the most sharing). It doesn't impact incremental times noticeably when you're just iterating on `-p zed`, and we'll hopefully get these savings back in the future when rust-lang/cargo#14774 (which re-implements the functionality of hakari) is finished. Release Notes: - N/A
42 lines
1.1 KiB
TOML
42 lines
1.1 KiB
TOML
[package]
|
|
name = "storybook"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[[bin]]
|
|
name = "storybook"
|
|
path = "src/storybook.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
clap = { workspace = true, features = ["derive", "string"] }
|
|
collab_ui = { workspace = true, features = ["stories"] }
|
|
ctrlc = "3.4"
|
|
dialoguer = { version = "0.11.0", features = ["fuzzy-select"] }
|
|
editor.workspace = true
|
|
fuzzy.workspace = true
|
|
gpui = { workspace = true, default-features = true }
|
|
indoc.workspace = true
|
|
language.workspace = true
|
|
log.workspace = true
|
|
menu.workspace = true
|
|
picker.workspace = true
|
|
project.workspace = true
|
|
reqwest_client.workspace = true
|
|
rust-embed.workspace = true
|
|
settings.workspace = true
|
|
simplelog.workspace = true
|
|
story.workspace = true
|
|
strum = { workspace = true, features = ["derive"] }
|
|
theme.workspace = true
|
|
title_bar = { workspace = true, features = ["stories"] }
|
|
ui = { workspace = true, features = ["stories"] }
|
|
workspace.workspace = true
|
|
|
|
[dev-dependencies]
|
|
gpui = { workspace = true, features = ["test-support"] }
|