Cargo Features
[dependencies]
yaxpeax-hexagon = { version = "0.1.0", default-features = false, features = ["std", "alloc", "fmt"] }
- default = fmt, std
-
These default features are set whenever
yaxpeax-hexagon
is added without
somewhere in the dependency tree.default-features = false - std default = alloc
-
yaxpeax-arch (and this crate) can drop some featuers and be no-std
Enables std of yaxpeax-arch
- alloc std
-
some yaxpeax-arch features require only alloc, not std
Enables alloc of yaxpeax-arch
- fmt default
-
regardless of no-std, fmt impls are not necessarily required, and so are optional here