dusk-bls12_381 0.1.0

Implementation of the BLS12-381 pairing-friendly elliptic curve construction with some extra tooling needed by the Dusk team
Documentation
[package]
authors = ["Sean Bowe <ewillbefull@gmail.com>"]
description = "Implementation of the BLS12-381 pairing-friendly elliptic curve construction with some extra tooling needed by the Dusk team"
documentation = "https://github.com/dusk-network/bls12_381"
homepage = "https://github.com/dusk-network/bls12_381"
license = "MIT/Apache-2.0"
name = "dusk-bls12_381"
repository = "https://github.com/dusk-network/bls12_381"
version = "0.1.0"
edition = "2018"
exclude = [".github/workflows/ci.yml",
".gitignore", 
]
[dependencies]
byteorder = { version = "^1.2.3", default-features = false, features = ["i128"] }
rayon = "1.3.0"
serde = "1.0.106"
rand = "0.7.0"

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

[dev-dependencies]
criterion = "0.2.11"
bincode = "1"

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

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

[features]
default = ["groups", "pairings", "alloc", "std" ,"endo"]
groups = []
pairings = ["groups"]
alloc = []
nightly = ["subtle/nightly"]
std = ["alloc"]

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