From 986fc1c36519a5e13618dffc3e75e49b75950a00 Mon Sep 17 00:00:00 2001 From: Jakub Matraszek Date: Thu, 26 Jan 2017 19:51:00 +0100 Subject: [PATCH 1/4] Fix building binaries --- Cargo.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 7de4ad1..8b2bece 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,6 +6,18 @@ version = "0.1.0" [[bin]] name = "contributors" doc = false +[[bin]] +name = "populate" +path = "bin/populate" +doc = false +[[bin]] +name = "update-commit-db" +path = "bin/update-commit-db" +doc = false +[[bin]] +name = "the-big-red-button" +path = "bin/the-big-red-button" +doc = false [dependencies] futures = "0.1.7" From cc23b01d48a50c75dcb2126bb38d29db8cc17df1 Mon Sep 17 00:00:00 2001 From: Jakub Matraszek Date: Thu, 26 Jan 2017 20:04:36 +0100 Subject: [PATCH 2/4] This should work --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8b2bece..24bb83c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,15 +8,15 @@ name = "contributors" doc = false [[bin]] name = "populate" -path = "bin/populate" +path = "src/bin/populate" doc = false [[bin]] name = "update-commit-db" -path = "bin/update-commit-db" +path = "src/bin/update-commit-db" doc = false [[bin]] name = "the-big-red-button" -path = "bin/the-big-red-button" +path = "src/bin/the-big-red-button" doc = false [dependencies] From fbfbaf1490d40f42764721568faad22e4905a9fe Mon Sep 17 00:00:00 2001 From: Jakub Matraszek Date: Thu, 26 Jan 2017 20:08:18 +0100 Subject: [PATCH 3/4] Forgot file extensions... hope this is the last one --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 24bb83c..fcf7cfd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,15 +8,15 @@ name = "contributors" doc = false [[bin]] name = "populate" -path = "src/bin/populate" +path = "src/bin/populate.rs" doc = false [[bin]] name = "update-commit-db" -path = "src/bin/update-commit-db" +path = "src/bin/update-commit-db.rs" doc = false [[bin]] name = "the-big-red-button" -path = "src/bin/the-big-red-button" +path = "src/bin/the-big-red-button.rs" doc = false [dependencies] From 2366d20af6197d466e8e733c1e9b4618567c4ffb Mon Sep 17 00:00:00 2001 From: Jakub Matraszek Date: Thu, 26 Jan 2017 20:30:12 +0100 Subject: [PATCH 4/4] Remove path for bins --- Cargo.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fcf7cfd..eb06483 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,15 +8,12 @@ name = "contributors" doc = false [[bin]] name = "populate" -path = "src/bin/populate.rs" doc = false [[bin]] name = "update-commit-db" -path = "src/bin/update-commit-db.rs" doc = false [[bin]] name = "the-big-red-button" -path = "src/bin/the-big-red-button.rs" doc = false [dependencies]