This repository handles conversion from strings in USI format defined in the spec. It consists of two crates: a library crate that defines items (rlib
crate), and a library crate that defines C bindings to them (cdylib
crate).
Crates in this repository do not require the standard library (i.e., can be used by no_std
crates) and suitable for embedded systems, as well as ordinary applications, of course.
alloc
:alloc
-related functionalities are made available. Enabled by default.std
:std
-related functionalities are made available. Impliesalloc
. Enabled by default.