1//! Minimal Low-level bindings for the c-ares library.
2//!
3//! In most cases this crate should not be used directly. The mini-c-ares crate provides a safe wrapper
4//! and should be preferred wherever possible.
56mod constants;
7mod ffi;
89pub use crate::constants::*;
10pub use crate::ffi::*;