zed/crates/theme/Cargo.toml

43 lines
981 B
TOML
Raw Normal View History

2021-10-05 09:14:30 +00:00
[package]
name = "theme"
version = "0.1.0"
edition = "2021"
publish = false
2021-10-05 09:14:30 +00:00
[features]
default = []
importing-themes = []
stories = ["dep:itertools", "dep:story"]
test-support = [
"gpui/test-support",
"fs/test-support",
"settings/test-support"
]
[lib]
path = "src/theme.rs"
doctest = false
2021-10-05 09:14:30 +00:00
[dependencies]
anyhow.workspace = true
fs = { path = "../fs" }
gpui = { path = "../gpui" }
2021-10-05 09:14:30 +00:00
indexmap = "1.6.2"
parking_lot.workspace = true
refineable.workspace = true
schemars.workspace = true
serde.workspace = true
serde_derive.workspace = true
serde_json.workspace = true
settings = { path = "../settings" }
story = { path = "../story", optional = true }
toml.workspace = true
uuid.workspace = true
util = { path = "../util" }
itertools = { version = "0.11.0", optional = true }
[dev-dependencies]
gpui = { path = "../gpui", features = ["test-support"] }
fs = { path = "../fs", features = ["test-support"] }
settings = { path = "../settings", features = ["test-support"] }