Import new dependencies

Because of the changes in the "src/ui.rs" files in the binary
implementations, we have new dependencies we need to import into the
build-script of the "imag" command, so that it can build the
commandline.

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
Matthias Beyer 2018-10-07 09:56:03 +02:00
parent f6483f54db
commit 345970d36b
2 changed files with 9 additions and 0 deletions

View file

@ -18,8 +18,11 @@ build = "build.rs"
[build-dependencies] [build-dependencies]
clap = ">=2.16.1" clap = ">=2.16.1"
libimagrt = { version = "0.9.0", path = "../../../lib/core/libimagrt" } libimagrt = { version = "0.9.0", path = "../../../lib/core/libimagrt" }
libimagerror = { version = "0.9.0", path = "../../../lib/core/libimagerror" }
libimagstore = { version = "0.9.0", path = "../../../lib/core/libimagstore" }
libimagentrytag = { version = "0.9.0", path = "../../../lib/entry/libimagentrytag" } libimagentrytag = { version = "0.9.0", path = "../../../lib/entry/libimagentrytag" }
libimagutil = { version = "0.9.0", path = "../../../lib/etc/libimagutil" } libimagutil = { version = "0.9.0", path = "../../../lib/etc/libimagutil" }
log = "0.4.0"
[badges] [badges]
travis-ci = { repository = "matthiasbeyer/imag" } travis-ci = { repository = "matthiasbeyer/imag" }
@ -34,6 +37,7 @@ toml = "0.4"
toml-query = "0.7" toml-query = "0.7"
libimagerror = { version = "0.9.0", path = "../../../lib/core/libimagerror" } libimagerror = { version = "0.9.0", path = "../../../lib/core/libimagerror" }
libimagstore = { version = "0.9.0", path = "../../../lib/core/libimagstore" }
[dependencies.clap] [dependencies.clap]
version = "^2.29" version = "^2.29"

View file

@ -19,7 +19,11 @@
extern crate clap; extern crate clap;
#[macro_use] #[macro_use]
extern crate log;
#[macro_use]
extern crate libimagrt; extern crate libimagrt;
extern crate libimagerror;
extern crate libimagstore;
extern crate libimagentrytag; extern crate libimagentrytag;
extern crate libimagutil; extern crate libimagutil;
@ -45,6 +49,7 @@ mod toplevelbuildscript {
macro_rules! gen_mods_buildui { macro_rules! gen_mods_buildui {
($(($path:expr, $modulename:ident)$(,)*)*) => ( ($(($path:expr, $modulename:ident)$(,)*)*) => (
$( $(
#[allow(unused)]
mod $modulename { mod $modulename {
include!($path); include!($path);
} }