Skip to content

Commit 9bc0d51

Browse files
Disable LevelDB snappy feature (#7235)
Disable the `snappy` feature of LevelDB to prevent compilation issues with CMake 4.0, e.g. https://github.com/sigp/lighthouse/actions/runs/14182783816/job/39732457274?pr=7231 We do not use Snappy compression in LevelDB, and do not need to compile this. This might also shave a few seconds off compilation!
1 parent 54aef2d commit 9bc0d51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

beacon_node/store/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ directory = { workspace = true }
2222
ethereum_ssz = { workspace = true }
2323
ethereum_ssz_derive = { workspace = true }
2424
itertools = { workspace = true }
25-
leveldb = { version = "0.8.6", optional = true }
25+
leveldb = { version = "0.8.6", optional = true, default-features = false }
2626
logging = { workspace = true }
2727
lru = { workspace = true }
2828
metrics = { workspace = true }

0 commit comments

Comments
 (0)