Cargo Features
[dependencies]
anycase = { version = "0.1.0", default-features = false, features = ["std", "alloc"] }
- default = std
-
The
std
feature is set by default wheneveranycase
is added without
somewhere in the dependency tree.default-features = false - std default = alloc
- alloc std
-
Affects
anycase::to_camel
,anycase::to_pascal
,anycase::to_snake
,anycase::to_screaming_snake
,anycase::to_kebab
,anycase::to_screaming_kebab
,anycase::to_train
,anycase::to_lower
,anycase::to_title
,anycase::to_upper
,raw::to_string
…