diff options
author | Till Höppner | 2016-02-03 03:38:32 +0100 |
---|---|---|
committer | Till Höppner | 2016-02-03 03:38:32 +0100 |
commit | cadd814c28b03205c8277530ef09bffcdba44ec6 (patch) | |
tree | 0314a1ee2e87f4f3eedde42b5fe685610b98d1db /Cargo.toml | |
parent | c4acc192d9e6b023334156706b9974006652d6d6 (diff) | |
download | ilc-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.toml | 25 |
1 files changed, 12 insertions, 13 deletions
@@ -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 |