mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-07-20 10:25:45 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b6965ecde8 | |||
| 3f3cffe317 | |||
| 4e7b0ac089 | |||
| f6a66a5537 |
+4
-3
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "serde"
|
name = "serde"
|
||||||
version = "0.6.13"
|
version = "0.6.15"
|
||||||
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
description = "A generic serialization/deserialization framework"
|
description = "A generic serialization/deserialization framework"
|
||||||
@@ -10,12 +10,13 @@ readme = "../README.md"
|
|||||||
keywords = ["serde", "serialization"]
|
keywords = ["serde", "serialization"]
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
nightly-testing = ["clippy"]
|
nightly = []
|
||||||
|
nightly-testing = ["clippy", "nightly"]
|
||||||
num-bigint = ["num/bigint"]
|
num-bigint = ["num/bigint"]
|
||||||
num-complex = ["num/complex"]
|
num-complex = ["num/complex"]
|
||||||
num-impls = ["num-bigint", "num-complex", "num-rational"]
|
num-impls = ["num-bigint", "num-complex", "num-rational"]
|
||||||
num-rational = ["num/rational"]
|
num-rational = ["num/rational"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clippy = { version = "^0.0.41", optional = true }
|
clippy = { version = "^0.*", optional = true }
|
||||||
num = { version = "^0.1.27", default-features = false }
|
num = { version = "^0.1.27", default-features = false }
|
||||||
|
|||||||
+2
-2
@@ -12,8 +12,8 @@
|
|||||||
#![doc(html_root_url="https://serde-rs.github.io/serde/serde")]
|
#![doc(html_root_url="https://serde-rs.github.io/serde/serde")]
|
||||||
#![cfg_attr(feature = "nightly", feature(collections, enumset, nonzero, plugin, step_trait,
|
#![cfg_attr(feature = "nightly", feature(collections, enumset, nonzero, plugin, step_trait,
|
||||||
zero_one))]
|
zero_one))]
|
||||||
#![cfg_attr(feature = "nightly", plugin(clippy))]
|
#![cfg_attr(feature = "nightly-testing", plugin(clippy))]
|
||||||
#![cfg_attr(feature = "nightly", allow(linkedlist))]
|
#![cfg_attr(feature = "nightly-testing", allow(linkedlist))]
|
||||||
|
|
||||||
#![deny(missing_docs)]
|
#![deny(missing_docs)]
|
||||||
|
|
||||||
|
|||||||
@@ -322,7 +322,7 @@ pub trait Serializer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// A trait that is used by a `Serialize` to iterate through a sequence.
|
/// A trait that is used by a `Serialize` to iterate through a sequence.
|
||||||
#[cfg_attr(feature = "nightly", allow(len_without_is_empty))]
|
#[cfg_attr(feature = "nightly-testing", allow(len_without_is_empty))]
|
||||||
pub trait SeqVisitor {
|
pub trait SeqVisitor {
|
||||||
/// Serializes a sequence item in the serializer.
|
/// Serializes a sequence item in the serializer.
|
||||||
///
|
///
|
||||||
@@ -339,7 +339,7 @@ pub trait SeqVisitor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// A trait that is used by a `Serialize` to iterate through a map.
|
/// A trait that is used by a `Serialize` to iterate through a map.
|
||||||
#[cfg_attr(feature = "nightly", allow(len_without_is_empty))]
|
#[cfg_attr(feature = "nightly-testing", allow(len_without_is_empty))]
|
||||||
pub trait MapVisitor {
|
pub trait MapVisitor {
|
||||||
/// Serializes a map item in the serializer.
|
/// Serializes a map item in the serializer.
|
||||||
///
|
///
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "serde_codegen"
|
name = "serde_codegen"
|
||||||
version = "0.6.13"
|
version = "0.6.14"
|
||||||
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
description = "Macros to auto-generate implementations for the serde framework"
|
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"]
|
with-syntex = ["quasi/with-syntex", "quasi_codegen", "quasi_codegen/with-syntex", "syntex", "syntex_syntax"]
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
quasi_codegen = { version = "^0.6.0", optional = true }
|
quasi_codegen = { version = "^0.7.0", optional = true }
|
||||||
syntex = { version = "^0.28.0", optional = true }
|
syntex = { version = "^0.29.0", optional = true }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
aster = { version = "^0.12.0", default-features = false }
|
aster = { version = "^0.13.1", default-features = false }
|
||||||
clippy = { version = "^0.0.41", optional = true }
|
clippy = { version = "^0.*", optional = true }
|
||||||
quasi = { version = "^0.6.0", default-features = false }
|
quasi = { version = "^0.7.0", default-features = false }
|
||||||
quasi_macros = { version = "^0.6.0", optional = true }
|
quasi_macros = { version = "^0.7.0", optional = true }
|
||||||
syntex = { version = "^0.28.0", optional = true }
|
syntex = { version = "^0.29.0", optional = true }
|
||||||
syntex_syntax = { version = "^0.28.0", optional = true }
|
syntex_syntax = { version = "^0.29.0", optional = true }
|
||||||
|
|||||||
@@ -574,8 +574,8 @@ fn deserialize_item_enum(
|
|||||||
// Match arms to extract a variant from a string
|
// Match arms to extract a variant from a string
|
||||||
let mut variant_arms = vec![];
|
let mut variant_arms = vec![];
|
||||||
for (i, variant) in enum_def.variants.iter().enumerate() {
|
for (i, variant) in enum_def.variants.iter().enumerate() {
|
||||||
let variant_name = builder.pat().enum_()
|
let variant_name = builder.pat().path()
|
||||||
.id("__Field").id(format!("__field{}", i)).build()
|
.id("__Field").id(format!("__field{}", i))
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
let expr = try!(deserialize_variant(
|
let expr = try!(deserialize_variant(
|
||||||
|
|||||||
@@ -313,8 +313,8 @@ fn serialize_variant(
|
|||||||
|
|
||||||
match variant.node.data {
|
match variant.node.data {
|
||||||
ast::VariantData::Unit(_) => {
|
ast::VariantData::Unit(_) => {
|
||||||
let pat = builder.pat().enum_()
|
let pat = builder.pat().path()
|
||||||
.id(type_ident).id(variant_ident).build()
|
.id(type_ident).id(variant_ident)
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
Ok(quote_arm!(cx,
|
Ok(quote_arm!(cx,
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "serde_macros"
|
name = "serde_macros"
|
||||||
version = "0.6.13"
|
version = "0.6.14"
|
||||||
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
description = "Macros to auto-generate implementations for the serde framework"
|
description = "Macros to auto-generate implementations for the serde framework"
|
||||||
@@ -16,14 +16,14 @@ plugin = true
|
|||||||
nightly-testing = ["clippy", "serde/nightly-testing", "serde_codegen/nightly-testing"]
|
nightly-testing = ["clippy", "serde/nightly-testing", "serde_codegen/nightly-testing"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clippy = { version = "^0.0.41", optional = true }
|
clippy = { version = "^0.*", optional = true }
|
||||||
serde_codegen = { version = "^0.6.13", path = "../serde_codegen", default-features = false, features = ["nightly"] }
|
serde_codegen = { version = "^0.6.14", path = "../serde_codegen", default-features = false, features = ["nightly"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
compiletest_rs = "^0.0.11"
|
compiletest_rs = "^0.0.11"
|
||||||
num = "^0.1.27"
|
num = "^0.1.27"
|
||||||
rustc-serialize = "^0.3.16"
|
rustc-serialize = "^0.3.16"
|
||||||
serde = { version = "^0.6.13", path = "../serde", features = ["num-impls"] }
|
serde = { version = "^0.6.14", path = "../serde", features = ["num-impls"] }
|
||||||
|
|
||||||
[[test]]
|
[[test]]
|
||||||
name = "test"
|
name = "test"
|
||||||
|
|||||||
@@ -14,18 +14,18 @@ build = "build.rs"
|
|||||||
nightly-testing = ["clippy", "serde/nightly-testing", "serde_codegen/nightly-testing"]
|
nightly-testing = ["clippy", "serde/nightly-testing", "serde_codegen/nightly-testing"]
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
syntex = { version = "^0.28.0" }
|
syntex = { version = "^0.29.0" }
|
||||||
syntex_syntax = { version = "^0.28.0" }
|
syntex_syntax = { version = "^0.29.0" }
|
||||||
serde_codegen = { version = "^0.6.13", path = "../serde_codegen", features = ["with-syntex"] }
|
serde_codegen = { version = "^0.6.14", path = "../serde_codegen", features = ["with-syntex"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
num = "^0.1.26"
|
num = "^0.1.26"
|
||||||
rustc-serialize = "^0.3.16"
|
rustc-serialize = "^0.3.16"
|
||||||
serde = { version = "*", path = "../serde", features = ["num-impls"] }
|
serde = { version = "*", path = "../serde", features = ["num-impls"] }
|
||||||
syntex = "^0.28.0"
|
syntex = "^0.29.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clippy = { version = "^0.0.41", optional = true }
|
clippy = { version = "^0.*", optional = true }
|
||||||
|
|
||||||
[[test]]
|
[[test]]
|
||||||
name = "test"
|
name = "test"
|
||||||
|
|||||||
Reference in New Issue
Block a user