Files
lighthouse/crypto/bls/Cargo.toml
2023-09-26 11:21:44 +10:00

37 lines
982 B
TOML

[package]
name = "bls"
version = "0.2.0"
authors = ["Paul Hauner <paul@paulhauner.com>"]
edition = { workspace = true }
[dependencies]
ethereum_ssz = { workspace = true }
tree_hash = { workspace = true }
milagro_bls = { git = "https://github.com/sigp/milagro_bls", tag = "v1.5.1", optional = true }
rand = { workspace = true }
serde = { workspace = true }
serde_derive = "1.0.116"
ethereum_serde_utils = { workspace = true }
hex = { workspace = true }
ethereum_hashing = { workspace = true }
ethereum-types = { workspace = true }
arbitrary = { workspace = true }
zeroize = { workspace = true }
blst = { version = "0.3.3", optional = true }
[features]
arbitrary = []
default = ["supranational"]
fake_crypto = []
milagro = ["milagro_bls"]
supranational = ["blst"]
supranational-portable = ["supranational", "blst/portable"]
supranational-force-adx = ["supranational", "blst/force-adx"]
[dev-dependencies]
criterion = "0.3.3"
[[bench]]
name = "compress_decompress"
harness = false