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
|
2024-01-27 12:51:16 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 16:40:30 +00:00
|
|
|
|
2023-05-10 01:14:42 +00:00
|
|
|
[features]
|
2024-01-03 20:41:01 +00:00
|
|
|
default = []
|
|
|
|
stories = ["dep:itertools", "dep:story"]
|
2024-02-07 17:06:03 +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]
|
2023-04-25 00:41:55 +00:00
|
|
|
anyhow.workspace = true
|
2024-02-07 17:06:03 +00:00
|
|
|
collections.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
color.workspace = true
|
2024-01-29 23:09:37 +00:00
|
|
|
derive_more.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
fs.workspace = true
|
2024-01-30 02:32:45 +00:00
|
|
|
futures.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
gpui.workspace = true
|
2024-01-26 18:42:58 +00:00
|
|
|
indexmap = { version = "1.6.2", features = ["serde"] }
|
2024-01-31 02:41:29 +00:00
|
|
|
itertools = { version = "0.11.0", optional = true }
|
2024-01-26 18:42:58 +00:00
|
|
|
palette = { version = "0.7.3", default-features = false, features = ["std"] }
|
2023-04-25 00:41:55 +00:00
|
|
|
parking_lot.workspace = true
|
2024-01-03 20:41:01 +00:00
|
|
|
refineable.workspace = true
|
2024-01-26 18:42:58 +00:00
|
|
|
schemars = { workspace = true, features = ["indexmap"] }
|
2023-04-25 00:41:55 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-01-31 16:05:22 +00:00
|
|
|
serde_json_lenient.workspace = true
|
2024-01-27 03:40:31 +00:00
|
|
|
serde_repr.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
settings.workspace = true
|
|
|
|
story = { workspace = true, optional = true }
|
2023-05-17 00:45:04 +00:00
|
|
|
toml.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
util.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
uuid.workspace = true
|
2023-05-17 21:44:55 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 19:41:36 +00:00
|
|
|
fs = { workspace = true, features = ["test-support"] }
|
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
settings = { workspace = true, features = ["test-support"] }
|