aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTill Hoeppner2015-04-21 23:51:00 +0200
committerTill Hoeppner2015-04-21 23:51:00 +0200
commit3cd80edf23f9605428af38b339a3a056c60d824c (patch)
tree797ebadf0d1a833fe5719fc96ec9f68de97908a9
parent58de2b7d284700c90bbd6414a52b46085f4de0a3 (diff)
downloadirsc-3cd80edf23f9605428af38b339a3a056c60d824c.tar.gz
irsc-3cd80edf23f9605428af38b339a3a056c60d824c.tar.xz
irsc-3cd80edf23f9605428af38b339a3a056c60d824c.zip
Only require env-logger for tests
-rw-r--r--Cargo.toml5
1 files changed, 4 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 2013c29..c6cb4f7 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,13 +4,13 @@ name = "irsc"
version = "0.0.3"
authors = ["Till Hoeppner <till@hoeppner.ws>"]
description = "A lightweight library for building IRC bots."
+documentation = "https://tilpner.github.io/irsc"
repository = "https://github.com/tilpner/irsc"
keywords = ["irc", "internet", "protocol"]
license = "MIT"
[dependencies]
log = "*"
-env_logger = "*"
regex = "*"
regex_macros = "*"
@@ -20,3 +20,6 @@ ssl = ["openssl"]
[dependencies.openssl]
version = "*"
optional = true
+
+[dev-dependencies]
+env_logger = "*"