From 8b28225af9065a7660abcd2cb1a23834a01f74a8 Mon Sep 17 00:00:00 2001 From: girlbossceo Date: Mon, 23 Oct 2023 22:22:42 -0400 Subject: [PATCH] add lz4 to rocksdb features Signed-off-by: girlbossceo --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c5eda7c2..1762a165 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,3 +1,5 @@ +cargo-features = ["profile-rustflags"] + [package] name = "cowonduit" description = "A Matrix homeserver written in Rust" @@ -88,7 +90,7 @@ heed = { git = "https://github.com/timokoesters/heed.git", rev = "f6f825da7fb2c7 # Used for ruma wrapper serde_html_form = "0.2.0" -rocksdb = { git = "https://github.com/rust-rocksdb/rust-rocksdb", rev = "bbb3fad23a3e41ead0fbf25c39d7300a14b2be7b", default-features = false, features = ["multi-threaded-cf", "snappy", "zstd", "io-uring"], optional = true } +rocksdb = { git = "https://github.com/rust-rocksdb/rust-rocksdb", rev = "bbb3fad23a3e41ead0fbf25c39d7300a14b2be7b", default-features = false, features = ["multi-threaded-cf", "snappy", "lz4", "zstd", "io-uring"], optional = true } thread_local = "1.1.7" # used for TURN server authentication