2021-10-05 09:14:30 +00:00
|
|
|
[package]
|
|
|
|
name = "theme"
|
|
|
|
version = "0.1.0"
|
2022-01-26 20:50:31 +00:00
|
|
|
edition = "2021"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2021-10-05 09:14:30 +00:00
|
|
|
|
2023-05-10 01:14:42 +00:00
|
|
|
[features]
|
2023-05-17 21:44:55 +00:00
|
|
|
test-support = [
|
|
|
|
"gpui/test-support",
|
|
|
|
"fs/test-support",
|
|
|
|
"settings/test-support"
|
|
|
|
]
|
2023-05-10 01:14:42 +00:00
|
|
|
|
2021-11-30 19:46:39 +00:00
|
|
|
[lib]
|
|
|
|
path = "src/theme.rs"
|
2022-03-04 00:15:56 +00:00
|
|
|
doctest = false
|
2021-11-30 19:46:39 +00:00
|
|
|
|
2021-10-05 09:14:30 +00:00
|
|
|
[dependencies]
|
|
|
|
gpui = { path = "../gpui" }
|
2023-05-13 09:26:45 +00:00
|
|
|
fs = { path = "../fs" }
|
2023-05-17 21:44:55 +00:00
|
|
|
settings = { path = "../settings" }
|
|
|
|
util = { path = "../util" }
|
|
|
|
|
2023-04-25 00:41:55 +00:00
|
|
|
anyhow.workspace = true
|
2021-10-05 09:14:30 +00:00
|
|
|
indexmap = "1.6.2"
|
2023-04-25 00:41:55 +00:00
|
|
|
parking_lot.workspace = true
|
2023-05-17 21:44:55 +00:00
|
|
|
schemars.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
serde_json.workspace = true
|
2023-05-17 00:45:04 +00:00
|
|
|
toml.workspace = true
|
2023-05-17 21:44:55 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
|
|
fs = { path = "../fs", features = ["test-support"] }
|
|
|
|
settings = { path = "../settings", features = ["test-support"] }
|