Cargo.toml

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