c-ares-resolver

DNS resolvers built on c-ares, for asynchronous DNS requests.

This crate provides three resolver types - the Resolver, the FutureResolver, and the BlockingResolver:

Crates.io Build Status

Documentation

API documentation is here.

Setting the feature build-cmake will cause the c-ares library to be built using cmake. This is significantly faster than the default autotools build on unix platforms: so if it works for you, you should probably prefer it.

Examples

```rust extern crate caresresolver; extern crate futuresexecutor; use futuresexecutor::block_on;

fn main() { let resolver = caresresolver::FutureResolver::new().unwrap(); let query = resolver.querya("google.com"); let response = blockon(query); match response { Ok(result) => println!("{}", result), Err(e) => println!("Lookup failed with error '{}'", e) } } ```

Further example programs can be found here.

Contributing

Contributions are welcome. Please send pull requests!