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"
14name = "serde_json"
15version = "1.0.67"
16authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>", "David Tolnay <dtolnay@gmail.com>"]
17include = ["build.rs", "src/**/*.rs", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
18description = "A JSON serialization file format"
19documentation = "https://docs.serde.rs/serde_json/"
20readme = "README.md"
21keywords = ["json", "serde", "serialization"]
22categories = ["encoding"]
23license = "MIT OR Apache-2.0"
24repository = "https://github.com/serde-rs/json"
25[package.metadata.docs.rs]
26features = ["raw_value", "unbounded_depth"]
27rustdoc-args = ["--cfg", "docsrs"]
28targets = ["x86_64-unknown-linux-gnu"]
29
30[package.metadata.playground]
31features = ["raw_value"]
32[dependencies.indexmap]
33version = "1.5"
34optional = true
35
36[dependencies.itoa]
37version = "0.4.3"
38default-features = false
39
40[dependencies.ryu]
41version = "1.0"
42
43[dependencies.serde]
44version = "1.0.100"
45default-features = false
46[dev-dependencies.automod]
47version = "1.0"
48
49[dev-dependencies.rustversion]
50version = "1.0"
51
52[dev-dependencies.serde_bytes]
53version = "0.11"
54
55[dev-dependencies.serde_derive]
56version = "1.0"
57
58[dev-dependencies.serde_stacker]
59version = "0.1"
60
61[dev-dependencies.trybuild]
62version = "1.0.19"
63features = ["diff"]
64
65[features]
66alloc = ["serde/alloc"]
67arbitrary_precision = []
68default = ["std"]
69float_roundtrip = []
70preserve_order = ["indexmap"]
71raw_value = []
72std = ["serde/std"]
73unbounded_depth = []
74