Skip to content

Commit

Permalink
Clearer opt dependencies in cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
LDeakin committed Dec 4, 2023
1 parent 4befd02 commit 8bbcc86
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ sharding = [] # Enable the sharding codec
transpose = ["dep:ndarray"] # Enable the transpose codec
zfp = ["dep:zfp-sys"] # Enable the experimental zfp codec
zstd = ["dep:zstd"] # Enable the zstd codec
http = ["dep:reqwest", "dep:url", "object_store/http"] # Enable the HTTP store (including the async store if `async` is enabled)
s3 = ["async", "object_store/aws"] # Enable the Amazon S3 store
gcp = ["async", "object_store/gcp"] # Enable the Google Cloud Storage store
azure = ["async", "object_store/azure"] # Enable the Microsoft Azure Blob Storage store
http = ["dep:reqwest", "dep:url", "object_store/http"] # Enable the HTTP store (including the async variant if `async` is enabled)
s3 = ["async", "dep:object_store", "object_store/aws"] # Enable the Amazon S3 store
gcp = ["async", "dep:object_store", "object_store/gcp"] # Enable the Google Cloud Storage store
azure = ["async", "dep:object_store", "object_store/azure"] # Enable the Microsoft Azure Blob Storage store
zip = ["dep:zip"] # Enable the zip storage adapter
ndarray = ["dep:ndarray"] # Adds ndarray utility functions to Array
async = ["dep:object_store", "dep:async-trait", "dep:async-recursion", "dep:async-lock", "dep:futures"] # Enable experimental async API (async stores and array/group operations)
Expand Down

0 comments on commit 8bbcc86

Please sign in to comment.