-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
51 lines (41 loc) · 1.19 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "pairing-plus"
# Remember to change version string in README.md.
version = "0.20.1"
authors = [
# authors of the original pairing library
"Sean Bowe <[email protected]>",
"Jack Grigg <[email protected]>",
# maintainers of this pairing-fork library
"Riad S. Wahby <[email protected]>",
"Zhenfei Zhang <[email protected]>"
]
license = "MIT"
description = "Pairing-friendly elliptic curve library"
# original documentation
# documentation = "https://docs.rs/pairing/"
# documentation for this fork
documentation = "https://docs.rs/pairing-plus/"
# original homepage
# homepage = "https://github.com/ebfull/pairing"
# homepage for this fork
homepage = "https://github.com/algorand/pairing-plus"
# original repo
# repository = "https://github.com/ebfull/pairing"
# repo for this fork
repository = "https://github.com/algorand/pairing-plus"
[dependencies]
rand = "0.4"
byteorder = "1"
ff-zeroize = { version = "0.6.3", features = ["derive"]}
zeroize = { version = "1.1", features = ["zeroize_derive"]}
rand_core = "0.5"
rand_xorshift = "0.2"
[dependencies.digest]
version = "0.8"
features = ["std"]
[dev-dependencies]
sha2 = "0.8"
sha3 = "0.8"
[features]
default = []