mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
29 lines
857 B
TOML
29 lines
857 B
TOML
[package]
|
|
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"
|
|
path = "examples/cln-plugin-startup.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.51"
|
|
bytes = "1.1.0"
|
|
log = { version = "0.4.14", features = ['std'] }
|
|
serde = { version = "1.0.131", features = ["derive"] }
|
|
serde_json = "1.0.72"
|
|
tokio-util = { version = "0.6.9", features = ["codec"] }
|
|
tokio = { version="1", features = ['io-std', 'rt', 'sync', 'macros', 'io-util'] }
|
|
tokio-stream = "0.1"
|
|
futures = "0.3"
|
|
cln-rpc = { path = "../cln-rpc", version = "0.1.0" }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread", ] }
|
|
env_logger = "0.9"
|
|
cln-grpc = { path = "../cln-grpc" }
|