Cargo Features
[dependencies]
anyhow = { version = "1.0.102", default-features = false, features = ["std", "backtrace"] }
- default = std
-
The
stdfeature is set by default wheneveranyhowis added withoutsomewhere in the dependency tree.default-features = false - std default
-
Affects
kind::Boxed,kind::BoxedKind,anyhow::Chain,wrapper::BoxedError… - backtrace
-
THIS HAS NO EFFECT. This feature remains to preserve compatibility with the old
backtraceoptional dependency that this crate used to have.