1[package]
2name = "theme2"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[features]
8default = []
9importing-themes = []
10stories = ["dep:itertools", "dep:story"]
11test-support = [
12 "gpui/test-support",
13 "fs/test-support",
14 "settings/test-support"
15]
16
17[lib]
18path = "src/theme2.rs"
19doctest = false
20
21[dependencies]
22anyhow.workspace = true
23fs = { package = "fs2", path = "../fs2" }
24gpui = { package = "gpui2", path = "../gpui2" }
25indexmap = "1.6.2"
26parking_lot.workspace = true
27refineable.workspace = true
28schemars.workspace = true
29serde.workspace = true
30serde_derive.workspace = true
31serde_json.workspace = true
32settings = { package = "settings2", path = "../settings2" }
33story = { path = "../story", optional = true }
34toml.workspace = true
35uuid.workspace = true
36util = { path = "../util" }
37itertools = { version = "0.11.0", optional = true }
38
39[dev-dependencies]
40gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
41fs = { package = "fs2", path = "../fs2", features = ["test-support"] }
42settings = { package = "settings2", path = "../settings2", features = ["test-support"] }