Fails to build with current nightly. #33
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?
Several occurrences of:
When adding the feature you get an error in
textnonce:Using:
rustc 1.11.0-nightly (5522e678b 2016-06-20)
cargo 0.12.0-nightly (4ba8264 2016-06-19)
There is not much more that I can do to fix this kind of version skew until Cargo allows me to specify that "the version of syntex must match whatever serde_codegen (or quasi/aster) is using".
You can pin the version in your cargo.lock file to the one quasi and aster are using (as of today) with:
I used to manually set the exact version of syntex, and every week or two I got a bug report and had to bump it. Now I just put "^0" and let downstream (that means you) manage your cargo.lock file. Formdata now works with any version of syntex, and you are responsible for pinning it to the version that
asterandquasiare currently using.Makes sense - thanks.