From ac1b24aa8631dcf7ebaa4a44b5d6cc1cdacaf058 Mon Sep 17 00:00:00 2001 From: Sergi Delgado Segura Date: Fri, 19 Apr 2024 10:12:44 -0400 Subject: [PATCH] Adds cargo template pointing to a custom version of tonic_lnd We need the endorsement flag which is not included in the fedimint version of tonic_lnd --- templates/rustlang/Cargo.toml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 templates/rustlang/Cargo.toml diff --git a/templates/rustlang/Cargo.toml b/templates/rustlang/Cargo.toml new file mode 100644 index 0000000..a5c1e45 --- /dev/null +++ b/templates/rustlang/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "attack-ln" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +tonic_lnd = { git = "https://github.com/sr-gi/tonic_lnd", branch="2024-04-attackathon-rpc", features=["lightningrpc", "routerrpc"], package="fedimint-tonic-lnd"} \ No newline at end of file