1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies.
7#
8# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2021"
14rust-version = "1.56"
15name = "serde_json_lenient"
16version = "0.2.1"
17authors = [
18    "Adrian Taylor <[email protected]>",
19    "Michael Bolin <[email protected]>",
20    "Erick Tryzelaar <[email protected]>",
21    "David Tolnay <[email protected]>",
22]
23include = [
24    "build.rs",
25    "src/**/*.rs",
26    "README.md",
27    "LICENSE-APACHE",
28    "LICENSE-MIT",
29]
30description = "A lenient JSON serialization file format"
31documentation = "https://docs.rs/serde_json_lenient/latest/"
32readme = "README.md"
33keywords = [
34    "json",
35    "serde",
36    "serialization",
37]
38categories = [
39    "encoding",
40    "parser-implementations",
41    "no-std",
42]
43license = "MIT/Apache-2.0"
44repository = "https://github.com/google/serde_json_lenient"
45
46[package.metadata.docs.rs]
47features = [
48    "preserve_order",
49    "raw_value",
50    "unbounded_depth",
51]
52rustdoc-args = [
53    "--cfg",
54    "docsrs",
55    "--generate-link-to-definition",
56]
57targets = ["x86_64-unknown-linux-gnu"]
58
59[package.metadata.playground]
60features = ["raw_value"]
61
62[lib]
63doc-scrape-examples = false
64
65[dependencies.indexmap]
66version = "2.2.1"
67optional = true
68
69[dependencies.itoa]
70version = "1.0"
71
72[dependencies.ryu]
73version = "1.0"
74
75[dependencies.serde]
76version = "1.0.194"
77default-features = false
78
79[dev-dependencies.automod]
80version = "1.0.11"
81
82[dev-dependencies.indoc]
83version = "2.0.2"
84
85[dev-dependencies.ref-cast]
86version = "1.0.18"
87
88[dev-dependencies.rustversion]
89version = "1.0.13"
90
91[dev-dependencies.serde]
92version = "1.0.194"
93features = ["derive"]
94
95[dev-dependencies.serde_bytes]
96version = "0.11.10"
97
98[dev-dependencies.serde_derive]
99version = "1.0.166"
100
101[dev-dependencies.serde_stacker]
102version = "0.1.8"
103
104[dev-dependencies.trybuild]
105version = "1.0.81"
106features = ["diff"]
107
108[features]
109alloc = ["serde/alloc"]
110arbitrary_precision = []
111default = ["std"]
112float_roundtrip = []
113parse_negative_zero_as_int = []
114preserve_order = [
115    "indexmap",
116    "std",
117]
118raw_value = []
119std = ["serde/std"]
120unbounded_depth = []
121