-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
28 lines (26 loc) · 923 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 = "lightning-cluster"
description = "Lightning Node Load Balancer & Cache"
authors = ["utxo <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/nodeless-io/lightning-cluster"
readme = "README.md"
keywords = ["lightning", "cache", "bitcoin", "lnd", "clightning"]
version = "0.1.4"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0.18", features = ["derive"] }
serde_json = "1.0.6"
tokio = { version = "1.10.1", features = ["full", "rt-multi-thread", "macros"] }
reqwest = { version = "0.11.6", features = ["json"] }
hex = "0.4.3"
base64 = "0.13"
dotenvy = "0.15.7"
anyhow = "1.0.72"
rand = "0.8.4"
moka = { version = "0.11", features = ["future"] }
futures-util = "0.3"
futures = "0.3"
serde_with = "3.1.0"
redis = { version = "0.23.1", features = ["aio", "tokio-comp"] }