zed/crates/theme_selector/Cargo.toml

32 lines
743 B
TOML
Raw Normal View History

[package]
name = "theme_selector"
version = "0.1.0"
edition = "2021"
publish = false
license = "GPL-3.0-or-later"
[lib]
path = "src/theme_selector.rs"
doctest = false
[dependencies]
client = { path = "../client" }
editor = { path = "../editor" }
feature_flags = { path = "../feature_flags" }
fs = { path = "../fs" }
fuzzy = { path = "../fuzzy" }
gpui = { path = "../gpui" }
log.workspace = true
parking_lot.workspace = true
picker = { path = "../picker" }
postage.workspace = true
settings = { path = "../settings" }
smol.workspace = true
theme = { path = "../theme" }
ui = { path = "../ui" }
util = { path = "../util" }
workspace = { path = "../workspace" }
2023-05-20 18:54:38 +03:00
[dev-dependencies]
editor = { path = "../editor", features = ["test-support"] }