2021-10-05 12:14:30 +03:00
|
|
|
[package]
|
|
|
|
name = "theme"
|
|
|
|
version = "0.1.0"
|
2022-01-26 23:50:31 +03:00
|
|
|
edition = "2021"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2024-03-05 20:01:17 +03:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2023-05-10 04:14:42 +03:00
|
|
|
[features]
|
2024-01-03 23:41:01 +03:00
|
|
|
default = []
|
2024-02-27 21:41:49 +03:00
|
|
|
stories = ["dep:story"]
|
2024-02-07 20:06:03 +03:00
|
|
|
test-support = ["gpui/test-support", "fs/test-support", "settings/test-support"]
|
2023-05-10 04:14:42 +03:00
|
|
|
|
2021-11-30 22:46:39 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/theme.rs"
|
2022-03-04 03:15:56 +03:00
|
|
|
doctest = false
|
2021-11-30 22:46:39 +03:00
|
|
|
|
2021-10-05 12:14:30 +03:00
|
|
|
[dependencies]
|
2023-04-25 03:41:55 +03:00
|
|
|
anyhow.workspace = true
|
2024-02-07 20:06:03 +03:00
|
|
|
collections.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
color.workspace = true
|
2024-01-30 02:09:37 +03:00
|
|
|
derive_more.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
fs.workspace = true
|
2024-01-30 05:32:45 +03:00
|
|
|
futures.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui.workspace = true
|
2024-01-26 21:42:58 +03:00
|
|
|
indexmap = { version = "1.6.2", features = ["serde"] }
|
2024-02-28 00:29:27 +03:00
|
|
|
palette = { workspace = true, default-features = false, features = ["std"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
parking_lot.workspace = true
|
2024-01-03 23:41:01 +03:00
|
|
|
refineable.workspace = true
|
2024-01-26 21:42:58 +03:00
|
|
|
schemars = { workspace = true, features = ["indexmap"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-01-31 19:05:22 +03:00
|
|
|
serde_json_lenient.workspace = true
|
2024-01-27 06:40:31 +03:00
|
|
|
serde_repr.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
settings.workspace = true
|
|
|
|
story = { workspace = true, optional = true }
|
|
|
|
util.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
uuid.workspace = true
|
2023-05-18 00:44:55 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 22:41:36 +03:00
|
|
|
fs = { workspace = true, features = ["test-support"] }
|
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
settings = { workspace = true, features = ["test-support"] }
|