-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
26 lines (24 loc) · 834 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
[package]
name = "cln-nostr-wallet-connect"
version = "0.1.4-ALPHA"
edition = "2021"
authors = ["thesimplekid"]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/thesimplekid/cln-nostr-wallet-connect"
description = "Core Lightning plugin for paying invoices with nostr connect (NIP47) **ALPHA**"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.69"
log = "0.4"
cln-plugin = "0.1.2"
cln-rpc = "0.1.2"
futures = "0.3.26"
serde = "1"
serde_json = "1"
tokio = { version = "1.26.0", features = [ "full" ] }
nostr-sdk = { version = "0.23.0", default_features = false, features = ["nip19", "nip47"] }
tungstenite = { version = "0.20", features = ["rustls-tls-webpki-roots"]}
dirs = "5.0.0"
hex = "0.4.3"
lightning-invoice = "0.24.0"