Move genesis code into its own crate

This commit is contained in:
Paul Hauner
2018-12-13 12:27:45 +11:00
parent bf49c881d5
commit 6847e68c5e
6 changed files with 75 additions and 92 deletions

View File

@@ -0,0 +1,11 @@
[package]
name = "genesis"
version = "0.1.0"
authors = ["Paul Hauner <paul@paulhauner.com>"]
[dependencies]
bls = { path = "../utils/bls" }
spec = { path = "../spec" }
types = { path = "../types" }
validator_induction = { path = "../validator_induction" }
validator_shuffling = { path = "../validator_shuffling" }