diff options
| author | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2020-05-18 10:54:49 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2020-05-18 10:55:08 -0400 |
| commit | ebb69ed108bbb530e16806974291cd3ce265e990 (patch) | |
| tree | 5a76934bffcd9696cc2d481138233f9aaca06f52 /Cargo.lock | |
| parent | 668606d9a584e6a55ba698ee5f6fb4892cf02a37 (diff) | |
Refactor error reporting with `anyhow`.
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -1,6 +1,18 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. [[package]] +name = "anyhow" +version = "1.0.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85bb70cc08ec97ca5450e6eba421deeea5f172c0fc61f78b5357b2a8e8be195f" + +[[package]] +name = "base64" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53d1ccbaf7d9ec9537465a97bf19edc1a4e158ecb49fc16178202238c569cc42" + +[[package]] name = "bitflags" version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -117,6 +129,8 @@ checksum = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677" name = "roru" version = "0.1.0" dependencies = [ + "anyhow", + "base64", "blake2", "rusqlite", ] |