-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
25 lines (23 loc) · 817 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
[package]
name = "nostr-wallet-connect-lnd"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.70"
clap = { version = "4.1.14", features = ["derive"] }
home = "0.5.4"
bitcoin = { version = "0.31.2", features = ["rand", "rand-std"] }
bitcoin_30 = { package = "bitcoin", version = "0.30.2" }
lightning-invoice = { version = "0.30.0", features = ["serde"] }
nostr = { version = "0.30.0", features = ["nip47"] }
nostr-sdk = { version = "0.30.0", features = ["nip47"] }
tonic_openssl_lnd = "0.2.0"
tokio = { version = "1.26.0", features = ["full"] }
tokio-stream = "0.1.11"
serde = "1.0"
serde_json = "1.0"
url = { version = "2", features = ["serde"] }
hex = "0.4.3"
log = "0.4.20"
pretty_env_logger = "0.5.0"