mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
New infrastructure components: - rds_probe: Rust database inspection tool with IAM auth - credential_server.py: REST credential provider server - credential_provider.py: credential resolution chain - ene_rds_fractal_fold.py / ene_rds_wiki_layer.py: RDS-backed ENE layers - import_dumps_to_rds.py / export_linear_from_rds.py: ingestion pipeline - recover_credential_server.sh: deployment script (sanitized) Sanitize hardcoded secrets across codebase: - Strip API keys from recover_credential_server.sh → env var lookups - Replace hardcoded Wolfram appid (HYJE3R3R63) → env var in 5 scripts - Strip fallback key values from config/index.js - Add .claude/ and optimized_basis_v3.bin to .gitignore Ingested 2,685 records into RDS: 2,421 Linear issues + 264 wiki pages
23 lines
580 B
TOML
23 lines
580 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-rustls", "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
|