Cargo Features
[dependencies]
nate = { version = "0.4.0", default-features = false, features = ["std", "alloc"] }
- default = std
-
The
std
feature is set by default whenevernate
is added without
somewhere in the dependency tree.default-features = false - std default = alloc
-
disable
#![no_std]
, impliesalloc
Affects
details::RenderInto.render_io
… - alloc std
-
enable features found in the alloc crate, e.g. std::io::Write
Affects
details::RenderInto.render_string
…