Cargo.toml

 1[package]
 2name = "theme"
 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/theme.rs"
19doctest = false
20
21[dependencies]
22anyhow.workspace = true
23fs = { path = "../fs" }
24gpui = { path = "../gpui" }
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 = { path = "../settings" }
33story = { path = "../story", optional = true }
34toml.workspace = true
35uuid.workspace = true
36util = { path = "../util" }
37color = {path = "../color"}
38itertools = { version = "0.11.0", optional = true }
39
40[dev-dependencies]
41gpui = { path = "../gpui", features = ["test-support"] }
42fs = { path = "../fs", features = ["test-support"] }
43settings = { path = "../settings", features = ["test-support"] }