mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
31 lines
1.0 KiB
TOML
31 lines
1.0 KiB
TOML
[package]
|
|
name = "cln-plugin"
|
|
version = "0.1.8"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
description = "A CLN plugin library. Write your plugin in Rust."
|
|
homepage = "https://github.com/ElementsProject/lightning/tree/master/plugins"
|
|
repository = "https://github.com/ElementsProject/lightning"
|
|
documentation = "https://docs.rs/cln-plugin"
|
|
|
|
[[example]]
|
|
name = "cln-plugin-startup"
|
|
path = "examples/cln-plugin-startup.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.51"
|
|
bytes = "1.1.0"
|
|
log = { version = "^0.4", features = ['std'] }
|
|
serde = { version = "^1", features = ["derive"] }
|
|
serde_json = "1.0.72"
|
|
tokio-util = { version = "0.7", features = ["codec"] }
|
|
tokio = { version="1", features = ['io-std', 'rt', 'sync', 'macros', 'io-util'] }
|
|
tokio-stream = "0.1"
|
|
futures = "0.3"
|
|
tracing-subscriber = { version = "^0.3", features = ["env-filter", "tracing"] }
|
|
tracing = { version = "^0.1", features = ["async-await", "log"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread", ] }
|
|
cln-grpc = { version = "0.1", path = "../cln-grpc" }
|