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]
|
|
|
|
tokio = { version = "1.37.0", features = ["rt", "rt-multi-thread", "macros"] }
|
|
|
|
anyhow = "1.0.83"
|
|
|
|
log = "0.4.21"
|
2024-10-26 19:36:06 +01:00
|
|
|
config = { version = "0.14.0", features = ["toml"] }
|
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-03 19:24:00 +00:00
|
|
|
sqlx = { version = "0.8.2", features = ["mysql", "chrono", "migrate", "runtime-tokio"] }
|
2024-11-04 21:14:58 +00:00
|
|
|
rocket = { version = "0.5.1", features = ["json"] }
|
|
|
|
chrono = { version = "0.4.38", features = ["serde"] }
|
|
|
|
nostr = { version = "0.35.0", default-features = false, features = ["std"] }
|
|
|
|
base64 = "0.22.1"
|