• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.79"
17authors = [
18    "Erick Tryzelaar <erick.tryzelaar@gmail.com>",
19    "David Tolnay <dtolnay@gmail.com>",
20]
21description = "A JSON serialization file format"
22documentation = "https://docs.serde.rs/serde_json/"
23readme = "README.md"
24keywords = [
25    "json",
26    "serde",
27    "serialization",
28]
29categories = ["encoding"]
30license = "MIT OR Apache-2.0"
31repository = "https://github.com/serde-rs/json"
32
33[package.metadata.docs.rs]
34features = [
35    "raw_value",
36    "unbounded_depth",
37]
38targets = ["x86_64-unknown-linux-gnu"]
39rustdoc-args = [
40    "--cfg",
41    "docsrs",
42]
43
44[package.metadata.playground]
45features = ["raw_value"]
46
47[dependencies.indexmap]
48version = "1.5"
49optional = true
50
51[dependencies.itoa]
52version = "1.0"
53
54[dependencies.ryu]
55version = "1.0"
56
57[dependencies.serde]
58version = "1.0.100"
59default-features = false
60
61[dev-dependencies.automod]
62version = "1.0"
63
64[dev-dependencies.ref-cast]
65version = "1.0"
66
67[dev-dependencies.rustversion]
68version = "1.0"
69
70[dev-dependencies.serde_bytes]
71version = "0.11"
72
73[dev-dependencies.serde_derive]
74version = "1.0"
75
76[dev-dependencies.serde_stacker]
77version = "0.1"
78
79[dev-dependencies.trybuild]
80version = "1.0.49"
81features = ["diff"]
82
83[features]
84alloc = ["serde/alloc"]
85arbitrary_precision = []
86default = ["std"]
87float_roundtrip = []
88preserve_order = ["indexmap"]
89raw_value = []
90std = ["serde/std"]
91unbounded_depth = []
92