mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-24 21:59:04 +00:00
Self-Review Checklist: - [ ] I've reviewed my own diff for quality, security, and reliability - [ ] Unsafe blocks (if any) have justifying comments - [ ] The content is consistent with the [UI/UX checklist](https://github.com/zed-industries/zed/blob/main/CONTRIBUTING.md#uiux-checklist) - [ ] Tests cover the new/changed behavior - [ ] Performance impact has been considered and is acceptable Closes #ISSUE Release Notes: - N/A
26 lines
614 B
TOML
26 lines
614 B
TOML
[package]
|
|
name = "theme_importer"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
clap = { workspace = true, features = ["derive"] }
|
|
collections.workspace = true
|
|
gpui.workspace = true
|
|
indexmap.workspace = true
|
|
log.workspace = true
|
|
palette.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
serde_json_lenient.workspace = true
|
|
simplelog.workspace= true
|
|
strum = { workspace = true, features = ["derive"] }
|
|
theme.workspace = true
|
|
theme_settings.workspace = true
|
|
vscode_theme = "0.2.0"
|