zed/crates/theme2/Cargo.toml

37 lines
769 B
TOML
Raw Normal View History

2023-10-23 08:59:29 +00:00
[package]
name = "theme2"
version = "0.1.0"
edition = "2021"
publish = false
[features]
test-support = [
"gpui2/test-support",
"fs/test-support",
"settings2/test-support"
]
[lib]
path = "src/theme2.rs"
doctest = false
[dependencies]
gpui2 = { path = "../gpui2" }
fs = { path = "../fs" }
2023-10-24 14:59:24 +00:00
schemars.workspace = true
2023-10-23 08:59:29 +00:00
settings2 = { path = "../settings2" }
util = { path = "../util" }
anyhow.workspace = true
indexmap = "1.6.2"
parking_lot.workspace = true
serde.workspace = true
serde_derive.workspace = true
serde_json.workspace = true
toml.workspace = true
[dev-dependencies]
gpui2 = { path = "../gpui2", features = ["test-support"] }
fs = { path = "../fs", features = ["test-support"] }
settings2 = { path = "../settings2", features = ["test-support"] }