Cargo Features
[dependencies]
aur = { version = "0.2.0", default-features = false, features = ["hyper-support", "reqwest-support"] }
- default = hyper-support
-
The
hyper-support
feature is set by default wheneveraur
is added without
somewhere in the dependency tree.default-features = false - hyper-support default = futures, http, hyper
- reqwest-support = reqwest
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.
- futures hyper-support
-
Enables futures ^0.1
- http hyper-support
-
Enables http ^0.1
- hyper hyper-support
-
Enables hyper ^0.12
Affects
bridge::hyper
… - reqwest reqwest-support?
-
Enables reqwest ^0.9
Affects
bridge::reqwest
…