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<Vec<u8>>;
let astro = encode(&set);
```
```
let astro: Vec<u8>;
let set = decode(&astro);
```
2022-04-08