Skip to content

Commit

Permalink
build: turn off default-features for opendal
Browse files Browse the repository at this point in the history
This forces downstream applications to use opendal default features unnecessarily.
  • Loading branch information
xxchan committed Mar 4, 2024
1 parent 54fd72f commit 70b7f58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
1 change: 1 addition & 0 deletions icelake/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit 70b7f58

Please sign in to comment.