Web API interface

First implementation of the Web API interface, which can be used to
manage pubkey to APNS token relationships.
This commit is contained in:
Daniel D’Aquino
2024-07-24 14:50:17 -07:00
parent 3d447e9527
commit 1e591217c5
10 changed files with 457 additions and 21 deletions

View File

@ -22,6 +22,7 @@ chrono = { version = "0.4.38" }
a2 = { version = "0.10.0" }
tokio = { version = "1.38.0", features = ["full"] }
tungstenite = "0.23.0"
hyper = { version = "1.4.1", features = ["server"] }
nostr = "0.32.1"
log = "0.4"
env_logger = "0.11.3"
@ -29,3 +30,8 @@ nostr-sdk = "0.32.0"
r2d2_sqlite = "0.24.0"
r2d2 = "0.8.10"
dotenv = "0.15.0"
base64 = "0.22.1"
hyper-util = "0.1.6"
http-body-util = "0.1.2"
uuid = { version = "1.10.0", features = ["v4"] }
thiserror = "1.0.63"