aboutsummaryrefslogtreecommitdiff
path: root/cli/Cargo.toml
blob: b5bf1d539d4412833906e59c796fd4e79b81bdff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "ilc-cli"
version = "0.1.0"
description = "IRC log converter/collector/cruncher"
homepage = "https://github.com/tilpner/ilc"
license = "Apache-2.0"
repository = "https://github.com/tilpner/ilc"
authors = ["Till Höppner <till@hoeppner.ws>"]

[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" }