Research-Stack/4-Infrastructure/rds_probe/Cargo.toml
Brandon Schneider 28d02223a6 Fix Porkbun DNS, automate postgres backups, fix rds_probe vulns
- Porkbun API keys verified working (SUCCESS ping)
- Automated daily AppFlowy postgres backups via systemd timer
- rds_probe: switch from rustls to native-tls (fixes 3 Dependabot alerts)
- ec2-config.nix: add appflowy-backup service and timer
2026-05-18 11:52:01 -05:00

23 lines
584 B
TOML

[package]
name = "rds_probe"
version = "0.1.0"
edition = "2021"
description = "RDS ENE database inspection tool"
license = "MIT"
authors = ["Research Stack"]
[dependencies]
sqlx = { version = "0.7", features = ["runtime-tokio-native-tls", "postgres", "json", "uuid"] }
tokio = { version = "1", features = ["full"] }
dotenv = "0.15"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
clap = { version = "4", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
thiserror = "1"
sha2 = "0.10"
hex = "0.4"
[profile.release]
opt-level = 3
lto = true