rust_json_schema 0.3.0 → 0.5.2
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.
- checksums.yaml +4 -4
- data/.ruby-version +1 -0
- data/Cargo.lock +567 -297
- data/README.md +4 -2
- data/Rakefile +1 -1
- data/ext/rust_json_schema/Cargo.toml +3 -3
- data/ext/rust_json_schema/src/lib.rs +53 -33
- data/lib/rust_json_schema/version.rb +1 -1
- metadata +4 -6
data/Cargo.lock
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# This file is automatically @generated by Cargo.
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
|
-
version =
|
|
3
|
+
version = 4
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "addr2line"
|
|
7
|
-
version = "0.24.
|
|
7
|
+
version = "0.24.2"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
|
10
10
|
dependencies = [
|
|
11
11
|
"gimli",
|
|
12
12
|
]
|
|
@@ -40,17 +40,11 @@ dependencies = [
|
|
|
40
40
|
"memchr",
|
|
41
41
|
]
|
|
42
42
|
|
|
43
|
-
[[package]]
|
|
44
|
-
name = "anyhow"
|
|
45
|
-
version = "1.0.89"
|
|
46
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
47
|
-
checksum = "86fdf8605db99b54d3cd748a44c6d04df638eb5dafb219b135d0149bd0db01f6"
|
|
48
|
-
|
|
49
43
|
[[package]]
|
|
50
44
|
name = "autocfg"
|
|
51
|
-
version = "1.
|
|
45
|
+
version = "1.4.0"
|
|
52
46
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
-
checksum = "
|
|
47
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
54
48
|
|
|
55
49
|
[[package]]
|
|
56
50
|
name = "backtrace"
|
|
@@ -64,7 +58,7 @@ dependencies = [
|
|
|
64
58
|
"miniz_oxide",
|
|
65
59
|
"object",
|
|
66
60
|
"rustc-demangle",
|
|
67
|
-
"windows-targets",
|
|
61
|
+
"windows-targets 0.52.6",
|
|
68
62
|
]
|
|
69
63
|
|
|
70
64
|
[[package]]
|
|
@@ -75,16 +69,14 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
|
75
69
|
|
|
76
70
|
[[package]]
|
|
77
71
|
name = "bindgen"
|
|
78
|
-
version = "0.
|
|
72
|
+
version = "0.72.1"
|
|
79
73
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
-
checksum = "
|
|
74
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
81
75
|
dependencies = [
|
|
82
76
|
"bitflags",
|
|
83
77
|
"cexpr",
|
|
84
78
|
"clang-sys",
|
|
85
79
|
"itertools",
|
|
86
|
-
"lazy_static",
|
|
87
|
-
"lazycell",
|
|
88
80
|
"proc-macro2",
|
|
89
81
|
"quote",
|
|
90
82
|
"regex",
|
|
@@ -95,30 +87,36 @@ dependencies = [
|
|
|
95
87
|
|
|
96
88
|
[[package]]
|
|
97
89
|
name = "bit-set"
|
|
98
|
-
version = "0.
|
|
90
|
+
version = "0.8.0"
|
|
99
91
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
-
checksum = "
|
|
92
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
101
93
|
dependencies = [
|
|
102
94
|
"bit-vec",
|
|
103
95
|
]
|
|
104
96
|
|
|
105
97
|
[[package]]
|
|
106
98
|
name = "bit-vec"
|
|
107
|
-
version = "0.
|
|
99
|
+
version = "0.8.0"
|
|
108
100
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
-
checksum = "
|
|
101
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
110
102
|
|
|
111
103
|
[[package]]
|
|
112
104
|
name = "bitflags"
|
|
113
|
-
version = "2.
|
|
105
|
+
version = "2.9.0"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "borrow-or-share"
|
|
111
|
+
version = "0.2.2"
|
|
114
112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
-
checksum = "
|
|
113
|
+
checksum = "3eeab4423108c5d7c744f4d234de88d18d636100093ae04caf4825134b9c3a32"
|
|
116
114
|
|
|
117
115
|
[[package]]
|
|
118
116
|
name = "bumpalo"
|
|
119
|
-
version = "3.
|
|
117
|
+
version = "3.17.0"
|
|
120
118
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
-
checksum = "
|
|
119
|
+
checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
|
|
122
120
|
|
|
123
121
|
[[package]]
|
|
124
122
|
name = "bytecount"
|
|
@@ -128,9 +126,9 @@ checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
|
|
|
128
126
|
|
|
129
127
|
[[package]]
|
|
130
128
|
name = "bytes"
|
|
131
|
-
version = "1.
|
|
129
|
+
version = "1.10.1"
|
|
132
130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
-
checksum = "
|
|
131
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
134
132
|
|
|
135
133
|
[[package]]
|
|
136
134
|
name = "cexpr"
|
|
@@ -159,31 +157,53 @@ dependencies = [
|
|
|
159
157
|
]
|
|
160
158
|
|
|
161
159
|
[[package]]
|
|
162
|
-
name = "
|
|
163
|
-
version = "0.
|
|
160
|
+
name = "displaydoc"
|
|
161
|
+
version = "0.2.5"
|
|
164
162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
-
checksum = "
|
|
163
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
166
164
|
dependencies = [
|
|
167
|
-
"
|
|
165
|
+
"proc-macro2",
|
|
166
|
+
"quote",
|
|
167
|
+
"syn",
|
|
168
168
|
]
|
|
169
169
|
|
|
170
170
|
[[package]]
|
|
171
171
|
name = "either"
|
|
172
|
-
version = "1.
|
|
172
|
+
version = "1.15.0"
|
|
173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
175
|
+
|
|
176
|
+
[[package]]
|
|
177
|
+
name = "email_address"
|
|
178
|
+
version = "0.2.9"
|
|
173
179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
-
checksum = "
|
|
180
|
+
checksum = "e079f19b08ca6239f47f8ba8509c11cf3ea30095831f7fed61441475edd8c449"
|
|
181
|
+
dependencies = [
|
|
182
|
+
"serde",
|
|
183
|
+
]
|
|
175
184
|
|
|
176
185
|
[[package]]
|
|
177
186
|
name = "fancy-regex"
|
|
178
|
-
version = "0.
|
|
187
|
+
version = "0.16.1"
|
|
179
188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
-
checksum = "
|
|
189
|
+
checksum = "bf04c5ec15464ace8355a7b440a33aece288993475556d461154d7a62ad9947c"
|
|
181
190
|
dependencies = [
|
|
182
191
|
"bit-set",
|
|
183
192
|
"regex-automata",
|
|
184
193
|
"regex-syntax",
|
|
185
194
|
]
|
|
186
195
|
|
|
196
|
+
[[package]]
|
|
197
|
+
name = "fluent-uri"
|
|
198
|
+
version = "0.3.2"
|
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
+
checksum = "1918b65d96df47d3591bed19c5cca17e3fa5d0707318e4b5ef2eae01764df7e5"
|
|
201
|
+
dependencies = [
|
|
202
|
+
"borrow-or-share",
|
|
203
|
+
"ref-cast",
|
|
204
|
+
"serde",
|
|
205
|
+
]
|
|
206
|
+
|
|
187
207
|
[[package]]
|
|
188
208
|
name = "fnv"
|
|
189
209
|
version = "1.0.7"
|
|
@@ -211,9 +231,9 @@ dependencies = [
|
|
|
211
231
|
|
|
212
232
|
[[package]]
|
|
213
233
|
name = "futures-channel"
|
|
214
|
-
version = "0.3.
|
|
234
|
+
version = "0.3.31"
|
|
215
235
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
-
checksum = "
|
|
236
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
217
237
|
dependencies = [
|
|
218
238
|
"futures-core",
|
|
219
239
|
"futures-sink",
|
|
@@ -221,33 +241,33 @@ dependencies = [
|
|
|
221
241
|
|
|
222
242
|
[[package]]
|
|
223
243
|
name = "futures-core"
|
|
224
|
-
version = "0.3.
|
|
244
|
+
version = "0.3.31"
|
|
225
245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
-
checksum = "
|
|
246
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
227
247
|
|
|
228
248
|
[[package]]
|
|
229
249
|
name = "futures-io"
|
|
230
|
-
version = "0.3.
|
|
250
|
+
version = "0.3.31"
|
|
231
251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
-
checksum = "
|
|
252
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
233
253
|
|
|
234
254
|
[[package]]
|
|
235
255
|
name = "futures-sink"
|
|
236
|
-
version = "0.3.
|
|
256
|
+
version = "0.3.31"
|
|
237
257
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
-
checksum = "
|
|
258
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
239
259
|
|
|
240
260
|
[[package]]
|
|
241
261
|
name = "futures-task"
|
|
242
|
-
version = "0.3.
|
|
262
|
+
version = "0.3.31"
|
|
243
263
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
-
checksum = "
|
|
264
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
245
265
|
|
|
246
266
|
[[package]]
|
|
247
267
|
name = "futures-util"
|
|
248
|
-
version = "0.3.
|
|
268
|
+
version = "0.3.31"
|
|
249
269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
-
checksum = "
|
|
270
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
251
271
|
dependencies = [
|
|
252
272
|
"futures-core",
|
|
253
273
|
"futures-io",
|
|
@@ -266,35 +286,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
266
286
|
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
267
287
|
dependencies = [
|
|
268
288
|
"cfg-if",
|
|
269
|
-
"js-sys",
|
|
270
289
|
"libc",
|
|
271
290
|
"wasi",
|
|
272
|
-
"wasm-bindgen",
|
|
273
291
|
]
|
|
274
292
|
|
|
275
293
|
[[package]]
|
|
276
294
|
name = "gimli"
|
|
277
|
-
version = "0.31.
|
|
295
|
+
version = "0.31.1"
|
|
278
296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
-
checksum = "
|
|
297
|
+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
280
298
|
|
|
281
299
|
[[package]]
|
|
282
300
|
name = "glob"
|
|
283
|
-
version = "0.3.
|
|
301
|
+
version = "0.3.2"
|
|
284
302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
-
checksum = "
|
|
286
|
-
|
|
287
|
-
[[package]]
|
|
288
|
-
name = "hermit-abi"
|
|
289
|
-
version = "0.3.9"
|
|
290
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
291
|
-
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
|
303
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
292
304
|
|
|
293
305
|
[[package]]
|
|
294
306
|
name = "http"
|
|
295
|
-
version = "1.1
|
|
307
|
+
version = "1.3.1"
|
|
296
308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
-
checksum = "
|
|
309
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
|
298
310
|
dependencies = [
|
|
299
311
|
"bytes",
|
|
300
312
|
"fnv",
|
|
@@ -313,12 +325,12 @@ dependencies = [
|
|
|
313
325
|
|
|
314
326
|
[[package]]
|
|
315
327
|
name = "http-body-util"
|
|
316
|
-
version = "0.1.
|
|
328
|
+
version = "0.1.3"
|
|
317
329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
318
|
-
checksum = "
|
|
330
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
319
331
|
dependencies = [
|
|
320
332
|
"bytes",
|
|
321
|
-
"futures-
|
|
333
|
+
"futures-core",
|
|
322
334
|
"http",
|
|
323
335
|
"http-body",
|
|
324
336
|
"pin-project-lite",
|
|
@@ -326,15 +338,15 @@ dependencies = [
|
|
|
326
338
|
|
|
327
339
|
[[package]]
|
|
328
340
|
name = "httparse"
|
|
329
|
-
version = "1.
|
|
341
|
+
version = "1.10.1"
|
|
330
342
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
-
checksum = "
|
|
343
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
332
344
|
|
|
333
345
|
[[package]]
|
|
334
346
|
name = "hyper"
|
|
335
|
-
version = "1.
|
|
347
|
+
version = "1.6.0"
|
|
336
348
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
-
checksum = "
|
|
349
|
+
checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
|
|
338
350
|
dependencies = [
|
|
339
351
|
"bytes",
|
|
340
352
|
"futures-channel",
|
|
@@ -351,9 +363,9 @@ dependencies = [
|
|
|
351
363
|
|
|
352
364
|
[[package]]
|
|
353
365
|
name = "hyper-util"
|
|
354
|
-
version = "0.1.
|
|
366
|
+
version = "0.1.11"
|
|
355
367
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
-
checksum = "
|
|
368
|
+
checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
|
|
357
369
|
dependencies = [
|
|
358
370
|
"bytes",
|
|
359
371
|
"futures-channel",
|
|
@@ -361,39 +373,159 @@ dependencies = [
|
|
|
361
373
|
"http",
|
|
362
374
|
"http-body",
|
|
363
375
|
"hyper",
|
|
376
|
+
"libc",
|
|
364
377
|
"pin-project-lite",
|
|
365
378
|
"socket2",
|
|
366
379
|
"tokio",
|
|
367
|
-
"tower",
|
|
368
380
|
"tower-service",
|
|
369
381
|
"tracing",
|
|
370
382
|
]
|
|
371
383
|
|
|
372
384
|
[[package]]
|
|
373
|
-
name = "
|
|
374
|
-
version = "
|
|
385
|
+
name = "icu_collections"
|
|
386
|
+
version = "1.5.0"
|
|
375
387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
-
checksum = "
|
|
388
|
+
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
|
|
377
389
|
dependencies = [
|
|
378
|
-
"
|
|
379
|
-
"
|
|
390
|
+
"displaydoc",
|
|
391
|
+
"yoke",
|
|
392
|
+
"zerofrom",
|
|
393
|
+
"zerovec",
|
|
380
394
|
]
|
|
381
395
|
|
|
382
396
|
[[package]]
|
|
383
|
-
name = "
|
|
384
|
-
version = "
|
|
397
|
+
name = "icu_locid"
|
|
398
|
+
version = "1.5.0"
|
|
385
399
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
-
checksum = "
|
|
400
|
+
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
|
|
401
|
+
dependencies = [
|
|
402
|
+
"displaydoc",
|
|
403
|
+
"litemap",
|
|
404
|
+
"tinystr",
|
|
405
|
+
"writeable",
|
|
406
|
+
"zerovec",
|
|
407
|
+
]
|
|
387
408
|
|
|
388
409
|
[[package]]
|
|
389
|
-
name = "
|
|
390
|
-
version = "
|
|
410
|
+
name = "icu_locid_transform"
|
|
411
|
+
version = "1.5.0"
|
|
391
412
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
-
checksum = "
|
|
413
|
+
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
|
393
414
|
dependencies = [
|
|
394
|
-
"
|
|
415
|
+
"displaydoc",
|
|
416
|
+
"icu_locid",
|
|
417
|
+
"icu_locid_transform_data",
|
|
418
|
+
"icu_provider",
|
|
419
|
+
"tinystr",
|
|
420
|
+
"zerovec",
|
|
421
|
+
]
|
|
422
|
+
|
|
423
|
+
[[package]]
|
|
424
|
+
name = "icu_locid_transform_data"
|
|
425
|
+
version = "1.5.1"
|
|
426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
427
|
+
checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
|
|
428
|
+
|
|
429
|
+
[[package]]
|
|
430
|
+
name = "icu_normalizer"
|
|
431
|
+
version = "1.5.0"
|
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
+
checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
|
|
434
|
+
dependencies = [
|
|
435
|
+
"displaydoc",
|
|
436
|
+
"icu_collections",
|
|
437
|
+
"icu_normalizer_data",
|
|
438
|
+
"icu_properties",
|
|
439
|
+
"icu_provider",
|
|
440
|
+
"smallvec",
|
|
441
|
+
"utf16_iter",
|
|
442
|
+
"utf8_iter",
|
|
443
|
+
"write16",
|
|
444
|
+
"zerovec",
|
|
445
|
+
]
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "icu_normalizer_data"
|
|
449
|
+
version = "1.5.1"
|
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
+
checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
|
|
452
|
+
|
|
453
|
+
[[package]]
|
|
454
|
+
name = "icu_properties"
|
|
455
|
+
version = "1.5.1"
|
|
456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
457
|
+
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
|
|
458
|
+
dependencies = [
|
|
459
|
+
"displaydoc",
|
|
460
|
+
"icu_collections",
|
|
461
|
+
"icu_locid_transform",
|
|
462
|
+
"icu_properties_data",
|
|
463
|
+
"icu_provider",
|
|
464
|
+
"tinystr",
|
|
465
|
+
"zerovec",
|
|
395
466
|
]
|
|
396
467
|
|
|
468
|
+
[[package]]
|
|
469
|
+
name = "icu_properties_data"
|
|
470
|
+
version = "1.5.1"
|
|
471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
+
checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
|
|
473
|
+
|
|
474
|
+
[[package]]
|
|
475
|
+
name = "icu_provider"
|
|
476
|
+
version = "1.5.0"
|
|
477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
478
|
+
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
|
|
479
|
+
dependencies = [
|
|
480
|
+
"displaydoc",
|
|
481
|
+
"icu_locid",
|
|
482
|
+
"icu_provider_macros",
|
|
483
|
+
"stable_deref_trait",
|
|
484
|
+
"tinystr",
|
|
485
|
+
"writeable",
|
|
486
|
+
"yoke",
|
|
487
|
+
"zerofrom",
|
|
488
|
+
"zerovec",
|
|
489
|
+
]
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "icu_provider_macros"
|
|
493
|
+
version = "1.5.0"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
496
|
+
dependencies = [
|
|
497
|
+
"proc-macro2",
|
|
498
|
+
"quote",
|
|
499
|
+
"syn",
|
|
500
|
+
]
|
|
501
|
+
|
|
502
|
+
[[package]]
|
|
503
|
+
name = "idna"
|
|
504
|
+
version = "1.0.3"
|
|
505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
|
507
|
+
dependencies = [
|
|
508
|
+
"idna_adapter",
|
|
509
|
+
"smallvec",
|
|
510
|
+
"utf8_iter",
|
|
511
|
+
]
|
|
512
|
+
|
|
513
|
+
[[package]]
|
|
514
|
+
name = "idna_adapter"
|
|
515
|
+
version = "1.2.0"
|
|
516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
517
|
+
checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
|
|
518
|
+
dependencies = [
|
|
519
|
+
"icu_normalizer",
|
|
520
|
+
"icu_properties",
|
|
521
|
+
]
|
|
522
|
+
|
|
523
|
+
[[package]]
|
|
524
|
+
name = "ipnet"
|
|
525
|
+
version = "2.11.0"
|
|
526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
527
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
528
|
+
|
|
397
529
|
[[package]]
|
|
398
530
|
name = "itertools"
|
|
399
531
|
version = "0.12.1"
|
|
@@ -405,45 +537,44 @@ dependencies = [
|
|
|
405
537
|
|
|
406
538
|
[[package]]
|
|
407
539
|
name = "itoa"
|
|
408
|
-
version = "1.0.
|
|
540
|
+
version = "1.0.15"
|
|
409
541
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
-
checksum = "
|
|
542
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
411
543
|
|
|
412
544
|
[[package]]
|
|
413
545
|
name = "js-sys"
|
|
414
|
-
version = "0.3.
|
|
546
|
+
version = "0.3.77"
|
|
415
547
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
-
checksum = "
|
|
548
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
|
417
549
|
dependencies = [
|
|
550
|
+
"once_cell",
|
|
418
551
|
"wasm-bindgen",
|
|
419
552
|
]
|
|
420
553
|
|
|
421
554
|
[[package]]
|
|
422
555
|
name = "jsonschema"
|
|
423
|
-
version = "0.
|
|
556
|
+
version = "0.32.1"
|
|
424
557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
-
checksum = "
|
|
558
|
+
checksum = "24690c68dfcdde5980d676b0f1820981841016b1f29eecb4c42ad48ab4118681"
|
|
426
559
|
dependencies = [
|
|
427
560
|
"ahash",
|
|
428
|
-
"anyhow",
|
|
429
561
|
"base64",
|
|
430
562
|
"bytecount",
|
|
563
|
+
"email_address",
|
|
431
564
|
"fancy-regex",
|
|
432
565
|
"fraction",
|
|
433
|
-
"
|
|
434
|
-
"iso8601",
|
|
566
|
+
"idna",
|
|
435
567
|
"itoa",
|
|
436
|
-
"memchr",
|
|
437
568
|
"num-cmp",
|
|
569
|
+
"num-traits",
|
|
438
570
|
"once_cell",
|
|
439
|
-
"parking_lot",
|
|
440
571
|
"percent-encoding",
|
|
572
|
+
"referencing",
|
|
441
573
|
"regex",
|
|
574
|
+
"regex-syntax",
|
|
442
575
|
"reqwest",
|
|
443
576
|
"serde",
|
|
444
577
|
"serde_json",
|
|
445
|
-
"time",
|
|
446
|
-
"url",
|
|
447
578
|
"uuid-simd",
|
|
448
579
|
]
|
|
449
580
|
|
|
@@ -453,28 +584,28 @@ version = "1.5.0"
|
|
|
453
584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
585
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
455
586
|
|
|
456
|
-
[[package]]
|
|
457
|
-
name = "lazycell"
|
|
458
|
-
version = "1.3.0"
|
|
459
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
-
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
461
|
-
|
|
462
587
|
[[package]]
|
|
463
588
|
name = "libc"
|
|
464
|
-
version = "0.2.
|
|
589
|
+
version = "0.2.171"
|
|
465
590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
-
checksum = "
|
|
591
|
+
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
|
|
467
592
|
|
|
468
593
|
[[package]]
|
|
469
594
|
name = "libloading"
|
|
470
|
-
version = "0.8.
|
|
595
|
+
version = "0.8.6"
|
|
471
596
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
-
checksum = "
|
|
597
|
+
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
|
473
598
|
dependencies = [
|
|
474
599
|
"cfg-if",
|
|
475
|
-
"windows-targets",
|
|
600
|
+
"windows-targets 0.52.6",
|
|
476
601
|
]
|
|
477
602
|
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "litemap"
|
|
605
|
+
version = "0.7.5"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
|
|
608
|
+
|
|
478
609
|
[[package]]
|
|
479
610
|
name = "lock_api"
|
|
480
611
|
version = "0.4.12"
|
|
@@ -487,15 +618,15 @@ dependencies = [
|
|
|
487
618
|
|
|
488
619
|
[[package]]
|
|
489
620
|
name = "log"
|
|
490
|
-
version = "0.4.
|
|
621
|
+
version = "0.4.27"
|
|
491
622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
-
checksum = "
|
|
623
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
493
624
|
|
|
494
625
|
[[package]]
|
|
495
626
|
name = "magnus"
|
|
496
|
-
version = "0.
|
|
627
|
+
version = "0.8.2"
|
|
497
628
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
-
checksum = "
|
|
629
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
499
630
|
dependencies = [
|
|
500
631
|
"magnus-macros",
|
|
501
632
|
"rb-sys",
|
|
@@ -505,9 +636,9 @@ dependencies = [
|
|
|
505
636
|
|
|
506
637
|
[[package]]
|
|
507
638
|
name = "magnus-macros"
|
|
508
|
-
version = "0.
|
|
639
|
+
version = "0.8.0"
|
|
509
640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
|
-
checksum = "
|
|
641
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
511
642
|
dependencies = [
|
|
512
643
|
"proc-macro2",
|
|
513
644
|
"quote",
|
|
@@ -534,20 +665,19 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
534
665
|
|
|
535
666
|
[[package]]
|
|
536
667
|
name = "miniz_oxide"
|
|
537
|
-
version = "0.8.
|
|
668
|
+
version = "0.8.8"
|
|
538
669
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
-
checksum = "
|
|
670
|
+
checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
|
|
540
671
|
dependencies = [
|
|
541
672
|
"adler2",
|
|
542
673
|
]
|
|
543
674
|
|
|
544
675
|
[[package]]
|
|
545
676
|
name = "mio"
|
|
546
|
-
version = "1.0.
|
|
677
|
+
version = "1.0.3"
|
|
547
678
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
-
checksum = "
|
|
679
|
+
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
|
549
680
|
dependencies = [
|
|
550
|
-
"hermit-abi",
|
|
551
681
|
"libc",
|
|
552
682
|
"wasi",
|
|
553
683
|
"windows-sys",
|
|
@@ -602,12 +732,6 @@ dependencies = [
|
|
|
602
732
|
"num-traits",
|
|
603
733
|
]
|
|
604
734
|
|
|
605
|
-
[[package]]
|
|
606
|
-
name = "num-conv"
|
|
607
|
-
version = "0.1.0"
|
|
608
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
609
|
-
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
610
|
-
|
|
611
735
|
[[package]]
|
|
612
736
|
name = "num-integer"
|
|
613
737
|
version = "0.1.46"
|
|
@@ -650,24 +774,24 @@ dependencies = [
|
|
|
650
774
|
|
|
651
775
|
[[package]]
|
|
652
776
|
name = "object"
|
|
653
|
-
version = "0.36.
|
|
777
|
+
version = "0.36.7"
|
|
654
778
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
-
checksum = "
|
|
779
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
656
780
|
dependencies = [
|
|
657
781
|
"memchr",
|
|
658
782
|
]
|
|
659
783
|
|
|
660
784
|
[[package]]
|
|
661
785
|
name = "once_cell"
|
|
662
|
-
version = "1.
|
|
786
|
+
version = "1.21.3"
|
|
663
787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
-
checksum = "
|
|
788
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
665
789
|
|
|
666
790
|
[[package]]
|
|
667
791
|
name = "outref"
|
|
668
|
-
version = "0.5.
|
|
792
|
+
version = "0.5.2"
|
|
669
793
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
-
checksum = "
|
|
794
|
+
checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
|
|
671
795
|
|
|
672
796
|
[[package]]
|
|
673
797
|
name = "parking_lot"
|
|
@@ -689,7 +813,7 @@ dependencies = [
|
|
|
689
813
|
"libc",
|
|
690
814
|
"redox_syscall",
|
|
691
815
|
"smallvec",
|
|
692
|
-
"windows-targets",
|
|
816
|
+
"windows-targets 0.52.6",
|
|
693
817
|
]
|
|
694
818
|
|
|
695
819
|
[[package]]
|
|
@@ -698,31 +822,11 @@ version = "2.3.1"
|
|
|
698
822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
823
|
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
700
824
|
|
|
701
|
-
[[package]]
|
|
702
|
-
name = "pin-project"
|
|
703
|
-
version = "1.1.5"
|
|
704
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
-
checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
|
|
706
|
-
dependencies = [
|
|
707
|
-
"pin-project-internal",
|
|
708
|
-
]
|
|
709
|
-
|
|
710
|
-
[[package]]
|
|
711
|
-
name = "pin-project-internal"
|
|
712
|
-
version = "1.1.5"
|
|
713
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
714
|
-
checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
|
|
715
|
-
dependencies = [
|
|
716
|
-
"proc-macro2",
|
|
717
|
-
"quote",
|
|
718
|
-
"syn",
|
|
719
|
-
]
|
|
720
|
-
|
|
721
825
|
[[package]]
|
|
722
826
|
name = "pin-project-lite"
|
|
723
|
-
version = "0.2.
|
|
827
|
+
version = "0.2.16"
|
|
724
828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
-
checksum = "
|
|
829
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
726
830
|
|
|
727
831
|
[[package]]
|
|
728
832
|
name = "pin-utils"
|
|
@@ -730,44 +834,38 @@ version = "0.1.0"
|
|
|
730
834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
835
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
732
836
|
|
|
733
|
-
[[package]]
|
|
734
|
-
name = "powerfmt"
|
|
735
|
-
version = "0.2.0"
|
|
736
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
737
|
-
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
738
|
-
|
|
739
837
|
[[package]]
|
|
740
838
|
name = "proc-macro2"
|
|
741
|
-
version = "1.0.
|
|
839
|
+
version = "1.0.94"
|
|
742
840
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
743
|
-
checksum = "
|
|
841
|
+
checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
|
|
744
842
|
dependencies = [
|
|
745
843
|
"unicode-ident",
|
|
746
844
|
]
|
|
747
845
|
|
|
748
846
|
[[package]]
|
|
749
847
|
name = "quote"
|
|
750
|
-
version = "1.0.
|
|
848
|
+
version = "1.0.40"
|
|
751
849
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
-
checksum = "
|
|
850
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
753
851
|
dependencies = [
|
|
754
852
|
"proc-macro2",
|
|
755
853
|
]
|
|
756
854
|
|
|
757
855
|
[[package]]
|
|
758
856
|
name = "rb-sys"
|
|
759
|
-
version = "0.9.
|
|
857
|
+
version = "0.9.128"
|
|
760
858
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
-
checksum = "
|
|
859
|
+
checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
|
|
762
860
|
dependencies = [
|
|
763
861
|
"rb-sys-build",
|
|
764
862
|
]
|
|
765
863
|
|
|
766
864
|
[[package]]
|
|
767
865
|
name = "rb-sys-build"
|
|
768
|
-
version = "0.9.
|
|
866
|
+
version = "0.9.128"
|
|
769
867
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
|
-
checksum = "
|
|
868
|
+
checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
|
|
771
869
|
dependencies = [
|
|
772
870
|
"bindgen",
|
|
773
871
|
"lazy_static",
|
|
@@ -780,24 +878,58 @@ dependencies = [
|
|
|
780
878
|
|
|
781
879
|
[[package]]
|
|
782
880
|
name = "rb-sys-env"
|
|
783
|
-
version = "0.
|
|
881
|
+
version = "0.2.3"
|
|
784
882
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
-
checksum = "
|
|
883
|
+
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
786
884
|
|
|
787
885
|
[[package]]
|
|
788
886
|
name = "redox_syscall"
|
|
789
|
-
version = "0.5.
|
|
887
|
+
version = "0.5.11"
|
|
790
888
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
791
|
-
checksum = "
|
|
889
|
+
checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
|
|
792
890
|
dependencies = [
|
|
793
891
|
"bitflags",
|
|
794
892
|
]
|
|
795
893
|
|
|
894
|
+
[[package]]
|
|
895
|
+
name = "ref-cast"
|
|
896
|
+
version = "1.0.24"
|
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
+
checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf"
|
|
899
|
+
dependencies = [
|
|
900
|
+
"ref-cast-impl",
|
|
901
|
+
]
|
|
902
|
+
|
|
903
|
+
[[package]]
|
|
904
|
+
name = "ref-cast-impl"
|
|
905
|
+
version = "1.0.24"
|
|
906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
+
checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
|
|
908
|
+
dependencies = [
|
|
909
|
+
"proc-macro2",
|
|
910
|
+
"quote",
|
|
911
|
+
"syn",
|
|
912
|
+
]
|
|
913
|
+
|
|
914
|
+
[[package]]
|
|
915
|
+
name = "referencing"
|
|
916
|
+
version = "0.32.1"
|
|
917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
918
|
+
checksum = "7a3d769362109497b240e66462606bc28af68116436c8669bac17069533b908e"
|
|
919
|
+
dependencies = [
|
|
920
|
+
"ahash",
|
|
921
|
+
"fluent-uri",
|
|
922
|
+
"once_cell",
|
|
923
|
+
"parking_lot",
|
|
924
|
+
"percent-encoding",
|
|
925
|
+
"serde_json",
|
|
926
|
+
]
|
|
927
|
+
|
|
796
928
|
[[package]]
|
|
797
929
|
name = "regex"
|
|
798
|
-
version = "1.
|
|
930
|
+
version = "1.11.1"
|
|
799
931
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
800
|
-
checksum = "
|
|
932
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
|
801
933
|
dependencies = [
|
|
802
934
|
"aho-corasick",
|
|
803
935
|
"memchr",
|
|
@@ -807,9 +939,9 @@ dependencies = [
|
|
|
807
939
|
|
|
808
940
|
[[package]]
|
|
809
941
|
name = "regex-automata"
|
|
810
|
-
version = "0.4.
|
|
942
|
+
version = "0.4.9"
|
|
811
943
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
-
checksum = "
|
|
944
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
813
945
|
dependencies = [
|
|
814
946
|
"aho-corasick",
|
|
815
947
|
"memchr",
|
|
@@ -818,15 +950,15 @@ dependencies = [
|
|
|
818
950
|
|
|
819
951
|
[[package]]
|
|
820
952
|
name = "regex-syntax"
|
|
821
|
-
version = "0.8.
|
|
953
|
+
version = "0.8.5"
|
|
822
954
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
-
checksum = "
|
|
955
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
824
956
|
|
|
825
957
|
[[package]]
|
|
826
958
|
name = "reqwest"
|
|
827
|
-
version = "0.12.
|
|
959
|
+
version = "0.12.15"
|
|
828
960
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
829
|
-
checksum = "
|
|
961
|
+
checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
|
|
830
962
|
dependencies = [
|
|
831
963
|
"base64",
|
|
832
964
|
"bytes",
|
|
@@ -850,6 +982,7 @@ dependencies = [
|
|
|
850
982
|
"serde_urlencoded",
|
|
851
983
|
"sync_wrapper",
|
|
852
984
|
"tokio",
|
|
985
|
+
"tower",
|
|
853
986
|
"tower-service",
|
|
854
987
|
"url",
|
|
855
988
|
"wasm-bindgen",
|
|
@@ -876,15 +1009,21 @@ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
|
876
1009
|
|
|
877
1010
|
[[package]]
|
|
878
1011
|
name = "rustc-hash"
|
|
879
|
-
version = "
|
|
1012
|
+
version = "2.1.3"
|
|
880
1013
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
881
|
-
checksum = "
|
|
1014
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
1015
|
+
|
|
1016
|
+
[[package]]
|
|
1017
|
+
name = "rustversion"
|
|
1018
|
+
version = "1.0.20"
|
|
1019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1020
|
+
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
|
882
1021
|
|
|
883
1022
|
[[package]]
|
|
884
1023
|
name = "ryu"
|
|
885
|
-
version = "1.0.
|
|
1024
|
+
version = "1.0.20"
|
|
886
1025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
-
checksum = "
|
|
1026
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
888
1027
|
|
|
889
1028
|
[[package]]
|
|
890
1029
|
name = "scopeguard"
|
|
@@ -894,24 +1033,24 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
894
1033
|
|
|
895
1034
|
[[package]]
|
|
896
1035
|
name = "seq-macro"
|
|
897
|
-
version = "0.3.
|
|
1036
|
+
version = "0.3.6"
|
|
898
1037
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
-
checksum = "
|
|
1038
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
900
1039
|
|
|
901
1040
|
[[package]]
|
|
902
1041
|
name = "serde"
|
|
903
|
-
version = "1.0.
|
|
1042
|
+
version = "1.0.219"
|
|
904
1043
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
-
checksum = "
|
|
1044
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
906
1045
|
dependencies = [
|
|
907
1046
|
"serde_derive",
|
|
908
1047
|
]
|
|
909
1048
|
|
|
910
1049
|
[[package]]
|
|
911
1050
|
name = "serde_derive"
|
|
912
|
-
version = "1.0.
|
|
1051
|
+
version = "1.0.219"
|
|
913
1052
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
-
checksum = "
|
|
1053
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
915
1054
|
dependencies = [
|
|
916
1055
|
"proc-macro2",
|
|
917
1056
|
"quote",
|
|
@@ -920,9 +1059,9 @@ dependencies = [
|
|
|
920
1059
|
|
|
921
1060
|
[[package]]
|
|
922
1061
|
name = "serde_json"
|
|
923
|
-
version = "1.0.
|
|
1062
|
+
version = "1.0.140"
|
|
924
1063
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
|
-
checksum = "
|
|
1064
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
|
926
1065
|
dependencies = [
|
|
927
1066
|
"itoa",
|
|
928
1067
|
"memchr",
|
|
@@ -965,25 +1104,31 @@ dependencies = [
|
|
|
965
1104
|
|
|
966
1105
|
[[package]]
|
|
967
1106
|
name = "smallvec"
|
|
968
|
-
version = "1.
|
|
1107
|
+
version = "1.15.0"
|
|
969
1108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
970
|
-
checksum = "
|
|
1109
|
+
checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
|
971
1110
|
|
|
972
1111
|
[[package]]
|
|
973
1112
|
name = "socket2"
|
|
974
|
-
version = "0.5.
|
|
1113
|
+
version = "0.5.9"
|
|
975
1114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
976
|
-
checksum = "
|
|
1115
|
+
checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
|
|
977
1116
|
dependencies = [
|
|
978
1117
|
"libc",
|
|
979
1118
|
"windows-sys",
|
|
980
1119
|
]
|
|
981
1120
|
|
|
1121
|
+
[[package]]
|
|
1122
|
+
name = "stable_deref_trait"
|
|
1123
|
+
version = "1.2.0"
|
|
1124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1125
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
1126
|
+
|
|
982
1127
|
[[package]]
|
|
983
1128
|
name = "syn"
|
|
984
|
-
version = "2.0.
|
|
1129
|
+
version = "2.0.100"
|
|
985
1130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
986
|
-
checksum = "
|
|
1131
|
+
checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
|
|
987
1132
|
dependencies = [
|
|
988
1133
|
"proc-macro2",
|
|
989
1134
|
"quote",
|
|
@@ -992,63 +1137,39 @@ dependencies = [
|
|
|
992
1137
|
|
|
993
1138
|
[[package]]
|
|
994
1139
|
name = "sync_wrapper"
|
|
995
|
-
version = "1.0.
|
|
1140
|
+
version = "1.0.2"
|
|
996
1141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
-
checksum = "
|
|
1142
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
998
1143
|
dependencies = [
|
|
999
1144
|
"futures-core",
|
|
1000
1145
|
]
|
|
1001
1146
|
|
|
1002
1147
|
[[package]]
|
|
1003
|
-
name = "
|
|
1004
|
-
version = "0.
|
|
1148
|
+
name = "synstructure"
|
|
1149
|
+
version = "0.13.1"
|
|
1005
1150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
-
checksum = "
|
|
1151
|
+
checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
1007
1152
|
dependencies = [
|
|
1008
|
-
"
|
|
1009
|
-
"
|
|
1010
|
-
"
|
|
1011
|
-
"serde",
|
|
1012
|
-
"time-core",
|
|
1013
|
-
"time-macros",
|
|
1014
|
-
]
|
|
1015
|
-
|
|
1016
|
-
[[package]]
|
|
1017
|
-
name = "time-core"
|
|
1018
|
-
version = "0.1.2"
|
|
1019
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1020
|
-
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
|
1021
|
-
|
|
1022
|
-
[[package]]
|
|
1023
|
-
name = "time-macros"
|
|
1024
|
-
version = "0.2.18"
|
|
1025
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1026
|
-
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
|
|
1027
|
-
dependencies = [
|
|
1028
|
-
"num-conv",
|
|
1029
|
-
"time-core",
|
|
1153
|
+
"proc-macro2",
|
|
1154
|
+
"quote",
|
|
1155
|
+
"syn",
|
|
1030
1156
|
]
|
|
1031
1157
|
|
|
1032
1158
|
[[package]]
|
|
1033
|
-
name = "
|
|
1034
|
-
version = "
|
|
1159
|
+
name = "tinystr"
|
|
1160
|
+
version = "0.7.6"
|
|
1035
1161
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
-
checksum = "
|
|
1162
|
+
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
|
|
1037
1163
|
dependencies = [
|
|
1038
|
-
"
|
|
1164
|
+
"displaydoc",
|
|
1165
|
+
"zerovec",
|
|
1039
1166
|
]
|
|
1040
1167
|
|
|
1041
|
-
[[package]]
|
|
1042
|
-
name = "tinyvec_macros"
|
|
1043
|
-
version = "0.1.1"
|
|
1044
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
-
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1046
|
-
|
|
1047
1168
|
[[package]]
|
|
1048
1169
|
name = "tokio"
|
|
1049
|
-
version = "1.
|
|
1170
|
+
version = "1.44.2"
|
|
1050
1171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
-
checksum = "
|
|
1172
|
+
checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
|
|
1052
1173
|
dependencies = [
|
|
1053
1174
|
"backtrace",
|
|
1054
1175
|
"libc",
|
|
@@ -1060,14 +1181,14 @@ dependencies = [
|
|
|
1060
1181
|
|
|
1061
1182
|
[[package]]
|
|
1062
1183
|
name = "tower"
|
|
1063
|
-
version = "0.
|
|
1184
|
+
version = "0.5.2"
|
|
1064
1185
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1065
|
-
checksum = "
|
|
1186
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
|
1066
1187
|
dependencies = [
|
|
1067
1188
|
"futures-core",
|
|
1068
1189
|
"futures-util",
|
|
1069
|
-
"pin-project",
|
|
1070
1190
|
"pin-project-lite",
|
|
1191
|
+
"sync_wrapper",
|
|
1071
1192
|
"tokio",
|
|
1072
1193
|
"tower-layer",
|
|
1073
1194
|
"tower-service",
|
|
@@ -1087,9 +1208,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
|
1087
1208
|
|
|
1088
1209
|
[[package]]
|
|
1089
1210
|
name = "tracing"
|
|
1090
|
-
version = "0.1.
|
|
1211
|
+
version = "0.1.41"
|
|
1091
1212
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1092
|
-
checksum = "
|
|
1213
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
1093
1214
|
dependencies = [
|
|
1094
1215
|
"pin-project-lite",
|
|
1095
1216
|
"tracing-core",
|
|
@@ -1097,9 +1218,9 @@ dependencies = [
|
|
|
1097
1218
|
|
|
1098
1219
|
[[package]]
|
|
1099
1220
|
name = "tracing-core"
|
|
1100
|
-
version = "0.1.
|
|
1221
|
+
version = "0.1.33"
|
|
1101
1222
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1102
|
-
checksum = "
|
|
1223
|
+
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
|
1103
1224
|
dependencies = [
|
|
1104
1225
|
"once_cell",
|
|
1105
1226
|
]
|
|
@@ -1110,43 +1231,40 @@ version = "0.2.5"
|
|
|
1110
1231
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
1232
|
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
1112
1233
|
|
|
1113
|
-
[[package]]
|
|
1114
|
-
name = "unicode-bidi"
|
|
1115
|
-
version = "0.3.15"
|
|
1116
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1117
|
-
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
|
|
1118
|
-
|
|
1119
1234
|
[[package]]
|
|
1120
1235
|
name = "unicode-ident"
|
|
1121
|
-
version = "1.0.
|
|
1236
|
+
version = "1.0.18"
|
|
1122
1237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1123
|
-
checksum = "
|
|
1124
|
-
|
|
1125
|
-
[[package]]
|
|
1126
|
-
name = "unicode-normalization"
|
|
1127
|
-
version = "0.1.23"
|
|
1128
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1129
|
-
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
|
|
1130
|
-
dependencies = [
|
|
1131
|
-
"tinyvec",
|
|
1132
|
-
]
|
|
1238
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
1133
1239
|
|
|
1134
1240
|
[[package]]
|
|
1135
1241
|
name = "url"
|
|
1136
|
-
version = "2.5.
|
|
1242
|
+
version = "2.5.4"
|
|
1137
1243
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
-
checksum = "
|
|
1244
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
|
1139
1245
|
dependencies = [
|
|
1140
1246
|
"form_urlencoded",
|
|
1141
1247
|
"idna",
|
|
1142
1248
|
"percent-encoding",
|
|
1143
1249
|
]
|
|
1144
1250
|
|
|
1251
|
+
[[package]]
|
|
1252
|
+
name = "utf16_iter"
|
|
1253
|
+
version = "1.0.5"
|
|
1254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1255
|
+
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
|
1256
|
+
|
|
1257
|
+
[[package]]
|
|
1258
|
+
name = "utf8_iter"
|
|
1259
|
+
version = "1.0.4"
|
|
1260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1261
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1262
|
+
|
|
1145
1263
|
[[package]]
|
|
1146
1264
|
name = "uuid"
|
|
1147
|
-
version = "1.
|
|
1265
|
+
version = "1.16.0"
|
|
1148
1266
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
-
checksum = "
|
|
1267
|
+
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
|
|
1150
1268
|
|
|
1151
1269
|
[[package]]
|
|
1152
1270
|
name = "uuid-simd"
|
|
@@ -1188,24 +1306,24 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
1188
1306
|
|
|
1189
1307
|
[[package]]
|
|
1190
1308
|
name = "wasm-bindgen"
|
|
1191
|
-
version = "0.2.
|
|
1309
|
+
version = "0.2.100"
|
|
1192
1310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1193
|
-
checksum = "
|
|
1311
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
1194
1312
|
dependencies = [
|
|
1195
1313
|
"cfg-if",
|
|
1196
1314
|
"once_cell",
|
|
1315
|
+
"rustversion",
|
|
1197
1316
|
"wasm-bindgen-macro",
|
|
1198
1317
|
]
|
|
1199
1318
|
|
|
1200
1319
|
[[package]]
|
|
1201
1320
|
name = "wasm-bindgen-backend"
|
|
1202
|
-
version = "0.2.
|
|
1321
|
+
version = "0.2.100"
|
|
1203
1322
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1204
|
-
checksum = "
|
|
1323
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
1205
1324
|
dependencies = [
|
|
1206
1325
|
"bumpalo",
|
|
1207
1326
|
"log",
|
|
1208
|
-
"once_cell",
|
|
1209
1327
|
"proc-macro2",
|
|
1210
1328
|
"quote",
|
|
1211
1329
|
"syn",
|
|
@@ -1214,21 +1332,22 @@ dependencies = [
|
|
|
1214
1332
|
|
|
1215
1333
|
[[package]]
|
|
1216
1334
|
name = "wasm-bindgen-futures"
|
|
1217
|
-
version = "0.4.
|
|
1335
|
+
version = "0.4.50"
|
|
1218
1336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1219
|
-
checksum = "
|
|
1337
|
+
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
|
|
1220
1338
|
dependencies = [
|
|
1221
1339
|
"cfg-if",
|
|
1222
1340
|
"js-sys",
|
|
1341
|
+
"once_cell",
|
|
1223
1342
|
"wasm-bindgen",
|
|
1224
1343
|
"web-sys",
|
|
1225
1344
|
]
|
|
1226
1345
|
|
|
1227
1346
|
[[package]]
|
|
1228
1347
|
name = "wasm-bindgen-macro"
|
|
1229
|
-
version = "0.2.
|
|
1348
|
+
version = "0.2.100"
|
|
1230
1349
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1231
|
-
checksum = "
|
|
1350
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
|
1232
1351
|
dependencies = [
|
|
1233
1352
|
"quote",
|
|
1234
1353
|
"wasm-bindgen-macro-support",
|
|
@@ -1236,9 +1355,9 @@ dependencies = [
|
|
|
1236
1355
|
|
|
1237
1356
|
[[package]]
|
|
1238
1357
|
name = "wasm-bindgen-macro-support"
|
|
1239
|
-
version = "0.2.
|
|
1358
|
+
version = "0.2.100"
|
|
1240
1359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1241
|
-
checksum = "
|
|
1360
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
1242
1361
|
dependencies = [
|
|
1243
1362
|
"proc-macro2",
|
|
1244
1363
|
"quote",
|
|
@@ -1249,48 +1368,56 @@ dependencies = [
|
|
|
1249
1368
|
|
|
1250
1369
|
[[package]]
|
|
1251
1370
|
name = "wasm-bindgen-shared"
|
|
1252
|
-
version = "0.2.
|
|
1371
|
+
version = "0.2.100"
|
|
1253
1372
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1254
|
-
checksum = "
|
|
1373
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
1374
|
+
dependencies = [
|
|
1375
|
+
"unicode-ident",
|
|
1376
|
+
]
|
|
1255
1377
|
|
|
1256
1378
|
[[package]]
|
|
1257
1379
|
name = "web-sys"
|
|
1258
|
-
version = "0.3.
|
|
1380
|
+
version = "0.3.77"
|
|
1259
1381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1260
|
-
checksum = "
|
|
1382
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
|
1261
1383
|
dependencies = [
|
|
1262
1384
|
"js-sys",
|
|
1263
1385
|
"wasm-bindgen",
|
|
1264
1386
|
]
|
|
1265
1387
|
|
|
1388
|
+
[[package]]
|
|
1389
|
+
name = "windows-link"
|
|
1390
|
+
version = "0.1.1"
|
|
1391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1392
|
+
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
|
1393
|
+
|
|
1266
1394
|
[[package]]
|
|
1267
1395
|
name = "windows-registry"
|
|
1268
|
-
version = "0.
|
|
1396
|
+
version = "0.4.0"
|
|
1269
1397
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1270
|
-
checksum = "
|
|
1398
|
+
checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
|
|
1271
1399
|
dependencies = [
|
|
1272
1400
|
"windows-result",
|
|
1273
1401
|
"windows-strings",
|
|
1274
|
-
"windows-targets",
|
|
1402
|
+
"windows-targets 0.53.0",
|
|
1275
1403
|
]
|
|
1276
1404
|
|
|
1277
1405
|
[[package]]
|
|
1278
1406
|
name = "windows-result"
|
|
1279
|
-
version = "0.2
|
|
1407
|
+
version = "0.3.2"
|
|
1280
1408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1281
|
-
checksum = "
|
|
1409
|
+
checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
|
|
1282
1410
|
dependencies = [
|
|
1283
|
-
"windows-
|
|
1411
|
+
"windows-link",
|
|
1284
1412
|
]
|
|
1285
1413
|
|
|
1286
1414
|
[[package]]
|
|
1287
1415
|
name = "windows-strings"
|
|
1288
|
-
version = "0.1
|
|
1416
|
+
version = "0.3.1"
|
|
1289
1417
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1290
|
-
checksum = "
|
|
1418
|
+
checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
|
|
1291
1419
|
dependencies = [
|
|
1292
|
-
"windows-
|
|
1293
|
-
"windows-targets",
|
|
1420
|
+
"windows-link",
|
|
1294
1421
|
]
|
|
1295
1422
|
|
|
1296
1423
|
[[package]]
|
|
@@ -1299,7 +1426,7 @@ version = "0.52.0"
|
|
|
1299
1426
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1300
1427
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
1301
1428
|
dependencies = [
|
|
1302
|
-
"windows-targets",
|
|
1429
|
+
"windows-targets 0.52.6",
|
|
1303
1430
|
]
|
|
1304
1431
|
|
|
1305
1432
|
[[package]]
|
|
@@ -1308,14 +1435,30 @@ version = "0.52.6"
|
|
|
1308
1435
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
1436
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1310
1437
|
dependencies = [
|
|
1311
|
-
"windows_aarch64_gnullvm",
|
|
1312
|
-
"windows_aarch64_msvc",
|
|
1313
|
-
"windows_i686_gnu",
|
|
1314
|
-
"windows_i686_gnullvm",
|
|
1315
|
-
"windows_i686_msvc",
|
|
1316
|
-
"windows_x86_64_gnu",
|
|
1317
|
-
"windows_x86_64_gnullvm",
|
|
1318
|
-
"windows_x86_64_msvc",
|
|
1438
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
1439
|
+
"windows_aarch64_msvc 0.52.6",
|
|
1440
|
+
"windows_i686_gnu 0.52.6",
|
|
1441
|
+
"windows_i686_gnullvm 0.52.6",
|
|
1442
|
+
"windows_i686_msvc 0.52.6",
|
|
1443
|
+
"windows_x86_64_gnu 0.52.6",
|
|
1444
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
1445
|
+
"windows_x86_64_msvc 0.52.6",
|
|
1446
|
+
]
|
|
1447
|
+
|
|
1448
|
+
[[package]]
|
|
1449
|
+
name = "windows-targets"
|
|
1450
|
+
version = "0.53.0"
|
|
1451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1452
|
+
checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
|
|
1453
|
+
dependencies = [
|
|
1454
|
+
"windows_aarch64_gnullvm 0.53.0",
|
|
1455
|
+
"windows_aarch64_msvc 0.53.0",
|
|
1456
|
+
"windows_i686_gnu 0.53.0",
|
|
1457
|
+
"windows_i686_gnullvm 0.53.0",
|
|
1458
|
+
"windows_i686_msvc 0.53.0",
|
|
1459
|
+
"windows_x86_64_gnu 0.53.0",
|
|
1460
|
+
"windows_x86_64_gnullvm 0.53.0",
|
|
1461
|
+
"windows_x86_64_msvc 0.53.0",
|
|
1319
1462
|
]
|
|
1320
1463
|
|
|
1321
1464
|
[[package]]
|
|
@@ -1324,48 +1467,132 @@ version = "0.52.6"
|
|
|
1324
1467
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1325
1468
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1326
1469
|
|
|
1470
|
+
[[package]]
|
|
1471
|
+
name = "windows_aarch64_gnullvm"
|
|
1472
|
+
version = "0.53.0"
|
|
1473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1474
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
1475
|
+
|
|
1327
1476
|
[[package]]
|
|
1328
1477
|
name = "windows_aarch64_msvc"
|
|
1329
1478
|
version = "0.52.6"
|
|
1330
1479
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1331
1480
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1332
1481
|
|
|
1482
|
+
[[package]]
|
|
1483
|
+
name = "windows_aarch64_msvc"
|
|
1484
|
+
version = "0.53.0"
|
|
1485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
1487
|
+
|
|
1333
1488
|
[[package]]
|
|
1334
1489
|
name = "windows_i686_gnu"
|
|
1335
1490
|
version = "0.52.6"
|
|
1336
1491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1337
1492
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1338
1493
|
|
|
1494
|
+
[[package]]
|
|
1495
|
+
name = "windows_i686_gnu"
|
|
1496
|
+
version = "0.53.0"
|
|
1497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1498
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
|
1499
|
+
|
|
1339
1500
|
[[package]]
|
|
1340
1501
|
name = "windows_i686_gnullvm"
|
|
1341
1502
|
version = "0.52.6"
|
|
1342
1503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1343
1504
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1344
1505
|
|
|
1506
|
+
[[package]]
|
|
1507
|
+
name = "windows_i686_gnullvm"
|
|
1508
|
+
version = "0.53.0"
|
|
1509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1510
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
1511
|
+
|
|
1345
1512
|
[[package]]
|
|
1346
1513
|
name = "windows_i686_msvc"
|
|
1347
1514
|
version = "0.52.6"
|
|
1348
1515
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1349
1516
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1350
1517
|
|
|
1518
|
+
[[package]]
|
|
1519
|
+
name = "windows_i686_msvc"
|
|
1520
|
+
version = "0.53.0"
|
|
1521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1522
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
1523
|
+
|
|
1351
1524
|
[[package]]
|
|
1352
1525
|
name = "windows_x86_64_gnu"
|
|
1353
1526
|
version = "0.52.6"
|
|
1354
1527
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1355
1528
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1356
1529
|
|
|
1530
|
+
[[package]]
|
|
1531
|
+
name = "windows_x86_64_gnu"
|
|
1532
|
+
version = "0.53.0"
|
|
1533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1534
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
1535
|
+
|
|
1357
1536
|
[[package]]
|
|
1358
1537
|
name = "windows_x86_64_gnullvm"
|
|
1359
1538
|
version = "0.52.6"
|
|
1360
1539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1361
1540
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1362
1541
|
|
|
1542
|
+
[[package]]
|
|
1543
|
+
name = "windows_x86_64_gnullvm"
|
|
1544
|
+
version = "0.53.0"
|
|
1545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1546
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
1547
|
+
|
|
1363
1548
|
[[package]]
|
|
1364
1549
|
name = "windows_x86_64_msvc"
|
|
1365
1550
|
version = "0.52.6"
|
|
1366
1551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1367
1552
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1368
1553
|
|
|
1554
|
+
[[package]]
|
|
1555
|
+
name = "windows_x86_64_msvc"
|
|
1556
|
+
version = "0.53.0"
|
|
1557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1558
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
1559
|
+
|
|
1560
|
+
[[package]]
|
|
1561
|
+
name = "write16"
|
|
1562
|
+
version = "1.0.0"
|
|
1563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1564
|
+
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
|
1565
|
+
|
|
1566
|
+
[[package]]
|
|
1567
|
+
name = "writeable"
|
|
1568
|
+
version = "0.5.5"
|
|
1569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1570
|
+
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
|
1571
|
+
|
|
1572
|
+
[[package]]
|
|
1573
|
+
name = "yoke"
|
|
1574
|
+
version = "0.7.5"
|
|
1575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1576
|
+
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
|
1577
|
+
dependencies = [
|
|
1578
|
+
"serde",
|
|
1579
|
+
"stable_deref_trait",
|
|
1580
|
+
"yoke-derive",
|
|
1581
|
+
"zerofrom",
|
|
1582
|
+
]
|
|
1583
|
+
|
|
1584
|
+
[[package]]
|
|
1585
|
+
name = "yoke-derive"
|
|
1586
|
+
version = "0.7.5"
|
|
1587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
|
+
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
1589
|
+
dependencies = [
|
|
1590
|
+
"proc-macro2",
|
|
1591
|
+
"quote",
|
|
1592
|
+
"syn",
|
|
1593
|
+
"synstructure",
|
|
1594
|
+
]
|
|
1595
|
+
|
|
1369
1596
|
[[package]]
|
|
1370
1597
|
name = "zerocopy"
|
|
1371
1598
|
version = "0.7.35"
|
|
@@ -1385,3 +1612,46 @@ dependencies = [
|
|
|
1385
1612
|
"quote",
|
|
1386
1613
|
"syn",
|
|
1387
1614
|
]
|
|
1615
|
+
|
|
1616
|
+
[[package]]
|
|
1617
|
+
name = "zerofrom"
|
|
1618
|
+
version = "0.1.6"
|
|
1619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1620
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
1621
|
+
dependencies = [
|
|
1622
|
+
"zerofrom-derive",
|
|
1623
|
+
]
|
|
1624
|
+
|
|
1625
|
+
[[package]]
|
|
1626
|
+
name = "zerofrom-derive"
|
|
1627
|
+
version = "0.1.6"
|
|
1628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1629
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
1630
|
+
dependencies = [
|
|
1631
|
+
"proc-macro2",
|
|
1632
|
+
"quote",
|
|
1633
|
+
"syn",
|
|
1634
|
+
"synstructure",
|
|
1635
|
+
]
|
|
1636
|
+
|
|
1637
|
+
[[package]]
|
|
1638
|
+
name = "zerovec"
|
|
1639
|
+
version = "0.10.4"
|
|
1640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1641
|
+
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
|
1642
|
+
dependencies = [
|
|
1643
|
+
"yoke",
|
|
1644
|
+
"zerofrom",
|
|
1645
|
+
"zerovec-derive",
|
|
1646
|
+
]
|
|
1647
|
+
|
|
1648
|
+
[[package]]
|
|
1649
|
+
name = "zerovec-derive"
|
|
1650
|
+
version = "0.10.3"
|
|
1651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1652
|
+
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
1653
|
+
dependencies = [
|
|
1654
|
+
"proc-macro2",
|
|
1655
|
+
"quote",
|
|
1656
|
+
"syn",
|
|
1657
|
+
]
|