Cargo.toml

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