Cargo Features
[dependencies]
boba = { version = "5.0.0", default-features = false, features = ["std"] }
- default = std
-
The
std
feature is set by default wheneverboba
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enable dependency on
std
, the Rust standard library. This feature enablesstd::error::Error
implementations on the error types inboba
.