maturin 1.13.1

Build and publish crates with pyo3, cffi and uniffi bindings as well as rust binaries as python packages
Documentation
mod audit;
mod linux;
#[cfg(feature = "auditwheel")]
mod macos;
#[cfg(feature = "auditwheel")]
mod macos_sign;
mod musllinux;
pub mod patchelf;
#[cfg(feature = "auditwheel")]
pub(crate) mod pe_patch;
mod platform_tag;
mod policy;
mod repair;
#[cfg(feature = "sbom")]
pub mod sbom;
#[cfg(feature = "sbom")]
mod whichprovides;
#[cfg(feature = "auditwheel")]
mod windows;

pub use audit::*;
pub use linux::ElfRepairer;
#[cfg(feature = "auditwheel")]
pub use macos::MacOSRepairer;
pub use platform_tag::PlatformTag;
pub use policy::Policy;
pub use repair::{
    AuditResult, AuditedArtifact, WheelRepairer, log_grafted_libs, prepare_grafted_libs,
};
#[cfg(feature = "auditwheel")]
pub use windows::WindowsRepairer;