2023-10-23 08:59:29 +00:00
|
|
|
[package]
|
|
|
|
name = "theme2"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[features]
|
2023-11-21 18:42:00 +00:00
|
|
|
default = []
|
2023-11-09 17:49:16 +00:00
|
|
|
importing-themes = []
|
2023-11-21 18:42:00 +00:00
|
|
|
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
|
2023-11-01 02:23:00 +00:00
|
|
|
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" }
|
2023-11-21 18:42:00 +00:00
|
|
|
story = { path = "../story", optional = true }
|
2023-10-23 08:59:29 +00:00
|
|
|
toml.workspace = true
|
2023-11-07 16:40:07 +00:00
|
|
|
uuid.workspace = true
|
2023-11-01 02:23:00 +00:00
|
|
|
util = { path = "../util" }
|
2023-11-08 02:08:33 +00:00
|
|
|
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"] }
|