bow 1.0.1

Boxed version of Cow type.
Documentation
Box-on-write
============

Boxed alternatives to `ToOwned` and `Cow`. You may freely use and modify this
code under the [CC0 1.0 Universal License](LICENSE).

You can find the rustdoc [here](https://docs.charr.xyz/bow/bow/).

Usage
-----

To use in your own project, just add the below to your `Cargo.toml` file.

```toml
[dependencies]
bow = "1.0"
```

If you're interested in using this crate with `no_std` and the `alloc` crate:

```toml
[dependencies]
bow = { version = "1.0", default-features = false }
```