Implements Phases 1-8 of the TFTSR implementation plan. Rust backend (Tauri 2.x, src-tauri/): - Multi-provider AI: OpenAI-compatible, Anthropic, Gemini, Mistral, Ollama - PII detection engine: 11 regex patterns with overlap resolution - SQLCipher AES-256 encrypted database with 10 versioned migrations - 28 Tauri IPC commands for triage, analysis, document, and system ops - Ollama: hardware probe, model recommendations, pull/delete with events - RCA and blameless post-mortem Markdown document generators - PDF export via printpdf - Audit log: SHA-256 hash of every external data send - Integration stubs for Confluence, ServiceNow, Azure DevOps (v0.2) Frontend (React 18 + TypeScript + Vite, src/): - 9 pages: full triage workflow NewIssue→LogUpload→Triage→Resolution→RCA→Postmortem→History+Settings - 7 components: ChatWindow, TriageProgress, PiiDiffViewer, DocEditor, HardwareReport, ModelSelector, UI primitives - 3 Zustand stores: session, settings (persisted), history - Type-safe tauriCommands.ts matching Rust backend types exactly - 8 IT domain system prompts (Linux, Windows, Network, K8s, DB, Virt, HW, Obs) DevOps: - .woodpecker/test.yml: rustfmt, clippy, cargo test, tsc, vitest on every push - .woodpecker/release.yml: linux/amd64 + linux/arm64 builds, Gogs release upload Verified: - cargo check: zero errors - tsc --noEmit: zero errors - vitest run: 13/13 unit tests passing Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
55 lines
2.3 KiB
Plaintext
55 lines
2.3 KiB
Plaintext
cargo:rustc-check-cfg=cfg(osslconf, values("OPENSSL_NO_OCB", "OPENSSL_NO_SM4", "OPENSSL_NO_SEED", "OPENSSL_NO_CHACHA", "OPENSSL_NO_CAST", "OPENSSL_NO_IDEA", "OPENSSL_NO_CAMELLIA", "OPENSSL_NO_RC4", "OPENSSL_NO_BF", "OPENSSL_NO_PSK", "OPENSSL_NO_DEPRECATED_3_0", "OPENSSL_NO_SCRYPT", "OPENSSL_NO_SM3", "OPENSSL_NO_RMD160", "OPENSSL_NO_EC2M", "OPENSSL_NO_OCSP", "OPENSSL_NO_SRTP", "OPENSSL_NO_CMS", "OPENSSL_NO_EC", "OPENSSL_NO_ARGON2", "OPENSSL_NO_RC2"))
|
|
cargo:rustc-check-cfg=cfg(libressl)
|
|
cargo:rustc-check-cfg=cfg(boringssl)
|
|
cargo:rustc-check-cfg=cfg(awslc)
|
|
cargo:rustc-check-cfg=cfg(awslc_fips)
|
|
cargo:rustc-check-cfg=cfg(libressl250)
|
|
cargo:rustc-check-cfg=cfg(libressl251)
|
|
cargo:rustc-check-cfg=cfg(libressl261)
|
|
cargo:rustc-check-cfg=cfg(libressl270)
|
|
cargo:rustc-check-cfg=cfg(libressl271)
|
|
cargo:rustc-check-cfg=cfg(libressl273)
|
|
cargo:rustc-check-cfg=cfg(libressl280)
|
|
cargo:rustc-check-cfg=cfg(libressl291)
|
|
cargo:rustc-check-cfg=cfg(libressl310)
|
|
cargo:rustc-check-cfg=cfg(libressl321)
|
|
cargo:rustc-check-cfg=cfg(libressl332)
|
|
cargo:rustc-check-cfg=cfg(libressl340)
|
|
cargo:rustc-check-cfg=cfg(libressl350)
|
|
cargo:rustc-check-cfg=cfg(libressl360)
|
|
cargo:rustc-check-cfg=cfg(libressl361)
|
|
cargo:rustc-check-cfg=cfg(libressl370)
|
|
cargo:rustc-check-cfg=cfg(libressl380)
|
|
cargo:rustc-check-cfg=cfg(libressl382)
|
|
cargo:rustc-check-cfg=cfg(libressl390)
|
|
cargo:rustc-check-cfg=cfg(libressl400)
|
|
cargo:rustc-check-cfg=cfg(libressl410)
|
|
cargo:rustc-check-cfg=cfg(libressl420)
|
|
cargo:rustc-check-cfg=cfg(ossl101)
|
|
cargo:rustc-check-cfg=cfg(ossl102)
|
|
cargo:rustc-check-cfg=cfg(ossl110)
|
|
cargo:rustc-check-cfg=cfg(ossl110g)
|
|
cargo:rustc-check-cfg=cfg(ossl110h)
|
|
cargo:rustc-check-cfg=cfg(ossl111)
|
|
cargo:rustc-check-cfg=cfg(ossl111d)
|
|
cargo:rustc-check-cfg=cfg(ossl300)
|
|
cargo:rustc-check-cfg=cfg(ossl310)
|
|
cargo:rustc-check-cfg=cfg(ossl320)
|
|
cargo:rustc-check-cfg=cfg(ossl330)
|
|
cargo:rustc-check-cfg=cfg(ossl340)
|
|
cargo:rustc-check-cfg=cfg(ossl350)
|
|
cargo:rustc-cfg=osslconf="OPENSSL_NO_EC2M"
|
|
cargo:rustc-cfg=osslconf="OPENSSL_NO_ENGINE"
|
|
cargo:rustc-cfg=osslconf="OPENSSL_NO_SSL3_METHOD"
|
|
cargo:rustc-cfg=osslconf="OPENSSL_NO_SM4"
|
|
cargo:rustc-cfg=ossl101
|
|
cargo:rustc-cfg=ossl102
|
|
cargo:rustc-cfg=ossl110
|
|
cargo:rustc-cfg=ossl110g
|
|
cargo:rustc-cfg=ossl110h
|
|
cargo:rustc-cfg=ossl111
|
|
cargo:rustc-cfg=ossl111d
|
|
cargo:rustc-cfg=ossl300
|
|
cargo:rustc-cfg=ossl310
|
|
cargo:rustc-cfg=ossl320
|