mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 01:43:36 +01:00
rust-libs: Bump versions
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>
This commit is contained in:
parent
a6366c2814
commit
0a6870f13d
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -250,7 +250,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "cln-grpc"
|
name = "cln-grpc"
|
||||||
version = "0.1.9"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"bitcoin",
|
"bitcoin",
|
||||||
@ -270,7 +270,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "cln-grpc-plugin"
|
name = "cln-grpc-plugin"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"cln-grpc",
|
"cln-grpc",
|
||||||
@ -286,7 +286,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "cln-plugin"
|
name = "cln-plugin"
|
||||||
version = "0.1.9"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"bytes",
|
"bytes",
|
||||||
@ -304,7 +304,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "cln-rpc"
|
name = "cln-rpc"
|
||||||
version = "0.1.9"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"bitcoin",
|
"bitcoin",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "cln-grpc"
|
name = "cln-grpc"
|
||||||
version = "0.1.9"
|
version = "0.2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
description = "The Core Lightning API as grpc primitives. Provides the bindings used to expose the API over the network."
|
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"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
cln-rpc = { path="../cln-rpc/", version = "^0.1", optional = true }
|
cln-rpc = { path="../cln-rpc/", version = "0.2", optional = true }
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
tonic = { version = "0.11", features = ["tls", "transport"] }
|
tonic = { version = "0.11", features = ["tls", "transport"] }
|
||||||
prost = "0.12"
|
prost = "0.12"
|
||||||
@ -28,7 +28,7 @@ tokio-util = "0.7.10"
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
serde_json = "1.0.72"
|
serde_json = "1.0.72"
|
||||||
cln-rpc = { path="../cln-rpc/", version = "^0.1" }
|
cln-rpc = { path="../cln-rpc/", version = "0.2" }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
tonic-build = "0.11"
|
tonic-build = "0.11"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "cln-rpc"
|
name = "cln-rpc"
|
||||||
version = "0.1.9"
|
version = "0.2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
description = "An async RPC client for Core Lightning."
|
description = "An async RPC client for Core Lightning."
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "cln-plugin"
|
name = "cln-plugin"
|
||||||
version = "0.1.9"
|
version = "0.2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
description = "A CLN plugin library. Write your plugin in Rust."
|
description = "A CLN plugin library. Write your plugin in Rust."
|
||||||
@ -27,4 +27,4 @@ tracing = { version = "^0.1", features = ["async-await", "log"] }
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "1", features = ["macros", "rt-multi-thread", ] }
|
tokio = { version = "1", features = ["macros", "rt-multi-thread", ] }
|
||||||
cln-grpc = { version = "0.1", path = "../cln-grpc" }
|
cln-grpc = { version = "0.2", path = "../cln-grpc" }
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
name = "cln-grpc-plugin"
|
name = "cln-grpc-plugin"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
|
|
||||||
description = "A Core Lightning plugin that re-exposes the JSON-RPC over grpc. Authentication is done via mTLS."
|
description = "A Core Lightning plugin that re-exposes the JSON-RPC over grpc. Authentication is done via mTLS."
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
Loading…
Reference in New Issue
Block a user