-
Notifications
You must be signed in to change notification settings - Fork 37
/
Cargo.toml
38 lines (33 loc) · 1022 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
[package]
name = "blstrs"
description = "High performance implementation of BLS12 381"
version = "0.7.1"
authors = ["dignifiedquire <[email protected]>"]
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"
rust-version = "1.63"
[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.13"
group = { version = "0.13", features = ["tests"] }
pairing_lib = { version = "0.23", 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"
[dev-dependencies]
rand_xorshift = "0.3.0"
serde_json = "1.0.57"
hex = "0.4.2"
[features]
default = ["serde"]
portable = ["blst/portable"]
gpu = ["ec-gpu"]
__private_bench = []