Cargo Features

[dependencies]
rust-dropbox = { version = "0.2.8", default-features = false, features = ["non-blocking", "blocking"] }
default = blocking

The blocking feature is set by default whenever rust-dropbox is added without default-features = false somewhere in the dependency tree.

non-blocking = async-trait, reqwest

Affects client::AsyncDBXClient

blocking default = ureq

Affects client::DBXClient

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.

ureq blocking
reqwest non-blocking?

Enables reqwest ^0.11.1

async-trait non-blocking?