Merge commit 'd803bfe2b1fe7f5e219e50ac20d6801a0a58ac75' as 'vendor/ruvector'

This commit is contained in:
ruv
2026-02-28 14:39:40 -05:00
7854 changed files with 3522914 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
//! 10 exotic applications of ruvector-verified beyond dimension checks.
//!
//! Each module demonstrates a real-world domain where proof-carrying vector
//! operations provide structural safety that runtime assertions cannot.
pub mod agent_contracts;
pub mod financial_routing;
pub mod legal_forensics;
pub mod medical_diagnostics;
pub mod quantization_proof;
pub mod sensor_swarm;
pub mod simulation_integrity;
pub mod vector_signatures;
pub mod verified_memory;
pub mod weapons_filter;
/// Shared proof receipt that all domains produce.
#[derive(Debug, Clone)]
pub struct ProofReceipt {
/// Domain identifier (e.g. "weapons", "medical", "trade").
pub domain: String,
/// Human-readable description of what was proved.
pub claim: String,
/// Proof term ID in the environment.
pub proof_id: u32,
/// 82-byte attestation bytes.
pub attestation_bytes: Vec<u8>,
/// Proof tier used (reflex/standard/deep).
pub tier: String,
/// Whether the gate passed.
pub gate_passed: bool,
}