diff options
| -rw-r--r-- | Cargo.toml | 1 | ||||
| -rw-r--r-- | README.md | 6 |
2 files changed, 7 insertions, 0 deletions
@@ -5,6 +5,7 @@ authors = ["Mica White <botahamec@outlook.com>"] edition = "2018" rust-version = "1.31" description = "Handle unexpected errors" +readme = "README.md" documentation = "https://docs.rs/exun" repository = "https://github.com/botahamec/exun/" license-file = "LICENSE.md" diff --git a/README.md b/README.md new file mode 100644 index 0000000..ff19d6f --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# Exun + +Keep unexpected errors, and handle them later. + +* `Expect` is an error type. It'll hold on to your unexpected error if you have +one, so you can figure out what to do with it later. |
