1
0
mirror of https://github.com/romanz/electrs.git synced 2024-11-19 09:54:09 +01:00

Disable default features for rocksdb dependency

This commit is contained in:
Roman Zeyde 2021-05-30 21:38:51 +03:00
parent cca0f270c2
commit 15ec11f8b6

View File

@ -31,12 +31,18 @@ hyper = "0.10"
log = "0.4"
prometheus = { version = "0.12", features = ["process"], optional = true }
rayon = "1.5"
rocksdb = { git = "https://github.com/romanz/rust-rocksdb", rev = "4554d19b2ff2e34493564b4d868454097c74b693", features = ["zstd"] } # to support building with Rust 1.41.1 and https://github.com/romanz/electrs/issues/403
rust-crypto = "0.2"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
signal-hook = "0.3"
[dependencies.rocksdb]
# support building with Rust 1.41.1 and workaround https://github.com/romanz/electrs/issues/403
git = "https://github.com/romanz/rust-rocksdb"
rev = "4554d19b2ff2e34493564b4d868454097c74b693"
default-features = false
features = ["zstd"]
[build-dependencies]
configure_me_codegen = "0.4"