blob: 20a6b7637e662c9105979cb2509339f731173be4 [file] [log] [blame]
[package]
name = "serde_jsonrc"
version = "0.1.1" # remember to update html_root_url
authors = [
"Michael Bolin <bolinfest@gmail.com>",
"Erick Tryzelaar <erick.tryzelaar@gmail.com>",
"David Tolnay <dtolnay@gmail.com>",
]
license = "MIT/Apache-2.0"
description = "A lenient JSON serialization file format"
repository = "https://github.com/serde-rs/json"
documentation = "http://docs.serde.rs/serde_jsonrc/"
keywords = ["json", "serde", "serialization"]
categories = ["encoding"]
readme = "README.md"
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
[dependencies]
serde = "1.0.60"
indexmap = { version = "1.2", optional = true }
itoa = "0.4.3"
ryu = "1.0"
[dev-dependencies]
automod = "0.1"
rustversion = "1.0"
serde_bytes = "0.11"
serde_derive = "1.0"
serde_stacker = "0.1"
trybuild = "1.0"
[workspace]
members = ["tests/crate"]
[package.metadata.docs.rs]
features = ["raw_value", "unbounded_depth"]
[package.metadata.playground]
features = ["raw_value"]
### FEATURES #################################################################
[features]
default = []
# Use a different representation for the map type of serde_jsonrc::Value.
# This allows data to be read into a Value and written back to a JSON string
# while preserving the order of map keys in the input.
preserve_order = ["indexmap"]
# Use an arbitrary precision number representation for serde_jsonrc::Number. This
# allows JSON numbers of arbitrary size/precision to be read into a Number and
# written back to a JSON string without loss of precision.
arbitrary_precision = []
# Provide a RawValue type that can hold unprocessed JSON during deserialization.
raw_value = []
# Provide a method disable_recursion_limit to parse arbitrarily deep JSON
# structures without any consideration for overflowing the stack. When using
# this feature, you will want to provide some other way to protect against stack
# overflows, such as by wrapping your Deserializer in the dynamically growing
# stack adapter provided by the serde_stacker crate. Additionally you will need
# to be careful around other recursive operations on the parsed result which may
# overflow the stack after deserialization has completed, including, but not
# limited to, Display and Debug and Drop impls.
unbounded_depth = []