ceremonyclient/crates/bls48581/Cargo.toml
Cassandra Heart 3f5a55dc1d
fix repo name
2025-12-17 04:54:42 -06:00

34 lines
817 B
TOML

[package]
name = "bls48581"
version = "2.1.0"
edition = "2021"
authors = ["Quilibrium Inc."]
description = "BLS signature implementation using the BLS48-581 curve with KZG commitments"
license = "Apache-2.0"
repository = "https://github.com/quilibriumnetwork/monorepo"
keywords = ["bls", "signature", "kzg", "commitment", "cryptography"]
categories = ["cryptography", "algorithms"]
readme = "README.md"
[lib]
crate-type = ["lib", "staticlib"]
name = "bls48581"
[dependencies]
hex = "0.4.3"
serde_json = "1.0.117"
uniffi = { version= "0.28.3", features = ["cli"] }
rand = "0.8.5"
sha2 = "0.10.8"
[dev-dependencies]
criterion = { version = "0.4", features = ["html_reports"] }
rand = "0.8.5"
[build-dependencies]
uniffi = { version = "0.28.3", features = [ "build" ] }
[[bench]]
name = "bench_bls"
harness = false