aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>2020-08-11 21:18:46 +0900
committerTakashi Sakamoto <o-takashi@sakamocchi.jp>2020-08-17 14:54:04 +0900
commitdd19d1ff2ed158effba4cb49faa91e2838f2a859 (patch)
treec2c79e779366282777c9132f3efc7a61cd70e263
parent1410bd33c96c0beab55539a56e9d8fa460007ce8 (diff)
downloadhinawa-rs-dd19d1ff2ed158effba4cb49faa91e2838f2a859.tar.gz
cargo: exclude gir directory from workspace
When any cargo subproject is in project and not described in the top-level Cargo.toml, all of the subprojects fail to build due to the missing entry. This commit fixes the bug. Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
-rw-r--r--Cargo.toml4
1 files changed, 4 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 8f67965..a9015de 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,6 +4,10 @@ members = [
"hinawa",
]
+exclude = [
+ "gir",
+]
+
default-members = [
"hinawa",
]