kernel-abi-check 0.12.2

Check the ABI of Hub Kernels
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! 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;