summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authortaitep <taitep@taitep.se>2025-12-21 19:06:23 +0100
committertaitep <taitep@taitep.se>2025-12-21 19:06:23 +0100
commit944ed573c6f69e34c56179f98efd71b05e2bb02b (patch)
treea0058426e9a4d7fc4c9f0a26a6fe86f3627284b2 /Cargo.lock
parent2e1c0a7dce7b5ce225b7ac56897eff2c65acdaa7 (diff)
Switch the current binary to use anyhow errors and add a proper argument number check
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 e08dae3..a77c839 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3,6 +3,12 @@
version = 4
[[package]]
+name = "anyhow"
+version = "1.0.100"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
+
+[[package]]
name = "libc"
version = "0.2.176"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -21,5 +27,6 @@ dependencies = [
name = "trve"
version = "0.0.0"
dependencies = [
+ "anyhow",
"memmap2",
]