Disable unused rocksdb compression features (#4082)

This commit is contained in:
teor 2022-04-12 20:06:58 +10:00 committed by GitHub
parent e557249cc0
commit b7f6fdc222
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

1
Cargo.lock generated
View File

@ -2173,7 +2173,6 @@ dependencies = [
"glob",
"libc",
"libz-sys",
"zstd-sys",
]
[[package]]

View File

@ -23,7 +23,7 @@ proptest = { version = "0.10.1", optional = true }
proptest-derive = { version = "0.3.0", optional = true }
regex = "1.5.5"
rlimit = "0.8.3"
rocksdb = "0.18.0"
rocksdb = { version = "0.18.0", default_features = false, features = ["lz4"] }
serde = { version = "1.0.136", features = ["serde_derive"] }
tempfile = "3.3.0"
thiserror = "1.0.30"