From a7f205005dec844d2bc55346b318cad430efa6c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Renault?= Date: Mon, 3 Dec 2018 16:41:42 +0100 Subject: [PATCH] feat: Add the "sse" feature flag to allow some RocksDB optimisations --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index c92089e28..3ac785356 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,6 +30,10 @@ git = "https://github.com/pingcap/rust-rocksdb.git" [dependencies.group-by] git = "https://github.com/Kerollmops/group-by.git" +[features] +default = [] +sse = ["rocksdb/sse"] + [dev-dependencies] csv = "1.0" elapsed = "0.1"