Files
Alexandre Possebom f1786c6af8 chore!: rebrand to gate-watch
Package/lib/binary renamed (gate_watch crate), SPA branding + storage keys,
docker-compose services/db renamed, Dockerfile drops the lpr-whitelist git
credential. CI keeps build+push (image name follows the repo) and the Telegram
notify, but the prefecture deploy webhook is gone. Prefecture-specific deploy/
configs and historical docs/ removed (git history keeps them).
2026-08-06 10:42:54 -03:00

59 lines
1.5 KiB
TOML

[package]
name = "gate-watch"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1"
axum = { version = "0.8.8", features = ["multipart"] }
tokio = { version = "1.49.0", features = ["full"] }
tower = "0.5"
tower-http = { version = "0.6.8", features = ["trace", "cors", "fs"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = [
"env-filter",
"local-time",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.148"
chrono = { version = "0.4", features = ["serde"] }
sqlx = { version = "0.8", features = [
"runtime-tokio-rustls",
"postgres",
"macros",
"chrono",
] }
dotenvy = "0.15"
base64 = "0.22.1"
thiserror = "2.0.17"
image = "0.25.9"
turbojpeg = { version = "1.0", features = ["image"] }
reqwest = { version = "0.13.1", features = ["multipart", "json"] }
tokio-stream = "0.1.18"
futures = "0.3.31"
async-stream = "0.3.6"
regex = "1.11.1"
once_cell = "1.20.2"
timeago = "0.5.0"
tokio-retry = "0.3"
jsonwebtoken = { version = "10.2.0", features = ["rust_crypto"] }
bcrypt = "0.17"
axum-extra = { version = "0.12.5", features = ["cookie"] }
time = "0.3"
async-trait = "0.1"
urlencoding = "2.1.3"
digest_auth = "0.3"
lettre = { version = "0.11", features = ["tokio1-native-tls", "builder"] }
rand = "0.8"
tower_governor = "0.8"
tokio-util = "0.7"
calamine = "0.26"
[dev-dependencies]
tokio-test = "0.4"
testcontainers = "0.23"
testcontainers-modules = { version = "0.11", features = ["postgres"] }
axum-test = "16"
wiremock = "0.6"
tempfile = "3"