base116 0.1.11

Like Base85… but 31 more.
Documentation
Base116
=======

Base116 is like Base85, but it increases data size by only 1/6 instead of
1/4.

Base116 exploits properties of UTF-8 to convert arbitrary binary data to
valid, printable UTF-8, with a lower size overhead than is possible with
any printable ASCII encoding.

For example, this binary data (in hex):

```text
9329bd4b43da0bfdd1d97bdf081a2d42ec540155
```

is encoded as:

```text
DZ<Oȥґ|yO(WFic{2n㎨r~9*Dz
```

Wrapping ‘DZ’ and ‘Dz’ characters are added by default to make encoded data
easier to select, as the data may start or end with combining characters or
characters from right-to-left scripts.

This crate provides both a binary and a library.

Installation
------------

Install with [Cargo](https://doc.rust-lang.org/cargo/):

```bash
cargo install base116
```

Usage
-----

`base116` behaves like the `base64` binary on Unix-like systems: `base116`
encodes, and `base116 -d` decodes. See `base116 --help` for more information.

Documentation
-------------

[Documentation for the library is available on docs.rs.][docs]

[docs]: https://docs.rs/base116

License
-------

Base116 is licensed under version 3 of the GNU Affero General Public License,
or (at your option) any later version. See [LICENSE](LICENSE).

In addition, the [Eips Exceptions](licenses/Eips-Exceptions) apply to Base116.
These exceptions are additional permissions under section 7 of the GNU AGPL,
version 3; as such, if you modify Base116, you may choose whether to extend
them to your modified version. For more information about these exceptions, see
[this repository](https://codeberg.org/taylordotfish/eips-exceptions).

Please note that you do not have to license your project under the AGPL if you
use Base116. Your project can be licensed under any AGPLv3-compatible license,
including nearly all permissive licenses such as MIT or Apache 2.0. The terms
of the AGPL will apply only to the combination of your project with Base116
(e.g., source code must be provided along with any compiled binaries); any
portion of your project that does not depend on Base116 may be used without
adherence to the AGPL.

Contributing
------------

By contributing to Base116, you agree that your contribution may be used
according to the terms of Base116’s license, including the Eips Exceptions.