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 = "1.0.38"
14indexmap = "1.6.2"
15parking_lot = "0.11.1"
16serde = { workspace = true }
17serde_derive = { workspace = true }
18serde_json = { workspace = true }
19serde_path_to_error = "0.1.4"
20toml = "0.5"