static-keys 0.8.2

Reimplement Linux kernel static keys for Rust userland applications.
Documentation
//! OS-specific implementations

// The start-stop symbols are inspired by linkme crate.

#[cfg(target_os = "linux")]
mod linux;
#[cfg(target_os = "linux")]
pub use linux::*;

#[cfg(target_os = "macos")]
mod macos;
#[cfg(target_os = "macos")]
pub use macos::*;

#[cfg(target_os = "windows")]
mod windows;
#[cfg(target_os = "windows")]
pub use windows::*;

#[cfg(target_os = "none")]
mod none;

#[cfg(target_os = "none")]
pub use none::*;