* feat: Convert to a webhooks api model! feat: Update readme with new api docs and images and logo feat: reoptimize jpgs and add comments to all images for credit feat: Add database backend implementations Todo is to update the readme feat: use memory storage for endpoints feat: add logging to rest api and remove ctrl override feat: remove keyboard monitor delete the discord api from direct reference * feat: webhook sending with retries and backoff Also some great readme changes * feat: add a web based dev mode! * feat: better error handling for webhook endopoints * feat: remove verbose logs * feat: add docs for local dev * feat: remove complex webhook stuff config file with endpoints listed instead * feat: update logo * feat: set endpoint and remove rest api * fix: check for negative config numbers * feat: remove timestamps from webhook Use Date header instead * feat: refactor to using one endpoint with env vars * feat: change logging to be one rolling log With a max line size of 10k lines * feat: move config to toml, keep api in env var * feat: use .env files for managing env vars * fix: remove log files from dev * fix: unblock web monitor thread * feat: merge into a monorepo with noisebridge-status
26 lines
668 B
TOML
26 lines
668 B
TOML
[package]
|
|
name = "noisebell"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
tokio = { version = "1.45.1", features = ["full"] }
|
|
tracing = "0.1.41"
|
|
tracing-subscriber = "0.3.19"
|
|
rppal = "0.22.1"
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
tracing-appender = "0.2.3"
|
|
axum = { version = "0.8.4", features = ["ws"] }
|
|
tower = "0.5.2"
|
|
tower-http = { version = "0.6.2", features = ["fs"] }
|
|
serde_json = "1.0.140"
|
|
regex = "1.11.1"
|
|
chrono = { version = "0.4.41", features = ["serde"] }
|
|
futures = "0.3.31"
|
|
futures-util = "0.3.31"
|
|
url = "2.5.4"
|
|
thiserror = "1.0"
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
toml = "0.9.5"
|
|
dotenvy = "0.15.7"
|