# 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 = "blsful" version = "3.0.0-pre8" authors = ["Michael Lodder "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "BLS signature implementation according to the IETF spec on the BLS12-381 curve." homepage = "https://github.com/mikelodder7/blsful" documentation = "https://docs.rs/blsful" readme = "README.md" keywords = [ "crypto", "signature", "signing", "bls", ] categories = [ "cryptography", "authentication", "no-std", "algorithms", ] license = "MIT OR Apache-2.0" repository = "https://github.com/mikelodder7/blsful" [lib] name = "blsful" path = "src/lib.rs" [[test]] name = "encryption" path = "tests/encryption.rs" [[test]] name = "proofs" path = "tests/proofs.rs" [[test]] name = "serialization" path = "tests/serialization.rs" [[test]] name = "signatures" path = "tests/signatures.rs" [[test]] name = "utils" path = "tests/utils.rs" [dependencies.anyhow] version = "1.0" [dependencies.bls12_381_plus] version = "0.8" optional = true [dependencies.blstrs_plus] version = "0.8" optional = true [dependencies.hex] version = "0.4" [dependencies.hkdf] version = "0.12" default-features = false [dependencies.merlin] version = "3" [dependencies.pairing] version = "0.23" [dependencies.rand] version = "0.8" [dependencies.rand_chacha] version = "0.3" [dependencies.rand_core] version = "0.6" [dependencies.serde] version = "1.0" features = [ "alloc", "derive", ] [dependencies.serde_bare] version = "0.5" [dependencies.sha2] version = "0.10" default-features = false [dependencies.sha3] version = "0.10" default-features = false [dependencies.subtle] version = "2.6" default-features = false [dependencies.thiserror] version = "2.0" [dependencies.uint-zigzag] version = "0.2" features = ["std"] [dependencies.vsss-rs] version = "5.0.0-rc2" features = ["serde"] [dependencies.zeroize] version = "1" features = ["zeroize_derive"] [dev-dependencies.rand_xorshift] version = "0.3" [dev-dependencies.rstest] version = "0.23" [dev-dependencies.serde_json] version = "1.0" features = ["alloc"] [features] blst = ["blstrs_plus"] default = ["blst"] rust = ["bls12_381_plus/alloc"]