From 70b7f58b6f0f97be8f18c65e4ac28f431af595f2 Mon Sep 17 00:00:00 2001 From: xxchan Date: Mon, 4 Mar 2024 14:21:45 +0800 Subject: [PATCH] build: turn off default-features for opendal This forces downstream applications to use opendal default features unnecessarily. --- Cargo.toml | 2 +- icelake/Cargo.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7a270a3..79878b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ arrow-csv = { version = ">=48" } arrow-cast = { version = ">=48" } arrow-ord = { version = ">=48" } bytes = "1" -opendal = { version = ">=0.40", features = ["layers-prometheus"] } +opendal = { version = ">=0.40", default-features = false, features = ["layers-prometheus"] } uuid = { version = "1", features = ["v4"] } serde = "1" serde_json = "1" diff --git a/icelake/Cargo.toml b/icelake/Cargo.toml index 9e0fb66..f179554 100644 --- a/icelake/Cargo.toml +++ b/icelake/Cargo.toml @@ -57,6 +57,7 @@ csv = { workspace = true } env_logger = { workspace = true } arrow-csv = { workspace = true } libtest-mimic = { workspace = true } +opendal = { workspace = true, features = ["services-memory", "services-fs"] } [features] prometheus = ["dep:prometheus"]