From b5b9e77b03b2686afc513254b52194589cfe3e88 Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Sat, 25 Mar 2017 20:41:11 +0300 Subject: [PATCH] Make env_logger a dev dependency It is only used by the examples; libraries should only depend on the `log` crate. --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 571a616..0238bd6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,6 @@ base64 = "0.4.0" byteorder = "1.0.0" bytes = "0.4.1" httparse = "1.2.1" -env_logger = "0.4.2" log = "0.3.7" rand = "0.3.15" sha1 = "0.2.0" @@ -30,3 +29,6 @@ utf-8 = "0.7.0" [dependencies.native-tls] optional = true version = "0.1.1" + +[dev-dependencies] +env_logger = "0.4.2"