libsolv_sys/lib.rs
1//! Low-level Rust binding for libsolv.
2//!
3//! The current binding is tailored to dpkg-based distro usage
4//! (Enabled libsolvext but only Debian support is added).
5//!
6//! All the bindings are inside the `ffi` module.
7//! Since this is a low-level binding library, you need to consult
8//! [libsolv C API documentation](https://github.com/openSUSE/libsolv) for more information.
9
10/// FFI bindings for libsolv
11pub mod ffi;