mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
23 lines
605 B
TOML
23 lines
605 B
TOML
[package]
|
|
name = "cln-grpc"
|
|
version = "0.1.2"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
repository = "https://github.com/ElementsProject/lightning/tree/master/cln-grpc"
|
|
description = "The Core Lightning API as grpc primitives. Provides the bindings used to expose the API over the network."
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
log = "0.4"
|
|
cln-rpc = { path="../cln-rpc/", version = "^0.1" }
|
|
tonic = { version = "0.8", features = ["tls", "transport"] }
|
|
prost = "0.11"
|
|
hex = "0.4.3"
|
|
bitcoin = { version = "0.29", features = [ "serde" ] }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0.72"
|
|
|
|
[build-dependencies]
|
|
tonic-build = "0.8"
|