Cargo.toml

 1[package]
 2name = "theme_importer"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 8
 9[dependencies]
10any_ascii = "0.3.2"
11anyhow.workspace = true
12clap = { version = "4.4", features = ["derive"] }
13convert_case = "0.6.0"
14gpui = { package = "gpui2", path = "../gpui2" }
15indexmap = { version = "1.6.2", features = ["serde"] }
16json_comments = "0.2.2"
17log.workspace = true
18palette = { version = "0.7.3", default-features = false, features = ["std"] }
19rust-embed.workspace = true
20serde.workspace = true
21simplelog = "0.9"
22strum = { version = "0.25.0", features = ["derive"] }
23theme = { package = "theme2", path = "../theme2", features = ["importing-themes"] }
24uuid.workspace = true