diff --git a/services/tunnelbroker/rust-notifications/Cargo.lock b/services/tunnelbroker/rust-notifications/Cargo.lock --- a/services/tunnelbroker/rust-notifications/Cargo.lock +++ b/services/tunnelbroker/rust-notifications/Cargo.lock @@ -31,6 +31,12 @@ "libc", ] +[[package]] +name = "anyhow" +version = "1.0.62" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1485d4d2cc45e7b201ee3767015c96faa5904387c9d87c6efdd0fb511f12d305" + [[package]] name = "autocfg" version = "1.1.0" @@ -779,6 +785,7 @@ version = "0.1.0" dependencies = [ "a2", + "anyhow", "cxx", "cxx-build", "fcm", diff --git a/services/tunnelbroker/rust-notifications/Cargo.toml b/services/tunnelbroker/rust-notifications/Cargo.toml --- a/services/tunnelbroker/rust-notifications/Cargo.toml +++ b/services/tunnelbroker/rust-notifications/Cargo.toml @@ -14,6 +14,7 @@ cxx = "1.0" log = "0.4" fcm = "0.9" +anyhow = "1.0" [build-dependencies] cxx-build = "1.0"