Astro Format is a library for transcoding between multiple arrays and a single buffer.
Roy R. O. Okello
text
[dependencies]
astro-format = "1.0.0"
text
use astro_format;
```text let initial_arrays: Vec<&[u8]> = Vec::new();
let encodedbuffer: Vec
text
let decoded_arrays: Vec<&[u8]> = astro_format::decode(&encoded_buffer)?;
2022-08-17