Cargo Features
[dependencies]
orc-rust = { version = "0.5.0", default-features = false, features = ["async", "cli", "opendal"] }
- default = async
-
The
async
feature is set by default wheneverorc-rust
is added without
somewhere in the dependency tree.default-features = false - async default = async-trait, futures, futures-util, tokio
-
Affects
orc-rust::async_arrow_reader
,metadata::read_metadata_async
… - cli = anyhow, clap
-
Required by orc-export, orc-metadata and orc-stats binaries
- opendal
-
Enable opendal support.
Enables opendal
Features from optional dependencies
In crates that don't use the dep:
syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.
- async-trait async
-
Enables async-trait
async support
- futures async
- futures-util async
- tokio async
- anyhow cli?
-
Enables anyhow
cli
- clap cli?