keriox icon indicating copy to clipboard operation
keriox copied to clipboard

`no_std` support for embedded use cases

Open chunningham opened this issue 3 years ago • 0 comments

KERIOX (being in rust) is well suited to be used in embedded environments, as long as it can be made no_std. The current limiting factor is heap allocated Vecs, which can be replaced by generic-sized arrays using const generics (currently only possible in nightly). This would also make WASM very easy to target.

chunningham avatar Dec 09 '20 16:12 chunningham