mini-c-ares-sys 0.2.0

Minimal Low-level bindings to the c-ares library, based on c-ares-sys
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14

#[cfg(not(features = "vendored"))]
fn main() {
    pkg_config::Config::new()
        .atleast_version("1.12.0")
        .probe("libcares")
        .unwrap();
}

#[cfg(features = "vendored")]
fn main() {
    c_ares_src::build();
}