kernel-abi-check/src/lib.rs (8 lines of code) (raw):
//! Functions for checking kernel ABI compatibility.
mod macos;
pub use macos::{check_macos, MacOSViolation};
mod manylinux;
pub use manylinux::{check_manylinux, ManylinuxViolation};
mod python_abi;
pub use python_abi::{check_python_abi, PythonAbiViolation};
mod version;
pub use version::Version;