-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
32 lines (29 loc) · 866 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
[package]
name = "ssb-verify-signatures"
version = "1.1.1"
authors = ["Piet Geursen <pietgeursen@gmail.com>"]
edition = "2018"
description = "Verify signatures of scuttlebutt messages. In parallel."
repository = "https://github.com/sunrise-choir/ssb-verify-signatures"
documentation = "https://sunrise-choir.github.io/ssb-verify-signatures/ssb_verify_signatures/index.html"
license = "LGPL-3.0"
[dependencies]
arrayvec = "0.5.2"
base64 = "0.13.0"
ed25519-dalek = { version = "1.0.1", features = ["batch"] }
lazy_static = "1.4.0"
itertools = "0.10.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.64"
snafu = "0.6.10"
ssb-crypto = "0.2.3"
ssb-legacy-msg-data = "0.1.4"
rand = "0.8.3"
rayon = "1.5.1"
regex = "1"
getrandom = { version = "0.2", features = ["js"] }
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "bench"
harness = false