Cargo Features

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

* 'alloc' controls whether we are using built-in Vec for parsing/handling.
without it, we fall back on heapless::Vec with fixed stack sizes.
* 'std' sets whether to use std::time::Instant/Duration or embassy_time
variants of that.

std default

Enables log

alloc default