diff options
author | Till Hoeppner | 2015-04-21 23:51:00 +0200 |
---|---|---|
committer | Till Hoeppner | 2015-04-21 23:51:00 +0200 |
commit | 3cd80edf23f9605428af38b339a3a056c60d824c (patch) | |
tree | 797ebadf0d1a833fe5719fc96ec9f68de97908a9 /Cargo.toml | |
parent | 58de2b7d284700c90bbd6414a52b46085f4de0a3 (diff) | |
download | irsc-3cd80edf23f9605428af38b339a3a056c60d824c.tar.gz irsc-3cd80edf23f9605428af38b339a3a056c60d824c.tar.xz irsc-3cd80edf23f9605428af38b339a3a056c60d824c.zip |
Only require env-logger for tests
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 = "*" |