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 = "2018"
14rust-version = "1.36"
15name = "serde_json"
16version = "1.0.94"
17authors = [
18    "Erick Tryzelaar <[email protected]>",
19    "David Tolnay <[email protected]>",
20]
21description = "A JSON serialization file format"
22documentation = "https://docs.rs/serde_json"
23readme = "README.md"
24keywords = [
25    "json",
26    "serde",
27    "serialization",
28]
29categories = [
30    "encoding",
31    "parser-implementations",
32    "no-std",
33]
34license = "MIT OR Apache-2.0"
35repository = "https://github.com/serde-rs/json"
36
37[package.metadata.docs.rs]
38features = [
39    "raw_value",
40    "unbounded_depth",
41]
42rustdoc-args = [
43    "--cfg",
44    "docsrs",
45]
46targets = ["x86_64-unknown-linux-gnu"]
47
48[package.metadata.playground]
49features = ["raw_value"]
50
51[lib]
52doc-scrape-examples = false
53
54[dependencies.indexmap]
55version = "1.5.2"
56features = ["std"]
57optional = true
58
59[dependencies.itoa]
60version = "1.0"
61
62[dependencies.ryu]
63version = "1.0"
64
65[dependencies.serde]
66version = "1.0.100"
67default-features = false
68
69[dev-dependencies.automod]
70version = "1.0"
71
72[dev-dependencies.indoc]
73version = "2.0"
74
75[dev-dependencies.ref-cast]
76version = "1.0"
77
78[dev-dependencies.rustversion]
79version = "1.0"
80
81[dev-dependencies.serde]
82version = "1.0.100"
83features = ["derive"]
84
85[dev-dependencies.serde_bytes]
86version = "0.11"
87
88[dev-dependencies.serde_derive]
89version = "1.0"
90
91[dev-dependencies.serde_stacker]
92version = "0.1"
93
94[dev-dependencies.trybuild]
95version = "1.0.49"
96features = ["diff"]
97
98[features]
99alloc = ["serde/alloc"]
100arbitrary_precision = []
101default = ["std"]
102float_roundtrip = []
103preserve_order = [
104    "indexmap",
105    "std",
106]
107raw_value = []
108std = ["serde/std"]
109unbounded_depth = []
110