mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 01:43:36 +01:00
0a6870f13d
We bump the version to minor version 0.2 to allow ourselves to bump on patch level when we need to fix a bug or update a dependency. Changelog-Changed: Plugins: `cln-grpc` Upgrade tonic version and introduce new versioning scheme. Signed-off-by: Peter Neuroth <pet.v.ne@gmail.com>
31 lines
1.0 KiB
TOML
31 lines
1.0 KiB
TOML
[package]
|
|
name = "cln-plugin"
|
|
version = "0.2.0"
|
|
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.2", path = "../cln-grpc" }
|