try_encoding_from 0.1.2

A convenient API for serde_json, serde_yaml, serde_cbor. Meme of the TryFrom and TryInto traits.
Documentation
[[bench]]
harness = false
name = "benchmark"
path = "benches/lib.rs"

[[test]]
name = "integration"
path = "tests/lib.rs"
[dependencies.serde]
default-features = false
features = ["derive"]
optional = true
version = "1.0"

[dependencies.serde_cbor]
default-features = false
features = ["alloc"]
optional = true
version = "0.11"

[dependencies.serde_json]
default-features = false
features = ["alloc"]
optional = true
version = "1.0"

[dependencies.serde_yaml]
optional = true
version = "0.8"
[dev-dependencies.btree_graph]
default-features = false
features = ["serde"]
version = "0.2"

[dev-dependencies.criterion]
version = "0.3.3"

[features]
cbor = ["serde", "serde_cbor"]
json = ["serde", "serde_json"]
yaml = ["serde", "serde_yaml"]

[package]
authors = ["James Spears <james.w.spears@gmail.com>"]
autotests = false
categories = ["encoding", "no-std"]
description = "A convenient API for serde_json, serde_yaml, serde_cbor. Meme of the TryFrom and TryInto traits."
edition = "2018"
homepage = "https://github.com/jameone/try_encoding_from"
keywords = ["encoding", "JSON", "YAML", "CBOR"]
license = "MIT OR Apache-2.0"
name = "try_encoding_from"
repository = "https://github.com/jameone/try_encoding_from"
version = "0.1.2"