2024-09-23 11:26:19 +01:00
|
|
|
[package]
|
|
|
|
name = "lnvps"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
2024-11-04 23:10:32 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "api"
|
2024-09-23 11:26:19 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2024-11-24 23:09:29 +00:00
|
|
|
lnvps_db = { path = "lnvps_db" }
|
2024-09-23 11:26:19 +01:00
|
|
|
tokio = { version = "1.37.0", features = ["rt", "rt-multi-thread", "macros"] }
|
|
|
|
anyhow = "1.0.83"
|
|
|
|
log = "0.4.21"
|
2024-11-24 23:09:29 +00:00
|
|
|
config = { version = "0.14.0", features = ["yaml"] }
|
2024-09-23 11:26:19 +01:00
|
|
|
pretty_env_logger = "0.5.0"
|
2024-10-26 19:36:06 +01:00
|
|
|
serde = { version = "1.0.213", features = ["derive"] }
|
2024-11-03 15:43:45 +00:00
|
|
|
reqwest = { version = "0.12.8", features = ["json"] }
|
|
|
|
serde_json = "1.0.132"
|
2024-11-04 21:14:58 +00:00
|
|
|
rocket = { version = "0.5.1", features = ["json"] }
|
|
|
|
chrono = { version = "0.4.38", features = ["serde"] }
|
2024-11-24 23:09:29 +00:00
|
|
|
nostr = { version = "0.36.0", default-features = false, features = ["std"] }
|
2024-11-04 21:14:58 +00:00
|
|
|
base64 = "0.22.1"
|
2024-11-25 22:45:27 +00:00
|
|
|
ssh-key = "0.6.7"
|
|
|
|
urlencoding = "2.1.3"
|
|
|
|
fedimint-tonic-lnd = { version = "0.2.0", default-features = false, features = ["invoicesrpc"] }
|