kernal-api 0.0.0

Reserved package name for the forthcoming kernal-api async systems HAL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![forbid(unsafe_code)]
#![doc = include_str!("../README.md")]

/// Marker proving that version 0.0.0 is a name reservation, not a usable API.
pub const RESERVATION_ONLY: bool = true;

#[cfg(test)]
mod tests {
    use super::RESERVATION_ONLY;

    #[test]
    fn zero_release_is_explicitly_a_reservation() {
        assert!(RESERVATION_ONLY);
    }
}