22 lines
501 B
TOML
22 lines
501 B
TOML
[package]
|
|
name = "bls"
|
|
version = "0.1.0"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
# FIXME: update sigp repo
|
|
milagro_bls = { git = "https://github.com/michaelsproul/milagro_bls", branch = "little-endian-v0.10" }
|
|
eth2_hashing = { path = "../eth2_hashing" }
|
|
hex = "0.3"
|
|
rand = "^0.5"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_hex = { path = "../serde_hex" }
|
|
eth2_ssz = "0.1"
|
|
eth2_ssz_types = { path = "../ssz_types" }
|
|
tree_hash = "0.1"
|
|
|
|
[features]
|
|
fake_crypto = []
|