Cargo Features

[dependencies]
shrinkwraprs = { version = "0.3.0", default-features = false, features = ["strict", "std"] }
default = std

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

strict

Forces crate to compile cleanly. Mostly used for CI; build must pass with this feature to be merged in.

std default

Makes the crate emit code that refers to paths in std rather than core.