Cargo.toml

 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]
19gpui2 = { path = "../gpui2" }
20fs = { path = "../fs" }
21schemars.workspace = true
22settings2 = { path = "../settings2" }
23util = { path = "../util" }
24
25anyhow.workspace = true
26indexmap = "1.6.2"
27parking_lot.workspace = true
28serde.workspace = true
29serde_derive.workspace = true
30serde_json.workspace = true
31toml.workspace = true
32
33[dev-dependencies]
34gpui2 = { path = "../gpui2", features = ["test-support"] }
35fs = { path = "../fs", features = ["test-support"] }
36settings2 = { path = "../settings2", features = ["test-support"] }