-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (32 loc) · 853 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "dlux"
version = "0.3.0"
authors = ["Billy J Rhoades II <[email protected]>"]
description = "dlux adjusts hardware monitor brightness to match the sunset"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
structopt = "0.3"
clap = { version = "2.33.3", default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
serde_regex = "1.1"
regex = "1.9"
tokio = { version = "1", features = ["full"] }
futures = "0.3"
log = "0.4"
env_logger = "0.10"
anyhow = "1.0"
chrono = "0.4"
sun-times = "0.2"
humantime = "2.0.1"
ddc-i2c = { version = "0.2", features = ["with-linux-enumerate"] }
i2c-linux = "0.1"
ddc = "0.2"
nix = "0.26"
adaptive_backoff = "0.2"
[lib]
name = "lib"
path = "src/lib/lib.rs"
[profile.release]
lto = true