Bug 1888590 - Mark some subtests on trusted-types-event-handlers.html as failing...
[gecko.git] / third_party / rust / serde_json / Cargo.toml
blobcff28cd7b2690dba730fad316535c618f552be4e
1 # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
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.
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.
12 [package]
13 edition = "2018"
14 rust-version = "1.36"
15 name = "serde_json"
16 version = "1.0.93"
17 authors = [
18     "Erick Tryzelaar <erick.tryzelaar@gmail.com>",
19     "David Tolnay <dtolnay@gmail.com>",
21 description = "A JSON serialization file format"
22 documentation = "https://docs.rs/serde_json"
23 readme = "README.md"
24 keywords = [
25     "json",
26     "serde",
27     "serialization",
29 categories = [
30     "encoding",
31     "parser-implementations",
32     "no-std",
34 license = "MIT OR Apache-2.0"
35 repository = "https://github.com/serde-rs/json"
37 [package.metadata.docs.rs]
38 features = [
39     "raw_value",
40     "unbounded_depth",
42 targets = ["x86_64-unknown-linux-gnu"]
43 rustdoc-args = [
44     "--cfg",
45     "docsrs",
48 [package.metadata.playground]
49 features = ["raw_value"]
51 [lib]
52 doc-scrape-examples = false
54 [dependencies.indexmap]
55 version = "1.5.2"
56 features = ["std"]
57 optional = true
59 [dependencies.itoa]
60 version = "1.0"
62 [dependencies.ryu]
63 version = "1.0"
65 [dependencies.serde]
66 version = "1.0.100"
67 default-features = false
69 [dev-dependencies.automod]
70 version = "1.0"
72 [dev-dependencies.indoc]
73 version = "2.0"
75 [dev-dependencies.ref-cast]
76 version = "1.0"
78 [dev-dependencies.rustversion]
79 version = "1.0"
81 [dev-dependencies.serde]
82 version = "1.0.100"
83 features = ["derive"]
85 [dev-dependencies.serde_bytes]
86 version = "0.11"
88 [dev-dependencies.serde_derive]
89 version = "1.0"
91 [dev-dependencies.serde_stacker]
92 version = "0.1"
94 [dev-dependencies.trybuild]
95 version = "1.0.49"
96 features = ["diff"]
98 [features]
99 alloc = ["serde/alloc"]
100 arbitrary_precision = []
101 default = ["std"]
102 float_roundtrip = []
103 preserve_order = [
104     "indexmap",
105     "std",
107 raw_value = []
108 std = ["serde/std"]
109 unbounded_depth = []