aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorTill Höppner2016-02-03 03:38:32 +0100
committerTill Höppner2016-02-03 03:38:32 +0100
commitcadd814c28b03205c8277530ef09bffcdba44ec6 (patch)
tree0314a1ee2e87f4f3eedde42b5fe685610b98d1db /Cargo.toml
parentc4acc192d9e6b023334156706b9974006652d6d6 (diff)
downloadilc-cadd814c28b03205c8277530ef09bffcdba44ec6.tar.gz
ilc-cadd814c28b03205c8277530ef09bffcdba44ec6.tar.xz
ilc-cadd814c28b03205c8277530ef09bffcdba44ec6.zip
Docopt -> clap, main.rs -> src/app
Modularise the old main function, switch to clap for easier addition of CLI arguments
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml25
1 files changed, 12 insertions, 13 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 2bae613..4fc7983 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,32 +1,31 @@
[package]
-
-name = "ilc"
+authors = ["Till Hoeppner <till@hoeppner.ws>"]
description = "IRC log converter/collector/cruncher"
homepage = "https://github.com/tilpner/ilc"
+license = "Apache-2.0"
+name = "ilc"
repository = "https://github.com/tilpner/ilc"
version = "0.1.1"
-license = "Apache-2.0"
-authors = ["Till Hoeppner <till@hoeppner.ws>"]
[[bin]]
-name = "ilc"
doc = false
+name = "ilc"
[dependencies]
-regex = "0.1.46"
+bincode = "0.4.0"
+blist = "0.0.4"
chrono = "0.2.18"
-docopt = "0.6.78"
-rustc-serialize = "0.3.16"
-log = "0.3.4"
+clap = "2.0.2"
env_logger = "0.3.2"
-bincode = "0.4.0"
glob = "0.2.10"
+log = "0.3.4"
+regex = "0.1.46"
rmp = "0.7.3"
rmp-serialize = "0.7.0"
-blist = "0.0.4"
+rustc-serialize = "0.3.16"
[profile.release]
-opt-level = 3
debug = false
-lto = true
debug-assertions = false
+lto = true
+opt-level = 3