headson 0.2.3__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.
Potentially problematic release.
This version of headson might be problematic. Click here for more details.
- headson-0.2.3/Cargo.lock +920 -0
- headson-0.2.3/Cargo.toml +94 -0
- headson-0.2.3/JSONTestSuite/LICENSE +21 -0
- headson-0.2.3/JSONTestSuite/README.md +3 -0
- headson-0.2.3/LICENSE +21 -0
- headson-0.2.3/PKG-INFO +98 -0
- headson-0.2.3/README.md +82 -0
- headson-0.2.3/pyproject.toml +46 -0
- headson-0.2.3/python/Cargo.lock +760 -0
- headson-0.2.3/python/Cargo.toml +15 -0
- headson-0.2.3/python/README.md +34 -0
- headson-0.2.3/python/headson/__init__.py +4 -0
- headson-0.2.3/python/src/lib.rs +62 -0
- headson-0.2.3/src/json_ingest/builder.rs +257 -0
- headson-0.2.3/src/json_ingest/mod.rs +75 -0
- headson-0.2.3/src/lib.rs +108 -0
- headson-0.2.3/src/main.rs +174 -0
- headson-0.2.3/src/order/build.rs +403 -0
- headson-0.2.3/src/order/mod.rs +8 -0
- headson-0.2.3/src/order/scoring.rs +26 -0
- headson-0.2.3/src/order/snapshots/headson__order__build__tests__order_empty_array_order.snap +6 -0
- headson-0.2.3/src/order/snapshots/headson__order__build__tests__order_single_string_array_order.snap +9 -0
- headson-0.2.3/src/order/types.rs +68 -0
- headson-0.2.3/src/serialization/mod.rs +498 -0
- headson-0.2.3/src/serialization/snapshots/headson__serialization__tests__arena_render_empty.snap +5 -0
- headson-0.2.3/src/serialization/snapshots/headson__serialization__tests__arena_render_single.snap +7 -0
- headson-0.2.3/src/serialization/templates/core.rs +74 -0
- headson-0.2.3/src/serialization/templates/js.rs +69 -0
- headson-0.2.3/src/serialization/templates/json.rs +22 -0
- headson-0.2.3/src/serialization/templates/mod.rs +44 -0
- headson-0.2.3/src/serialization/templates/pseudo.rs +48 -0
- headson-0.2.3/src/serialization/types.rs +16 -0
- headson-0.2.3/src/snapshots/headson__order__tests__order_empty_array_order.snap +6 -0
- headson-0.2.3/src/snapshots/headson__order__tests__order_single_string_array_order.snap +9 -0
- headson-0.2.3/src/snapshots/headson__order__tests__pq_empty_array_queue.snap +6 -0
- headson-0.2.3/src/snapshots/headson__order__tests__pq_single_string_array_queue.snap +9 -0
- headson-0.2.3/src/snapshots/headson__queue__tests__pq_empty_array_queue.snap +7 -0
- headson-0.2.3/src/snapshots/headson__queue__tests__pq_single_string_array_queue.snap +10 -0
- headson-0.2.3/src/snapshots/headson__tree__tests__build_tree_empty.snap +5 -0
- headson-0.2.3/src/snapshots/headson__tree__tests__build_tree_single.snap +7 -0
- headson-0.2.3/src/utils/graph.rs +54 -0
- headson-0.2.3/src/utils/json.rs +6 -0
- headson-0.2.3/src/utils/mod.rs +5 -0
- headson-0.2.3/src/utils/search.rs +18 -0
- headson-0.2.3/src/utils/text.rs +14 -0
- headson-0.2.3/src/utils/tree_arena.rs +44 -0
headson-0.2.3/Cargo.lock
ADDED
|
@@ -0,0 +1,920 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ahash"
|
|
7
|
+
version = "0.8.12"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"cfg-if",
|
|
12
|
+
"once_cell",
|
|
13
|
+
"version_check",
|
|
14
|
+
"zerocopy",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[[package]]
|
|
18
|
+
name = "allocator-api2"
|
|
19
|
+
version = "0.2.21"
|
|
20
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
21
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
22
|
+
|
|
23
|
+
[[package]]
|
|
24
|
+
name = "anstream"
|
|
25
|
+
version = "0.6.21"
|
|
26
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
28
|
+
dependencies = [
|
|
29
|
+
"anstyle",
|
|
30
|
+
"anstyle-parse",
|
|
31
|
+
"anstyle-query",
|
|
32
|
+
"anstyle-wincon",
|
|
33
|
+
"colorchoice",
|
|
34
|
+
"is_terminal_polyfill",
|
|
35
|
+
"utf8parse",
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "anstyle"
|
|
40
|
+
version = "1.0.13"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "anstyle-parse"
|
|
46
|
+
version = "0.2.7"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
49
|
+
dependencies = [
|
|
50
|
+
"utf8parse",
|
|
51
|
+
]
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "anstyle-query"
|
|
55
|
+
version = "1.1.4"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
|
|
58
|
+
dependencies = [
|
|
59
|
+
"windows-sys 0.60.2",
|
|
60
|
+
]
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "anstyle-wincon"
|
|
64
|
+
version = "3.0.10"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
|
|
67
|
+
dependencies = [
|
|
68
|
+
"anstyle",
|
|
69
|
+
"once_cell_polyfill",
|
|
70
|
+
"windows-sys 0.60.2",
|
|
71
|
+
]
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "anyhow"
|
|
75
|
+
version = "1.0.100"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "assert_cmd"
|
|
81
|
+
version = "2.0.17"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "2bd389a4b2970a01282ee455294913c0a43724daedcd1a24c3eb0ec1c1320b66"
|
|
84
|
+
dependencies = [
|
|
85
|
+
"anstyle",
|
|
86
|
+
"bstr",
|
|
87
|
+
"doc-comment",
|
|
88
|
+
"libc",
|
|
89
|
+
"predicates",
|
|
90
|
+
"predicates-core",
|
|
91
|
+
"predicates-tree",
|
|
92
|
+
"wait-timeout",
|
|
93
|
+
]
|
|
94
|
+
|
|
95
|
+
[[package]]
|
|
96
|
+
name = "autocfg"
|
|
97
|
+
version = "1.5.0"
|
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
100
|
+
|
|
101
|
+
[[package]]
|
|
102
|
+
name = "bstr"
|
|
103
|
+
version = "1.12.0"
|
|
104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
105
|
+
checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
|
|
106
|
+
dependencies = [
|
|
107
|
+
"memchr",
|
|
108
|
+
"regex-automata",
|
|
109
|
+
"serde",
|
|
110
|
+
]
|
|
111
|
+
|
|
112
|
+
[[package]]
|
|
113
|
+
name = "bumpalo"
|
|
114
|
+
version = "3.19.0"
|
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
117
|
+
|
|
118
|
+
[[package]]
|
|
119
|
+
name = "cfg-if"
|
|
120
|
+
version = "1.0.4"
|
|
121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "clap"
|
|
126
|
+
version = "4.5.50"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "0c2cfd7bf8a6017ddaa4e32ffe7403d547790db06bd171c1c53926faab501623"
|
|
129
|
+
dependencies = [
|
|
130
|
+
"clap_builder",
|
|
131
|
+
"clap_derive",
|
|
132
|
+
]
|
|
133
|
+
|
|
134
|
+
[[package]]
|
|
135
|
+
name = "clap_builder"
|
|
136
|
+
version = "4.5.50"
|
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
+
checksum = "0a4c05b9e80c5ccd3a7ef080ad7b6ba7d6fc00a985b8b157197075677c82c7a0"
|
|
139
|
+
dependencies = [
|
|
140
|
+
"anstream",
|
|
141
|
+
"anstyle",
|
|
142
|
+
"clap_lex",
|
|
143
|
+
"strsim",
|
|
144
|
+
]
|
|
145
|
+
|
|
146
|
+
[[package]]
|
|
147
|
+
name = "clap_derive"
|
|
148
|
+
version = "4.5.49"
|
|
149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
151
|
+
dependencies = [
|
|
152
|
+
"heck",
|
|
153
|
+
"proc-macro2",
|
|
154
|
+
"quote",
|
|
155
|
+
"syn",
|
|
156
|
+
]
|
|
157
|
+
|
|
158
|
+
[[package]]
|
|
159
|
+
name = "clap_lex"
|
|
160
|
+
version = "0.7.6"
|
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
+
checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
|
|
163
|
+
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "colorchoice"
|
|
166
|
+
version = "1.0.4"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
169
|
+
|
|
170
|
+
[[package]]
|
|
171
|
+
name = "console"
|
|
172
|
+
version = "0.15.11"
|
|
173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
|
175
|
+
dependencies = [
|
|
176
|
+
"encode_unicode",
|
|
177
|
+
"libc",
|
|
178
|
+
"once_cell",
|
|
179
|
+
"windows-sys 0.59.0",
|
|
180
|
+
]
|
|
181
|
+
|
|
182
|
+
[[package]]
|
|
183
|
+
name = "deunicode"
|
|
184
|
+
version = "1.6.2"
|
|
185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
+
checksum = "abd57806937c9cc163efc8ea3910e00a62e2aeb0b8119f1793a978088f8f6b04"
|
|
187
|
+
|
|
188
|
+
[[package]]
|
|
189
|
+
name = "difflib"
|
|
190
|
+
version = "0.4.0"
|
|
191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
+
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
193
|
+
|
|
194
|
+
[[package]]
|
|
195
|
+
name = "doc-comment"
|
|
196
|
+
version = "0.3.3"
|
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
+
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
|
|
199
|
+
|
|
200
|
+
[[package]]
|
|
201
|
+
name = "encode_unicode"
|
|
202
|
+
version = "1.0.0"
|
|
203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "fake"
|
|
208
|
+
version = "2.10.0"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "2d391ba4af7f1d93f01fcf7b2f29e2bc9348e109dfdbf4dcbdc51dfa38dab0b6"
|
|
211
|
+
dependencies = [
|
|
212
|
+
"deunicode",
|
|
213
|
+
"rand",
|
|
214
|
+
]
|
|
215
|
+
|
|
216
|
+
[[package]]
|
|
217
|
+
name = "float-cmp"
|
|
218
|
+
version = "0.9.0"
|
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
+
checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
|
|
221
|
+
dependencies = [
|
|
222
|
+
"num-traits",
|
|
223
|
+
]
|
|
224
|
+
|
|
225
|
+
[[package]]
|
|
226
|
+
name = "getrandom"
|
|
227
|
+
version = "0.2.16"
|
|
228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
230
|
+
dependencies = [
|
|
231
|
+
"cfg-if",
|
|
232
|
+
"js-sys",
|
|
233
|
+
"libc",
|
|
234
|
+
"wasi",
|
|
235
|
+
"wasm-bindgen",
|
|
236
|
+
]
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "halfbrown"
|
|
240
|
+
version = "0.2.5"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "8588661a8607108a5ca69cab034063441a0413a0b041c13618a7dd348021ef6f"
|
|
243
|
+
dependencies = [
|
|
244
|
+
"hashbrown",
|
|
245
|
+
"serde",
|
|
246
|
+
]
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "hashbrown"
|
|
250
|
+
version = "0.14.5"
|
|
251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
253
|
+
dependencies = [
|
|
254
|
+
"ahash",
|
|
255
|
+
"allocator-api2",
|
|
256
|
+
]
|
|
257
|
+
|
|
258
|
+
[[package]]
|
|
259
|
+
name = "headson"
|
|
260
|
+
version = "0.2.3"
|
|
261
|
+
dependencies = [
|
|
262
|
+
"anyhow",
|
|
263
|
+
"assert_cmd",
|
|
264
|
+
"clap",
|
|
265
|
+
"fake",
|
|
266
|
+
"insta",
|
|
267
|
+
"rand",
|
|
268
|
+
"rand_chacha",
|
|
269
|
+
"serde",
|
|
270
|
+
"serde_json",
|
|
271
|
+
"simd-json",
|
|
272
|
+
"test_each_file",
|
|
273
|
+
"unicode-segmentation",
|
|
274
|
+
]
|
|
275
|
+
|
|
276
|
+
[[package]]
|
|
277
|
+
name = "heck"
|
|
278
|
+
version = "0.5.0"
|
|
279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
280
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
281
|
+
|
|
282
|
+
[[package]]
|
|
283
|
+
name = "insta"
|
|
284
|
+
version = "1.43.2"
|
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
|
+
checksum = "46fdb647ebde000f43b5b53f773c30cf9b0cb4300453208713fa38b2c70935a0"
|
|
287
|
+
dependencies = [
|
|
288
|
+
"console",
|
|
289
|
+
"once_cell",
|
|
290
|
+
"similar",
|
|
291
|
+
]
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "is_terminal_polyfill"
|
|
295
|
+
version = "1.70.2"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "itoa"
|
|
301
|
+
version = "1.0.15"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
304
|
+
|
|
305
|
+
[[package]]
|
|
306
|
+
name = "js-sys"
|
|
307
|
+
version = "0.3.81"
|
|
308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
309
|
+
checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305"
|
|
310
|
+
dependencies = [
|
|
311
|
+
"once_cell",
|
|
312
|
+
"wasm-bindgen",
|
|
313
|
+
]
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "lexical-core"
|
|
317
|
+
version = "1.0.6"
|
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
+
checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
|
|
320
|
+
dependencies = [
|
|
321
|
+
"lexical-parse-float",
|
|
322
|
+
"lexical-parse-integer",
|
|
323
|
+
"lexical-util",
|
|
324
|
+
"lexical-write-float",
|
|
325
|
+
"lexical-write-integer",
|
|
326
|
+
]
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "lexical-parse-float"
|
|
330
|
+
version = "1.0.6"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
|
|
333
|
+
dependencies = [
|
|
334
|
+
"lexical-parse-integer",
|
|
335
|
+
"lexical-util",
|
|
336
|
+
]
|
|
337
|
+
|
|
338
|
+
[[package]]
|
|
339
|
+
name = "lexical-parse-integer"
|
|
340
|
+
version = "1.0.6"
|
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
+
checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
|
|
343
|
+
dependencies = [
|
|
344
|
+
"lexical-util",
|
|
345
|
+
]
|
|
346
|
+
|
|
347
|
+
[[package]]
|
|
348
|
+
name = "lexical-util"
|
|
349
|
+
version = "1.0.7"
|
|
350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
351
|
+
checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "lexical-write-float"
|
|
355
|
+
version = "1.0.6"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
|
|
358
|
+
dependencies = [
|
|
359
|
+
"lexical-util",
|
|
360
|
+
"lexical-write-integer",
|
|
361
|
+
]
|
|
362
|
+
|
|
363
|
+
[[package]]
|
|
364
|
+
name = "lexical-write-integer"
|
|
365
|
+
version = "1.0.6"
|
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
+
checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
|
|
368
|
+
dependencies = [
|
|
369
|
+
"lexical-util",
|
|
370
|
+
]
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "libc"
|
|
374
|
+
version = "0.2.177"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "log"
|
|
380
|
+
version = "0.4.28"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
|
|
383
|
+
|
|
384
|
+
[[package]]
|
|
385
|
+
name = "memchr"
|
|
386
|
+
version = "2.7.6"
|
|
387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
388
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
389
|
+
|
|
390
|
+
[[package]]
|
|
391
|
+
name = "num-traits"
|
|
392
|
+
version = "0.2.19"
|
|
393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
394
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
395
|
+
dependencies = [
|
|
396
|
+
"autocfg",
|
|
397
|
+
]
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "once_cell"
|
|
401
|
+
version = "1.21.3"
|
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "once_cell_polyfill"
|
|
407
|
+
version = "1.70.2"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
410
|
+
|
|
411
|
+
[[package]]
|
|
412
|
+
name = "ppv-lite86"
|
|
413
|
+
version = "0.2.21"
|
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
415
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
416
|
+
dependencies = [
|
|
417
|
+
"zerocopy",
|
|
418
|
+
]
|
|
419
|
+
|
|
420
|
+
[[package]]
|
|
421
|
+
name = "predicates"
|
|
422
|
+
version = "3.1.3"
|
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
+
checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
|
|
425
|
+
dependencies = [
|
|
426
|
+
"anstyle",
|
|
427
|
+
"difflib",
|
|
428
|
+
"predicates-core",
|
|
429
|
+
]
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "predicates-core"
|
|
433
|
+
version = "1.0.9"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "predicates-tree"
|
|
439
|
+
version = "1.0.12"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
|
|
442
|
+
dependencies = [
|
|
443
|
+
"predicates-core",
|
|
444
|
+
"termtree",
|
|
445
|
+
]
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "proc-macro2"
|
|
449
|
+
version = "1.0.103"
|
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
452
|
+
dependencies = [
|
|
453
|
+
"unicode-ident",
|
|
454
|
+
]
|
|
455
|
+
|
|
456
|
+
[[package]]
|
|
457
|
+
name = "quote"
|
|
458
|
+
version = "1.0.41"
|
|
459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
+
checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
|
|
461
|
+
dependencies = [
|
|
462
|
+
"proc-macro2",
|
|
463
|
+
]
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "rand"
|
|
467
|
+
version = "0.8.5"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
470
|
+
dependencies = [
|
|
471
|
+
"libc",
|
|
472
|
+
"rand_chacha",
|
|
473
|
+
"rand_core",
|
|
474
|
+
]
|
|
475
|
+
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "rand_chacha"
|
|
478
|
+
version = "0.3.1"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
481
|
+
dependencies = [
|
|
482
|
+
"ppv-lite86",
|
|
483
|
+
"rand_core",
|
|
484
|
+
]
|
|
485
|
+
|
|
486
|
+
[[package]]
|
|
487
|
+
name = "rand_core"
|
|
488
|
+
version = "0.6.4"
|
|
489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
491
|
+
dependencies = [
|
|
492
|
+
"getrandom",
|
|
493
|
+
]
|
|
494
|
+
|
|
495
|
+
[[package]]
|
|
496
|
+
name = "ref-cast"
|
|
497
|
+
version = "1.0.25"
|
|
498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
499
|
+
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
|
|
500
|
+
dependencies = [
|
|
501
|
+
"ref-cast-impl",
|
|
502
|
+
]
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "ref-cast-impl"
|
|
506
|
+
version = "1.0.25"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
509
|
+
dependencies = [
|
|
510
|
+
"proc-macro2",
|
|
511
|
+
"quote",
|
|
512
|
+
"syn",
|
|
513
|
+
]
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "regex-automata"
|
|
517
|
+
version = "0.4.13"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "rustversion"
|
|
523
|
+
version = "1.0.22"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
526
|
+
|
|
527
|
+
[[package]]
|
|
528
|
+
name = "ryu"
|
|
529
|
+
version = "1.0.20"
|
|
530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
531
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
532
|
+
|
|
533
|
+
[[package]]
|
|
534
|
+
name = "serde"
|
|
535
|
+
version = "1.0.228"
|
|
536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
537
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
538
|
+
dependencies = [
|
|
539
|
+
"serde_core",
|
|
540
|
+
"serde_derive",
|
|
541
|
+
]
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "serde_core"
|
|
545
|
+
version = "1.0.228"
|
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
548
|
+
dependencies = [
|
|
549
|
+
"serde_derive",
|
|
550
|
+
]
|
|
551
|
+
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "serde_derive"
|
|
554
|
+
version = "1.0.228"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
557
|
+
dependencies = [
|
|
558
|
+
"proc-macro2",
|
|
559
|
+
"quote",
|
|
560
|
+
"syn",
|
|
561
|
+
]
|
|
562
|
+
|
|
563
|
+
[[package]]
|
|
564
|
+
name = "serde_json"
|
|
565
|
+
version = "1.0.145"
|
|
566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
568
|
+
dependencies = [
|
|
569
|
+
"itoa",
|
|
570
|
+
"memchr",
|
|
571
|
+
"ryu",
|
|
572
|
+
"serde",
|
|
573
|
+
"serde_core",
|
|
574
|
+
]
|
|
575
|
+
|
|
576
|
+
[[package]]
|
|
577
|
+
name = "simd-json"
|
|
578
|
+
version = "0.13.11"
|
|
579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
580
|
+
checksum = "a0228a564470f81724e30996bbc2b171713b37b15254a6440c7e2d5449b95691"
|
|
581
|
+
dependencies = [
|
|
582
|
+
"getrandom",
|
|
583
|
+
"halfbrown",
|
|
584
|
+
"lexical-core",
|
|
585
|
+
"ref-cast",
|
|
586
|
+
"serde",
|
|
587
|
+
"serde_json",
|
|
588
|
+
"simdutf8",
|
|
589
|
+
"value-trait",
|
|
590
|
+
]
|
|
591
|
+
|
|
592
|
+
[[package]]
|
|
593
|
+
name = "simdutf8"
|
|
594
|
+
version = "0.1.5"
|
|
595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
596
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
597
|
+
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "similar"
|
|
600
|
+
version = "2.7.0"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
603
|
+
|
|
604
|
+
[[package]]
|
|
605
|
+
name = "strsim"
|
|
606
|
+
version = "0.11.1"
|
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
609
|
+
|
|
610
|
+
[[package]]
|
|
611
|
+
name = "syn"
|
|
612
|
+
version = "2.0.108"
|
|
613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
+
checksum = "da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917"
|
|
615
|
+
dependencies = [
|
|
616
|
+
"proc-macro2",
|
|
617
|
+
"quote",
|
|
618
|
+
"unicode-ident",
|
|
619
|
+
]
|
|
620
|
+
|
|
621
|
+
[[package]]
|
|
622
|
+
name = "termtree"
|
|
623
|
+
version = "0.5.1"
|
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
625
|
+
checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
|
|
626
|
+
|
|
627
|
+
[[package]]
|
|
628
|
+
name = "test_each_file"
|
|
629
|
+
version = "0.3.6"
|
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
631
|
+
checksum = "2de773517ee4367314c7918f6c9ef69c201ba72bfdbffb00234c22c50a153b73"
|
|
632
|
+
dependencies = [
|
|
633
|
+
"proc-macro2",
|
|
634
|
+
"quote",
|
|
635
|
+
"syn",
|
|
636
|
+
"unicode-ident",
|
|
637
|
+
]
|
|
638
|
+
|
|
639
|
+
[[package]]
|
|
640
|
+
name = "unicode-ident"
|
|
641
|
+
version = "1.0.20"
|
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
+
checksum = "462eeb75aeb73aea900253ce739c8e18a67423fadf006037cd3ff27e82748a06"
|
|
644
|
+
|
|
645
|
+
[[package]]
|
|
646
|
+
name = "unicode-segmentation"
|
|
647
|
+
version = "1.12.0"
|
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "utf8parse"
|
|
653
|
+
version = "0.2.2"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "value-trait"
|
|
659
|
+
version = "0.8.1"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "dad8db98c1e677797df21ba03fca7d3bf9bec3ca38db930954e4fe6e1ea27eb4"
|
|
662
|
+
dependencies = [
|
|
663
|
+
"float-cmp",
|
|
664
|
+
"halfbrown",
|
|
665
|
+
"itoa",
|
|
666
|
+
"ryu",
|
|
667
|
+
]
|
|
668
|
+
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "version_check"
|
|
671
|
+
version = "0.9.5"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
674
|
+
|
|
675
|
+
[[package]]
|
|
676
|
+
name = "wait-timeout"
|
|
677
|
+
version = "0.2.1"
|
|
678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
680
|
+
dependencies = [
|
|
681
|
+
"libc",
|
|
682
|
+
]
|
|
683
|
+
|
|
684
|
+
[[package]]
|
|
685
|
+
name = "wasi"
|
|
686
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
689
|
+
|
|
690
|
+
[[package]]
|
|
691
|
+
name = "wasm-bindgen"
|
|
692
|
+
version = "0.2.104"
|
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
+
checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d"
|
|
695
|
+
dependencies = [
|
|
696
|
+
"cfg-if",
|
|
697
|
+
"once_cell",
|
|
698
|
+
"rustversion",
|
|
699
|
+
"wasm-bindgen-macro",
|
|
700
|
+
"wasm-bindgen-shared",
|
|
701
|
+
]
|
|
702
|
+
|
|
703
|
+
[[package]]
|
|
704
|
+
name = "wasm-bindgen-backend"
|
|
705
|
+
version = "0.2.104"
|
|
706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
+
checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19"
|
|
708
|
+
dependencies = [
|
|
709
|
+
"bumpalo",
|
|
710
|
+
"log",
|
|
711
|
+
"proc-macro2",
|
|
712
|
+
"quote",
|
|
713
|
+
"syn",
|
|
714
|
+
"wasm-bindgen-shared",
|
|
715
|
+
]
|
|
716
|
+
|
|
717
|
+
[[package]]
|
|
718
|
+
name = "wasm-bindgen-macro"
|
|
719
|
+
version = "0.2.104"
|
|
720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
+
checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119"
|
|
722
|
+
dependencies = [
|
|
723
|
+
"quote",
|
|
724
|
+
"wasm-bindgen-macro-support",
|
|
725
|
+
]
|
|
726
|
+
|
|
727
|
+
[[package]]
|
|
728
|
+
name = "wasm-bindgen-macro-support"
|
|
729
|
+
version = "0.2.104"
|
|
730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
+
checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7"
|
|
732
|
+
dependencies = [
|
|
733
|
+
"proc-macro2",
|
|
734
|
+
"quote",
|
|
735
|
+
"syn",
|
|
736
|
+
"wasm-bindgen-backend",
|
|
737
|
+
"wasm-bindgen-shared",
|
|
738
|
+
]
|
|
739
|
+
|
|
740
|
+
[[package]]
|
|
741
|
+
name = "wasm-bindgen-shared"
|
|
742
|
+
version = "0.2.104"
|
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
+
checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1"
|
|
745
|
+
dependencies = [
|
|
746
|
+
"unicode-ident",
|
|
747
|
+
]
|
|
748
|
+
|
|
749
|
+
[[package]]
|
|
750
|
+
name = "windows-link"
|
|
751
|
+
version = "0.2.1"
|
|
752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
754
|
+
|
|
755
|
+
[[package]]
|
|
756
|
+
name = "windows-sys"
|
|
757
|
+
version = "0.59.0"
|
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
760
|
+
dependencies = [
|
|
761
|
+
"windows-targets 0.52.6",
|
|
762
|
+
]
|
|
763
|
+
|
|
764
|
+
[[package]]
|
|
765
|
+
name = "windows-sys"
|
|
766
|
+
version = "0.60.2"
|
|
767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
768
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
769
|
+
dependencies = [
|
|
770
|
+
"windows-targets 0.53.5",
|
|
771
|
+
]
|
|
772
|
+
|
|
773
|
+
[[package]]
|
|
774
|
+
name = "windows-targets"
|
|
775
|
+
version = "0.52.6"
|
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
778
|
+
dependencies = [
|
|
779
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
780
|
+
"windows_aarch64_msvc 0.52.6",
|
|
781
|
+
"windows_i686_gnu 0.52.6",
|
|
782
|
+
"windows_i686_gnullvm 0.52.6",
|
|
783
|
+
"windows_i686_msvc 0.52.6",
|
|
784
|
+
"windows_x86_64_gnu 0.52.6",
|
|
785
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
786
|
+
"windows_x86_64_msvc 0.52.6",
|
|
787
|
+
]
|
|
788
|
+
|
|
789
|
+
[[package]]
|
|
790
|
+
name = "windows-targets"
|
|
791
|
+
version = "0.53.5"
|
|
792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
793
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
794
|
+
dependencies = [
|
|
795
|
+
"windows-link",
|
|
796
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
797
|
+
"windows_aarch64_msvc 0.53.1",
|
|
798
|
+
"windows_i686_gnu 0.53.1",
|
|
799
|
+
"windows_i686_gnullvm 0.53.1",
|
|
800
|
+
"windows_i686_msvc 0.53.1",
|
|
801
|
+
"windows_x86_64_gnu 0.53.1",
|
|
802
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
803
|
+
"windows_x86_64_msvc 0.53.1",
|
|
804
|
+
]
|
|
805
|
+
|
|
806
|
+
[[package]]
|
|
807
|
+
name = "windows_aarch64_gnullvm"
|
|
808
|
+
version = "0.52.6"
|
|
809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
810
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
811
|
+
|
|
812
|
+
[[package]]
|
|
813
|
+
name = "windows_aarch64_gnullvm"
|
|
814
|
+
version = "0.53.1"
|
|
815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
816
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
817
|
+
|
|
818
|
+
[[package]]
|
|
819
|
+
name = "windows_aarch64_msvc"
|
|
820
|
+
version = "0.52.6"
|
|
821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
823
|
+
|
|
824
|
+
[[package]]
|
|
825
|
+
name = "windows_aarch64_msvc"
|
|
826
|
+
version = "0.53.1"
|
|
827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
828
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
829
|
+
|
|
830
|
+
[[package]]
|
|
831
|
+
name = "windows_i686_gnu"
|
|
832
|
+
version = "0.52.6"
|
|
833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
834
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
835
|
+
|
|
836
|
+
[[package]]
|
|
837
|
+
name = "windows_i686_gnu"
|
|
838
|
+
version = "0.53.1"
|
|
839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
841
|
+
|
|
842
|
+
[[package]]
|
|
843
|
+
name = "windows_i686_gnullvm"
|
|
844
|
+
version = "0.52.6"
|
|
845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
846
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "windows_i686_gnullvm"
|
|
850
|
+
version = "0.53.1"
|
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
853
|
+
|
|
854
|
+
[[package]]
|
|
855
|
+
name = "windows_i686_msvc"
|
|
856
|
+
version = "0.52.6"
|
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
859
|
+
|
|
860
|
+
[[package]]
|
|
861
|
+
name = "windows_i686_msvc"
|
|
862
|
+
version = "0.53.1"
|
|
863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
864
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
865
|
+
|
|
866
|
+
[[package]]
|
|
867
|
+
name = "windows_x86_64_gnu"
|
|
868
|
+
version = "0.52.6"
|
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
871
|
+
|
|
872
|
+
[[package]]
|
|
873
|
+
name = "windows_x86_64_gnu"
|
|
874
|
+
version = "0.53.1"
|
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
877
|
+
|
|
878
|
+
[[package]]
|
|
879
|
+
name = "windows_x86_64_gnullvm"
|
|
880
|
+
version = "0.52.6"
|
|
881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
883
|
+
|
|
884
|
+
[[package]]
|
|
885
|
+
name = "windows_x86_64_gnullvm"
|
|
886
|
+
version = "0.53.1"
|
|
887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
888
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
889
|
+
|
|
890
|
+
[[package]]
|
|
891
|
+
name = "windows_x86_64_msvc"
|
|
892
|
+
version = "0.52.6"
|
|
893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
894
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
895
|
+
|
|
896
|
+
[[package]]
|
|
897
|
+
name = "windows_x86_64_msvc"
|
|
898
|
+
version = "0.53.1"
|
|
899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
900
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
901
|
+
|
|
902
|
+
[[package]]
|
|
903
|
+
name = "zerocopy"
|
|
904
|
+
version = "0.8.27"
|
|
905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
906
|
+
checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
|
|
907
|
+
dependencies = [
|
|
908
|
+
"zerocopy-derive",
|
|
909
|
+
]
|
|
910
|
+
|
|
911
|
+
[[package]]
|
|
912
|
+
name = "zerocopy-derive"
|
|
913
|
+
version = "0.8.27"
|
|
914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
915
|
+
checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
|
|
916
|
+
dependencies = [
|
|
917
|
+
"proc-macro2",
|
|
918
|
+
"quote",
|
|
919
|
+
"syn",
|
|
920
|
+
]
|