-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (39 loc) · 942 Bytes
/
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
[package]
name = "softauth"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Util
anyhow = "^1.0"
thiserror = "^1.0"
ctrlc = "^3.2.2"
bytes = "^1.1.0"
zerocopy = "^0.6.1"
num_enum = "^0.5.7"
once_cell = "1.12.0"
hex = "0.4.3"
modular-bitfield = "0.11.2"
# Logging
tracing = "^0.1.34"
tracing-subscriber = "^0.3.11"
# Concurrency
futures = "^0.3.21"
tokio = { version = "~1.18.1", features = ["full"] }
tokio-util = { verison = "^0.7.1", features = ["full"] }
async-trait = "0.1.56"
crossbeam = "0.8"
# Tower
tower = { version = "^0.4.13", features = ["full"] }
tokio-tower = "0.7.0-rc2"
# serialization
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11.6"
ciborium = "^0.2.0"
# cryptography
coset = "0.3.2"
ring = "0.16.20"
# UHID
uhid-virt = "^0.0.5"
[patch.crates-io]
uhid-virt = { path = "uhid-virt-patched" }