From a023cbc082da3953382d0d041ca94b830d087829 Mon Sep 17 00:00:00 2001 From: GW_MC <72297530+GWMCwing@users.noreply.github.com> Date: Wed, 1 Apr 2026 10:02:48 +0000 Subject: [PATCH] feat: Add 'anyhow' dependency --- Cargo.lock | 1 + apps/nxmesh-agent/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 6a0439e..984f48c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2424,6 +2424,7 @@ dependencies = [ name = "nxmesh-agent" version = "0.1.0" dependencies = [ + "anyhow", "async-trait", "chrono", "clap", diff --git a/apps/nxmesh-agent/Cargo.toml b/apps/nxmesh-agent/Cargo.toml index 8c833b8..2186cac 100644 --- a/apps/nxmesh-agent/Cargo.toml +++ b/apps/nxmesh-agent/Cargo.toml @@ -56,6 +56,7 @@ zip = { workspace = true } # CLI clap = { workspace = true, features = ["derive"] } +anyhow = "1.0.102" [dev-dependencies] tokio-test.workspace = true