-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
34 lines (26 loc) · 1014 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
[package]
name = "talk"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
test_utilities = []
[dependencies]
serde = { version = "~1.0", features = [ "derive", "rc" ] }
bincode = { version = "~1.3" }
doomstack = { git = "https://github.com/Distributed-EPFL/doomstack" }
atomic-counter = { version = "1.0.1" }
parking_lot = { version = "0.11.2" }
rand = { version = "0.7" }
blake3 = { version = "1.0.0" }
ed25519-dalek = { version = "1.0.1", features = [ "serde", "batch" ] }
x25519-dalek = { version = "1.2.0", features = [ "serde" ] }
blst = { version = "0.3.5" }
chacha20poly1305 = { version = "0.9.0" }
tokio = { version = "1.12.0", features = [ "macros", "net", "rt-multi-thread", "io-util", "sync", "time" ] }
rayon = { version = "1.5.3" }
async-trait = { version = "0.1.51" }
futures = { version = "0.3" }
flume = "0.10.14"
socket2 = { version = "0.5.4", features = [ "all" ] }
nix = { version = "0.24.2" }