2022-01-17 12:59:09 +01:00
|
|
|
[package]
|
|
|
|
name = "cln-plugin"
|
2023-09-26 23:50:03 +02:00
|
|
|
version = "0.1.6"
|
2022-01-17 12:59:09 +01:00
|
|
|
edition = "2021"
|
2022-05-13 17:14:27 +02:00
|
|
|
license = "MIT"
|
|
|
|
description = "A CLN plugin library. Write your plugin in Rust."
|
2022-12-30 13:47:35 +01:00
|
|
|
homepage = "https://github.com/ElementsProject/lightning/tree/master/plugins"
|
|
|
|
repository = "https://github.com/ElementsProject/lightning"
|
|
|
|
documentation = "https://docs.rs/cln-plugin"
|
2022-01-17 12:59:09 +01:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "cln-plugin-startup"
|
|
|
|
path = "examples/cln-plugin-startup.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0.51"
|
|
|
|
bytes = "1.1.0"
|
2022-01-21 14:45:16 +01:00
|
|
|
log = { version = "0.4.14", features = ['std'] }
|
2022-01-17 12:59:09 +01:00
|
|
|
serde = { version = "1.0.131", features = ["derive"] }
|
|
|
|
serde_json = "1.0.72"
|
2022-12-13 15:56:34 +01:00
|
|
|
tokio-util = { version = "0.7", features = ["codec"] }
|
2022-05-13 17:20:02 +02:00
|
|
|
tokio = { version="1", features = ['io-std', 'rt', 'sync', 'macros', 'io-util'] }
|
|
|
|
tokio-stream = "0.1"
|
2022-01-17 12:59:09 +01:00
|
|
|
futures = "0.3"
|
2022-12-13 15:56:34 +01:00
|
|
|
env_logger = "0.10"
|
2022-01-17 12:59:09 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread", ] }
|
|
|
|
cln-grpc = { path = "../cln-grpc" }
|