mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
37 lines
757 B
TOML
37 lines
757 B
TOML
[package]
|
|
name = "theme"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[features]
|
|
test-support = [
|
|
"gpui/test-support",
|
|
"fs/test-support",
|
|
"settings/test-support"
|
|
]
|
|
|
|
[lib]
|
|
path = "src/theme.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
gpui = { path = "../gpui" }
|
|
fs = { path = "../fs" }
|
|
settings = { path = "../settings" }
|
|
util = { path = "../util" }
|
|
|
|
anyhow.workspace = true
|
|
indexmap = "1.6.2"
|
|
parking_lot.workspace = true
|
|
schemars.workspace = true
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
serde_json.workspace = true
|
|
toml.workspace = true
|
|
|
|
[dev-dependencies]
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
fs = { path = "../fs", features = ["test-support"] }
|
|
settings = { path = "../settings", features = ["test-support"] }
|