From 6b912fb3e8b103ba0a0d0b919de2f91aeea9f89a Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Fri, 27 Nov 2020 11:40:27 +1100 Subject: [PATCH] Disable snappy in LevelDB to fix build issues --- beacon_node/store/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon_node/store/Cargo.toml b/beacon_node/store/Cargo.toml index 81c94949517..5882987741b 100644 --- a/beacon_node/store/Cargo.toml +++ b/beacon_node/store/Cargo.toml @@ -15,7 +15,7 @@ rayon = "1.4.1" [dependencies] db-key = "0.0.5" -leveldb = "0.8.6" +leveldb = { version = "0.8.6", default-features = false } parking_lot = "0.11.0" itertools = "0.9.0" eth2_ssz = "0.1.2"