-
-
Notifications
You must be signed in to change notification settings - Fork 792
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch origin/master into origin/stack
- Loading branch information
Showing
9 changed files
with
29 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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 } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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", | ||
|
@@ -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 } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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." | ||
|
@@ -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 } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -16,7 +16,6 @@ plugin = true | |
|
||
[features] | ||
unstable-testing = [ | ||
"clippy", | ||
"skeptic", | ||
"serde_json", | ||
"serde/unstable-testing", | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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"] } | ||
|