librustzcash/Cargo.toml

25 lines
610 B
TOML

[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"
version = "0.0.0"
edition = "2018"
[dependencies.subtle]
version = "2.1"
default-features = false
[dependencies.byteorder]
version = "1"
default-features = false
[features]
default = ["groups", "pairings"]
groups = []
pairings = []
nightly = ["subtle/nightly"]