Cargo Features

[dependencies]
roe = { version = "0.0.5", default-features = false, features = ["std", "alloc"] }
default = std

The std feature is set by default whenever roe is added without default-features = false somewhere in the dependency tree.

std default = alloc

Enable dependency on std, the Rust standard library. This feature enables std::error::Error implementations on the error types in roe.

alloc std

Enable a dependency on alloc, The Rust collections library. This feature enables APIs that depend on Vec and String.

Affects lowercase::to_ascii_lowercase, titlecase::to_ascii_titlecase, uppercase::to_ascii_uppercase