From ac4590952b31c081dc3f3b1ed767d768382aa5d0 Mon Sep 17 00:00:00 2001 From: strawberry Date: Fri, 3 May 2024 18:07:52 -0400 Subject: [PATCH] set io_uring for rocksdb a default feature this was already enabled by default by rocksdb technically, but it wasn't building with it properly. Signed-off-by: strawberry --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index bb17f727..0b638a7c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -362,6 +362,7 @@ default = [ "brotli_compression", "zstd_compression", "release_max_log_level", + "io_uring", ] backend_sqlite = ["sqlite"] backend_rocksdb = ["rocksdb"]