-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (34 loc) · 935 Bytes
/
Cargo.toml
File metadata and controls
39 lines (34 loc) · 935 Bytes
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
[package]
name = "thinkbook-eink"
version = "0.1.0"
edition = "2021"
authors = ["LizardKing00"]
description = "Linux driver and CLI tools for the Lenovo ThinkBook Plus Gen 1 E-ink lid display"
license = "MIT"
repository = "https://github.com/LizardKing00/thinkbook-eink"
keywords = ["eink", "lenovo", "thinkbook", "it8951", "display"]
readme = "README.md"
[[bin]]
name = "setbackside"
path = "src/bin/setbackside.rs"
[[bin]]
name = "eink-clock"
path = "src/bin/eink-clock.rs"
[[bin]]
name = "eink-info"
path = "src/bin/eink-info.rs"
[[bin]]
name = "eink-server"
path = "src/bin/eink-server.rs"
[dependencies]
anyhow = "1"
image = "0.24"
chrono = "0.4"
imageproc = "0.23"
rusttype = "0.9"
sysinfo = "0.30"
reqwest = { version = "0.11", features = ["blocking", "json", "rustls-tls"], default-features = false }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
rust-it8951 = { path = "../rust-it8951" }