aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorTeddy Wing2021-04-11 20:10:39 +0200
committerTeddy Wing2021-04-11 20:10:39 +0200
commit01c82770392b23176b4693d4456109f41a50fe45 (patch)
treeb43b4e6513855d5dcc47d09782fe422f2eaeb655 /Cargo.lock
parent0acbf02b7e380ac352f3e090023d9f9b28fbdb30 (diff)
downloadformurapid-01c82770392b23176b4693d4456109f41a50fe45.tar.bz2
fill(): Remove `unwrap`s
Replace these with 'anyhow' `Result`s.
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock7
1 files changed, 7 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index ec576e4..4f228f3 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -13,6 +13,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
[[package]]
+name = "anyhow"
+version = "1.0.40"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "28b2cd92db5cbd74e8e5028f7e27dd7aa3090e89e4f2a197cc7c8dfb69c7063b"
+
+[[package]]
name = "autocfg"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -337,6 +343,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
name = "formurapid"
version = "0.0.1"
dependencies = [
+ "anyhow",
"derive_builder",
"exitcode",
"getopts",