Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upUpdated to build with 1.0.0-beta #67
Conversation
The tests don't work, but that seems unavoidable since the `test` feature is unstable (so `extern crate test` simply won't compile).
|
Looks likes
would also prevent beta compatibility right now, right? |
|
Comment out the #[bench] tests or remove them? The extern crate test seems only used for those. Or perhaps there is a stable formulation for benchmark tests we can use? |
|
According to the wisdom of the #rust irc channel, there is no beta-stable alternative at the moment. So I've commented out the benchmarks, and now the build is passing. |
jeffparsons
commented
Apr 10, 2015
|
FWIW I've just built and tested one of my toy projects (a local branch of https://github.com/slashgrin/lifelike updated to build with the 1.0.0beta rustc) against 6585178, and what little of the rust-png API I'm exercising appears to be working just fine. |
|
Looks good to me! |
lambdacat commentedApr 4, 2015
The tests don't work, but that seems unavoidable since the
testfeature is unstable (so
extern crate testsimply won't compile).