[[test]]
name = "base64"
path = "tests/base64.rs"
required-features = ["base64", "macros"]
[[test]]
name = "chrono"
path = "tests/chrono.rs"
required-features = ["chrono", "macros"]
[[test]]
name = "hex"
path = "tests/hex.rs"
required-features = ["hex", "macros"]
[[test]]
name = "indexmap"
path = "tests/indexmap.rs"
required-features = ["indexmap", "macros"]
[[test]]
name = "json"
path = "tests/json.rs"
required-features = ["json", "macros"]
[[test]]
name = "serde_as"
path = "tests/serde_as/lib.rs"
required-features = ["macros"]
[[test]]
name = "time_0_3"
path = "tests/time_0_3.rs"
required-features = ["macros", "time_0_3"]
[[test]]
name = "derives"
path = "tests/derives/lib.rs"
required-features = ["macros"]
[badges.maintenance]
status = "actively-developed"
[dependencies.base64_crate]
optional = true
package = "base64"
version = "0.13.0"
[dependencies.chrono_crate]
default-features = false
features = ["clock", "serde", "std"]
optional = true
package = "chrono"
version = "0.4.1"
[dependencies.doc-comment]
optional = true
version = "0.3.3"
[dependencies.hex]
optional = true
version = "0.4.2"
[dependencies.indexmap_crate]
features = ["serde-1"]
optional = true
package = "indexmap"
version = "1.8"
[dependencies.serde]
features = ["derive"]
version = "1.0.122"
[dependencies.serde_json]
optional = true
version = "1.0.1"
[dependencies.serde_with_macros]
optional = true
version = "1.5.2"
[dependencies.time_0_3]
features = ["serde-well-known"]
optional = true
package = "time"
version = "~0.3"
[dev-dependencies.expect-test]
version = "1.0.0"
[dev-dependencies.fnv]
version = "1.0.6"
[dev-dependencies.glob]
version = "0.3.0"
[dev-dependencies.mime]
version = "0.3.16"
[dev-dependencies.pretty_assertions]
version = "1.0.0"
[dev-dependencies.regex]
default-features = false
features = ["std"]
version = "1.3.9"
[dev-dependencies.rmp-serde]
version = "1.1.0"
[dev-dependencies.ron]
version = "0.7"
[dev-dependencies.rustversion]
version = "1.0.0"
[dev-dependencies.serde-xml-rs]
version = "0.5.0"
[dev-dependencies.serde_json]
features = ["preserve_order"]
version = "1.0.25"
[dev-dependencies.serde_test]
version = "1.0.124"
[dev-dependencies.serde_yaml]
version = "0.8.21"
[dev-dependencies.version-sync]
version = "0.9.1"
[features]
base64 = ["base64_crate"]
chrono = ["chrono_crate"]
default = ["macros"]
guide = ["doc-comment", "macros"]
indexmap = ["indexmap_crate"]
json = ["serde_json"]
macros = ["serde_with_macros"]
[package]
authors = ["Jonas Bushart", "Marcin Kaźmierczak"]
categories = ["encoding"]
description = "Custom de/serialization functions for Rust's serde"
documentation = "https://docs.rs/serde_with/"
edition = "2018"
include = ["src/**/*", "tests/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"]
keywords = ["serde", "utilities", "serialization", "deserialization"]
license = "MIT OR Apache-2.0"
name = "serde_with"
readme = "README.md"
repository = "https://github.com/jonasbb/serde_with"
resolver = "2"
rust-version = "1.53"
version = "1.14.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg=docsrs", "-Zunstable-options", "--generate-link-to-definition"]