-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
100 lines (98 loc) · 2.57 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[workspace]
resolver = "2"
members = [
"apps/cacvote-jx-terminal/backend",
"apps/cacvote-server/backend",
"libs/auth-rs",
"libs/cacvote-server-client",
"libs/electionguard",
"libs/electionguard-rs",
"libs/logging",
"libs/tlv",
"libs/tlv-derive",
"libs/types-rs",
]
[workspace.dependencies]
async-stream = "0.3.5"
auth-rs = { path = "libs/auth-rs" }
axum = { version = "0.7.5" }
axum-extra = { version = "0.9.3", features = ["typed-header"] }
base64 = "0.21.4"
base64-serde = "0.7.0"
bitstream-io = "1.7.0"
bitter = "0.6.1"
cacvote-server = { path = "apps/cacvote-server/backend" }
cacvote-server-client = { path = "libs/cacvote-server-client" }
clap = { version = "4.3.23", features = ["cargo", "derive", "env"] }
color-eyre = "0.6.2"
crc16 = "0.4.0"
ctrlc = "3.4.2"
dotenvy = "0.15.7"
electionguard-rs = { path = "libs/electionguard-rs" }
env_logger = "0.10.0"
futures = "0.3.28"
futures-core = "0.3.28"
hex = "0.4.3"
hmac-sha256 = "1.1.7"
image = { version = "0.24.6", default-features = false, features = ["jpeg"] }
imageproc = "0.23.0"
itertools = "0.10.5"
vx-logging = { path = "libs/logging" }
js-sys = "0.3.64"
lazy_static = "1.4.0"
log = "0.4.19"
logging_timer = "1.1.0"
mockall = "0.12.1"
nanoid = "0.4.0"
napi = { version = "2.12.2", default-features = false, features = [
"napi6",
"serde-json",
] }
napi-derive = "2.12.2"
neon = { version = "0.10", default-features = false, features = ["napi-6"] }
num_enum = "0.7.1"
openssl = "0.10.56"
pcsc = "2.8.0"
pretty_assertions = "1.4.0"
pretty_env_logger = "0.4.0"
proptest = "1.4.0"
rayon = "1.7.0"
regex = "1.9.1"
reqwest = { version = "0.11.18", features = ["json"] }
rusttype = "0.9.3"
serde = { version = "1.0.175", features = ["derive"] }
serde_json = "1.0.103"
serialport = "4.2.2"
sha256 = "1.2.2"
tempfile = "3.3.0"
thiserror = "1.0.50"
time = { version = "0.3.36", features = ["formatting", "parsing", "serde"] }
tlv = { path = "libs/tlv" }
tlv-derive = { path = "libs/tlv-derive" }
tokio = { version = "1.40.0", default-features = false, features = [
"sync",
"macros",
"rt",
"rt-multi-thread",
] }
tokio-stream = { version = "0.1.16", features = ["sync"] }
tower-http = { version = "0.5.2", features = ["fs"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
types-rs = { path = "libs/types-rs" }
uinput = "0.1.3"
url = "2.5.0"
uuid = { version = "1.4.0", features = ["serde", "v4", "js"] }
zip = "0.6.6"
[workspace.dependencies.sqlx]
version = "0.7.1"
default-features = false
features = [
"macros",
"migrate",
"postgres",
"time",
"uuid",
"json",
"runtime-tokio-rustls",
]