-
-
Notifications
You must be signed in to change notification settings - Fork 790
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #417 from serde-rs/bump
Update syntex to 0.37
- Loading branch information
Showing
11 changed files
with
47 additions
and
42 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.7.11" | ||
version = "0.7.12" | ||
authors = ["Erick Tryzelaar <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
description = "A generic serialization/deserialization framework" | ||
|
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.7.11" | ||
version = "0.7.12" | ||
authors = ["Erick Tryzelaar <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
description = "Macros to auto-generate implementations for the serde framework" | ||
|
@@ -24,14 +24,14 @@ with-syntex = [ | |
] | ||
|
||
[build-dependencies] | ||
quasi_codegen = { version = "^0.13.0", optional = true } | ||
syntex = { version = "^0.36.0", optional = true } | ||
quasi_codegen = { version = "^0.14.0", optional = true } | ||
syntex = { version = "^0.37.0", optional = true } | ||
|
||
[dependencies] | ||
aster = { version = "^0.19.0", default-features = false } | ||
aster = { version = "^0.20.0", default-features = false } | ||
clippy = { version = "^0.*", optional = true } | ||
quasi = { version = "^0.13.0", default-features = false } | ||
quasi_macros = { version = "^0.13.0", optional = true } | ||
serde_codegen_internals = { version = "^0.1.0", path = "../serde_codegen_internals", default-features = false } | ||
syntex = { version = "^0.36.0", optional = true } | ||
syntex_syntax = { version = "^0.36.0", optional = true } | ||
quasi = { version = "^0.14.0", default-features = false } | ||
quasi_macros = { version = "^0.14.0", optional = true } | ||
serde_codegen_internals = { version = "^0.2.0", path = "../serde_codegen_internals", default-features = false } | ||
syntex = { version = "^0.37.0", optional = true } | ||
syntex_syntax = { version = "^0.37.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
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_codegen_internals" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Erick Tryzelaar <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
description = "AST representation used by Serde codegen. Unstable." | ||
|
@@ -12,8 +12,9 @@ include = ["Cargo.toml", "src/**/*.rs"] | |
[features] | ||
default = ["with-syntex"] | ||
nightly-testing = ["clippy"] | ||
with-syntex = ["syntex_syntax"] | ||
with-syntex = ["syntex_syntax", "syntex_errors"] | ||
|
||
[dependencies] | ||
clippy = { version = "^0.*", optional = true } | ||
syntex_syntax = { version = "^0.36.0", optional = true } | ||
syntex_syntax = { version = "^0.37.0", optional = true } | ||
syntex_errors = { version = "^0.37.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
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_macros" | ||
version = "0.7.11" | ||
version = "0.7.12" | ||
authors = ["Erick Tryzelaar <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
description = "Macros to auto-generate implementations for the serde framework" | ||
|
@@ -18,14 +18,14 @@ nightly-testing = ["clippy", "serde/nightly-testing", "serde_codegen/nightly-tes | |
|
||
[dependencies] | ||
clippy = { version = "^0.*", optional = true } | ||
serde_codegen = { version = "^0.7.11", path = "../serde_codegen", default-features = false, features = ["nightly"] } | ||
serde_codegen = { version = "^0.7.12", path = "../serde_codegen", default-features = false, features = ["nightly"] } | ||
|
||
[dev-dependencies] | ||
compiletest_rs = "^0.2.0" | ||
fnv = "1.0" | ||
rustc-serialize = "^0.3.16" | ||
serde = { version = "^0.7.11", path = "../serde" } | ||
serde_test = { version = "^0.7.11", path = "../serde_test" } | ||
serde = { version = "^0.7.12", path = "../serde" } | ||
serde_test = { version = "^0.7.12", 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "serde_test" | ||
version = "0.7.11" | ||
version = "0.7.12" | ||
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.7.11", path = "../serde" } | ||
serde = { version = "0.7.12", 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.7.11" | ||
version = "0.7.12" | ||
authors = ["Erick Tryzelaar <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
description = "A generic serialization/deserialization framework" | ||
|