-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
31 lines (28 loc) · 931 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
[package]
authors = ["Michael Lodder <[email protected]>", "Hart Montgomery <[email protected]>", "Sam Jaques <[email protected]>"]
description = "An implementation of ALLOSAURUS as described in https://eprint.iacr.org/2022/1362/"
documentation = "https://docs.rs/agora-allosaurus-rs"
edition = "2021"
homepage = "https://github.com/hyperledger-labs/agora-allosaurus-rs"
keywords = ["crypto", "accumulator", "mpc", "revocation"]
license-file = "LICENSE"
name = "agora-allosaurus-rs"
readme = "README.md"
repository = "https://github.com/hyperledger-labs/agora-allosaurus-rs"
version = "0.1.0"
[dependencies]
blsful = "2.5"
merlin = "3.0"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
sha2 = "0.10"
sha3 = "0.10"
zeroize = "1.8"
[dev-dependencies]
criterion = "0.5"
rayon = "1.10"
serde_bare = "0.5.0"
uint-zigzag = { version = "0.2", features = ["std"] }
[[bench]]
name = "updates"
harness = false