librustzcash/Cargo.toml

33 lines
777 B
TOML
Raw Normal View History

2019-08-09 22:55:50 -07:00
[package]
authors = ["Sean Bowe <ewillbefull@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"
2019-11-22 14:52:02 -08:00
version = "0.1.0"
2019-08-09 22:55:50 -07:00
edition = "2018"
2019-08-11 01:50:24 -07:00
[package.metadata.docs.rs]
rustdoc-args = [ "--html-in-header", "katex-header.html" ]
2019-08-11 10:17:37 -07:00
[dev-dependencies]
criterion = "0.2.11"
[[bench]]
name = "groups"
harness = false
required-features = ["groups"]
2019-08-09 22:55:50 -07:00
[dependencies.subtle]
2019-11-13 12:06:38 -08:00
version = "2.2.1"
2019-08-09 22:55:50 -07:00
default-features = false
[features]
default = ["groups", "pairings", "alloc"]
2019-08-09 22:55:50 -07:00
groups = []
pairings = ["groups"]
alloc = []
2019-08-09 22:55:50 -07:00
nightly = ["subtle/nightly"]