1[package]
2name = "theme"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[features]
8test-support = [
9 "gpui/test-support",
10 "fs/test-support",
11 "settings/test-support"
12]
13
14[lib]
15path = "src/theme.rs"
16doctest = false
17
18[dependencies]
19gpui = { path = "../gpui" }
20fs = { path = "../fs" }
21settings = { path = "../settings" }
22util = { path = "../util" }
23
24anyhow.workspace = true
25indexmap = "1.6.2"
26parking_lot.workspace = true
27schemars.workspace = true
28serde.workspace = true
29serde_derive.workspace = true
30serde_json.workspace = true
31toml.workspace = true
32
33[dev-dependencies]
34gpui = { path = "../gpui", features = ["test-support"] }
35fs = { path = "../fs", features = ["test-support"] }
36settings = { path = "../settings", features = ["test-support"] }