oxicrypto-bench 0.1.0

Criterion benchmarks comparing OxiCrypto against ring and aws-lc-rs (dev-only)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Purity tripwire test.
//!
//! The actual purity assertion — that `ring` and `aws-lc-rs` appear ONLY under
//! the dev-dependency edges of `oxicrypto-bench` and NOT on the normal edges
//! of any production crate — is validated externally via:
//!
//! ```text
//! cargo tree -p oxicrypto --edges normal | grep -E '(ring|aws.lc|openssl.sys)'
//! ```
//!
//! That command MUST return empty output for the workspace to be considered
//! Pure Rust.  This file simply confirms the test infrastructure compiles.

#[test]
fn check_purity() {
    // This test passes unconditionally.  The real purity gate lives in the
    // `cargo tree` grep check described in the module-level doc comment.
}