Cargo Features
[dependencies]
panicking = { version = "0.5.0", default-features = false, features = ["abort", "std"] }
- default = std
-
The
std
feature is set by default wheneverpanicking
is added without
somewhere in the dependency tree.default-features = false - abort
-
enable to link the library with the (unstable)
panic_abort
standard crate, and makepanicking
always returnfalse
. - std default
-
disable to make the library
#![no_std]
.