rust: Bump cln-plugin==0.5

Due to the breaking change in 9dcc264d4c8e244f0cb827c8a81e61f977011486.
This commit is contained in:
Christian Decker
2025-08-13 17:47:22 +02:00
committed by Rusty Russell
parent 45ba719068
commit 516861c5ec
7 changed files with 7 additions and 7 deletions

2
Cargo.lock generated
View File

@@ -536,7 +536,7 @@ dependencies = [
[[package]]
name = "cln-plugin"
version = "0.4.0"
version = "0.5.0"
dependencies = [
"anyhow",
"bytes",

View File

@@ -1,6 +1,6 @@
[package]
name = "cln-plugin"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
license = "MIT"
description = "A CLN plugin library. Write your plugin in Rust."

View File

@@ -17,7 +17,7 @@ tokio = "1"
log-panics = "2"
cln-plugin = { version = "0.4", path = "../../plugins" }
cln-plugin = { version = "0.5", path = "../../plugins" }
bitcoin-payment-instructions = { git = "https://github.com/rust-bitcoin/bitcoin-payment-instructions.git", rev = "d071ce27734ca13be2471f81abf8699d902c3a10", features = [
"http",

View File

@@ -18,7 +18,7 @@ log = "0.4"
rcgen = { version = "0.13.1", features = ["pem", "x509-parser"] }
prost = "0.12"
cln-grpc = { version = "0.5", features = ["server"], path = "../../cln-grpc"}
cln-plugin = { version = "0.4", path = "../../plugins" }
cln-plugin = { version = "0.5", path = "../../plugins" }
cln-rpc = { version = "0.5", path = "../../cln-rpc" }
serde_json = "1.0.113"

View File

@@ -14,7 +14,7 @@ path = "src/service.rs"
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
cln-plugin = { version = "0.4", path = "../" }
cln-plugin = { version = "0.5", path = "../" }
cln-rpc = { version = "0.5", path = "../../cln-rpc" }
hex = "0.4"
log = "0.4"

View File

@@ -31,7 +31,7 @@ utoipa = { version = "5", features = ['axum_extras'] }
log-panics = "2"
socketioxide = "0.15"
cln-plugin = { version = "0.4", path = "../../plugins" }
cln-plugin = { version = "0.5", path = "../../plugins" }
cln-rpc = { version = "0.5", path = "../../cln-rpc" }
utoipa-swagger-ui = { version = "9.0.0", features = ["vendored", "axum"] }

View File

@@ -23,6 +23,6 @@ tokio-rustls = { version = "0.26", default-features = false, features = ["ring",
log-panics = "2"
cln-plugin = { version = "0.4", path = "../../plugins" }
cln-plugin = { version = "0.5", path = "../../plugins" }
cln-rpc = { version = "0.5", path = "../../cln-rpc" }