brynja_platform/lib.rs
1//! Explicit platform integration traits for Brynja.
2//!
3//! This package is a compile-time boundary established by Brynja 0.1.0.
4//! Protocol or cryptographic functionality is not implemented yet.
5
6#![no_std]
7
8/// Whether this package provides its planned implementation.
9///
10/// The foundation release intentionally reports `false`.
11pub const IMPLEMENTED: bool = false;
12
13#[cfg(test)]
14mod tests {
15 #[test]
16 fn foundation_does_not_claim_implementation() {
17 assert!(!::core::hint::black_box(super::IMPLEMENTED));
18 }
19}