hateno 0.1.1

A compact binary serialization format with built-in compression
Documentation
# hateno [![crates.io version]https://img.shields.io/crates/v/hateno?style=flat]https://crates.io/crates/hateno ![License]https://img.shields.io/crates/l/hateno ![Deps.rs Crate Dependencies (latest)]https://img.shields.io/deps-rs/hateno/latest [![docs.rs]https://img.shields.io/docsrs/hateno][docs]

Hateno is a compact binary serialization format heavily influenced by [NBT][nbt]. It was originally conceived as a thought experiment of "what if Notch dedicated more than an afternoon to designing NBT?" but I think it stands pretty well on its own.

## Getting Started

```toml
[dependencies]
hateno = "0.1.0"
```

## Documentation

See the [specification][spec] for format details, and read the tests to get a good understanding of how the libraries work. I promise they are quite simple!

## Additional crates

Hateno also has a few additional crates:

- [hateno_convert][hateno_convert] for converting NBT to Hateno.
- [hateno_serde][hateno_serde] to use [serde][serde] with Hateno.

[docs]: https://docs.rs/hateno
[nbt]: https://minecraft.wiki/w/NBT_format
[hateno_convert]: https://crates.io/crate/hateno_convert
[hateno_serde]: https://crates.io/crate/hateno_serde
[serde]: https://serde.rs
[spec]: https://tangled.sh/@kokirigla.de/hateno/blob/trunk/docs/SPECIFICATION.md