Cargo Features
[dependencies]
anystr = { version = "0.1.1", default-features = false, features = ["std", "alloc", "unstable"] }
- default = std
-
The
std
feature is set by default wheneveranystr
is added without
somewhere in the dependency tree.default-features = false - std default = alloc
-
Enables std of ascii and widestring
- alloc std
-
Enables alloc of ascii and widestring
Affects
anystr::AnyString
… - unstable