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