Merge pull request #162 from sigp/eth2-rename

Rename `beacon_chain/` to `eth2/`
This commit is contained in:
Paul Hauner 2019-01-23 09:06:59 +11:00 committed by GitHub
commit 038e32a303
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
96 changed files with 24 additions and 24 deletions

View File

@ -1,19 +1,19 @@
[workspace] [workspace]
members = [ members = [
"beacon_chain/attestation_validation", "eth2/attestation_validation",
"beacon_chain/genesis", "eth2/genesis",
"beacon_chain/naive_fork_choice", "eth2/naive_fork_choice",
"beacon_chain/spec", "eth2/spec",
"beacon_chain/types", "eth2/types",
"beacon_chain/utils/bls", "eth2/utils/bls",
"beacon_chain/utils/boolean-bitfield", "eth2/utils/boolean-bitfield",
"beacon_chain/utils/hashing", "eth2/utils/hashing",
"beacon_chain/utils/honey-badger-split", "eth2/utils/honey-badger-split",
"beacon_chain/utils/slot_clock", "eth2/utils/slot_clock",
"beacon_chain/utils/ssz", "eth2/utils/ssz",
"beacon_chain/utils/vec_shuffle", "eth2/utils/vec_shuffle",
"beacon_chain/validator_induction", "eth2/validator_induction",
"beacon_chain/validator_shuffling", "eth2/validator_shuffling",
"beacon_node", "beacon_node",
"beacon_node/db", "beacon_node/db",
"protos", "protos",

View File

@ -5,7 +5,7 @@ authors = ["Paul Hauner <paul@paulhauner.com>"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
bls = { path = "../beacon_chain/utils/bls" } bls = { path = "../eth2/utils/bls" }
grpcio = { version = "0.4", default-features = false, features = ["protobuf-codec"] } grpcio = { version = "0.4", default-features = false, features = ["protobuf-codec"] }
protobuf = "2.0.2" protobuf = "2.0.2"
protos = { path = "../protos" } protos = { path = "../protos" }
@ -16,5 +16,5 @@ futures = "0.1.23"
slog = "^2.2.3" slog = "^2.2.3"
slog-term = "^2.4.0" slog-term = "^2.4.0"
slog-async = "^2.3.0" slog-async = "^2.3.0"
ssz = { path = "../beacon_chain/utils/ssz" } ssz = { path = "../eth2/utils/ssz" }
tokio = "0.1" tokio = "0.1"

View File

@ -6,8 +6,8 @@ edition = "2018"
[dependencies] [dependencies]
blake2-rfc = "0.2.18" blake2-rfc = "0.2.18"
bls = { path = "../../beacon_chain/utils/bls" } bls = { path = "../../eth2/utils/bls" }
bytes = "0.4.10" bytes = "0.4.10"
rocksdb = "0.10.1" rocksdb = "0.10.1"
ssz = { path = "../../beacon_chain/utils/ssz" } ssz = { path = "../../eth2/utils/ssz" }
types = { path = "../../beacon_chain/types" } types = { path = "../../eth2/types" }

View File

@ -5,16 +5,16 @@ authors = ["Paul Hauner <paul@paulhauner.com>"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
bls = { path = "../beacon_chain/utils/bls" } bls = { path = "../eth2/utils/bls" }
clap = "2.32.0" clap = "2.32.0"
dirs = "1.0.3" dirs = "1.0.3"
grpcio = { version = "0.4", default-features = false, features = ["protobuf-codec"] } grpcio = { version = "0.4", default-features = false, features = ["protobuf-codec"] }
protobuf = "2.0.2" protobuf = "2.0.2"
protos = { path = "../protos" } protos = { path = "../protos" }
slot_clock = { path = "../beacon_chain/utils/slot_clock" } slot_clock = { path = "../eth2/utils/slot_clock" }
spec = { path = "../beacon_chain/spec" } spec = { path = "../eth2/spec" }
types = { path = "../beacon_chain/types" } types = { path = "../eth2/types" }
slog = "^2.2.3" slog = "^2.2.3"
slog-term = "^2.4.0" slog-term = "^2.4.0"
slog-async = "^2.3.0" slog-async = "^2.3.0"
ssz = { path = "../beacon_chain/utils/ssz" } ssz = { path = "../eth2/utils/ssz" }