mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
Security fixes: - rds_probe: bump sqlx 0.7.4 -> 0.8.6 (GHSA-xmrp-424f-vfpx MEDIUM) Also removes transitive rustls-webpki 0.101.7 dependency chain, fixing GHSA-82j2-j2ch-gfr8 (HIGH), GHSA-xgp8-3hg3-c2mh, GHSA-965h-392x-2mh5 (LOW) in this workspace. - ene-rds already has rustls-webpki 0.103.13 (patched); commit its Cargo.lock for reproducible builds. Generated with [Devin](https://cli.devin.ai/docs) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
23 lines
584 B
TOML
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.8", 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
|