kernel-abi-check 0.3.0

Check the ABI of Hub Kernels
Documentation
1
2
3
4
5
6
7
8
9
10
//! Functions for checking kernel ABI compatibility.

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;