Cargo Features
[dependencies]
roe = { version = "0.0.5", default-features = false, features = ["std", "alloc"] }
- default = std
-
The
std
feature is set by default wheneverroe
is added without
somewhere in the dependency tree.default-features = false - std default = alloc
-
Enable dependency on
std
, the Rust standard library. This feature enablesstd::error::Error
implementations on the error types inroe
. - alloc std
-
Enable a dependency on
alloc
, The Rust collections library. This feature enables APIs that depend onVec
andString
.Affects
lowercase::to_ascii_lowercase
,titlecase::to_ascii_titlecase
,uppercase::to_ascii_uppercase
…