-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
40 lines (35 loc) · 920 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
[package]
name = "proof_of_latency"
version = "0.2.0"
authors = ["Jani Anttonen <[email protected]>"]
edition = "2018"
[dependencies]
ramp = "=0.5.9"
ramp-primes = "0.4.1"
blake3 = "0.3.6"
env_logger = "0.7.1"
log = "0.4.8"
async-std = "1.6.5"
futures = "0.3.5"
sm = "0.9.0"
rayon = "1.1"
void = "1"
rand = "0.7"
rkyv = "0.5.1"
crossbeam = "0.8.0"
lazy_static = "1.4.0"
ockam = { version = "0.15.0", features = ["ockam_transport_tcp", "ockam_vault"] }
sled = "0.34.7"
merkletree = "0.21.0"
zkp-merkle-tree = { git = "https://github.com/JaniAnttonen/OpenZKP", path = "crypto/merkle-tree" }
[dev-dependencies]
proptest = "0.10.0"
# Custom git hooks, definitions under ./cargo-husky/hooks
[dev-dependencies.cargo-husky]
version = "1"
default-features = false
features = ["user-hooks"]
[profile.release]
lto = true
opt-level = 3
# debug = true # Here only for flamegraph use. Comment out whenever not needed