c-ares 5.0.4

A Rust wrapper for the c-ares library, for asynchronous DNS requests.
Documentation
[package]
name = "c-ares"
license = "MIT"
version = "5.0.4"
authors = ["David Hotham"]
description = """
A Rust wrapper for the c-ares library, for asynchronous DNS requests.
"""
repository = "https://github.com/dimbleby/rust-c-ares"
documentation = "https://docs.rs/c-ares"
readme = "README.md"
keywords = ["DNS", "c-ares"]
categories = ["api-bindings", "asynchronous", "network-programming"]

[dependencies]
bitflags = "1"
c-ares-sys = { version = "4.1.2", path = "c-ares-sys" }
c-types = "2.0.2"
itertools = "0.7"

[target.'cfg(unix)'.dev-dependencies]
futures = "0.1"
mio = "0.6"
mio-extras = "2"
nix = "0.10"
tokio = "0.1"

[target.'cfg(windows)'.dev-dependencies]
winapi = { version = "0.3", features = ["winsock2"] }

[workspace]