From 16d384271be06fbe4ef116afdf1197eb3f58323a Mon Sep 17 00:00:00 2001 From: strawberry Date: Sun, 11 Feb 2024 14:43:44 -0500 Subject: [PATCH] CI expects default features of rocksdb? Signed-off-by: strawberry --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e85afee3..67f7857c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -108,12 +108,12 @@ webpage = { version = "2.0", default-features = false } #[dependencies.rocksdb] #git = "https://github.com/zaidoon1/rust-rocksdb" -#rev = "8526d0c8c4045fb68d5eb48c1db93f6adcfd1ff8" +#rev = "8fdd559b590bd12cb506f9818bef484d51cac5e1" #default-features = false #features = ["multi-threaded-cf", "zstd", "snappy", "lz4"] #optional = true -rocksdb = { version = "0.21.0", default-features = false, features = ["multi-threaded-cf", "zstd", "snappy", "lz4"], optional = true } +rocksdb = { version = "0.21.0", default-features = true, features = ["multi-threaded-cf", "zstd"], optional = true } [target.'cfg(unix)'.dependencies]