From 94248ad9822ea01143c2aa409cdf5afe6cc5598f Mon Sep 17 00:00:00 2001 From: Steve Lau Date: Tue, 6 Aug 2024 16:44:02 +0800 Subject: [PATCH] Chore: disable Openraft default features --- rt-monoio/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rt-monoio/Cargo.toml b/rt-monoio/Cargo.toml index ba98db26a..c30f8f104 100644 --- a/rt-monoio/Cargo.toml +++ b/rt-monoio/Cargo.toml @@ -15,9 +15,9 @@ license = "MIT OR Apache-2.0" repository = "https://github.com/datafuselabs/openraft" [dependencies] -openraft = { path = "../openraft", version = "0.10.0", features = ["singlethreaded"] } +openraft = { path = "../openraft", version = "0.10.0", default-features = false, features = ["singlethreaded"] } rand = "0.8" tokio = { version = "1.22", features = ["sync"] } monoio = "0.2.3" -local-sync = "0.1.1" \ No newline at end of file +local-sync = "0.1.1"