schema_analysis 0.6.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- schema_analysis-0.6.0/Cargo.lock +1702 -0
- schema_analysis-0.6.0/Cargo.toml +4 -0
- schema_analysis-0.6.0/PKG-INFO +12 -0
- schema_analysis-0.6.0/pyproject.toml +25 -0
- schema_analysis-0.6.0/schema_analysis/Cargo.toml +86 -0
- schema_analysis-0.6.0/schema_analysis/LICENSE-APACHE +201 -0
- schema_analysis-0.6.0/schema_analysis/LICENSE-MIT +27 -0
- schema_analysis-0.6.0/schema_analysis/README.md +128 -0
- schema_analysis-0.6.0/schema_analysis/src/analysis/field.rs +200 -0
- schema_analysis-0.6.0/schema_analysis/src/analysis/mod.rs +273 -0
- schema_analysis-0.6.0/schema_analysis/src/analysis/schema.rs +220 -0
- schema_analysis-0.6.0/schema_analysis/src/analysis/schema_seed.rs +261 -0
- schema_analysis-0.6.0/schema_analysis/src/context/boolean.rs +30 -0
- schema_analysis-0.6.0/schema_analysis/src/context/bytes.rs +30 -0
- schema_analysis-0.6.0/schema_analysis/src/context/map_struct.rs +27 -0
- schema_analysis-0.6.0/schema_analysis/src/context/mod.rs +80 -0
- schema_analysis-0.6.0/schema_analysis/src/context/null.rs +22 -0
- schema_analysis-0.6.0/schema_analysis/src/context/number.rs +74 -0
- schema_analysis-0.6.0/schema_analysis/src/context/sequence.rs +30 -0
- schema_analysis-0.6.0/schema_analysis/src/context/shared.rs +162 -0
- schema_analysis-0.6.0/schema_analysis/src/context/string.rs +128 -0
- schema_analysis-0.6.0/schema_analysis/src/helpers.rs +124 -0
- schema_analysis-0.6.0/schema_analysis/src/lib.rs +155 -0
- schema_analysis-0.6.0/schema_analysis/src/main.rs +277 -0
- schema_analysis-0.6.0/schema_analysis/src/schema.rs +670 -0
- schema_analysis-0.6.0/schema_analysis/src/targets/json_typegen.rs +101 -0
- schema_analysis-0.6.0/schema_analysis/src/targets/mod.rs +6 -0
- schema_analysis-0.6.0/schema_analysis/src/targets/schemars.rs +231 -0
- schema_analysis-0.6.0/schema_analysis/src/traits.rs +95 -0
- schema_analysis-0.6.0/schema_analysis/tests/cli.rs +178 -0
- schema_analysis-0.6.0/schema_analysis/tests/cli_fixtures/expected/json_json_schema.json +27 -0
- schema_analysis-0.6.0/schema_analysis/tests/cli_fixtures/expected/json_merged_schema.json +104 -0
- schema_analysis-0.6.0/schema_analysis/tests/cli_fixtures/expected/json_rust.rs +11 -0
- schema_analysis-0.6.0/schema_analysis/tests/cli_fixtures/expected/json_schema.json +84 -0
- schema_analysis-0.6.0/schema_analysis/tests/cli_fixtures/expected/json_schema_compact.json +1 -0
- schema_analysis-0.6.0/schema_analysis/tests/cli_fixtures/expected/json_schema_no_analysis.json +42 -0
- schema_analysis-0.6.0/schema_analysis/tests/cli_fixtures/expected/json_typescript.ts +7 -0
- schema_analysis-0.6.0/schema_analysis/tests/cli_fixtures/expected/stdin_json_schema.json +84 -0
- schema_analysis-0.6.0/schema_analysis/tests/cli_fixtures/expected/toml_schema.json +84 -0
- schema_analysis-0.6.0/schema_analysis/tests/cli_fixtures/expected/xml_schema.json +68 -0
- schema_analysis-0.6.0/schema_analysis/tests/cli_fixtures/expected/yaml_schema.json +84 -0
- schema_analysis-0.6.0/schema_analysis/tests/cli_fixtures/input/sample.json +1 -0
- schema_analysis-0.6.0/schema_analysis/tests/cli_fixtures/input/sample.toml +4 -0
- schema_analysis-0.6.0/schema_analysis/tests/cli_fixtures/input/sample.xml +5 -0
- schema_analysis-0.6.0/schema_analysis/tests/cli_fixtures/input/sample.yaml +7 -0
- schema_analysis-0.6.0/schema_analysis/tests/cli_fixtures/input/sample2.json +1 -0
- schema_analysis-0.6.0/schema_analysis/tests/other.rs +4 -0
- schema_analysis-0.6.0/schema_analysis/tests/shared/mod.rs +452 -0
- schema_analysis-0.6.0/schema_analysis/tests/source_bson.rs +102 -0
- schema_analysis-0.6.0/schema_analysis/tests/source_cbor.rs +134 -0
- schema_analysis-0.6.0/schema_analysis/tests/source_json.rs +109 -0
- schema_analysis-0.6.0/schema_analysis/tests/source_toml.rs +102 -0
- schema_analysis-0.6.0/schema_analysis/tests/source_xml.rs +259 -0
- schema_analysis-0.6.0/schema_analysis/tests/source_yaml.rs +119 -0
- schema_analysis-0.6.0/schema_analysis/tests/target_json_schema_json_typegen.rs +242 -0
- schema_analysis-0.6.0/schema_analysis/tests/target_json_schema_schemars.rs +235 -0
- schema_analysis-0.6.0/schema_analysis/tests/target_json_typegen_shape.rs +157 -0
|
@@ -0,0 +1,1702 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "Inflector"
|
|
7
|
+
version = "0.11.4"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"lazy_static",
|
|
12
|
+
"regex",
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
[[package]]
|
|
16
|
+
name = "addr2line"
|
|
17
|
+
version = "0.24.2"
|
|
18
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
19
|
+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
|
20
|
+
dependencies = [
|
|
21
|
+
"gimli",
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
[[package]]
|
|
25
|
+
name = "adler2"
|
|
26
|
+
version = "2.0.0"
|
|
27
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
28
|
+
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
|
29
|
+
|
|
30
|
+
[[package]]
|
|
31
|
+
name = "ahash"
|
|
32
|
+
version = "0.8.11"
|
|
33
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
34
|
+
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
|
35
|
+
dependencies = [
|
|
36
|
+
"cfg-if 1.0.0",
|
|
37
|
+
"getrandom",
|
|
38
|
+
"once_cell",
|
|
39
|
+
"version_check",
|
|
40
|
+
"zerocopy",
|
|
41
|
+
]
|
|
42
|
+
|
|
43
|
+
[[package]]
|
|
44
|
+
name = "aho-corasick"
|
|
45
|
+
version = "1.1.3"
|
|
46
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
47
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
48
|
+
dependencies = [
|
|
49
|
+
"memchr",
|
|
50
|
+
]
|
|
51
|
+
|
|
52
|
+
[[package]]
|
|
53
|
+
name = "anstream"
|
|
54
|
+
version = "0.6.21"
|
|
55
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
57
|
+
dependencies = [
|
|
58
|
+
"anstyle",
|
|
59
|
+
"anstyle-parse",
|
|
60
|
+
"anstyle-query",
|
|
61
|
+
"anstyle-wincon",
|
|
62
|
+
"colorchoice",
|
|
63
|
+
"is_terminal_polyfill",
|
|
64
|
+
"utf8parse",
|
|
65
|
+
]
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "anstyle"
|
|
69
|
+
version = "1.0.14"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "anstyle-parse"
|
|
75
|
+
version = "0.2.7"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
78
|
+
dependencies = [
|
|
79
|
+
"utf8parse",
|
|
80
|
+
]
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "anstyle-query"
|
|
84
|
+
version = "1.1.5"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
87
|
+
dependencies = [
|
|
88
|
+
"windows-sys 0.61.2",
|
|
89
|
+
]
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "anstyle-wincon"
|
|
93
|
+
version = "3.0.11"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
96
|
+
dependencies = [
|
|
97
|
+
"anstyle",
|
|
98
|
+
"once_cell_polyfill",
|
|
99
|
+
"windows-sys 0.61.2",
|
|
100
|
+
]
|
|
101
|
+
|
|
102
|
+
[[package]]
|
|
103
|
+
name = "anyhow"
|
|
104
|
+
version = "1.0.102"
|
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
107
|
+
|
|
108
|
+
[[package]]
|
|
109
|
+
name = "assert_cmd"
|
|
110
|
+
version = "2.2.0"
|
|
111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
112
|
+
checksum = "9a686bbee5efb88a82df0621b236e74d925f470e5445d3220a5648b892ec99c9"
|
|
113
|
+
dependencies = [
|
|
114
|
+
"anstyle",
|
|
115
|
+
"bstr",
|
|
116
|
+
"libc",
|
|
117
|
+
"predicates",
|
|
118
|
+
"predicates-core",
|
|
119
|
+
"predicates-tree",
|
|
120
|
+
"wait-timeout",
|
|
121
|
+
]
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "autocfg"
|
|
125
|
+
version = "1.4.0"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "backtrace"
|
|
131
|
+
version = "0.3.74"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
|
|
134
|
+
dependencies = [
|
|
135
|
+
"addr2line",
|
|
136
|
+
"cfg-if 1.0.0",
|
|
137
|
+
"libc",
|
|
138
|
+
"miniz_oxide",
|
|
139
|
+
"object",
|
|
140
|
+
"rustc-demangle",
|
|
141
|
+
"windows-targets",
|
|
142
|
+
]
|
|
143
|
+
|
|
144
|
+
[[package]]
|
|
145
|
+
name = "base64"
|
|
146
|
+
version = "0.13.1"
|
|
147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
148
|
+
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
|
149
|
+
|
|
150
|
+
[[package]]
|
|
151
|
+
name = "bitflags"
|
|
152
|
+
version = "2.8.0"
|
|
153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
+
checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "bitvec"
|
|
158
|
+
version = "1.0.1"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
|
|
161
|
+
dependencies = [
|
|
162
|
+
"funty",
|
|
163
|
+
"radium",
|
|
164
|
+
"tap",
|
|
165
|
+
"wyz",
|
|
166
|
+
]
|
|
167
|
+
|
|
168
|
+
[[package]]
|
|
169
|
+
name = "bson"
|
|
170
|
+
version = "2.13.0"
|
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
+
checksum = "068208f2b6fcfa27a7f1ee37488d2bb8ba2640f68f5475d08e1d9130696aba59"
|
|
173
|
+
dependencies = [
|
|
174
|
+
"ahash",
|
|
175
|
+
"base64",
|
|
176
|
+
"bitvec",
|
|
177
|
+
"hex",
|
|
178
|
+
"indexmap",
|
|
179
|
+
"js-sys",
|
|
180
|
+
"once_cell",
|
|
181
|
+
"rand",
|
|
182
|
+
"serde",
|
|
183
|
+
"serde_bytes",
|
|
184
|
+
"serde_json",
|
|
185
|
+
"time",
|
|
186
|
+
"uuid",
|
|
187
|
+
]
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "bstr"
|
|
191
|
+
version = "1.12.1"
|
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
194
|
+
dependencies = [
|
|
195
|
+
"memchr",
|
|
196
|
+
"regex-automata",
|
|
197
|
+
"serde",
|
|
198
|
+
]
|
|
199
|
+
|
|
200
|
+
[[package]]
|
|
201
|
+
name = "bumpalo"
|
|
202
|
+
version = "3.17.0"
|
|
203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
+
checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "byteorder"
|
|
208
|
+
version = "1.5.0"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "cc"
|
|
214
|
+
version = "1.2.10"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229"
|
|
217
|
+
dependencies = [
|
|
218
|
+
"shlex",
|
|
219
|
+
]
|
|
220
|
+
|
|
221
|
+
[[package]]
|
|
222
|
+
name = "cfg-if"
|
|
223
|
+
version = "0.1.10"
|
|
224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
225
|
+
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
|
|
226
|
+
|
|
227
|
+
[[package]]
|
|
228
|
+
name = "cfg-if"
|
|
229
|
+
version = "1.0.0"
|
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "clap"
|
|
235
|
+
version = "4.5.60"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a"
|
|
238
|
+
dependencies = [
|
|
239
|
+
"clap_builder",
|
|
240
|
+
"clap_derive",
|
|
241
|
+
]
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "clap_builder"
|
|
245
|
+
version = "4.5.60"
|
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
+
checksum = "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876"
|
|
248
|
+
dependencies = [
|
|
249
|
+
"anstream",
|
|
250
|
+
"anstyle",
|
|
251
|
+
"clap_lex",
|
|
252
|
+
"strsim",
|
|
253
|
+
]
|
|
254
|
+
|
|
255
|
+
[[package]]
|
|
256
|
+
name = "clap_derive"
|
|
257
|
+
version = "4.5.55"
|
|
258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
|
+
checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
|
|
260
|
+
dependencies = [
|
|
261
|
+
"heck",
|
|
262
|
+
"proc-macro2",
|
|
263
|
+
"quote",
|
|
264
|
+
"syn",
|
|
265
|
+
]
|
|
266
|
+
|
|
267
|
+
[[package]]
|
|
268
|
+
name = "clap_lex"
|
|
269
|
+
version = "1.1.0"
|
|
270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
272
|
+
|
|
273
|
+
[[package]]
|
|
274
|
+
name = "colorchoice"
|
|
275
|
+
version = "1.0.5"
|
|
276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
278
|
+
|
|
279
|
+
[[package]]
|
|
280
|
+
name = "console_error_panic_hook"
|
|
281
|
+
version = "0.1.7"
|
|
282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
283
|
+
checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
|
|
284
|
+
dependencies = [
|
|
285
|
+
"cfg-if 1.0.0",
|
|
286
|
+
"wasm-bindgen",
|
|
287
|
+
]
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "deranged"
|
|
291
|
+
version = "0.3.11"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
|
|
294
|
+
dependencies = [
|
|
295
|
+
"powerfmt",
|
|
296
|
+
]
|
|
297
|
+
|
|
298
|
+
[[package]]
|
|
299
|
+
name = "difflib"
|
|
300
|
+
version = "0.4.0"
|
|
301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
302
|
+
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
303
|
+
|
|
304
|
+
[[package]]
|
|
305
|
+
name = "displaydoc"
|
|
306
|
+
version = "0.2.5"
|
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
309
|
+
dependencies = [
|
|
310
|
+
"proc-macro2",
|
|
311
|
+
"quote",
|
|
312
|
+
"syn",
|
|
313
|
+
]
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "downcast-rs"
|
|
317
|
+
version = "1.2.1"
|
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
+
checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
|
|
320
|
+
|
|
321
|
+
[[package]]
|
|
322
|
+
name = "dyn-clonable"
|
|
323
|
+
version = "0.9.2"
|
|
324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
325
|
+
checksum = "a36efbb9bfd58e1723780aa04b61aba95ace6a05d9ffabfdb0b43672552f0805"
|
|
326
|
+
dependencies = [
|
|
327
|
+
"dyn-clonable-impl",
|
|
328
|
+
"dyn-clone",
|
|
329
|
+
]
|
|
330
|
+
|
|
331
|
+
[[package]]
|
|
332
|
+
name = "dyn-clonable-impl"
|
|
333
|
+
version = "0.9.2"
|
|
334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
+
checksum = "7e8671d54058979a37a26f3511fbf8d198ba1aa35ffb202c42587d918d77213a"
|
|
336
|
+
dependencies = [
|
|
337
|
+
"proc-macro2",
|
|
338
|
+
"quote",
|
|
339
|
+
"syn",
|
|
340
|
+
]
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "dyn-clone"
|
|
344
|
+
version = "1.0.17"
|
|
345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
+
checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "equivalent"
|
|
350
|
+
version = "1.0.1"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "error-chain"
|
|
356
|
+
version = "0.12.4"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
|
|
359
|
+
dependencies = [
|
|
360
|
+
"backtrace",
|
|
361
|
+
"version_check",
|
|
362
|
+
]
|
|
363
|
+
|
|
364
|
+
[[package]]
|
|
365
|
+
name = "float-cmp"
|
|
366
|
+
version = "0.10.0"
|
|
367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
368
|
+
checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
|
|
369
|
+
dependencies = [
|
|
370
|
+
"num-traits",
|
|
371
|
+
]
|
|
372
|
+
|
|
373
|
+
[[package]]
|
|
374
|
+
name = "form_urlencoded"
|
|
375
|
+
version = "1.2.1"
|
|
376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
378
|
+
dependencies = [
|
|
379
|
+
"percent-encoding",
|
|
380
|
+
]
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "funty"
|
|
384
|
+
version = "2.0.0"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
387
|
+
|
|
388
|
+
[[package]]
|
|
389
|
+
name = "getrandom"
|
|
390
|
+
version = "0.2.15"
|
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
393
|
+
dependencies = [
|
|
394
|
+
"cfg-if 1.0.0",
|
|
395
|
+
"js-sys",
|
|
396
|
+
"libc",
|
|
397
|
+
"wasi",
|
|
398
|
+
"wasm-bindgen",
|
|
399
|
+
]
|
|
400
|
+
|
|
401
|
+
[[package]]
|
|
402
|
+
name = "gimli"
|
|
403
|
+
version = "0.31.1"
|
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "half"
|
|
409
|
+
version = "1.8.3"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "1b43ede17f21864e81be2fa654110bf1e793774238d86ef8555c37e6519c0403"
|
|
412
|
+
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "hashbrown"
|
|
415
|
+
version = "0.15.2"
|
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
|
418
|
+
|
|
419
|
+
[[package]]
|
|
420
|
+
name = "heck"
|
|
421
|
+
version = "0.5.0"
|
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "hex"
|
|
427
|
+
version = "0.4.3"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "icu_collections"
|
|
433
|
+
version = "1.5.0"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
|
|
436
|
+
dependencies = [
|
|
437
|
+
"displaydoc",
|
|
438
|
+
"yoke",
|
|
439
|
+
"zerofrom",
|
|
440
|
+
"zerovec",
|
|
441
|
+
]
|
|
442
|
+
|
|
443
|
+
[[package]]
|
|
444
|
+
name = "icu_locid"
|
|
445
|
+
version = "1.5.0"
|
|
446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
+
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
|
|
448
|
+
dependencies = [
|
|
449
|
+
"displaydoc",
|
|
450
|
+
"litemap",
|
|
451
|
+
"tinystr",
|
|
452
|
+
"writeable",
|
|
453
|
+
"zerovec",
|
|
454
|
+
]
|
|
455
|
+
|
|
456
|
+
[[package]]
|
|
457
|
+
name = "icu_locid_transform"
|
|
458
|
+
version = "1.5.0"
|
|
459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
+
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
|
461
|
+
dependencies = [
|
|
462
|
+
"displaydoc",
|
|
463
|
+
"icu_locid",
|
|
464
|
+
"icu_locid_transform_data",
|
|
465
|
+
"icu_provider",
|
|
466
|
+
"tinystr",
|
|
467
|
+
"zerovec",
|
|
468
|
+
]
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "icu_locid_transform_data"
|
|
472
|
+
version = "1.5.0"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
|
|
475
|
+
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "icu_normalizer"
|
|
478
|
+
version = "1.5.0"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
|
|
481
|
+
dependencies = [
|
|
482
|
+
"displaydoc",
|
|
483
|
+
"icu_collections",
|
|
484
|
+
"icu_normalizer_data",
|
|
485
|
+
"icu_properties",
|
|
486
|
+
"icu_provider",
|
|
487
|
+
"smallvec",
|
|
488
|
+
"utf16_iter",
|
|
489
|
+
"utf8_iter",
|
|
490
|
+
"write16",
|
|
491
|
+
"zerovec",
|
|
492
|
+
]
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "icu_normalizer_data"
|
|
496
|
+
version = "1.5.0"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
|
|
499
|
+
|
|
500
|
+
[[package]]
|
|
501
|
+
name = "icu_properties"
|
|
502
|
+
version = "1.5.1"
|
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
+
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
|
|
505
|
+
dependencies = [
|
|
506
|
+
"displaydoc",
|
|
507
|
+
"icu_collections",
|
|
508
|
+
"icu_locid_transform",
|
|
509
|
+
"icu_properties_data",
|
|
510
|
+
"icu_provider",
|
|
511
|
+
"tinystr",
|
|
512
|
+
"zerovec",
|
|
513
|
+
]
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "icu_properties_data"
|
|
517
|
+
version = "1.5.0"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "icu_provider"
|
|
523
|
+
version = "1.5.0"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
|
|
526
|
+
dependencies = [
|
|
527
|
+
"displaydoc",
|
|
528
|
+
"icu_locid",
|
|
529
|
+
"icu_provider_macros",
|
|
530
|
+
"stable_deref_trait",
|
|
531
|
+
"tinystr",
|
|
532
|
+
"writeable",
|
|
533
|
+
"yoke",
|
|
534
|
+
"zerofrom",
|
|
535
|
+
"zerovec",
|
|
536
|
+
]
|
|
537
|
+
|
|
538
|
+
[[package]]
|
|
539
|
+
name = "icu_provider_macros"
|
|
540
|
+
version = "1.5.0"
|
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
+
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
543
|
+
dependencies = [
|
|
544
|
+
"proc-macro2",
|
|
545
|
+
"quote",
|
|
546
|
+
"syn",
|
|
547
|
+
]
|
|
548
|
+
|
|
549
|
+
[[package]]
|
|
550
|
+
name = "idna"
|
|
551
|
+
version = "1.0.3"
|
|
552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
|
554
|
+
dependencies = [
|
|
555
|
+
"idna_adapter",
|
|
556
|
+
"smallvec",
|
|
557
|
+
"utf8_iter",
|
|
558
|
+
]
|
|
559
|
+
|
|
560
|
+
[[package]]
|
|
561
|
+
name = "idna_adapter"
|
|
562
|
+
version = "1.2.0"
|
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
+
checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
|
|
565
|
+
dependencies = [
|
|
566
|
+
"icu_normalizer",
|
|
567
|
+
"icu_properties",
|
|
568
|
+
]
|
|
569
|
+
|
|
570
|
+
[[package]]
|
|
571
|
+
name = "indexmap"
|
|
572
|
+
version = "2.8.0"
|
|
573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
+
checksum = "3954d50fe15b02142bf25d3b8bdadb634ec3948f103d04ffe3031bc8fe9d7058"
|
|
575
|
+
dependencies = [
|
|
576
|
+
"equivalent",
|
|
577
|
+
"hashbrown",
|
|
578
|
+
"serde",
|
|
579
|
+
]
|
|
580
|
+
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "is_terminal_polyfill"
|
|
583
|
+
version = "1.70.2"
|
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
586
|
+
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "itoa"
|
|
589
|
+
version = "1.0.14"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
|
|
592
|
+
|
|
593
|
+
[[package]]
|
|
594
|
+
name = "js-sys"
|
|
595
|
+
version = "0.3.77"
|
|
596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
|
598
|
+
dependencies = [
|
|
599
|
+
"once_cell",
|
|
600
|
+
"wasm-bindgen",
|
|
601
|
+
]
|
|
602
|
+
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "json_typegen_shared"
|
|
605
|
+
version = "0.7.0"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "c17429e89f9c6d7c09f53b0815e52c475fb43701fa2f2bf70b9b370af0e485b9"
|
|
608
|
+
dependencies = [
|
|
609
|
+
"Inflector",
|
|
610
|
+
"error-chain",
|
|
611
|
+
"lazy_static",
|
|
612
|
+
"linked-hash-map",
|
|
613
|
+
"regex",
|
|
614
|
+
"serde",
|
|
615
|
+
"serde_derive",
|
|
616
|
+
"serde_json",
|
|
617
|
+
"unindent",
|
|
618
|
+
]
|
|
619
|
+
|
|
620
|
+
[[package]]
|
|
621
|
+
name = "lazy_static"
|
|
622
|
+
version = "1.5.0"
|
|
623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
625
|
+
|
|
626
|
+
[[package]]
|
|
627
|
+
name = "libc"
|
|
628
|
+
version = "0.2.169"
|
|
629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
+
checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
|
|
631
|
+
|
|
632
|
+
[[package]]
|
|
633
|
+
name = "linked-hash-map"
|
|
634
|
+
version = "0.5.6"
|
|
635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
636
|
+
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
|
637
|
+
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "litemap"
|
|
640
|
+
version = "0.7.4"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "log"
|
|
646
|
+
version = "0.4.25"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f"
|
|
649
|
+
|
|
650
|
+
[[package]]
|
|
651
|
+
name = "maplit"
|
|
652
|
+
version = "1.0.2"
|
|
653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
|
+
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
|
|
655
|
+
|
|
656
|
+
[[package]]
|
|
657
|
+
name = "memchr"
|
|
658
|
+
version = "2.7.4"
|
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
661
|
+
|
|
662
|
+
[[package]]
|
|
663
|
+
name = "memory_units"
|
|
664
|
+
version = "0.4.0"
|
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
+
checksum = "8452105ba047068f40ff7093dd1d9da90898e63dd61736462e9cdda6a90ad3c3"
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "minicov"
|
|
670
|
+
version = "0.3.7"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "f27fe9f1cc3c22e1687f9446c2083c4c5fc7f0bcf1c7a86bdbded14985895b4b"
|
|
673
|
+
dependencies = [
|
|
674
|
+
"cc",
|
|
675
|
+
"walkdir",
|
|
676
|
+
]
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "miniz_oxide"
|
|
680
|
+
version = "0.8.3"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924"
|
|
683
|
+
dependencies = [
|
|
684
|
+
"adler2",
|
|
685
|
+
]
|
|
686
|
+
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "normalize-line-endings"
|
|
689
|
+
version = "0.3.0"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
|
|
692
|
+
|
|
693
|
+
[[package]]
|
|
694
|
+
name = "num-conv"
|
|
695
|
+
version = "0.1.0"
|
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
698
|
+
|
|
699
|
+
[[package]]
|
|
700
|
+
name = "num-traits"
|
|
701
|
+
version = "0.2.19"
|
|
702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
704
|
+
dependencies = [
|
|
705
|
+
"autocfg",
|
|
706
|
+
]
|
|
707
|
+
|
|
708
|
+
[[package]]
|
|
709
|
+
name = "object"
|
|
710
|
+
version = "0.36.7"
|
|
711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
712
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
713
|
+
dependencies = [
|
|
714
|
+
"memchr",
|
|
715
|
+
]
|
|
716
|
+
|
|
717
|
+
[[package]]
|
|
718
|
+
name = "once_cell"
|
|
719
|
+
version = "1.20.2"
|
|
720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
+
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
|
722
|
+
|
|
723
|
+
[[package]]
|
|
724
|
+
name = "once_cell_polyfill"
|
|
725
|
+
version = "1.70.2"
|
|
726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
727
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
728
|
+
|
|
729
|
+
[[package]]
|
|
730
|
+
name = "ordered-float"
|
|
731
|
+
version = "3.9.2"
|
|
732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
+
checksum = "f1e1c390732d15f1d48471625cd92d154e66db2c56645e29a9cd26f4699f72dc"
|
|
734
|
+
dependencies = [
|
|
735
|
+
"num-traits",
|
|
736
|
+
"rand",
|
|
737
|
+
"serde",
|
|
738
|
+
]
|
|
739
|
+
|
|
740
|
+
[[package]]
|
|
741
|
+
name = "ordermap"
|
|
742
|
+
version = "0.5.6"
|
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
+
checksum = "6e98f974336ceffd5b1b1f4fcbb89a23c8dcd334adc4b8612f11b7fa99944535"
|
|
745
|
+
dependencies = [
|
|
746
|
+
"indexmap",
|
|
747
|
+
"serde",
|
|
748
|
+
]
|
|
749
|
+
|
|
750
|
+
[[package]]
|
|
751
|
+
name = "percent-encoding"
|
|
752
|
+
version = "2.3.1"
|
|
753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
754
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
755
|
+
|
|
756
|
+
[[package]]
|
|
757
|
+
name = "powerfmt"
|
|
758
|
+
version = "0.2.0"
|
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
761
|
+
|
|
762
|
+
[[package]]
|
|
763
|
+
name = "ppv-lite86"
|
|
764
|
+
version = "0.2.20"
|
|
765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
766
|
+
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
|
|
767
|
+
dependencies = [
|
|
768
|
+
"zerocopy",
|
|
769
|
+
]
|
|
770
|
+
|
|
771
|
+
[[package]]
|
|
772
|
+
name = "predicates"
|
|
773
|
+
version = "3.1.4"
|
|
774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
+
checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
|
|
776
|
+
dependencies = [
|
|
777
|
+
"anstyle",
|
|
778
|
+
"difflib",
|
|
779
|
+
"float-cmp",
|
|
780
|
+
"normalize-line-endings",
|
|
781
|
+
"predicates-core",
|
|
782
|
+
"regex",
|
|
783
|
+
]
|
|
784
|
+
|
|
785
|
+
[[package]]
|
|
786
|
+
name = "predicates-core"
|
|
787
|
+
version = "1.0.10"
|
|
788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
+
checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
|
|
790
|
+
|
|
791
|
+
[[package]]
|
|
792
|
+
name = "predicates-tree"
|
|
793
|
+
version = "1.0.13"
|
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
+
checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
|
|
796
|
+
dependencies = [
|
|
797
|
+
"predicates-core",
|
|
798
|
+
"termtree",
|
|
799
|
+
]
|
|
800
|
+
|
|
801
|
+
[[package]]
|
|
802
|
+
name = "proc-macro2"
|
|
803
|
+
version = "1.0.93"
|
|
804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
805
|
+
checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
|
|
806
|
+
dependencies = [
|
|
807
|
+
"unicode-ident",
|
|
808
|
+
]
|
|
809
|
+
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "pulldown-cmark"
|
|
812
|
+
version = "0.9.6"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
|
|
815
|
+
dependencies = [
|
|
816
|
+
"bitflags",
|
|
817
|
+
"memchr",
|
|
818
|
+
"unicase",
|
|
819
|
+
]
|
|
820
|
+
|
|
821
|
+
[[package]]
|
|
822
|
+
name = "quick-xml"
|
|
823
|
+
version = "0.26.0"
|
|
824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
+
checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd"
|
|
826
|
+
dependencies = [
|
|
827
|
+
"memchr",
|
|
828
|
+
"serde",
|
|
829
|
+
]
|
|
830
|
+
|
|
831
|
+
[[package]]
|
|
832
|
+
name = "quote"
|
|
833
|
+
version = "1.0.38"
|
|
834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
|
+
checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
|
|
836
|
+
dependencies = [
|
|
837
|
+
"proc-macro2",
|
|
838
|
+
]
|
|
839
|
+
|
|
840
|
+
[[package]]
|
|
841
|
+
name = "radium"
|
|
842
|
+
version = "0.7.0"
|
|
843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
844
|
+
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
|
845
|
+
|
|
846
|
+
[[package]]
|
|
847
|
+
name = "rand"
|
|
848
|
+
version = "0.8.5"
|
|
849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
850
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
851
|
+
dependencies = [
|
|
852
|
+
"libc",
|
|
853
|
+
"rand_chacha",
|
|
854
|
+
"rand_core",
|
|
855
|
+
"serde",
|
|
856
|
+
]
|
|
857
|
+
|
|
858
|
+
[[package]]
|
|
859
|
+
name = "rand_chacha"
|
|
860
|
+
version = "0.3.1"
|
|
861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
862
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
863
|
+
dependencies = [
|
|
864
|
+
"ppv-lite86",
|
|
865
|
+
"rand_core",
|
|
866
|
+
]
|
|
867
|
+
|
|
868
|
+
[[package]]
|
|
869
|
+
name = "rand_core"
|
|
870
|
+
version = "0.6.4"
|
|
871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
873
|
+
dependencies = [
|
|
874
|
+
"getrandom",
|
|
875
|
+
"serde",
|
|
876
|
+
]
|
|
877
|
+
|
|
878
|
+
[[package]]
|
|
879
|
+
name = "regex"
|
|
880
|
+
version = "1.11.1"
|
|
881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
|
883
|
+
dependencies = [
|
|
884
|
+
"aho-corasick",
|
|
885
|
+
"memchr",
|
|
886
|
+
"regex-automata",
|
|
887
|
+
"regex-syntax",
|
|
888
|
+
]
|
|
889
|
+
|
|
890
|
+
[[package]]
|
|
891
|
+
name = "regex-automata"
|
|
892
|
+
version = "0.4.9"
|
|
893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
894
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
895
|
+
dependencies = [
|
|
896
|
+
"aho-corasick",
|
|
897
|
+
"memchr",
|
|
898
|
+
"regex-syntax",
|
|
899
|
+
]
|
|
900
|
+
|
|
901
|
+
[[package]]
|
|
902
|
+
name = "regex-syntax"
|
|
903
|
+
version = "0.8.5"
|
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
906
|
+
|
|
907
|
+
[[package]]
|
|
908
|
+
name = "rustc-demangle"
|
|
909
|
+
version = "0.1.24"
|
|
910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
+
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
912
|
+
|
|
913
|
+
[[package]]
|
|
914
|
+
name = "rustversion"
|
|
915
|
+
version = "1.0.19"
|
|
916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
917
|
+
checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
|
|
918
|
+
|
|
919
|
+
[[package]]
|
|
920
|
+
name = "ryu"
|
|
921
|
+
version = "1.0.19"
|
|
922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
|
+
checksum = "6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd"
|
|
924
|
+
|
|
925
|
+
[[package]]
|
|
926
|
+
name = "same-file"
|
|
927
|
+
version = "1.0.6"
|
|
928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
929
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
930
|
+
dependencies = [
|
|
931
|
+
"winapi-util",
|
|
932
|
+
]
|
|
933
|
+
|
|
934
|
+
[[package]]
|
|
935
|
+
name = "schema_analysis"
|
|
936
|
+
version = "0.6.0"
|
|
937
|
+
dependencies = [
|
|
938
|
+
"anyhow",
|
|
939
|
+
"assert_cmd",
|
|
940
|
+
"bson",
|
|
941
|
+
"clap",
|
|
942
|
+
"downcast-rs",
|
|
943
|
+
"dyn-clonable",
|
|
944
|
+
"json_typegen_shared",
|
|
945
|
+
"linked-hash-map",
|
|
946
|
+
"maplit",
|
|
947
|
+
"once_cell",
|
|
948
|
+
"ordered-float",
|
|
949
|
+
"ordermap",
|
|
950
|
+
"predicates",
|
|
951
|
+
"quick-xml",
|
|
952
|
+
"regex",
|
|
953
|
+
"schemars",
|
|
954
|
+
"serde",
|
|
955
|
+
"serde_cbor",
|
|
956
|
+
"serde_json",
|
|
957
|
+
"serde_yaml",
|
|
958
|
+
"toml 0.5.11",
|
|
959
|
+
"version-sync",
|
|
960
|
+
]
|
|
961
|
+
|
|
962
|
+
[[package]]
|
|
963
|
+
name = "schema_analysis_wasm"
|
|
964
|
+
version = "0.2.2"
|
|
965
|
+
dependencies = [
|
|
966
|
+
"bson",
|
|
967
|
+
"console_error_panic_hook",
|
|
968
|
+
"getrandom",
|
|
969
|
+
"js-sys",
|
|
970
|
+
"once_cell",
|
|
971
|
+
"quick-xml",
|
|
972
|
+
"schema_analysis",
|
|
973
|
+
"serde",
|
|
974
|
+
"serde_cbor",
|
|
975
|
+
"serde_json",
|
|
976
|
+
"serde_yaml",
|
|
977
|
+
"toml 0.5.11",
|
|
978
|
+
"wasm-bindgen",
|
|
979
|
+
"wasm-bindgen-test",
|
|
980
|
+
"web-sys",
|
|
981
|
+
"wee_alloc",
|
|
982
|
+
]
|
|
983
|
+
|
|
984
|
+
[[package]]
|
|
985
|
+
name = "schemars"
|
|
986
|
+
version = "0.8.21"
|
|
987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
988
|
+
checksum = "09c024468a378b7e36765cd36702b7a90cc3cba11654f6685c8f233408e89e92"
|
|
989
|
+
dependencies = [
|
|
990
|
+
"dyn-clone",
|
|
991
|
+
"schemars_derive",
|
|
992
|
+
"serde",
|
|
993
|
+
"serde_json",
|
|
994
|
+
]
|
|
995
|
+
|
|
996
|
+
[[package]]
|
|
997
|
+
name = "schemars_derive"
|
|
998
|
+
version = "0.8.21"
|
|
999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1000
|
+
checksum = "b1eee588578aff73f856ab961cd2f79e36bc45d7ded33a7562adba4667aecc0e"
|
|
1001
|
+
dependencies = [
|
|
1002
|
+
"proc-macro2",
|
|
1003
|
+
"quote",
|
|
1004
|
+
"serde_derive_internals",
|
|
1005
|
+
"syn",
|
|
1006
|
+
]
|
|
1007
|
+
|
|
1008
|
+
[[package]]
|
|
1009
|
+
name = "semver"
|
|
1010
|
+
version = "1.0.25"
|
|
1011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1012
|
+
checksum = "f79dfe2d285b0488816f30e700a7438c5a73d816b5b7d3ac72fbc48b0d185e03"
|
|
1013
|
+
|
|
1014
|
+
[[package]]
|
|
1015
|
+
name = "serde"
|
|
1016
|
+
version = "1.0.217"
|
|
1017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1018
|
+
checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
|
|
1019
|
+
dependencies = [
|
|
1020
|
+
"serde_derive",
|
|
1021
|
+
]
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "serde_bytes"
|
|
1025
|
+
version = "0.11.15"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "387cc504cb06bb40a96c8e04e951fe01854cf6bc921053c954e4a606d9675c6a"
|
|
1028
|
+
dependencies = [
|
|
1029
|
+
"serde",
|
|
1030
|
+
]
|
|
1031
|
+
|
|
1032
|
+
[[package]]
|
|
1033
|
+
name = "serde_cbor"
|
|
1034
|
+
version = "0.11.2"
|
|
1035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
+
checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5"
|
|
1037
|
+
dependencies = [
|
|
1038
|
+
"half",
|
|
1039
|
+
"serde",
|
|
1040
|
+
]
|
|
1041
|
+
|
|
1042
|
+
[[package]]
|
|
1043
|
+
name = "serde_derive"
|
|
1044
|
+
version = "1.0.217"
|
|
1045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1046
|
+
checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
|
|
1047
|
+
dependencies = [
|
|
1048
|
+
"proc-macro2",
|
|
1049
|
+
"quote",
|
|
1050
|
+
"syn",
|
|
1051
|
+
]
|
|
1052
|
+
|
|
1053
|
+
[[package]]
|
|
1054
|
+
name = "serde_derive_internals"
|
|
1055
|
+
version = "0.29.1"
|
|
1056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1057
|
+
checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
|
|
1058
|
+
dependencies = [
|
|
1059
|
+
"proc-macro2",
|
|
1060
|
+
"quote",
|
|
1061
|
+
"syn",
|
|
1062
|
+
]
|
|
1063
|
+
|
|
1064
|
+
[[package]]
|
|
1065
|
+
name = "serde_json"
|
|
1066
|
+
version = "1.0.138"
|
|
1067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
+
checksum = "d434192e7da787e94a6ea7e9670b26a036d0ca41e0b7efb2676dd32bae872949"
|
|
1069
|
+
dependencies = [
|
|
1070
|
+
"indexmap",
|
|
1071
|
+
"itoa",
|
|
1072
|
+
"memchr",
|
|
1073
|
+
"ryu",
|
|
1074
|
+
"serde",
|
|
1075
|
+
]
|
|
1076
|
+
|
|
1077
|
+
[[package]]
|
|
1078
|
+
name = "serde_spanned"
|
|
1079
|
+
version = "0.6.8"
|
|
1080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
+
checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
|
|
1082
|
+
dependencies = [
|
|
1083
|
+
"serde",
|
|
1084
|
+
]
|
|
1085
|
+
|
|
1086
|
+
[[package]]
|
|
1087
|
+
name = "serde_yaml"
|
|
1088
|
+
version = "0.9.34+deprecated"
|
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
1091
|
+
dependencies = [
|
|
1092
|
+
"indexmap",
|
|
1093
|
+
"itoa",
|
|
1094
|
+
"ryu",
|
|
1095
|
+
"serde",
|
|
1096
|
+
"unsafe-libyaml",
|
|
1097
|
+
]
|
|
1098
|
+
|
|
1099
|
+
[[package]]
|
|
1100
|
+
name = "shlex"
|
|
1101
|
+
version = "1.3.0"
|
|
1102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1103
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1104
|
+
|
|
1105
|
+
[[package]]
|
|
1106
|
+
name = "smallvec"
|
|
1107
|
+
version = "1.13.2"
|
|
1108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1109
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
1110
|
+
|
|
1111
|
+
[[package]]
|
|
1112
|
+
name = "stable_deref_trait"
|
|
1113
|
+
version = "1.2.0"
|
|
1114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1115
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
1116
|
+
|
|
1117
|
+
[[package]]
|
|
1118
|
+
name = "strsim"
|
|
1119
|
+
version = "0.11.1"
|
|
1120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1121
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1122
|
+
|
|
1123
|
+
[[package]]
|
|
1124
|
+
name = "syn"
|
|
1125
|
+
version = "2.0.96"
|
|
1126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
|
+
checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80"
|
|
1128
|
+
dependencies = [
|
|
1129
|
+
"proc-macro2",
|
|
1130
|
+
"quote",
|
|
1131
|
+
"unicode-ident",
|
|
1132
|
+
]
|
|
1133
|
+
|
|
1134
|
+
[[package]]
|
|
1135
|
+
name = "synstructure"
|
|
1136
|
+
version = "0.13.1"
|
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
+
checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
1139
|
+
dependencies = [
|
|
1140
|
+
"proc-macro2",
|
|
1141
|
+
"quote",
|
|
1142
|
+
"syn",
|
|
1143
|
+
]
|
|
1144
|
+
|
|
1145
|
+
[[package]]
|
|
1146
|
+
name = "tap"
|
|
1147
|
+
version = "1.0.1"
|
|
1148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
1150
|
+
|
|
1151
|
+
[[package]]
|
|
1152
|
+
name = "termtree"
|
|
1153
|
+
version = "0.5.1"
|
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
+
checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
|
|
1156
|
+
|
|
1157
|
+
[[package]]
|
|
1158
|
+
name = "time"
|
|
1159
|
+
version = "0.3.37"
|
|
1160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1161
|
+
checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
|
|
1162
|
+
dependencies = [
|
|
1163
|
+
"deranged",
|
|
1164
|
+
"itoa",
|
|
1165
|
+
"num-conv",
|
|
1166
|
+
"powerfmt",
|
|
1167
|
+
"serde",
|
|
1168
|
+
"time-core",
|
|
1169
|
+
"time-macros",
|
|
1170
|
+
]
|
|
1171
|
+
|
|
1172
|
+
[[package]]
|
|
1173
|
+
name = "time-core"
|
|
1174
|
+
version = "0.1.2"
|
|
1175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
|
+
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
|
1177
|
+
|
|
1178
|
+
[[package]]
|
|
1179
|
+
name = "time-macros"
|
|
1180
|
+
version = "0.2.19"
|
|
1181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1182
|
+
checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
|
|
1183
|
+
dependencies = [
|
|
1184
|
+
"num-conv",
|
|
1185
|
+
"time-core",
|
|
1186
|
+
]
|
|
1187
|
+
|
|
1188
|
+
[[package]]
|
|
1189
|
+
name = "tinystr"
|
|
1190
|
+
version = "0.7.6"
|
|
1191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1192
|
+
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
|
|
1193
|
+
dependencies = [
|
|
1194
|
+
"displaydoc",
|
|
1195
|
+
"zerovec",
|
|
1196
|
+
]
|
|
1197
|
+
|
|
1198
|
+
[[package]]
|
|
1199
|
+
name = "toml"
|
|
1200
|
+
version = "0.5.11"
|
|
1201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1202
|
+
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
|
|
1203
|
+
dependencies = [
|
|
1204
|
+
"serde",
|
|
1205
|
+
]
|
|
1206
|
+
|
|
1207
|
+
[[package]]
|
|
1208
|
+
name = "toml"
|
|
1209
|
+
version = "0.7.8"
|
|
1210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1211
|
+
checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257"
|
|
1212
|
+
dependencies = [
|
|
1213
|
+
"serde",
|
|
1214
|
+
"serde_spanned",
|
|
1215
|
+
"toml_datetime",
|
|
1216
|
+
"toml_edit",
|
|
1217
|
+
]
|
|
1218
|
+
|
|
1219
|
+
[[package]]
|
|
1220
|
+
name = "toml_datetime"
|
|
1221
|
+
version = "0.6.8"
|
|
1222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1223
|
+
checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
|
|
1224
|
+
dependencies = [
|
|
1225
|
+
"serde",
|
|
1226
|
+
]
|
|
1227
|
+
|
|
1228
|
+
[[package]]
|
|
1229
|
+
name = "toml_edit"
|
|
1230
|
+
version = "0.19.15"
|
|
1231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1232
|
+
checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
|
|
1233
|
+
dependencies = [
|
|
1234
|
+
"indexmap",
|
|
1235
|
+
"serde",
|
|
1236
|
+
"serde_spanned",
|
|
1237
|
+
"toml_datetime",
|
|
1238
|
+
"winnow",
|
|
1239
|
+
]
|
|
1240
|
+
|
|
1241
|
+
[[package]]
|
|
1242
|
+
name = "unicase"
|
|
1243
|
+
version = "2.8.1"
|
|
1244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1245
|
+
checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
|
|
1246
|
+
|
|
1247
|
+
[[package]]
|
|
1248
|
+
name = "unicode-ident"
|
|
1249
|
+
version = "1.0.16"
|
|
1250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1251
|
+
checksum = "a210d160f08b701c8721ba1c726c11662f877ea6b7094007e1ca9a1041945034"
|
|
1252
|
+
|
|
1253
|
+
[[package]]
|
|
1254
|
+
name = "unindent"
|
|
1255
|
+
version = "0.1.11"
|
|
1256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1257
|
+
checksum = "e1766d682d402817b5ac4490b3c3002d91dfa0d22812f341609f97b08757359c"
|
|
1258
|
+
|
|
1259
|
+
[[package]]
|
|
1260
|
+
name = "unsafe-libyaml"
|
|
1261
|
+
version = "0.2.11"
|
|
1262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
1264
|
+
|
|
1265
|
+
[[package]]
|
|
1266
|
+
name = "url"
|
|
1267
|
+
version = "2.5.4"
|
|
1268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
|
1270
|
+
dependencies = [
|
|
1271
|
+
"form_urlencoded",
|
|
1272
|
+
"idna",
|
|
1273
|
+
"percent-encoding",
|
|
1274
|
+
]
|
|
1275
|
+
|
|
1276
|
+
[[package]]
|
|
1277
|
+
name = "utf16_iter"
|
|
1278
|
+
version = "1.0.5"
|
|
1279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1280
|
+
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
|
1281
|
+
|
|
1282
|
+
[[package]]
|
|
1283
|
+
name = "utf8_iter"
|
|
1284
|
+
version = "1.0.4"
|
|
1285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1286
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1287
|
+
|
|
1288
|
+
[[package]]
|
|
1289
|
+
name = "utf8parse"
|
|
1290
|
+
version = "0.2.2"
|
|
1291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1292
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1293
|
+
|
|
1294
|
+
[[package]]
|
|
1295
|
+
name = "uuid"
|
|
1296
|
+
version = "1.12.1"
|
|
1297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1298
|
+
checksum = "b3758f5e68192bb96cc8f9b7e2c2cfdabb435499a28499a42f8f984092adad4b"
|
|
1299
|
+
dependencies = [
|
|
1300
|
+
"getrandom",
|
|
1301
|
+
"serde",
|
|
1302
|
+
]
|
|
1303
|
+
|
|
1304
|
+
[[package]]
|
|
1305
|
+
name = "version-sync"
|
|
1306
|
+
version = "0.9.5"
|
|
1307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1308
|
+
checksum = "835169da0173ea373ddf5987632aac1f918967fbbe58195e304342282efa6089"
|
|
1309
|
+
dependencies = [
|
|
1310
|
+
"proc-macro2",
|
|
1311
|
+
"pulldown-cmark",
|
|
1312
|
+
"regex",
|
|
1313
|
+
"semver",
|
|
1314
|
+
"syn",
|
|
1315
|
+
"toml 0.7.8",
|
|
1316
|
+
"url",
|
|
1317
|
+
]
|
|
1318
|
+
|
|
1319
|
+
[[package]]
|
|
1320
|
+
name = "version_check"
|
|
1321
|
+
version = "0.9.5"
|
|
1322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1323
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1324
|
+
|
|
1325
|
+
[[package]]
|
|
1326
|
+
name = "wait-timeout"
|
|
1327
|
+
version = "0.2.1"
|
|
1328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1329
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
1330
|
+
dependencies = [
|
|
1331
|
+
"libc",
|
|
1332
|
+
]
|
|
1333
|
+
|
|
1334
|
+
[[package]]
|
|
1335
|
+
name = "walkdir"
|
|
1336
|
+
version = "2.5.0"
|
|
1337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1338
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1339
|
+
dependencies = [
|
|
1340
|
+
"same-file",
|
|
1341
|
+
"winapi-util",
|
|
1342
|
+
]
|
|
1343
|
+
|
|
1344
|
+
[[package]]
|
|
1345
|
+
name = "wasi"
|
|
1346
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
|
1347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1348
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
1349
|
+
|
|
1350
|
+
[[package]]
|
|
1351
|
+
name = "wasm-bindgen"
|
|
1352
|
+
version = "0.2.100"
|
|
1353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1354
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
1355
|
+
dependencies = [
|
|
1356
|
+
"cfg-if 1.0.0",
|
|
1357
|
+
"once_cell",
|
|
1358
|
+
"rustversion",
|
|
1359
|
+
"wasm-bindgen-macro",
|
|
1360
|
+
]
|
|
1361
|
+
|
|
1362
|
+
[[package]]
|
|
1363
|
+
name = "wasm-bindgen-backend"
|
|
1364
|
+
version = "0.2.100"
|
|
1365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1366
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
1367
|
+
dependencies = [
|
|
1368
|
+
"bumpalo",
|
|
1369
|
+
"log",
|
|
1370
|
+
"proc-macro2",
|
|
1371
|
+
"quote",
|
|
1372
|
+
"syn",
|
|
1373
|
+
"wasm-bindgen-shared",
|
|
1374
|
+
]
|
|
1375
|
+
|
|
1376
|
+
[[package]]
|
|
1377
|
+
name = "wasm-bindgen-futures"
|
|
1378
|
+
version = "0.4.50"
|
|
1379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
+
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
|
|
1381
|
+
dependencies = [
|
|
1382
|
+
"cfg-if 1.0.0",
|
|
1383
|
+
"js-sys",
|
|
1384
|
+
"once_cell",
|
|
1385
|
+
"wasm-bindgen",
|
|
1386
|
+
"web-sys",
|
|
1387
|
+
]
|
|
1388
|
+
|
|
1389
|
+
[[package]]
|
|
1390
|
+
name = "wasm-bindgen-macro"
|
|
1391
|
+
version = "0.2.100"
|
|
1392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1393
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
|
1394
|
+
dependencies = [
|
|
1395
|
+
"quote",
|
|
1396
|
+
"wasm-bindgen-macro-support",
|
|
1397
|
+
]
|
|
1398
|
+
|
|
1399
|
+
[[package]]
|
|
1400
|
+
name = "wasm-bindgen-macro-support"
|
|
1401
|
+
version = "0.2.100"
|
|
1402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1403
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
1404
|
+
dependencies = [
|
|
1405
|
+
"proc-macro2",
|
|
1406
|
+
"quote",
|
|
1407
|
+
"syn",
|
|
1408
|
+
"wasm-bindgen-backend",
|
|
1409
|
+
"wasm-bindgen-shared",
|
|
1410
|
+
]
|
|
1411
|
+
|
|
1412
|
+
[[package]]
|
|
1413
|
+
name = "wasm-bindgen-shared"
|
|
1414
|
+
version = "0.2.100"
|
|
1415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1416
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
1417
|
+
dependencies = [
|
|
1418
|
+
"unicode-ident",
|
|
1419
|
+
]
|
|
1420
|
+
|
|
1421
|
+
[[package]]
|
|
1422
|
+
name = "wasm-bindgen-test"
|
|
1423
|
+
version = "0.3.50"
|
|
1424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1425
|
+
checksum = "66c8d5e33ca3b6d9fa3b4676d774c5778031d27a578c2b007f905acf816152c3"
|
|
1426
|
+
dependencies = [
|
|
1427
|
+
"js-sys",
|
|
1428
|
+
"minicov",
|
|
1429
|
+
"wasm-bindgen",
|
|
1430
|
+
"wasm-bindgen-futures",
|
|
1431
|
+
"wasm-bindgen-test-macro",
|
|
1432
|
+
]
|
|
1433
|
+
|
|
1434
|
+
[[package]]
|
|
1435
|
+
name = "wasm-bindgen-test-macro"
|
|
1436
|
+
version = "0.3.50"
|
|
1437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1438
|
+
checksum = "17d5042cc5fa009658f9a7333ef24291b1291a25b6382dd68862a7f3b969f69b"
|
|
1439
|
+
dependencies = [
|
|
1440
|
+
"proc-macro2",
|
|
1441
|
+
"quote",
|
|
1442
|
+
"syn",
|
|
1443
|
+
]
|
|
1444
|
+
|
|
1445
|
+
[[package]]
|
|
1446
|
+
name = "web-sys"
|
|
1447
|
+
version = "0.3.77"
|
|
1448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1449
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
|
1450
|
+
dependencies = [
|
|
1451
|
+
"js-sys",
|
|
1452
|
+
"wasm-bindgen",
|
|
1453
|
+
]
|
|
1454
|
+
|
|
1455
|
+
[[package]]
|
|
1456
|
+
name = "wee_alloc"
|
|
1457
|
+
version = "0.4.5"
|
|
1458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1459
|
+
checksum = "dbb3b5a6b2bb17cb6ad44a2e68a43e8d2722c997da10e928665c72ec6c0a0b8e"
|
|
1460
|
+
dependencies = [
|
|
1461
|
+
"cfg-if 0.1.10",
|
|
1462
|
+
"libc",
|
|
1463
|
+
"memory_units",
|
|
1464
|
+
"winapi",
|
|
1465
|
+
]
|
|
1466
|
+
|
|
1467
|
+
[[package]]
|
|
1468
|
+
name = "winapi"
|
|
1469
|
+
version = "0.3.9"
|
|
1470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1471
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
1472
|
+
dependencies = [
|
|
1473
|
+
"winapi-i686-pc-windows-gnu",
|
|
1474
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
1475
|
+
]
|
|
1476
|
+
|
|
1477
|
+
[[package]]
|
|
1478
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
1479
|
+
version = "0.4.0"
|
|
1480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1481
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
1482
|
+
|
|
1483
|
+
[[package]]
|
|
1484
|
+
name = "winapi-util"
|
|
1485
|
+
version = "0.1.9"
|
|
1486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1487
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
|
1488
|
+
dependencies = [
|
|
1489
|
+
"windows-sys 0.59.0",
|
|
1490
|
+
]
|
|
1491
|
+
|
|
1492
|
+
[[package]]
|
|
1493
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
1494
|
+
version = "0.4.0"
|
|
1495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
1497
|
+
|
|
1498
|
+
[[package]]
|
|
1499
|
+
name = "windows-link"
|
|
1500
|
+
version = "0.2.1"
|
|
1501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1502
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1503
|
+
|
|
1504
|
+
[[package]]
|
|
1505
|
+
name = "windows-sys"
|
|
1506
|
+
version = "0.59.0"
|
|
1507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1508
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
1509
|
+
dependencies = [
|
|
1510
|
+
"windows-targets",
|
|
1511
|
+
]
|
|
1512
|
+
|
|
1513
|
+
[[package]]
|
|
1514
|
+
name = "windows-sys"
|
|
1515
|
+
version = "0.61.2"
|
|
1516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1517
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1518
|
+
dependencies = [
|
|
1519
|
+
"windows-link",
|
|
1520
|
+
]
|
|
1521
|
+
|
|
1522
|
+
[[package]]
|
|
1523
|
+
name = "windows-targets"
|
|
1524
|
+
version = "0.52.6"
|
|
1525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1526
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1527
|
+
dependencies = [
|
|
1528
|
+
"windows_aarch64_gnullvm",
|
|
1529
|
+
"windows_aarch64_msvc",
|
|
1530
|
+
"windows_i686_gnu",
|
|
1531
|
+
"windows_i686_gnullvm",
|
|
1532
|
+
"windows_i686_msvc",
|
|
1533
|
+
"windows_x86_64_gnu",
|
|
1534
|
+
"windows_x86_64_gnullvm",
|
|
1535
|
+
"windows_x86_64_msvc",
|
|
1536
|
+
]
|
|
1537
|
+
|
|
1538
|
+
[[package]]
|
|
1539
|
+
name = "windows_aarch64_gnullvm"
|
|
1540
|
+
version = "0.52.6"
|
|
1541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1542
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1543
|
+
|
|
1544
|
+
[[package]]
|
|
1545
|
+
name = "windows_aarch64_msvc"
|
|
1546
|
+
version = "0.52.6"
|
|
1547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1548
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1549
|
+
|
|
1550
|
+
[[package]]
|
|
1551
|
+
name = "windows_i686_gnu"
|
|
1552
|
+
version = "0.52.6"
|
|
1553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1554
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1555
|
+
|
|
1556
|
+
[[package]]
|
|
1557
|
+
name = "windows_i686_gnullvm"
|
|
1558
|
+
version = "0.52.6"
|
|
1559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1560
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1561
|
+
|
|
1562
|
+
[[package]]
|
|
1563
|
+
name = "windows_i686_msvc"
|
|
1564
|
+
version = "0.52.6"
|
|
1565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1566
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1567
|
+
|
|
1568
|
+
[[package]]
|
|
1569
|
+
name = "windows_x86_64_gnu"
|
|
1570
|
+
version = "0.52.6"
|
|
1571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1572
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1573
|
+
|
|
1574
|
+
[[package]]
|
|
1575
|
+
name = "windows_x86_64_gnullvm"
|
|
1576
|
+
version = "0.52.6"
|
|
1577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1578
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1579
|
+
|
|
1580
|
+
[[package]]
|
|
1581
|
+
name = "windows_x86_64_msvc"
|
|
1582
|
+
version = "0.52.6"
|
|
1583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1584
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1585
|
+
|
|
1586
|
+
[[package]]
|
|
1587
|
+
name = "winnow"
|
|
1588
|
+
version = "0.5.40"
|
|
1589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1590
|
+
checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
|
|
1591
|
+
dependencies = [
|
|
1592
|
+
"memchr",
|
|
1593
|
+
]
|
|
1594
|
+
|
|
1595
|
+
[[package]]
|
|
1596
|
+
name = "write16"
|
|
1597
|
+
version = "1.0.0"
|
|
1598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1599
|
+
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
|
1600
|
+
|
|
1601
|
+
[[package]]
|
|
1602
|
+
name = "writeable"
|
|
1603
|
+
version = "0.5.5"
|
|
1604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1605
|
+
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
|
1606
|
+
|
|
1607
|
+
[[package]]
|
|
1608
|
+
name = "wyz"
|
|
1609
|
+
version = "0.5.1"
|
|
1610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1611
|
+
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
|
|
1612
|
+
dependencies = [
|
|
1613
|
+
"tap",
|
|
1614
|
+
]
|
|
1615
|
+
|
|
1616
|
+
[[package]]
|
|
1617
|
+
name = "yoke"
|
|
1618
|
+
version = "0.7.5"
|
|
1619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1620
|
+
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
|
1621
|
+
dependencies = [
|
|
1622
|
+
"serde",
|
|
1623
|
+
"stable_deref_trait",
|
|
1624
|
+
"yoke-derive",
|
|
1625
|
+
"zerofrom",
|
|
1626
|
+
]
|
|
1627
|
+
|
|
1628
|
+
[[package]]
|
|
1629
|
+
name = "yoke-derive"
|
|
1630
|
+
version = "0.7.5"
|
|
1631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1632
|
+
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
1633
|
+
dependencies = [
|
|
1634
|
+
"proc-macro2",
|
|
1635
|
+
"quote",
|
|
1636
|
+
"syn",
|
|
1637
|
+
"synstructure",
|
|
1638
|
+
]
|
|
1639
|
+
|
|
1640
|
+
[[package]]
|
|
1641
|
+
name = "zerocopy"
|
|
1642
|
+
version = "0.7.35"
|
|
1643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1644
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
|
1645
|
+
dependencies = [
|
|
1646
|
+
"byteorder",
|
|
1647
|
+
"zerocopy-derive",
|
|
1648
|
+
]
|
|
1649
|
+
|
|
1650
|
+
[[package]]
|
|
1651
|
+
name = "zerocopy-derive"
|
|
1652
|
+
version = "0.7.35"
|
|
1653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1654
|
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
1655
|
+
dependencies = [
|
|
1656
|
+
"proc-macro2",
|
|
1657
|
+
"quote",
|
|
1658
|
+
"syn",
|
|
1659
|
+
]
|
|
1660
|
+
|
|
1661
|
+
[[package]]
|
|
1662
|
+
name = "zerofrom"
|
|
1663
|
+
version = "0.1.5"
|
|
1664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1665
|
+
checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
|
|
1666
|
+
dependencies = [
|
|
1667
|
+
"zerofrom-derive",
|
|
1668
|
+
]
|
|
1669
|
+
|
|
1670
|
+
[[package]]
|
|
1671
|
+
name = "zerofrom-derive"
|
|
1672
|
+
version = "0.1.5"
|
|
1673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1674
|
+
checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
|
|
1675
|
+
dependencies = [
|
|
1676
|
+
"proc-macro2",
|
|
1677
|
+
"quote",
|
|
1678
|
+
"syn",
|
|
1679
|
+
"synstructure",
|
|
1680
|
+
]
|
|
1681
|
+
|
|
1682
|
+
[[package]]
|
|
1683
|
+
name = "zerovec"
|
|
1684
|
+
version = "0.10.4"
|
|
1685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1686
|
+
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
|
1687
|
+
dependencies = [
|
|
1688
|
+
"yoke",
|
|
1689
|
+
"zerofrom",
|
|
1690
|
+
"zerovec-derive",
|
|
1691
|
+
]
|
|
1692
|
+
|
|
1693
|
+
[[package]]
|
|
1694
|
+
name = "zerovec-derive"
|
|
1695
|
+
version = "0.10.3"
|
|
1696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1697
|
+
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
1698
|
+
dependencies = [
|
|
1699
|
+
"proc-macro2",
|
|
1700
|
+
"quote",
|
|
1701
|
+
"syn",
|
|
1702
|
+
]
|