forked from filecoin-project/paired
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (36 loc) · 1002 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
40
41
42
[package]
name = "paired"
# Remember to change version string in README.md.
version = "0.20.1"
authors = [
"Sean Bowe <[email protected]>",
"Jack Grigg <[email protected]>",
]
readme = "README.md"
license = "MIT/Apache-2.0"
description = "Fork of the 'paired: Pairing-friendly elliptic curve library'"
documentation = "https://docs.rs/paired/"
homepage = "https://github.com/filecoin-project/pairing"
repository = "https://github.com/filecoin-project/pairing"
edition ="2018"
[dependencies]
byteorder = "1"
blake2b_simd = "0.5"
serde = { version = "1.0", optional = true, features = ["derive"] }
fff = { version = "0.2.0", features = ["derive"] }
groupy = "0.3.0"
rand_core = "0.5"
hkdf = "0.8.0"
digest = { version = "0.8.1", features = ["std"] }
[dev-dependencies]
rand_xorshift = "0.2"
serde_json = "1.0"
sha3 = "0.8.2"
sha2ni = "0.8.1"
hex = "0.4.2"
[features]
unstable-features = ["expose-arith"]
expose-arith = []
default = []
[badges]
maintenance = { status = "actively-developed" }