mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-03 00:31:50 +00:00
* Enforce alphabetically ordered cargo deps * Fix test-suite * Another CI fix * Merge branch 'unstable' into cargo-sort * Fix conflicts * Merge remote-tracking branch 'origin/unstable' into cargo-sort
29 lines
811 B
TOML
29 lines
811 B
TOML
[package]
|
|
name = "bls"
|
|
version = "0.2.0"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
edition = { workspace = true }
|
|
|
|
[dependencies]
|
|
alloy-primitives = { workspace = true }
|
|
arbitrary = { workspace = true }
|
|
blst = { version = "0.3.3", optional = true }
|
|
ethereum_hashing = { workspace = true }
|
|
ethereum_serde_utils = { workspace = true }
|
|
ethereum_ssz = { workspace = true }
|
|
fixed_bytes = { workspace = true }
|
|
hex = { workspace = true }
|
|
rand = { workspace = true }
|
|
safe_arith = { workspace = true }
|
|
serde = { workspace = true }
|
|
tree_hash = { workspace = true }
|
|
zeroize = { workspace = true }
|
|
|
|
[features]
|
|
arbitrary = []
|
|
default = ["supranational"]
|
|
fake_crypto = []
|
|
supranational = ["blst"]
|
|
supranational-portable = ["supranational", "blst/portable"]
|
|
supranational-force-adx = ["supranational", "blst/force-adx"]
|