Cargo.toml

 1[package]
 2name = "theme"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[features]
 8test-support = ["gpui/test-support"]
 9
10[lib]
11path = "src/theme.rs"
12doctest = false
13
14[dependencies]
15gpui = { path = "../gpui" }
16anyhow.workspace = true
17indexmap = "1.6.2"
18parking_lot.workspace = true
19serde.workspace = true
20serde_derive.workspace = true
21serde_json.workspace = true
22toml = "0.5"