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" }
13fs = { path = "../fs" }
14anyhow.workspace = true
15indexmap = "1.6.2"
16parking_lot.workspace = true
17serde.workspace = true
18serde_derive.workspace = true
19serde_json.workspace = true
20toml = "0.5"