core-lightning/plugins/grpc-plugin/Cargo.toml
Christian Decker 8e75232205 rs: Update outdated dependencies
This commit updates outdated dependencies and hangs all
bitcoin-related dependencies off of the `bitcoin` crate, using its
re-exports. This means that as long as the bitcoin crate matches, all
of its dependents will also match.

Changelog-None
2022-12-22 15:42:12 +01:00

31 lines
530 B
TOML

[package]
edition = "2021"
name = "cln-grpc-plugin"
version = "0.1.0"
[[bin]]
name = "cln-grpc"
path = "src/main.rs"
[dependencies]
anyhow = "1.0"
log = "0.4"
prost = "0.11"
rcgen = { version = "0.10", features = ["pem", "x509-parser"] }
[dependencies.cln-grpc]
path = "../../cln-grpc"
[dependencies.cln-plugin]
path = "../../plugins"
[dependencies.cln-rpc]
path = "../../cln-rpc"
[dependencies.tokio]
features = ["net", "rt-multi-thread"]
version = "1"
[dependencies.tonic]
features = ["tls", "transport"]
version = "0.8"