From e586a612282cb851d89dbd7c26792d843c650072 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Fri, 13 May 2022 17:14:27 +0200 Subject: [PATCH] cln-plugin: Add metadata required by crates.io --- plugins/Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/Cargo.toml b/plugins/Cargo.toml index 8acda0435..ad859ecd1 100644 --- a/plugins/Cargo.toml +++ b/plugins/Cargo.toml @@ -2,6 +2,9 @@ name = "cln-plugin" version = "0.1.0" edition = "2021" +license = "MIT" +repository = "https://github.com/ElementsProject/lightning/tree/master/plugins" +description = "A CLN plugin library. Write your plugin in Rust." [[example]] name = "cln-plugin-startup" @@ -17,7 +20,7 @@ tokio-util = { version = "0.6.9", features = ["codec"] } tokio = { version="1", features = ['io-std', 'rt', 'sync'] } tokio-stream = "*" futures = "0.3" -cln-rpc = { path = "../cln-rpc" } +cln-rpc = { path = "../cln-rpc", version = "0.1.0" } [dev-dependencies] tokio = { version = "1", features = ["macros", "rt-multi-thread", ] }