-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
61 lines (57 loc) · 1.47 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "tacd"
version = "0.2.0"
authors = ["Jan Luebbe <[email protected]>", "Leonard Göhrs <[email protected]>"]
edition = "2018"
repository = "https://github.com/linux-automation/tacd.git"
license = "GPL-2.0-only"
[build-dependencies]
chrono = "0.4"
serde_json = "1.0"
serde_yaml = "0.9"
[dependencies]
anyhow = "1.0"
async-sse = "5.1"
async-std = { version = "1.12", features = ["attributes"] }
async-trait = "0.1"
async-tungstenite = "0.22"
base64 = "0.21"
chrono = "0.4"
embedded-graphics = "0.7"
env_logger = "0.10"
evdev = "=0.12"
framebuffer = "0.3"
futures = "0.3"
futures-lite = "1.12"
futures-util = "0.3"
gpio-cdev = "0.5"
html-escape = "0.2"
industrial-io = { version = "0.5", default-features = false }
log = { version = "0.4", features = ["release_max_level_warn"]}
mqtt-protocol = "0.11"
nix = "0.26"
numtoa = "0.2.3"
png = "0.17"
rand = { version = "0.8", optional = true}
serde_json = "1.0"
serde_repr = "0.1"
serde_yaml = "0.9"
serde = { version = "1.0", features = ["derive"] }
sha-1 = "0.10"
surf = { version = "2.3", default-features = false, features = ["h1-client-no-tls"] }
sysfs-class = "0.1"
systemd = { version = "0.10", optional = true}
thread-priority = "0.13"
tide = "0.16"
unique-token = "0.2"
zbus = "3.11"
zvariant_derive = "3.12"
zvariant = { version = "3.12", default-features = false, features = ["enumflags2"] }
[features]
default = ["systemd"]
demo_mode = ["rand"]
[profile.release]
lto = true
overflow-checks = true
opt-level = "z"
codegen-units = 1