Astro Format is a library for efficiently encoding and decoding a set of bytes into a single buffer format.
[dependencies]
astro-format = "0.2.0"
astro_format::{encode, decode};
```
let set: Vec
let astro = encode(&set); ```
```
let astro: Vec
let set = decode(&astro); ```
2022-04-08