blob: cf800d851ddfdad9d04a2aec42bfacb04054a4b8 [file] [log] [blame]
Yi Kongd600cb02020-08-31 01:25:28 +08001# 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
Joel Galensond1eaeaf2021-08-09 10:42:14 -07006# to registry (e.g., crates.io) dependencies.
Yi Kongd600cb02020-08-31 01:25:28 +08007#
Joel Galensond1eaeaf2021-08-09 10:42:14 -07008# 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.
Yi Kongd600cb02020-08-31 01:25:28 +080011
12[package]
13edition = "2018"
David LeGare2f2c4652022-03-02 16:21:22 +000014rust-version = "1.36"
Yi Kongd600cb02020-08-31 01:25:28 +080015name = "serde_json"
David LeGare2f2c4652022-03-02 16:21:22 +000016version = "1.0.79"
17authors = [
18 "Erick Tryzelaar <erick.tryzelaar@gmail.com>",
19 "David Tolnay <dtolnay@gmail.com>",
20]
Yi Kongd600cb02020-08-31 01:25:28 +080021description = "A JSON serialization file format"
22documentation = "https://docs.serde.rs/serde_json/"
23readme = "README.md"
David LeGare2f2c4652022-03-02 16:21:22 +000024keywords = [
25 "json",
26 "serde",
27 "serialization",
28]
Yi Kongd600cb02020-08-31 01:25:28 +080029categories = ["encoding"]
30license = "MIT OR Apache-2.0"
31repository = "https://github.com/serde-rs/json"
David LeGare2f2c4652022-03-02 16:21:22 +000032
Yi Kongd600cb02020-08-31 01:25:28 +080033[package.metadata.docs.rs]
David LeGare2f2c4652022-03-02 16:21:22 +000034features = [
35 "raw_value",
36 "unbounded_depth",
37]
Yi Kongd600cb02020-08-31 01:25:28 +080038targets = ["x86_64-unknown-linux-gnu"]
David LeGare2f2c4652022-03-02 16:21:22 +000039rustdoc-args = [
40 "--cfg",
41 "docsrs",
42]
Yi Kongd600cb02020-08-31 01:25:28 +080043
44[package.metadata.playground]
45features = ["raw_value"]
David LeGare2f2c4652022-03-02 16:21:22 +000046
Yi Kongd600cb02020-08-31 01:25:28 +080047[dependencies.indexmap]
Chih-Hung Hsiehb93bfcb2020-10-26 13:16:59 -070048version = "1.5"
Yi Kongd600cb02020-08-31 01:25:28 +080049optional = true
50
51[dependencies.itoa]
David LeGare2f2c4652022-03-02 16:21:22 +000052version = "1.0"
Yi Kongd600cb02020-08-31 01:25:28 +080053
54[dependencies.ryu]
55version = "1.0"
56
57[dependencies.serde]
58version = "1.0.100"
59default-features = false
David LeGare2f2c4652022-03-02 16:21:22 +000060
Yi Kongd600cb02020-08-31 01:25:28 +080061[dev-dependencies.automod]
Chih-Hung Hsiehb93bfcb2020-10-26 13:16:59 -070062version = "1.0"
Yi Kongd600cb02020-08-31 01:25:28 +080063
David LeGare2f2c4652022-03-02 16:21:22 +000064[dev-dependencies.ref-cast]
65version = "1.0"
66
Yi Kongd600cb02020-08-31 01:25:28 +080067[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]
David LeGare2f2c4652022-03-02 16:21:22 +000080version = "1.0.49"
Yi Kongd600cb02020-08-31 01:25:28 +080081features = ["diff"]
82
83[features]
84alloc = ["serde/alloc"]
85arbitrary_precision = []
86default = ["std"]
87float_roundtrip = []
88preserve_order = ["indexmap"]
89raw_value = []
90std = ["serde/std"]
91unbounded_depth = []