netherlands 0.1.0

Security-first no_std facade for typed Dutch public APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![no_std]
#![forbid(unsafe_code)]
#![doc = "Facade for independently publishable Netherlands crates."]

/// Shared transport-neutral contracts.
pub use netherlands_core as core;

#[cfg(test)]
mod tests {
    #[test]
    fn facade_always_exposes_core() {
        let id = crate::core::SourceId::reviewed("netherlands");
        assert_eq!(id.as_str(), "netherlands");
    }
}