acon 0.5.2

A native Rust ACON encoder and decoder. Provides FromStr and Display for deserialization and serialization respectively. Comes with some utilities to make working with the data structure easier.
Documentation
1
2
3
4
5
6
7
8
9
10
#! /bin/bash -e

echo '# This file is used to benchmark acon' > 'lorem ipsum'
echo '[' >> 'lorem ipsum'
command -v lorem >/dev/null 2>&1 || {
	echo "Command lorem not found. Aborting"
	exit 1
}
echo "$(lorem -p 10000)" | sed 's/^/\t/g' >> 'lorem ipsum'
echo '$' >> 'lorem ipsum'