Cargo Features

[dependencies]
nate = { version = "0.4.0", default-features = false, features = ["std", "alloc"] }
default = std

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

std default = alloc

disable #![no_std], implies alloc

Affects details::RenderInto.render_io

alloc std

enable features found in the alloc crate, e.g. std::io::Write

Affects details::RenderInto.render_string