-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (53 loc) · 1.41 KB
/
Copy pathCargo.toml
File metadata and controls
67 lines (53 loc) · 1.41 KB
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
62
63
64
65
66
67
[workspace]
resolver = "2"
members = [
"crates/ht32-panel-hw",
"crates/ht32-panel-daemon",
"crates/ht32-panel-cli",
"crates/ht32-panel-applet",
"crates/ht32-panel-client",
]
[workspace.package]
version = "0.8.1"
edition = "2021"
license = "AGPL-3.0-or-later"
authors = ["Ananth Bhaskararaman <ab@calculon.tech>"]
repository = "https://github.com/ananthb/ht32-panel"
[workspace.dependencies]
# Internal crates
ht32-panel-hw = { version = "0.8.1", path = "crates/ht32-panel-hw" }
ht32-panel-client = { version = "0.8.1", path = "crates/ht32-panel-client" }
# Hardware
# Use libusb backend on Linux to match reference implementation
hidapi = { version = "2", default-features = false, features = ["linux-static-libusb"] }
tokio-serial = "5"
# D-Bus
zbus = { version = "5", default-features = false, features = ["tokio"] }
# System tray
ksni = "0.2"
# Async runtime
tokio = { version = "1", features = ["full"] }
# Web framework
axum = "0.7"
tower-http = { version = "0.5", features = ["cors"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
# CLI
clap = { version = "4", features = ["derive"] }
# HTML templating
askama = "0.15"
# Graphics
image = "0.25"
tiny-skia = "0.11"
fontdue = "0.9"
png = "0.17"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Error handling
thiserror = "1"
anyhow = "1"
# System
libc = "0.2"