-
-
Notifications
You must be signed in to change notification settings - Fork 788
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
21 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "serde" | ||
version = "0.7.14" | ||
version = "0.7.15" | ||
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.14" | ||
version = "0.7.15" | ||
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.15.0", optional = true } | ||
syntex = { version = "^0.38.0", optional = true } | ||
quasi_codegen = { version = "^0.16.0", optional = true } | ||
syntex = { version = "^0.39.0", optional = true } | ||
|
||
[dependencies] | ||
aster = { version = "^0.21.1", default-features = false } | ||
aster = { version = "^0.22.0", default-features = false } | ||
clippy = { version = "^0.*", optional = true } | ||
quasi = { version = "^0.15.0", default-features = false } | ||
quasi_macros = { version = "^0.15.0", optional = true } | ||
serde_codegen_internals = { version = "^0.3.0", default-features = false } | ||
syntex = { version = "^0.38.0", optional = true } | ||
syntex_syntax = { version = "^0.38.0", optional = true } | ||
quasi = { version = "^0.16.0", default-features = false } | ||
quasi_macros = { version = "^0.16.0", optional = true } | ||
serde_codegen_internals = { version = "^0.4.0", default-features = false } | ||
syntex = { version = "^0.39.0", optional = true } | ||
syntex_syntax = { version = "^0.39.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.3.0" | ||
version = "0.4.0" | ||
authors = ["Erick Tryzelaar <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
description = "AST representation used by Serde codegen. Unstable." | ||
|
@@ -16,5 +16,5 @@ with-syntex = ["syntex_syntax", "syntex_errors"] | |
|
||
[dependencies] | ||
clippy = { version = "^0.*", optional = true } | ||
syntex_syntax = { version = "^0.38.0", optional = true } | ||
syntex_errors = { version = "^0.38.0", optional = true } | ||
syntex_syntax = { version = "^0.39.0", optional = true } | ||
syntex_errors = { version = "^0.39.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_macros" | ||
version = "0.7.14" | ||
version = "0.7.15" | ||
authors = ["Erick Tryzelaar <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
description = "Macros to auto-generate implementations for the serde framework" | ||
|
@@ -18,15 +18,15 @@ nightly-testing = ["clippy", "serde/nightly-testing", "serde_codegen/nightly-tes | |
|
||
[dependencies] | ||
clippy = { version = "^0.*", optional = true } | ||
serde_codegen = { version = "^0.7.14", default-features = false, features = ["nightly"] } | ||
serde_codegen = { version = "^0.7.15", default-features = false, features = ["nightly"] } | ||
|
||
[dev-dependencies] | ||
clippy = "^0.0.78" | ||
clippy = "^0.0.79" | ||
compiletest_rs = "^0.2.0" | ||
fnv = "1.0" | ||
rustc-serialize = "^0.3.16" | ||
serde = "0.7.14" | ||
serde_test = "0.7.14" | ||
serde = "0.7.15" | ||
serde_test = "0.7.15" | ||
|
||
[[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.14" | ||
version = "0.7.15" | ||
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 = "0.7.14" | ||
serde = "0.7.15" |
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.14" | ||
version = "0.7.15" | ||
authors = ["Erick Tryzelaar <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
description = "A generic serialization/deserialization framework" | ||
|