Cargo Features

[dependencies]
relox = { version = "0.1.0", default-features = false, features = ["no_std", "host", "embedded", "embedded_minimal", "compress", "decompress", "no_sanity_check"] }
default = compress, decompress

These default features are set whenever relox is added without default-features = false somewhere in the dependency tree.

no_std embedded? embedded_minimal?
host = compress
embedded = decompress, no_std
embedded_minimal = decompress, no_bounds_check, no_sanity_check, no_std
compress default host?

Enables std of byteorder

decompress default embedded? embedded_minimal?
no_bounds_check no_sanity_check embedded_minimal?

relox has 8 features without comments.