Cargo Features

[dependencies]
opslag = { version = "0.2.1", default-features = false, features = ["std", "alloc", "defmt"] }
default = alloc, std

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

std default

'std' sets whether to use the std-library. It also enables the log-crate
instead of defmt, even if defmt feature is enabled.

Enables log

alloc default

'alloc' controls whether we are using built-in Vec for parsing/handling.
without it, we fall back on heapless::Vec with fixed stack sizes.
This is independent of the 'std' feature (and can be used in no_std).

defmt

Whether to use defmt for logging. This is only possible _without_ the std feature flag.

Enables defmt ^0.3.10