-
Notifications
You must be signed in to change notification settings - Fork 46
/
Cargo.toml
28 lines (25 loc) · 963 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "tonic_lnd"
version = "0.5.1"
authors = ["Martin Habovstiak <[email protected]>"]
edition = "2018"
description = "An async library implementing LND RPC via tonic and prost"
homepage = "https://github.com/Kixunil/tonic_lnd"
repository = "https://github.com/Kixunil/tonic_lnd"
readme = "README.md"
keywords = ["LND", "rpc", "grpc", "tonic", "async"]
categories = ["api-bindings", "asynchronous", "cryptography::cryptocurrencies", "network-programming"]
license = "MITNFA"
[dependencies]
tonic = { version = "0.6.2", features = ["transport", "tls"] }
prost = "0.9.0"
rustls = { version = "0.19.0", features = ["dangerous_configuration"] }
webpki = "0.21.3"
rustls-pemfile = "1.0.0"
hex = "0.4.3"
tokio = { version = "1.7.1", features = ["fs"] }
tracing = { version = "0.1", features = ["log"], optional = true }
[build-dependencies]
tonic-build = "0.5.2"
[dev-dependencies]
tokio = { version = "1.7.1", features = ["rt-multi-thread"] }