Skip to content

Commit

Permalink
Add build = false to Cargo.toml to fix nightly breakage
Browse files Browse the repository at this point in the history
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!
  • Loading branch information
alexcrichton committed Mar 9, 2017
1 parent 54a8d0b commit 54a2dcf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 54a2dcf

Please sign in to comment.