Cargo Features

[dependencies]
com = { version = "0.6.0", default-features = false, features = ["production", "std"] }
default = std

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

production = std

Production requires std because production::registration uses CString.

Affects com::production

std default production?