From df120df1cc074f43f97cf5bc807576493a569599 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Renault?= Date: Mon, 10 Dec 2018 19:58:42 +0100 Subject: [PATCH] chore: Add the "simd" feature flag by default --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index dd7eef803..5e98ff5a3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,9 +31,9 @@ git = "https://github.com/pingcap/rust-rocksdb.git" git = "https://github.com/Kerollmops/group-by.git" [features] -default = [] +default = ["simd"] i128 = ["bincode/i128", "byteorder/i128"] -sse = ["rocksdb/sse"] +simd = ["rocksdb/sse"] [dev-dependencies] csv = "1.0"