forked from yzernik/tonic_openssl_lnd
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
32 lines (29 loc) · 1.07 KB
/
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
29
30
31
32
[package]
name = "lnd_grpc_rust"
version = "2.8.0"
authors = ["Martin Habovstiak <[email protected]>", "Jonathan Zernik <[email protected]>", "Nitesh Balusu <[email protected]>"]
edition = "2018"
description = "An async library implementing LND RPC via tonic_openssl and prost"
homepage = "https://github.com/niteshbalusu11/lnd-grpc-rust"
repository = "https://github.com/niteshbalusu11/lnd-grpc-rust"
readme = "README.md"
keywords = ["LND", "rpc", "grpc", "tonic", "async"]
categories = ["api-bindings", "asynchronous", "cryptography::cryptocurrencies", "network-programming"]
license = "MIT"
[lib]
doctest = false
[dependencies]
tonic = "0.7"
tonic-openssl = { version = "0.2" }
hyper = "0.14"
hyper-openssl = "0.9"
tokio = { version = "1.40", features = ["rt-multi-thread", "macros"] }
tokio-stream = { version = "0.1.16", features = ["net"] }
openssl = "0.10.66"
tower = "0.5.0"
pretty_env_logger = "0.5.0"
hex = "0.4.3"
prost = { version = "0.10", features = ["prost-derive"] }
serde = { version = "1.0", features = ["derive"] }
[build-dependencies]
tonic-build = "0.7"