-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
49 lines (46 loc) · 1.25 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "mostro-cli"
version = "0.11.0"
edition = "2021"
license = "MIT"
authors = [
"Francisco Calderón <[email protected]>",
"Baba O'reily <[email protected]>",
]
description = "Mostro P2P cli client"
homepage = "https://mostro.network"
repository = "https://github.com/MostroP2P/mostro-cli"
[lib]
name = "mostro_client"
path = "src/lib.rs"
[[bin]]
name = "mostro-cli"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.68"
clap = { version = "4.0", features = ["derive"] }
nostr-sdk = { version = "0.38.0", features = ["nip06", "nip44", "nip59"] }
serde = "1.0.215"
serde_json = "1.0.91"
tokio = { version = "1.23.0", features = ["full"] }
comfy-table = "7.0.1"
chrono = "0.4.23"
log = "0.4.17"
futures = "0.3"
uuid = { version = "1.3.0", features = [
"v4",
"fast-rng",
"macro-diagnostics",
"serde",
] }
dotenvy = "0.15.6"
lightning-invoice = { version = "0.32.0", features = ["std"] }
reqwest = { version = "0.12.4", features = ["json"] }
mostro-core = "0.6.23"
bitcoin_hashes = "0.16.0"
lnurl-rs = "0.9.0"
pretty_env_logger = "0.5.0"
openssl = { version = "0.10.68", features = ["vendored"] }
sqlx = { version = "0.8.2", features = ["sqlite", "runtime-tokio-native-tls"] }
bip39 = { version = "2.1.0", features = ["rand"] }
dirs = "5.0.1"