mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-23 21:05:08 +00:00
Remove the standalone storybook binary and the story crate, as component previews are now handled by the component_preview crate. Also removes the stories features from the ui and title_bar crates. Release Notes: - N/A or Added/Fixed/Improved ...
36 lines
833 B
TOML
36 lines
833 B
TOML
[package]
|
|
name = "theme"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
test-support = ["gpui/test-support", "syntax_theme/test-support"]
|
|
|
|
[lib]
|
|
path = "src/theme.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
collections.workspace = true
|
|
gpui.workspace = true
|
|
syntax_theme.workspace = true
|
|
palette = { workspace = true, default-features = false, features = ["std"] }
|
|
parking_lot.workspace = true
|
|
refineable.workspace = true
|
|
schemars = { workspace = true, features = ["indexmap2"] }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
serde_json_lenient.workspace = true
|
|
strum.workspace = true
|
|
thiserror.workspace = true
|
|
uuid.workspace = true
|
|
|
|
[dev-dependencies]
|
|
gpui = { workspace = true, features = ["test-support"] }
|