ee7c8a0b7e
## Issue Addressed - Resolves #1706 ## Proposed Changes Updates dependencies across the workspace. Any crate that was not able to be brought to the latest version is listed in #1712. ## Additional Info NA
28 lines
804 B
TOML
28 lines
804 B
TOML
[package]
|
|
name = "bls"
|
|
version = "0.2.0"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
eth2_ssz = "0.1.2"
|
|
tree_hash = "0.1.1"
|
|
milagro_bls = { git = "https://github.com/sigp/milagro_bls", branch = "paulh" }
|
|
rand = "0.7.3"
|
|
serde = "1.0.116"
|
|
serde_derive = "1.0.116"
|
|
serde_utils = { path = "../../consensus/serde_utils" }
|
|
hex = "0.4.2"
|
|
eth2_hashing = "0.1.0"
|
|
ethereum-types = "0.9.2"
|
|
arbitrary = { version = "0.4.6", features = ["derive"], optional = true }
|
|
zeroize = { version = "1.1.1", features = ["zeroize_derive"] }
|
|
blst = { git = "https://github.com/sigp/blst.git", rev = "284f7059642851c760a09fb1708bcb59c7ca323c" }
|
|
|
|
[features]
|
|
default = ["supranational"]
|
|
fake_crypto = []
|
|
milagro = []
|
|
supranational = []
|
|
supranational-portable = ["supranational", "blst/portable"]
|