From 7351038ff82a7b5d397d2ba83c9f4e24eeb4fd3b Mon Sep 17 00:00:00 2001 From: Joonas Javanainen Date: Tue, 25 Apr 2017 23:05:49 +0300 Subject: [PATCH] Use a Cargo workspace --- .travis.yml | 5 +++++ Cargo.toml | 3 +++ 2 files changed, 8 insertions(+) diff --git a/.travis.yml b/.travis.yml index acc892e..7bad4de 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,5 +12,10 @@ cache: cargo matrix: allow_failures: - rust: nightly + before_install: - git submodule update --init --recursive + +script: + - cargo build --all --verbose + - cargo test --all --verbose diff --git a/Cargo.toml b/Cargo.toml index 5a6a144..0810c48 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,3 +11,6 @@ categories = ["gui", "api-bindings"] [dependencies] imgui-sys = { version = "0.0.13-pre", path = "imgui-sys" } + +[workspace] +members = ["imgui-sys", "imgui-glium-renderer"]