-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
44 lines (37 loc) · 1.11 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
[package]
name = "blstrs"
description = "High performance implementation of BLS12 381"
version = "0.6.1"
authors = ["dignifiedquire <me@dignifiedquire.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
repository = "https://github.com/filecoin-project/blstrs"
documentation = "https://docs.rs/blstrs"
categories = ["cryptography", "algorithms"]
readme = "README.md"
[package.metadata.docs.rs]
rustdoc-args = [ "--html-in-header", "katex-header.html" ]
[dependencies]
blst = { version = "=0.3.10", default-features = true }
rand_core = "0.6"
ff = "0.12"
group = { version = "0.12", features = ["tests"] }
pairing_lib = { version = "0.22", package = "pairing" }
subtle = "2.2.1"
serde = { version = "1.0", features = ["derive"], optional = true }
ec-gpu = { version = "0.2.0", optional = true }
byte-slice-cast = "1.0.0"
digest = { version = "0.9", optional = true }
[dev-dependencies]
rand_xorshift = "0.3.0"
serde_json = "1.0.57"
hex = "0.4.2"
sha2 = "0.9"
sha3 = "0.9"
[features]
default = ["serde", "hash_to_curve", "alloc"]
hash_to_curve = ["digest"]
alloc = []
portable = ["blst/portable"]
gpu = ["ec-gpu"]
__private_bench = []