From 392b4203d11667ebf3033878db48dabaef5ac9d9 Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Mon, 30 Sep 2019 12:36:42 +1000 Subject: [PATCH] Consolidate lazy_static versions --- eth2/state_processing/Cargo.toml | 2 +- eth2/utils/tree_hash/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eth2/state_processing/Cargo.toml b/eth2/state_processing/Cargo.toml index 633c5bfeff..1e29431991 100644 --- a/eth2/state_processing/Cargo.toml +++ b/eth2/state_processing/Cargo.toml @@ -13,7 +13,7 @@ criterion = "0.2" env_logger = "0.6.0" serde = "1.0" serde_derive = "1.0" -lazy_static = "0.1" +lazy_static = "1.4" serde_yaml = "0.8" eth2_ssz = { path = "../utils/ssz" } beacon_chain = { path = "../../beacon_node/beacon_chain" } diff --git a/eth2/utils/tree_hash/Cargo.toml b/eth2/utils/tree_hash/Cargo.toml index 2ef3385026..6cb18648db 100644 --- a/eth2/utils/tree_hash/Cargo.toml +++ b/eth2/utils/tree_hash/Cargo.toml @@ -19,4 +19,4 @@ types = { path = "../../types" } [dependencies] ethereum-types = "0.6" eth2_hashing = "0.1" -lazy_static = "0.1" +lazy_static = "1.4"