feat: add webhooks with basic json to send to

This commit is contained in:
Jet Pham 2025-06-04 19:25:08 -07:00
parent 18aa3dfaa8
commit 1b0284b00b
No known key found for this signature in database
7 changed files with 1432 additions and 10 deletions

View file

@ -4,8 +4,12 @@ version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1.36", features = ["full"] }
anyhow = "1.0"
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = "0.3"
rppal = "0.22.1"
rppal = "0.22"
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = "0.4"