diff --git a/serde_codegen/Cargo.toml b/serde_codegen/Cargo.toml index 83638154..1c2226e1 100644 --- a/serde_codegen/Cargo.toml +++ b/serde_codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_codegen" -version = "0.7.0" +version = "0.7.1" authors = ["Erick Tryzelaar "] license = "MIT/Apache-2.0" description = "Macros to auto-generate implementations for the serde framework" @@ -16,13 +16,13 @@ nightly-testing = ["clippy"] with-syntex = ["quasi/with-syntex", "quasi_codegen", "quasi_codegen/with-syntex", "syntex", "syntex_syntax"] [build-dependencies] -quasi_codegen = { version = "^0.7.0", optional = true } -syntex = { version = "^0.29.0", optional = true } +quasi_codegen = { version = "^0.8.0", optional = true } +syntex = { version = "^0.30.0", optional = true } [dependencies] -aster = { version = "^0.13.1", default-features = false } +aster = { version = "^0.14.0", default-features = false } clippy = { version = "^0.*", optional = true } -quasi = { version = "^0.7.0", default-features = false } -quasi_macros = { version = "^0.7.0", optional = true } -syntex = { version = "^0.29.0", optional = true } -syntex_syntax = { version = "^0.29.0", optional = true } +quasi = { version = "^0.8.0", default-features = false } +quasi_macros = { version = "^0.8.0", optional = true } +syntex = { version = "^0.30.0", optional = true } +syntex_syntax = { version = "^0.30.0", optional = true } diff --git a/serde_codegen/src/attr.rs b/serde_codegen/src/attr.rs index d937f605..fa64d6cf 100644 --- a/serde_codegen/src/attr.rs +++ b/serde_codegen/src/attr.rs @@ -462,11 +462,11 @@ fn parse_lit_into_path(cx: &ExtCtxt, name: &str, lit: &ast::Lit) -> Result", name), (*source).to_owned(), cx.cfg(), - cx.parse_sess()); + cx.parse_sess())); // Respan the spans to say they are all coming from this macro. let tts = Respanner { cx: cx }.fold_tts(&tts); diff --git a/serde_codegen/src/lib.rs b/serde_codegen/src/lib.rs index a5159080..8fb928e8 100644 --- a/serde_codegen/src/lib.rs +++ b/serde_codegen/src/lib.rs @@ -11,9 +11,11 @@ extern crate quasi; extern crate syntex; #[cfg(feature = "with-syntex")] +#[macro_use] extern crate syntex_syntax as syntax; #[cfg(not(feature = "with-syntex"))] +#[macro_use] extern crate syntax; #[cfg(not(feature = "with-syntex"))] diff --git a/serde_macros/Cargo.toml b/serde_macros/Cargo.toml index cd9348e8..e0e7d106 100644 --- a/serde_macros/Cargo.toml +++ b/serde_macros/Cargo.toml @@ -20,7 +20,7 @@ clippy = { version = "^0.*", optional = true } serde_codegen = { version = "^0.7.0", path = "../serde_codegen", default-features = false, features = ["nightly"] } [dev-dependencies] -compiletest_rs = "^0.0.11" +compiletest_rs = "^0.1.1" rustc-serialize = "^0.3.16" serde = { version = "^0.7.0", path = "../serde" } diff --git a/serde_tests/Cargo.toml b/serde_tests/Cargo.toml index c81fefb4..ee63b936 100644 --- a/serde_tests/Cargo.toml +++ b/serde_tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_tests" -version = "0.6.3" +version = "0.7.1" authors = ["Erick Tryzelaar "] license = "MIT/Apache-2.0" description = "A generic serialization/deserialization framework" @@ -14,14 +14,14 @@ build = "build.rs" nightly-testing = ["clippy", "serde/nightly-testing", "serde_codegen/nightly-testing"] [build-dependencies] -syntex = { version = "^0.29.0" } -syntex_syntax = { version = "^0.29.0" } +syntex = { version = "^0.30.0" } +syntex_syntax = { version = "^0.30.0" } serde_codegen = { version = "*", path = "../serde_codegen", features = ["with-syntex"] } [dev-dependencies] rustc-serialize = "^0.3.16" serde = { version = "*", path = "../serde" } -syntex = "^0.29.0" +syntex = "^0.30.0" [dependencies] clippy = { version = "^0.*", optional = true }