zed/crates/theme2/Cargo.toml

43 lines
1.1 KiB
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]
default = []
importing-themes = []
stories = ["dep:itertools", "dep:story"]
2023-10-23 08:59:29 +00:00
test-support = [
2023-11-02 17:55:02 +00:00
"gpui/test-support",
2023-10-23 08:59:29 +00:00
"fs/test-support",
2023-11-02 17:55:02 +00:00
"settings/test-support"
2023-10-23 08:59:29 +00:00
]
[lib]
path = "src/theme2.rs"
doctest = false
[dependencies]
anyhow.workspace = true
2023-11-03 01:30:33 +00:00
fs = { package = "fs2", path = "../fs2" }
2023-11-02 17:55:02 +00:00
gpui = { package = "gpui2", path = "../gpui2" }
2023-10-23 08:59:29 +00:00
indexmap = "1.6.2"
parking_lot.workspace = true
refineable.workspace = true
schemars.workspace = true
2023-10-23 08:59:29 +00:00
serde.workspace = true
serde_derive.workspace = true
serde_json.workspace = true
2023-11-02 17:55:02 +00:00
settings = { package = "settings2", path = "../settings2" }
story = { path = "../story", optional = true }
2023-10-23 08:59:29 +00:00
toml.workspace = true
uuid.workspace = true
util = { path = "../util" }
itertools = { version = "0.11.0", optional = true }
2023-10-23 08:59:29 +00:00
[dev-dependencies]
2023-11-02 17:55:02 +00:00
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
2023-11-03 01:30:33 +00:00
fs = { package = "fs2", path = "../fs2", features = ["test-support"] }
2023-11-02 17:55:02 +00:00
settings = { package = "settings2", path = "../settings2", features = ["test-support"] }