34 lines
899 B
TOML
34 lines
899 B
TOML
[package]
|
|
name = "ambiligth"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
config = "0.15.21"
|
|
ctrlc = "3.5.2"
|
|
directories = "6.0"
|
|
futures = "0.3"
|
|
oklab = "1.1.2"
|
|
png = "0.17"
|
|
reqwest = { version = "0.13.2", default-features = false, features = ["json"] }
|
|
rgb = "0.8"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.149"
|
|
tokio = { version = "1.50.0", features = ["full"] }
|
|
toml = "0.8"
|
|
|
|
[build-dependencies]
|
|
embed-resource = "2.3"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
grim-rs = "0.1.6"
|
|
libc = "0.2.183"
|
|
tray-item = { version = "0.10.0", features = ["ksni"] }
|
|
reqwest = { version = "0.13.2", default-features = false, features = ["json", "native-tls-vendored"] }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
tray-item = { version = "0.10.0" }
|
|
reqwest = { version = "0.13.2", default-features = false, features = ["json", "native-tls-vendored"] }
|