Adapt for parser::PathParsingMode interface change in libsyntax

This was renamed upstream in
https://github.com/rust-lang/rust/commit/6c44bea64435fd3859439a6ecab7758855a13f07

It's an incompatible change requiring new versions of syntex, aster, and
quasi.
This commit is contained in:
Olaf Buddenhagen
2016-05-02 07:12:05 +02:00
parent 0ff91e4451
commit 6e7a75c859
3 changed files with 11 additions and 11 deletions
+3 -3
View File
@@ -14,14 +14,14 @@ build = "build.rs"
nightly-testing = ["clippy", "serde/nightly-testing", "serde_codegen/nightly-testing"]
[build-dependencies]
syntex = { version = "^0.31.0" }
syntex_syntax = { version = "^0.31.0" }
syntex = { version = "^0.32.0" }
syntex_syntax = { version = "^0.32.0" }
serde_codegen = { version = "*", path = "../serde_codegen", features = ["with-syntex"] }
[dev-dependencies]
rustc-serialize = "^0.3.16"
serde = { version = "*", path = "../serde" }
syntex = "^0.31.0"
syntex = "^0.32.0"
[dependencies]
clippy = { version = "^0.*", optional = true }