-
Notifications
You must be signed in to change notification settings - Fork 32
/
Cargo.toml
48 lines (46 loc) · 1.27 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
[package]
name = "mostro"
version = "0.12.8"
edition = "2021"
license = "MIT"
authors = ["Francisco Calderón <[email protected]>"]
description = "Lightning Network peer-to-peer nostr platform"
homepage = "https://mostro.network"
repository = "https://github.com/MostroP2P/mostro"
[[bin]]
name = "mostrod"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.89"
chrono = "0.4.35"
easy-hasher = "2.2.1"
lightning-invoice = { version = "0.32.0", features = ["std"] }
nostr-sdk = "0.36.0"
serde = { version = "1.0.210" }
serde_json = "1.0.128"
sqlx = { version = "0.6.2", features = [
"runtime-tokio-rustls",
"sqlite",
"macros",
"chrono",
"uuid",
"offline",
] }
sqlx-crud = { version = "0.4.0", features = ["runtime-tokio-rustls"] }
tokio = { version = "1.40.0", features = ["full"] }
fedimint-tonic-lnd = "0.2.0"
uuid = { version = "1.8.0", features = [
"v4",
"fast-rng",
"macro-diagnostics",
"serde",
] }
reqwest = { version = "0.12.1", features = ["json"] }
mostro-core = { version = "0.6.11", features = ["sqlx"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
config = "0.14.0"
clap = { version = "4.5.19", features = ["derive"] }
lnurl-rs = "0.8.0"
openssl = { version = "0.10.66", features = ["vendored"] }
once_cell = "1.20.2"