2019-02-14 01:09:18 +00:00
|
|
|
[package]
|
|
|
|
name = "state_processing"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
2019-02-26 03:27:42 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "benches"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
criterion = "0.2"
|
|
|
|
env_logger = "0.6.0"
|
2019-03-15 02:31:30 +00:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_yaml = "0.8"
|
2019-02-26 03:27:42 +00:00
|
|
|
|
2019-02-14 01:09:18 +00:00
|
|
|
[dependencies]
|
2019-03-07 05:15:38 +00:00
|
|
|
bls = { path = "../utils/bls" }
|
2019-03-08 23:37:41 +00:00
|
|
|
fnv = "1.0"
|
2019-02-14 01:09:18 +00:00
|
|
|
hashing = { path = "../utils/hashing" }
|
2019-02-15 01:21:19 +00:00
|
|
|
int_to_bytes = { path = "../utils/int_to_bytes" }
|
2019-02-14 01:09:18 +00:00
|
|
|
integer-sqrt = "0.1"
|
2019-05-13 07:32:06 +00:00
|
|
|
itertools = "0.8"
|
2019-02-14 01:09:18 +00:00
|
|
|
log = "0.4"
|
2019-03-07 22:26:03 +00:00
|
|
|
merkle_proof = { path = "../utils/merkle_proof" }
|
2019-07-03 06:06:20 +00:00
|
|
|
eth2_ssz = { path = "../utils/ssz" }
|
|
|
|
eth2_ssz_derive = { path = "../utils/ssz_derive" }
|
2019-04-16 04:25:43 +00:00
|
|
|
tree_hash = { path = "../utils/tree_hash" }
|
|
|
|
tree_hash_derive = { path = "../utils/tree_hash_derive" }
|
2019-02-14 01:09:18 +00:00
|
|
|
types = { path = "../types" }
|
|
|
|
rayon = "1.0"
|
2019-05-16 13:06:41 +00:00
|
|
|
|
|
|
|
[features]
|
2019-07-03 06:06:20 +00:00
|
|
|
fake_crypto = ["bls/fake_crypto"]
|