forked from w3f/bls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (31 loc) · 925 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
[package]
authors = ["Jack Grigg <[email protected]>", "Jeff Burdges <[email protected]>"]
description = "Aggregate BLS-like signatures"
documentation = "https://docs.rs/bls-like"
homepage = "https://github.com/w3f/bls"
license = "MIT/Apache-2.0"
name = "bls-like"
repository = "https://github.com/w3f/bls"
version = "0.1.0"
[dependencies]
arrayref = "0.3"
rand = "0.4"
ff = { version = "0.4", features = ["derive"] }
sha3 = "0.8"
# [dependencies.merlin]
# version = "1.1.0"
## features = ["debug-transcript"]
[dependencies.paired]
version = "0.15"
# git = "https://github.com/filecoin-project/pairing"
# [dependencies.pairing]
# git = "https://github.com/burdges/pairing"
# branch = "master-hashing-derives_borrows_etc0"
## historical:
## branch = "derives_borrows_etc0"
## git = "https://github.com/mmaker/pairing"
## branch = "master"
[dependencies.serde]
version = "^1.0"
default-features = false
optional = true