qpet_sz_sys/lib.rs
1//! [![CI Status]][workflow] [![MSRV]][repo] [![Latest Version]][crates.io]
2//! [![Rust Doc Crate]][docs.rs] [![Rust Doc Main]][docs]
3//!
4//! [CI Status]: https://img.shields.io/github/actions/workflow/status/juntyr/qpet-sz-rs/ci.yml?branch=main
5//! [workflow]: https://github.com/juntyr/qpet-sz-rs/actions/workflows/ci.yml?query=branch%3Amain
6//!
7//! [MSRV]: https://img.shields.io/badge/MSRV-1.82.0-blue
8//! [repo]: https://github.com/juntyr/qpet-sz-rs
9//!
10//! [Latest Version]: https://img.shields.io/crates/v/qpet-sz-sys
11//! [crates.io]: https://crates.io/crates/qpet-sz-sys
12//!
13//! [Rust Doc Crate]: https://img.shields.io/docsrs/qpet-sz-sys
14//! [docs.rs]: https://docs.rs/qpet-sz-sys/
15//!
16//! [Rust Doc Main]: https://img.shields.io/badge/docs-main-blue
17//! [docs]: https://juntyr.github.io/qpet-sz-rs/qpet_sz_sys
18//!
19//! Low-level bindigs to the [QPET-SZ] compressor.
20//!
21//! [QPET-SZ]: https://github.com/JLiu-1/QPET-Artifact/tree/szfamily_qpet_revision
22
23#![allow(missing_docs)] // bindgen
24#![allow(unsafe_code)] // sys-crate
25#![allow(non_camel_case_types, non_snake_case, non_upper_case_globals)] // bindgen
26#![allow(clippy::indexing_slicing)] // bindgen
27
28use ::gmp_mpfr_sys as _;
29#[cfg(feature = "openmp")]
30use ::openmp_sys as _;
31use ::zstd_sys as _;
32
33include!(concat!(env!("OUT_DIR"), "/bindings.rs"));