Cargo Features

[dependencies]
failure_without_backtrace = { version = "0.1.2", default-features = false, features = ["std", "derive", "backtrace"] }
default = derive, std

These default features are set whenever failure_without_backtrace is added without default-features = false somewhere in the dependency tree.

std default
derive default = failure_derive_without_backtrace

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.

backtrace implicit feature

Enables backtrace

backtrace:

A library to acquire a stack trace (backtrace) at runtime in a Rust program

failure_derive_without_backtrace derive