mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-09 21:26:14 +03:00
cb8c534dac
This PR updates the `theme_importer` with support for parsing theme files containing comments. Up until now we've been manually removing comments from the VS Code theme files. Release Notes: - N/A
22 lines
587 B
TOML
22 lines
587 B
TOML
[package]
|
|
name = "theme_importer"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
convert_case = "0.6.0"
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
|
indexmap = "1.6.2"
|
|
json_comments = "0.2.2"
|
|
log.workspace = true
|
|
rust-embed.workspace = true
|
|
serde.workspace = true
|
|
simplelog = "0.9"
|
|
strum = { version = "0.25.0", features = ["derive"] }
|
|
theme = { package = "theme2", path = "../theme2", features = ["importing-themes"] }
|
|
uuid.workspace = true
|