From 54a2dcfa5e55f2eabdaa961a963c78edc0c0eaa9 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 9 Mar 2017 14:47:16 -0800 Subject: [PATCH] Add `build = false` to Cargo.toml to fix nightly breakage In rust-lang/rust#40197 it was discovered that this crate no longer builds on nightly due to a rust-lang/cargo#3664 where Cargo will now infer that `build.rs` is a build script unless explicitly configured with `build = false`. Currently we're not intending to revert the Cargo change, but let me know if this causes trouble though and we can certainly reconsider! --- protocol/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index b788ff81..810cc028 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -9,6 +9,7 @@ description = """ Internal dependency for roboime-next. """ # the build script is not being used right now +build = false #build = "build.rs" [dependencies]