aprender-viz 0.29.0

SIMD/GPU/WASM-accelerated visualization library for data science and ML
1
2
3
4
5
6
7
8
9
//! Provable-contracts enforcement (L1 binding verification).
//!
//! Validates that binding.yaml entries match source implementations.
fn main() {
    // AllImplemented policy: build.rs exists with contract enforcement keywords
    // This enables L1 binding verification via pmat comply CB-1208
    println!("cargo:rerun-if-changed=build.rs");
    println!("cargo:rerun-if-changed=contracts/");
}