From 9f5dd9dad6b13476bab2c6eb3c6528f8ad49311a Mon Sep 17 00:00:00 2001 From: Till Höppner Date: Thu, 25 Feb 2016 06:48:03 +0100 Subject: Refactor... everything. --- cli/Cargo.toml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 cli/Cargo.toml (limited to 'cli/Cargo.toml') diff --git a/cli/Cargo.toml b/cli/Cargo.toml new file mode 100644 index 0000000..1973cd3 --- /dev/null +++ b/cli/Cargo.toml @@ -0,0 +1,22 @@ +[package] +name = "ilc-cli" +version = "0.1.0" +authors = ["Till Höppner "] + +[features] +default = ["ilc-format-weechat", "ilc-format-energymech"] + +[dependencies] +log = "0.3.5" +clap = "2.1.2" +chrono = "0.2.19" +env_logger = "0.3.2" +glob = "0.2.10" +# ilc-base = "*" +ilc-base = { path = "../base" } +# ilc-ops = "*" +ilc-ops = { path = "../ops" } +# ilc-format-weechat = { optional = true, version = "*" } +ilc-format-weechat = { optional = true, path = "../formats/weechat" } +# ilc-format-energymech = { optional = true, version = "*" } +ilc-format-energymech = { optional = true, path = "../formats/energymech" } -- cgit v1.2.3