Skip to content

Commit

Permalink
Merge branch origin/master into origin/stack
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Aug 18, 2016
2 parents dba1377 + 671f5eb commit 6f77ea5
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 29 deletions.
4 changes: 2 additions & 2 deletions examples/serde-syntex-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ default = ["serde_codegen"]
unstable = ["serde_macros"]

[build-dependencies]
serde_codegen = { version = "^0.8", optional = true }
serde_codegen = { version = "^0.8", optional = true, path = "../../serde_codegen" }

[dependencies]
serde = "^0.8"
serde_json = "^0.8"
serde_macros = { version = "^0.8", optional = true }
serde_macros = { version = "^0.8", optional = true, path = "../../serde_macros" }
4 changes: 2 additions & 2 deletions serde/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde"
version = "0.8.1"
version = "0.8.2"
authors = ["Erick Tryzelaar <[email protected]>"]
license = "MIT/Apache-2.0"
description = "A generic serialization/deserialization framework"
Expand All @@ -17,7 +17,7 @@ std = []
unstable = []
alloc = ["unstable"]
collections = ["alloc"]
unstable-testing = ["clippy", "unstable", "std"]
unstable-testing = ["unstable", "std"]

[dependencies]
clippy = { version = "^0.*", optional = true }
20 changes: 10 additions & 10 deletions serde_codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde_codegen"
version = "0.8.1"
version = "0.8.2"
authors = ["Erick Tryzelaar <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Macros to auto-generate implementations for the serde framework"
Expand All @@ -13,7 +13,7 @@ include = ["Cargo.toml", "build.rs", "src/**/*.rs", "src/lib.rs.in"]
[features]
default = ["with-syntex"]
unstable = ["quasi_macros"]
unstable-testing = ["clippy"]
unstable-testing = []
with-syntex = [
"quasi/with-syntex",
"quasi_codegen",
Expand All @@ -24,14 +24,14 @@ with-syntex = [
]

[build-dependencies]
quasi_codegen = { version = "^0.16.0", optional = true }
syntex = { version = "^0.39.0", optional = true }
quasi_codegen = { version = "^0.17.0", optional = true }
syntex = { version = "^0.41.0", optional = true }

[dependencies]
aster = { version = "^0.22.0", default-features = false }
aster = { version = "^0.24.0", default-features = false }
clippy = { version = "^0.*", optional = true }
quasi = { version = "^0.16.0", default-features = false }
quasi_macros = { version = "^0.16.0", optional = true }
serde_codegen_internals = { version = "=0.5.0", default-features = false, path = "../serde_codegen_internals" }
syntex = { version = "^0.39.0", optional = true }
syntex_syntax = { version = "^0.39.0", optional = true }
quasi = { version = "^0.17.0", default-features = false }
quasi_macros = { version = "^0.17.0", optional = true }
serde_codegen_internals = { version = "=0.6.0", default-features = false, path = "../serde_codegen_internals" }
syntex = { version = "^0.41.0", optional = true }
syntex_syntax = { version = "^0.41.0", optional = true }
8 changes: 4 additions & 4 deletions serde_codegen_internals/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde_codegen_internals"
version = "0.5.0"
version = "0.6.0"
authors = ["Erick Tryzelaar <[email protected]>"]
license = "MIT/Apache-2.0"
description = "AST representation used by Serde codegen. Unstable."
Expand All @@ -11,10 +11,10 @@ include = ["Cargo.toml", "src/**/*.rs"]

[features]
default = ["with-syntex"]
unstable-testing = ["clippy"]
unstable-testing = []
with-syntex = ["syntex_syntax", "syntex_errors"]

[dependencies]
clippy = { version = "^0.*", optional = true }
syntex_syntax = { version = "^0.39.0", optional = true }
syntex_errors = { version = "^0.39.0", optional = true }
syntex_syntax = { version = "^0.41.0", optional = true }
syntex_errors = { version = "^0.41.0", optional = true }
2 changes: 2 additions & 0 deletions serde_macros/.cargo/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# To prevent compiletest from seeing two versions of serde
paths = ["../serde"]
10 changes: 4 additions & 6 deletions serde_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde_macros"
version = "0.8.1"
version = "0.8.2"
authors = ["Erick Tryzelaar <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Macros to auto-generate implementations for the serde framework"
Expand All @@ -16,7 +16,6 @@ plugin = true

[features]
unstable-testing = [
"clippy",
"skeptic",
"serde_json",
"serde/unstable-testing",
Expand All @@ -28,17 +27,16 @@ skeptic = { version = "^0.6.0", optional = true }

[dependencies]
clippy = { version = "^0.*", optional = true }
serde_codegen = { version = "=0.8.1", default-features = false, features = ["unstable"], path = "../serde_codegen" }
serde_codegen = { version = "=0.8.2", default-features = false, features = ["unstable"], path = "../serde_codegen" }
skeptic = { version = "^0.6.0", optional = true }
serde_json = { version = "0.8.0", optional = true }

[dev-dependencies]
clippy = "^0.*"
compiletest_rs = "^0.2.0"
fnv = "1.0"
rustc-serialize = "^0.3.16"
serde = { version = "0.8.1", path = "../serde" }
serde_test = { version = "0.8.1", path = "../serde_test" }
serde = { version = "0.8.2", path = "../serde" }
serde_test = { version = "0.8.2", path = "../serde_test" }

[[test]]
name = "test"
Expand Down
2 changes: 1 addition & 1 deletion serde_macros/tests/run-pass/identity-op.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![feature(custom_derive, plugin)]
#![plugin(serde_macros, clippy)]
#![plugin(serde_macros)]

#![deny(identity_op)]

Expand Down
4 changes: 2 additions & 2 deletions serde_test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde_test"
version = "0.8.1"
version = "0.8.2"
authors = ["Erick Tryzelaar <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Token De/Serializer for testing De/Serialize implementations"
Expand All @@ -11,4 +11,4 @@ keywords = ["serde", "serialization"]
include = ["Cargo.toml", "src/**/*.rs"]

[dependencies]
serde = { version = "0.8.1", path = "../serde" }
serde = { version = "0.8.2", path = "../serde" }
4 changes: 2 additions & 2 deletions testing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde_testing"
version = "0.8.1"
version = "0.8.2"
authors = ["Erick Tryzelaar <[email protected]>"]
license = "MIT/Apache-2.0"
description = "A generic serialization/deserialization framework"
Expand All @@ -11,7 +11,7 @@ keywords = ["serialization"]
build = "build.rs"

[features]
unstable-testing = ["clippy", "serde/unstable-testing", "serde_codegen/unstable-testing"]
unstable-testing = ["serde/unstable-testing", "serde_codegen/unstable-testing"]

[build-dependencies]
serde_codegen = { path = "../serde_codegen", features = ["with-syntex"] }
Expand Down

0 comments on commit 6f77ea5

Please sign in to comment.