Skip to content

Commit db09402

Browse files
pawanjay176paulhauner
authored andcommitted
Remove unused dependencies (#456)
1 parent 3752a8f commit db09402

File tree

18 files changed

+0
-60
lines changed

18 files changed

+0
-60
lines changed

account_manager/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,4 @@ slog-term = "^2.4.0"
1212
slog-async = "^2.3.0"
1313
validator_client = { path = "../validator_client" }
1414
types = { path = "../eth2/types" }
15-
eth2_config = { path = "../eth2/utils/eth2_config" }
1615
dirs = "2.0.1"

beacon_node/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,10 @@ edition = "2018"
77
[dependencies]
88
eth2_config = { path = "../eth2/utils/eth2_config" }
99
types = { path = "../eth2/types" }
10-
toml = "^0.5"
1110
store = { path = "./store" }
1211
client = { path = "client" }
1312
version = { path = "version" }
1413
clap = "2.32.0"
15-
serde = "1.0"
1614
slog = { version = "^2.2.3" , features = ["max_level_trace"] }
1715
slog-term = "^2.4.0"
1816
slog-async = "^2.3.0"
@@ -21,6 +19,5 @@ tokio = "0.1.15"
2119
tokio-timer = "0.2.10"
2220
futures = "0.1.25"
2321
exit-future = "0.1.3"
24-
state_processing = { path = "../eth2/state_processing" }
2522
env_logger = "0.6.1"
2623
dirs = "2.0.1"

beacon_node/beacon_chain/Cargo.toml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,13 @@ authors = ["Paul Hauner <[email protected]>", "Age Manning <[email protected]
55
edition = "2018"
66

77
[dependencies]
8-
bls = { path = "../../eth2/utils/bls" }
9-
boolean-bitfield = { path = "../../eth2/utils/boolean-bitfield" }
108
store = { path = "../store" }
11-
failure = "0.1"
12-
failure_derive = "0.1"
13-
hashing = { path = "../../eth2/utils/hashing" }
149
parking_lot = "0.7"
1510
prometheus = "^0.6"
1611
log = "0.4"
1712
operation_pool = { path = "../../eth2/operation_pool" }
18-
env_logger = "0.6"
1913
serde = "1.0"
2014
serde_derive = "1.0"
21-
serde_json = "1.0"
2215
slot_clock = { path = "../../eth2/utils/slot_clock" }
2316
eth2_ssz = { path = "../../eth2/utils/ssz" }
2417
eth2_ssz_derive = { path = "../../eth2/utils/ssz_derive" }

beacon_node/client/Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ edition = "2018"
77
[dependencies]
88
beacon_chain = { path = "../beacon_chain" }
99
network = { path = "../network" }
10-
store = { path = "../store" }
1110
http_server = { path = "../http_server" }
12-
eth2-libp2p = { path = "../eth2-libp2p" }
1311
rpc = { path = "../rpc" }
1412
prometheus = "^0.6"
1513
types = { path = "../../eth2/types" }
@@ -19,11 +17,9 @@ slot_clock = { path = "../../eth2/utils/slot_clock" }
1917
serde = "1.0.93"
2018
serde_derive = "1.0"
2119
error-chain = "0.12.0"
22-
eth2_ssz = { path = "../../eth2/utils/ssz" }
2320
slog = { version = "^2.2.3" , features = ["max_level_trace"] }
2421
slog-async = "^2.3.0"
2522
slog-json = "^2.3"
26-
slog-term = "^2.4.0"
2723
tokio = "0.1.15"
2824
clap = "2.32.0"
2925
dirs = "1.0.3"

beacon_node/eth2-libp2p/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ authors = ["Age Manning <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
beacon_chain = { path = "../beacon_chain" }
98
clap = "2.32.0"
109
#SigP repository
1110
libp2p = { git = "https://github.com/SigP/rust-libp2p", rev = "be5710bbde69d8c5be732c13ba64239e2f370a7b" }

beacon_node/http_server/Cargo.toml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,19 @@ authors = ["Paul Hauner <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
bls = { path = "../../eth2/utils/bls" }
98
beacon_chain = { path = "../beacon_chain" }
109
iron = "^0.6"
1110
router = "^0.6"
1211
network = { path = "../network" }
13-
eth2-libp2p = { path = "../eth2-libp2p" }
14-
version = { path = "../version" }
1512
types = { path = "../../eth2/types" }
16-
eth2_ssz = { path = "../../eth2/utils/ssz" }
1713
slot_clock = { path = "../../eth2/utils/slot_clock" }
18-
protos = { path = "../../protos" }
19-
grpcio = { version = "0.4", default-features = false, features = ["protobuf-codec"] }
2014
persistent = "^0.4"
21-
protobuf = "2.0.2"
2215
prometheus = { version = "^0.6", features = ["process"] }
2316
clap = "2.32.0"
24-
store = { path = "../store" }
25-
dirs = "1.0.3"
2617
futures = "0.1.23"
2718
serde = "1.0"
2819
serde_derive = "1.0"
2920
serde_json = "1.0"
3021
slog = { version = "^2.2.3" , features = ["max_level_trace"] }
31-
slog-term = "^2.4.0"
32-
slog-async = "^2.3.0"
3322
tokio = "0.1.17"
3423
exit-future = "0.1.4"

beacon_node/network/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ sloggers = "0.3.2"
1111
beacon_chain = { path = "../beacon_chain" }
1212
store = { path = "../store" }
1313
eth2-libp2p = { path = "../eth2-libp2p" }
14-
version = { path = "../version" }
1514
types = { path = "../../eth2/types" }
1615
slog = { version = "^2.2.3" , features = ["max_level_trace"] }
1716
eth2_ssz = { path = "../../eth2/utils/ssz" }

beacon_node/rpc/Cargo.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,12 @@ eth2-libp2p = { path = "../eth2-libp2p" }
1212
version = { path = "../version" }
1313
types = { path = "../../eth2/types" }
1414
eth2_ssz = { path = "../../eth2/utils/ssz" }
15-
slot_clock = { path = "../../eth2/utils/slot_clock" }
1615
protos = { path = "../../protos" }
1716
grpcio = { version = "0.4", default-features = false, features = ["protobuf-codec"] }
18-
protobuf = "2.0.2"
1917
clap = "2.32.0"
20-
store = { path = "../store" }
21-
dirs = "1.0.3"
2218
futures = "0.1.23"
2319
serde = "1.0"
2420
serde_derive = "1.0"
2521
slog = { version = "^2.2.3" , features = ["max_level_trace"] }
26-
slog-term = "^2.4.0"
27-
slog-async = "^2.3.0"
2822
tokio = "0.1.17"
2923
exit-future = "0.1.4"

beacon_node/store/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ edition = "2018"
88
tempfile = "3"
99

1010
[dependencies]
11-
blake2-rfc = "0.2.18"
12-
bls = { path = "../../eth2/utils/bls" }
13-
bytes = "0.4.10"
1411
db-key = "0.0.5"
1512
leveldb = "0.8.4"
1613
parking_lot = "0.7"

eth2/lmd_ghost/Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,7 @@ edition = "2018"
77
[dependencies]
88
parking_lot = "0.7"
99
store = { path = "../../beacon_node/store" }
10-
eth2_ssz = { path = "../utils/ssz" }
11-
state_processing = { path = "../state_processing" }
1210
types = { path = "../types" }
13-
log = "0.4.6"
14-
bit-vec = "0.5.0"
1511

1612
[dev-dependencies]
1713
criterion = "0.2"

eth2/state_processing/Cargo.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,9 @@ serde_yaml = "0.8"
1717

1818
[dependencies]
1919
bls = { path = "../utils/bls" }
20-
fnv = "1.0"
21-
hashing = { path = "../utils/hashing" }
22-
int_to_bytes = { path = "../utils/int_to_bytes" }
2320
integer-sqrt = "0.1"
2421
itertools = "0.8"
25-
log = "0.4"
2622
merkle_proof = { path = "../utils/merkle_proof" }
27-
eth2_ssz = { path = "../utils/ssz" }
28-
eth2_ssz_derive = { path = "../utils/ssz_derive" }
2923
tree_hash = { path = "../utils/tree_hash" }
3024
tree_hash_derive = { path = "../utils/tree_hash_derive" }
3125
types = { path = "../types" }

eth2/types/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,12 @@ ethereum-types = "0.5"
1616
fixed_len_vec = { path = "../utils/fixed_len_vec" }
1717
hashing = { path = "../utils/hashing" }
1818
hex = "0.3"
19-
honey-badger-split = { path = "../utils/honey-badger-split" }
2019
int_to_bytes = { path = "../utils/int_to_bytes" }
2120
log = "0.4"
2221
rayon = "1.0"
2322
rand = "0.5.5"
2423
serde = "1.0"
2524
serde_derive = "1.0"
26-
serde_json = "1.0"
27-
serde_yaml = "0.8"
2825
slog = "^2.2.3"
2926
eth2_ssz = { path = "../utils/ssz" }
3027
eth2_ssz_derive = { path = "../utils/ssz_derive" }

eth2/utils/boolean-bitfield/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ eth2_ssz = { path = "../ssz" }
1111
bit-vec = "0.5.0"
1212
bit_reverse = "0.1"
1313
serde = "1.0"
14-
serde_derive = "1.0"
1514
tree_hash = { path = "../tree_hash" }
1615

1716
[dev-dependencies]

eth2/utils/eth2_config/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ edition = "2018"
66

77
[dependencies]
88
clap = "2.32.0"
9-
dirs = "1.0.3"
109
serde = "1.0"
1110
serde_derive = "1.0"
1211
toml = "^0.5"

eth2/utils/hashing/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ edition = "2018"
77
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
88
ring = "0.14.6"
99

10-
[target.'cfg(target_arch = "wasm32")'.dependencies]
11-
sha2 = "0.8.0"
1210

1311
[dev-dependencies]
1412
rustc-hex = "2.0.1"

eth2/utils/ssz/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,4 @@ criterion = "0.2"
1818
eth2_ssz_derive = "0.1.0"
1919

2020
[dependencies]
21-
bytes = "0.4.9"
2221
ethereum-types = "0.5"
23-
hex = "0.3"
24-
yaml-rust = "0.4"

tests/ef_tests/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,3 @@ state_processing = { path = "../../eth2/state_processing" }
2424
swap_or_not_shuffle = { path = "../../eth2/utils/swap_or_not_shuffle" }
2525
types = { path = "../../eth2/types" }
2626
walkdir = "2"
27-
yaml-rust = { git = "https://github.com/sigp/yaml-rust", branch = "escape_all_str"}

validator_client/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ eth2_config = { path = "../eth2/utils/eth2_config" }
1919
tree_hash = { path = "../eth2/utils/tree_hash" }
2020
clap = "2.32.0"
2121
grpcio = { version = "0.4", default-features = false, features = ["protobuf-codec"] }
22-
protobuf = "2.0.2"
2322
protos = { path = "../protos" }
2423
slot_clock = { path = "../eth2/utils/slot_clock" }
2524
types = { path = "../eth2/types" }
@@ -31,7 +30,6 @@ slog-json = "^2.3"
3130
slog-term = "^2.4.0"
3231
tokio = "0.1.18"
3332
tokio-timer = "0.2.10"
34-
toml = "^0.5"
3533
error-chain = "0.12.0"
3634
bincode = "^1.1.2"
3735
futures = "0.1.25"

0 commit comments

Comments
 (0)