Build failed for Rust 1.11.0 #34
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
rustc 1.11.0 (9b21dcd6a 2016-08-15)
cargo 0.12.0-nightly (6b98d1f 2016-07-04)
Message:
Look like you are using a 0.8.x version of formdata. The lastest is the 0.9.x branch. 0.8 is okay but it had a lot of problems like the one above, mostly related to serde, different rust versions, nightly vs. stable, and cargo not being able to synchronize dependencies. I eventually gave up and removed serde support when 0.9 was released. I'll add back serde support once the AST is stable and syntax extensions are stable.
If you can't upgrade to 0.9 or if you need serde support, you'll need to fiddle with your Cargo.lock file. Figure out why "two different versions of crate syntex are being used", and force the versions to match up. Commands like "cargo update -p
package--preciseversion" can help.