Cargo Features
[dependencies]
earshot = { version = "0.1.0", default-features = false, features = ["std", "alloc"] }
- default = alloc, std
-
These default features are set whenever
earshot
is added without
somewhere in the dependency tree.default-features = false - std default
-
Currently just impls
std::error::Error
for theError
type. - alloc default
-
Allocates internal buffers on the heap instead of the stack.