forked from mikelodder7/blstrs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (46 loc) · 1.66 KB
/
Cargo.toml
File metadata and controls
50 lines (46 loc) · 1.66 KB
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
[package]
authors = ["dignifiedquire <me@dignifiedquire.com>", "Mike Lodder <redmike7@gmail.com>"]
categories = ["cryptography", "algorithms"]
description = "High performance implementation of BLS12 381"
documentation = "https://docs.rs/blstrs_plus"
edition = "2021"
homepage = "https://docs.rs/blstrs_plus"
license = "MIT/Apache-2.0"
name = "blstrs_plus"
readme = "README.md"
repository = "https://github.com/mikelodder7/blstrs"
version = "0.8.18"
[package.metadata.docs.rs]
rustdoc-args = [ "--html-in-header", "katex-header.html" ]
[dependencies]
ark-bls12-381 = { version = "0.4.0", optional = true }
ark-ec = { version = "0.4.2", optional = true }
ark-ff = { version = "0.4.2", optional = true }
ark-serialize = { version = "0.4.2", optional = true }
arrayref = "0.3"
blst = { version = "0.3.15" }
elliptic-curve = { version = "0.13", features = ["hazmat"], default-features = false }
ff = "0.13"
group = { version = "0.13", features = ["tests"] }
num-bigint = { version = "0.4.5", optional = true }
num-traits = { version = "0.2.19", optional = true }
pairing_lib = { version = "0.23", package = "pairing" }
rand = { version = "0.8", optional = true }
rand_core = "0.6"
serde = { version = "1.0", features = ["derive"], optional = true }
subtle = "2.5"
zeroize = { version = "1", features = ["zeroize_derive"] }
[dev-dependencies]
ark-poly = "0.4.2"
bls12_381_plus = "0.8"
rand_xorshift = "0.3"
serde_json = "1.0"
serde_bare = "0.5"
sha2 = "0.10"
hex = "0.4"
[features]
ark = ["ark-bls12-381", "ark-ec", "ark-ff", "ark-serialize", "num-bigint", "num-traits", "rand"]
default = ["hashing", "serde"]
hashing = ["elliptic-curve/hash2curve"]
portable = ["blst/portable"]
__private_bench = []