Skip to content

Commit dcb6f2c

Browse files
daywalker90vincenzopalazzo
authored andcommittedDec 10, 2024
rust: bump versions for 24.11 release
Changelog-None
1 parent cb1bd82 commit dcb6f2c

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed
 

‎Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎cln-grpc/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cln-grpc"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2021"
55
license = "MIT"
66
description = "The Core Lightning API as grpc primitives. Provides the bindings used to expose the API over the network."
@@ -15,7 +15,7 @@ server = ["cln-rpc"]
1515
[dependencies]
1616
anyhow = "1.0"
1717
log = "0.4"
18-
cln-rpc = { path="../cln-rpc/", version = "0.2", optional = true }
18+
cln-rpc = { path="../cln-rpc/", version = "0.3", optional = true }
1919
serde = { version = "1.0", features = ["derive"] }
2020
tonic = { version = "0.11", features = ["tls", "transport"] }
2121
prost = "0.12"
@@ -28,7 +28,7 @@ tokio-util = "0.7.10"
2828

2929
[dev-dependencies]
3030
serde_json = "1.0.72"
31-
cln-rpc = { path="../cln-rpc/", version = "0.2" }
31+
cln-rpc = { path="../cln-rpc/", version = "0.3" }
3232

3333
[build-dependencies]
3434
tonic-build = "0.11"

‎cln-rpc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cln-rpc"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2021"
55
license = "MIT"
66
description = "An async RPC client for Core Lightning."

‎plugins/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cln-plugin"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2021"
55
license = "MIT"
66
description = "A CLN plugin library. Write your plugin in Rust."
@@ -27,4 +27,4 @@ tracing = { version = "^0.1", features = ["async-await", "log"] }
2727

2828
[dev-dependencies]
2929
tokio = { version = "1", features = ["macros", "rt-multi-thread", ] }
30-
cln-grpc = { version = "0.2", path = "../cln-grpc" }
30+
cln-grpc = { version = "0.3", path = "../cln-grpc" }

‎plugins/grpc-plugin/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2021"
33
name = "cln-grpc-plugin"
4-
version = "0.2.0"
4+
version = "0.3.0"
55

66
description = "A Core Lightning plugin that re-exposes the JSON-RPC over grpc. Authentication is done via mTLS."
77
license = "MIT"
@@ -17,9 +17,9 @@ anyhow = "1.0"
1717
log = "0.4"
1818
rcgen = { version = "0.13.1", features = ["pem", "x509-parser"] }
1919
prost = "0.12"
20-
cln-grpc = { version = "0.2", features = ["server"], path = "../../cln-grpc"}
21-
cln-plugin = { version = "0.2", path = "../../plugins" }
22-
cln-rpc = { version = "0.2", path = "../../cln-rpc" }
20+
cln-grpc = { version = "0.3", features = ["server"], path = "../../cln-grpc"}
21+
cln-plugin = { version = "0.3", path = "../../plugins" }
22+
cln-rpc = { version = "0.3", path = "../../cln-rpc" }
2323
serde_json = "1.0.113"
2424

2525
[dependencies.tokio]

0 commit comments

Comments
 (0)
Please sign in to comment.