bls12_381 0.3.0

Implementation of the BLS12-381 pairing-friendly elliptic curve construction
Documentation
[package]
authors = [
    "Sean Bowe <ewillbefull@gmail.com>",
    "Jack Grigg <thestr4d@gmail.com>",
]
description = "Implementation of the BLS12-381 pairing-friendly elliptic curve construction"
documentation = "https://docs.rs/bls12_381/"
homepage = "https://github.com/zkcrypto/bls12_381"
license = "MIT/Apache-2.0"
name = "bls12_381"
repository = "https://github.com/zkcrypto/bls12_381"
version = "0.3.0"
edition = "2018"

[package.metadata.docs.rs]
rustdoc-args = [ "--html-in-header", "katex-header.html" ]

[dev-dependencies]
criterion = "0.3"

[[bench]]
name = "groups"
harness = false
required-features = ["groups"]

[dependencies.bitvec]
version = "0.18"
default-features = false

[dependencies.ff]
version = "0.8"
default-features = false

[dependencies.group]
version = "0.8"
default-features = false
optional = true

[dependencies.pairing]
version = "0.18"
optional = true

[dependencies.rand_core]
version = "0.5"
default-features = false

[dependencies.subtle]
version = "2.2.1"
default-features = false

[features]
default = ["groups", "pairings", "alloc"]
groups = ["group"]
pairings = ["groups", "pairing"]
alloc = ["group/alloc"]
nightly = ["subtle/nightly"]

# GLV patents US7110538B2 and US7995752B2 expire in September 2020.
endo = []