changeset 18:08d04d44f86d draft

Add toml and dns_lookup crates.
author Lewin Bormann <lbo@spheniscida.de>
date Sat, 03 Dec 2016 14:17:30 +0100
parents 4caa98d804bd
children c4be6edfffec
files Cargo.toml src/main.rs
diffstat 2 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/Cargo.toml	Sat Dec 03 14:17:18 2016 +0100
+++ b/Cargo.toml	Sat Dec 03 14:17:30 2016 +0100
@@ -8,3 +8,4 @@
 tokio-core = "0.1"
 tokio-uds = "0.1"
 toml = "0.2"
+dns-lookup = "0.2"
--- a/src/main.rs	Sat Dec 03 14:17:18 2016 +0100
+++ b/src/main.rs	Sat Dec 03 14:17:30 2016 +0100
@@ -2,6 +2,8 @@
 #[macro_use]
 extern crate tokio_core;
 extern crate tokio_uds;
+extern crate toml;
+extern crate dns_lookup;
 
 mod config;
 mod dgram_stream;