Cargo Features
[dependencies]
file-with-meta = { version = "0.2.0", default-features = false, features = ["ureq"] }
- default = ureq
-
The
ureq
feature is set by default wheneverfile-with-meta
is added without
somewhere in the dependency tree.default-features = false
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 default
-
Affects
file-with-meta::build_req
…