2022-07-11 09:41:18 +03:00
|
|
|
[package]
|
|
|
|
name = "color-funcs"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0"
|
|
|
|
config = { path = "../../config" }
|
|
|
|
csscolorparser = {version="0.6", features=["lab"]}
|
2022-07-11 21:03:06 +03:00
|
|
|
deltae = "0.3"
|
2023-07-16 08:07:49 +03:00
|
|
|
image = "0.24.6"
|
2022-07-11 21:03:06 +03:00
|
|
|
lazy_static = "1.4"
|
|
|
|
log = "0.4"
|
|
|
|
lru = "0.7"
|
2022-07-11 09:41:18 +03:00
|
|
|
luahelper = { path = "../../luahelper" }
|
2022-07-14 09:56:45 +03:00
|
|
|
plist = "1.3"
|
2022-07-14 07:29:51 +03:00
|
|
|
serde = {version="1.0", features=["derive"]}
|
|
|
|
serde_json = "1.0"
|
2022-08-01 06:37:19 +03:00
|
|
|
serde_yaml = "0.9"
|
2022-07-11 21:03:06 +03:00
|
|
|
wezterm-dynamic = { path = "../../wezterm-dynamic" }
|
2022-07-15 07:41:39 +03:00
|
|
|
wezterm-term = { path = "../../term", features=["use_serde"] }
|