# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "bls12_381_plus" version = "0.8.18" authors = [ "Sean Bowe ", "Jack Grigg ", "Mike Lodder ", ] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Implementation of the BLS12-381 pairing-friendly elliptic curve construction. This is a fork from zkcrypto/bls12_381 but adds hash to curve and multiexponentiation methods as well as enables multi-pairing without the allocator requirement. """ homepage = "https://github.com/mikelodder7/bls12_381_plus" documentation = "https://docs.rs/bls12_381_plus/" readme = "README.md" license = "MIT/Apache-2.0" repository = "https://github.com/mikelodder7/bls12_381_plus" [package.metadata.docs.rs] rustdoc-args = [ "--html-in-header", "katex-header.html", ] [lib] name = "bls12_381_plus" crate-type = [ "cdylib", "rlib", ] path = "src/lib.rs" [[test]] name = "ark" path = "tests/ark.rs" [[test]] name = "wasm" path = "tests/wasm.rs" [[bench]] name = "groups" path = "benches/groups.rs" harness = false required-features = ["groups"] [dependencies.ark-bls12-381] version = "0.4" optional = true [dependencies.ark-ec] version = "0.4" optional = true [dependencies.ark-ff] version = "0.4" optional = true [dependencies.ark-serialize] version = "0.4" optional = true [dependencies.arrayref] version = "0.3" [dependencies.elliptic-curve] version = "0.13" features = [ "hash2curve", "hazmat", ] default-features = false [dependencies.ff] version = "0.13" default-features = false [dependencies.group] version = "0.13" optional = true default-features = false [dependencies.hex] version = "0.4" default-features = false [dependencies.num-bigint] version = "0.4" optional = true [dependencies.num-traits] version = "0.2" optional = true [dependencies.pairing] version = "0.23" optional = true [dependencies.rand] version = "0.8" optional = true [dependencies.rand_core] version = "0.6" default-features = false [dependencies.serde] version = "1.0" features = ["serde_derive"] default-features = false [dependencies.sha2] version = "0.10" default-features = false [dependencies.subtle] version = "2.5" default-features = false [dependencies.zeroize] version = "1.8" default-features = false [dev-dependencies.ark-poly] version = "0.4.2" [dev-dependencies.hex] version = "0.4" [dev-dependencies.rand_xorshift] version = "0.3" [dev-dependencies.serde_bare] version = "0.5" [dev-dependencies.serde_json] version = "1.0" [dev-dependencies.sha2] version = "0.10" [dev-dependencies.sha3] version = "0.10" [features] alloc = ["group/alloc"] ark = [ "ark-bls12-381", "ark-ec", "ark-ff", "ark-serialize", "num-bigint", "num-traits", "rand", "std", ] bits = ["ff/bits"] default = [ "groups", "pairings", "alloc", "bits", ] expose-fields = ["groups"] groups = ["group"] pairings = [ "groups", "pairing", ] std = [] [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies.criterion] version = "0.5" [target.'cfg(target_arch = "wasm32")'.dev-dependencies.wasm-bindgen-test] version = "0.3"