forked from MostroP2P/mostro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (42 loc) · 1.03 KB
/
Cargo.toml
File metadata and controls
44 lines (42 loc) · 1.03 KB
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
[package]
name = "mostro"
version = "0.10.1"
edition = "2021"
license = "MIT"
authors = ["Francisco Calderón <negrunch@grunch.dev>"]
description = "Lightning Network peer-to-peer nostr platform"
[[bin]]
name = "mostrod"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.66"
chrono = "0.4.35"
easy-hasher = "2.2.1"
lightning-invoice = "0.25.0"
nostr-sdk = "0.25.0"
serde = { version = "1.0.149" }
serde_json = "1.0.89"
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.23.0", features = ["full"] }
tonic_openssl_lnd = "0.2.0"
uuid = { version = "1.3.0", features = [
"v4",
"fast-rng",
"macro-diagnostics",
"serde",
] }
reqwest = { version = "0.11", features = ["json"] }
mostro-core = "0.5.4"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
config = "0.14.0"
clap = { version = "4.4.4", features = ["derive"] }
lnurl-rs = "0.4.0"