1
2
3
4
5
6
7
8
9
10
//! Minimal Low-level bindings for the c-ares library.
//!
//! In most cases this crate should not be used directly.  The mini-c-ares crate provides a safe wrapper
//! and should be preferred wherever possible.

mod constants;
mod ffi;

pub use crate::constants::*;
pub use crate::ffi::*;