errormake
=========
[][crates]
[][docs]

A macro for automatically creating Error structs in Rust
- [Source code][repo]
- [Documentation][docs]
- [Crates.io page][crates]
## Usage
To use in your rust crate, add this to your `Cargo.toml`:
```toml
[dependencies]
errormake = "0.1.1"
```
and add this in the module where you want to use it
```rust
use errormake::errormake;
```
For the full documentation on how to use this crate, consult this
crate's [documentation on docs.rs][docs]
[crates]: https://crates.io/crates/errormake
[docs]: https://docs.rs/errormake
[repo]: https://github.com/JarredAllen/errormake