Astro Format is a library for efficiently transcoding arrays into a single buffer and native rust types into hexadecimal strings.
text
[dependencies]
astro-format = "0.8.0"
text
astro_format::{ string, arrays };
```text
let ars: Vec
let buf = arrays::encode(&ars);
let ars = arrays::decode(&buf).unwrap(); ```
```text
let buf: Vec
let enc = string::encode::bytes(&buf);
let dec = string::decode::as_bytes(&enc).unwrap(); ```
2022-05-01