[package] name = "chinilla-bls" version = "0.1.16" edition = "2021" license = "Apache-2.0" description = "BLS signature, verification and aggregation funcions for the Chinilla blockchain" authors = ["Edward Teach "] homepage = "https://github.com/Chinilla/chinilla_rs/chinilla-bls/" repository = "https://github.com/Chinilla/chinilla_rs/chinilla-bls/" [dependencies] tiny-bip39 = "=1.0.0" anyhow = "=1.0.65" # the newer sha2 crate doesn't implement the digest traits required by hkdf sha2 = "=0.9.9" bls12_381_plus = "=0.7.0" num-bigint = "=0.4.3" hkdf = "=0.11.0" group = "=0.12.0" [dev-dependencies] hex = "^0.4.3" rand = "^0.8.5" criterion = "^0.4" [lib] crate-type = ["rlib"] [[bench]] name = "derive_key" harness = false [[bench]] name = "sign" harness = false [[bench]] name = "verify" harness = false