mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-05 23:51:08 +00:00
29 lines
924 B
TOML
29 lines
924 B
TOML
[package]
|
|
name = "theme_selector2"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/theme_selector.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
editor = { package = "editor2", path = "../editor2" }
|
|
fuzzy = { package = "fuzzy2", path = "../fuzzy2" }
|
|
fs = { package = "fs2", path = "../fs2" }
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
|
ui = { package = "ui2", path = "../ui2" }
|
|
picker = { package = "picker2", path = "../picker2" }
|
|
theme = { package = "theme2", path = "../theme2" }
|
|
settings = { package = "settings2", path = "../settings2" }
|
|
feature_flags = { package = "feature_flags2", path = "../feature_flags2" }
|
|
workspace = { package = "workspace2", path = "../workspace2" }
|
|
util = { path = "../util" }
|
|
log.workspace = true
|
|
parking_lot.workspace = true
|
|
postage.workspace = true
|
|
smol.workspace = true
|
|
|
|
[dev-dependencies]
|
|
editor = { package = "editor2", path = "../editor2", features = ["test-support"] }
|