Cargo Features
[dependencies]
com = { version = "0.6.0", default-features = false, features = ["production", "std"] }
- default = std
-
The
std
feature is set by default whenevercom
is added without
somewhere in the dependency tree.default-features = false - production = std
-
Production requires std because production::registration uses CString.
Affects
com::production
… - std default production?