-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
67 lines (63 loc) · 1.55 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
62
63
64
65
66
67
[workspace]
resolver = "2"
members = [
"apps/mark-scan/accessible-controller",
"apps/mark-scan/fai-100-controller",
"apps/mark-scan/daemon-utils",
"apps/mark-scan/pat-device-input",
"libs/ballot-interpreter",
"libs/logging",
"libs/pdi-scanner",
"libs/types-rs",
]
[workspace.package]
license = "GPL-3.0-only"
license-file = "LICENSE"
[workspace.dependencies]
ab_glyph = "0.2.23"
anyhow = "1.0.75"
base64 = "0.22.0"
bitter = "0.6.1"
chrono = "0.4.31"
clap = { version = "4.0.29", features = ["cargo", "derive", "env"] }
color-eyre = "0.6.2"
crc16 = "0.4.0"
crossterm = "0.27.0"
csv = "1.3.0"
ctrlc = "3.4.2"
hex = "0.4.3"
image = "0.25.0"
imageproc = "0.24.0"
itertools = "0.12.1"
libc = "0.2.153"
log = "0.4.17"
vx-logging = { path = "libs/logging" }
daemon-utils = { path = "apps/mark-scan/daemon-utils" }
neon = { version = "1.0.0", default-features = false, features = ["napi-6"] }
neon-serde3 = "0.10.0"
nom = "7.1.3"
num_enum = "0.7.1"
pretty_env_logger = "0.5.0"
proptest = "1.0.0"
psutil = "3.3.0"
rand = "0.8.5"
rayon = "1.5.3"
rqrr = "0.7.1"
rusb = "0.9.3"
serde = { version = "1.0.150", features = ["derive"] }
serde_json = "1.0.89"
serialport = "4.2.2"
tempfile = "3.3.0"
thiserror = "1.0.50"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
types-rs = { path = "libs/types-rs" }
uinput = "0.1.3"
users = "0.11.0"
zbar-rust = "0.0.23"
[workspace.lints.rust]
dead_code = "deny"
[workspace.lints.clippy]
pedantic = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
unwrap_used = "deny"