diff options
author | Till Höppner | 2016-03-09 16:59:15 +0100 |
---|---|---|
committer | Till Höppner | 2016-03-09 17:01:04 +0100 |
commit | eca90a051b4daebe12a8421c6c4f57d5b5b9fbbd (patch) | |
tree | 4af753d758b1349b105d4b79dc2ac740cff28581 /cli/Cargo.toml | |
parent | e15f184edc228b991ee87ca39a6a177e6938d9c6 (diff) | |
download | ilc-eca90a051b4daebe12a8421c6c4f57d5b5b9fbbd.tar.gz ilc-eca90a051b4daebe12a8421c6c4f57d5b5b9fbbd.tar.xz ilc-eca90a051b4daebe12a8421c6c4f57d5b5b9fbbd.zip |
Allow ARM failure
Diffstat (limited to 'cli/Cargo.toml')
-rw-r--r-- | cli/Cargo.toml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 8e66b7e..e958ef5 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -6,6 +6,7 @@ homepage = "https://github.com/tilpner/ilc" license = "Apache-2.0" repository = "https://github.com/tilpner/ilc" authors = ["Till Höppner <till@hoeppner.ws>"] +build = "build.rs" [features] default = ["ilc-format-weechat", "ilc-format-energymech"] @@ -14,9 +15,15 @@ default = ["ilc-format-weechat", "ilc-format-energymech"] log = "0.3.5" clap = "2.1.2" chrono = "0.2.19" +serde = "~0.7" +serde_json = "~0.7" env_logger = "0.3.2" glob = "0.2.10" ilc-base = "~0.2" ilc-ops = "~0.1" ilc-format-weechat = { optional = true, version = "~0.2" } ilc-format-energymech = { optional = true, version = "~0.2" } +includedir = "~0.2" + +[build-dependencies] +includedir_codegen = "~0.2" |