-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 1.48 KB
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 1.48 KB
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
33
34
[package]
name = "ldk-server-client"
version = "0.1.0"
authors = ["benthecarman <benthecarman@live.com>", "Elias Rohrer <dev@tnull.de>"]
homepage = "https://lightningdevkit.org/"
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.85"
description = "An async Rust client library for communicating with LDK Server."
repository = "https://github.com/lightningdevkit/ldk-server/"
documentation = "https://docs.rs/ldk-server-client"
readme = "README.md"
keywords = ["bitcoin", "lightning", "ldk", "server"]
categories = ["cryptography::cryptocurrencies"]
[features]
default = []
serde = ["dep:serde", "dep:toml", "ldk-server-grpc/serde"]
[dependencies]
ldk-server-grpc = { path = "../ldk-server-grpc" }
reqwest = { version = "0.11.13", default-features = false, features = ["rustls-tls"] }
prost = { version = "0.11.6", default-features = false, features = ["std", "prost-derive"] }
bitcoin_hashes = "0.14"
hex-conservative = { version = "0.2", default-features = false, features = ["std"] }
hyper = { version = "0.14", default-features = false, features = ["client", "http2", "runtime", "tcp"] }
hyper-rustls = { version = "0.24", default-features = false, features = ["http2", "tls12", "tokio-runtime"] }
rustls = "0.21"
rustls-pemfile = "1"
serde = { version = "1.0", features = ["derive"], optional = true }
toml = { version = "0.8", default-features = false, features = ["parse"], optional = true }
[dev-dependencies]
tokio = { version = "1", default-features = false, features = ["macros", "rt"] }