mini_c_ares_sys/
lib.rs

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.
5
6mod constants;
7mod ffi;
8
9pub use crate::constants::*;
10pub use crate::ffi::*;