Cargo.toml
1[package]
2name = "theme"
3version = "0.1.0"
4edition = "2021"
5
6[lib]
7path = "src/theme.rs"
8
9[dependencies]
10gpui = { path = "../gpui" }
11anyhow = "1.0.38"
12indexmap = "1.6.2"
13parking_lot = "0.11.1"
14serde = { version = "1", features = ["derive", "rc"] }
15serde_json = { version = "1.0.64", features = ["preserve_order"] }
16serde_path_to_error = "0.1.4"
17toml = "0.5"