From 934855fe5429f515460cbac01d9e6417e04401bd Mon Sep 17 00:00:00 2001 From: Niklas Fiekas Date: Fri, 5 Aug 2022 10:29:04 +0200 Subject: [PATCH] Avoid pulling in dependencies via static feature flag (#649) --- librocksdb-sys/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/librocksdb-sys/Cargo.toml b/librocksdb-sys/Cargo.toml index 43f7fb9..aa4921e 100644 --- a/librocksdb-sys/Cargo.toml +++ b/librocksdb-sys/Cargo.toml @@ -14,7 +14,7 @@ links = "rocksdb" [features] default = [ "static" ] jemalloc = ["tikv-jemalloc-sys"] -static = ["libz-sys/static", "bzip2-sys/static"] +static = ["libz-sys?/static", "bzip2-sys?/static"] snappy = [] lz4 = [] zstd = ["zstd-sys"]