├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples ├── basic.rs ├── custom_resolve.rs └── listener.rs └── src ├── endpoint.rs ├── lib.rs ├── net.rs └── resolver.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbstp/tokio-dns/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbstp/tokio-dns/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbstp/tokio-dns/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbstp/tokio-dns/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbstp/tokio-dns/HEAD/README.md -------------------------------------------------------------------------------- /examples/basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbstp/tokio-dns/HEAD/examples/basic.rs -------------------------------------------------------------------------------- /examples/custom_resolve.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbstp/tokio-dns/HEAD/examples/custom_resolve.rs -------------------------------------------------------------------------------- /examples/listener.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbstp/tokio-dns/HEAD/examples/listener.rs -------------------------------------------------------------------------------- /src/endpoint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbstp/tokio-dns/HEAD/src/endpoint.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbstp/tokio-dns/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/net.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbstp/tokio-dns/HEAD/src/net.rs -------------------------------------------------------------------------------- /src/resolver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbstp/tokio-dns/HEAD/src/resolver.rs --------------------------------------------------------------------------------