2022-01-14 20:01:34 +01:00
|
|
|
[package]
|
|
|
|
name = "cln-grpc"
|
2023-05-25 17:24:18 +02:00
|
|
|
version = "0.1.3"
|
2022-01-14 20:01:34 +01:00
|
|
|
edition = "2021"
|
2022-11-11 18:18:41 +01:00
|
|
|
license = "MIT"
|
|
|
|
description = "The Core Lightning API as grpc primitives. Provides the bindings used to expose the API over the network."
|
2022-12-30 13:46:03 +01:00
|
|
|
homepage = "https://github.com/ElementsProject/lightning/tree/master/cln-grpc"
|
|
|
|
repository = "https://github.com/ElementsProject/lightning"
|
|
|
|
documentation = "https://docs.rs/cln-grpc"
|
2022-01-14 20:01:34 +01:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0"
|
|
|
|
log = "0.4"
|
2022-11-11 18:18:41 +01:00
|
|
|
cln-rpc = { path="../cln-rpc/", version = "^0.1" }
|
2022-12-13 15:56:34 +01:00
|
|
|
tonic = { version = "0.8", features = ["tls", "transport"] }
|
|
|
|
prost = "0.11"
|
2022-01-14 20:01:34 +01:00
|
|
|
hex = "0.4.3"
|
2022-12-13 15:56:34 +01:00
|
|
|
bitcoin = { version = "0.29", features = [ "serde" ] }
|
2022-01-14 20:01:34 +01:00
|
|
|
|
2022-04-01 06:13:35 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
serde_json = "1.0.72"
|
|
|
|
|
2022-01-14 20:01:34 +01:00
|
|
|
[build-dependencies]
|
2022-12-13 15:56:34 +01:00
|
|
|
tonic-build = "0.8"
|