rust_json_schema 0.2.0 → 0.4.1
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/Cargo.lock +642 -849
- data/README.md +10 -8
- data/ext/rust_json_schema/Cargo.toml +2 -3
- data/ext/rust_json_schema/src/lib.rs +12 -42
- data/lib/rust_json_schema/version.rb +1 -1
- metadata +7 -10
data/Cargo.lock
CHANGED
@@ -1,27 +1,27 @@
|
|
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.
|
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
|
]
|
13
13
|
|
14
14
|
[[package]]
|
15
|
-
name = "
|
16
|
-
version = "
|
15
|
+
name = "adler2"
|
16
|
+
version = "2.0.0"
|
17
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
|
-
checksum = "
|
18
|
+
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
19
19
|
|
20
20
|
[[package]]
|
21
21
|
name = "ahash"
|
22
|
-
version = "0.8.
|
22
|
+
version = "0.8.11"
|
23
23
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
-
checksum = "
|
24
|
+
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
25
25
|
dependencies = [
|
26
26
|
"cfg-if",
|
27
27
|
"getrandom",
|
@@ -33,106 +33,52 @@ dependencies = [
|
|
33
33
|
|
34
34
|
[[package]]
|
35
35
|
name = "aho-corasick"
|
36
|
-
version = "1.1.
|
36
|
+
version = "1.1.3"
|
37
37
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
38
|
-
checksum = "
|
38
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
39
39
|
dependencies = [
|
40
40
|
"memchr",
|
41
41
|
]
|
42
42
|
|
43
|
-
[[package]]
|
44
|
-
name = "anstream"
|
45
|
-
version = "0.6.5"
|
46
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
47
|
-
checksum = "d664a92ecae85fd0a7392615844904654d1d5f5514837f471ddef4a057aba1b6"
|
48
|
-
dependencies = [
|
49
|
-
"anstyle",
|
50
|
-
"anstyle-parse",
|
51
|
-
"anstyle-query",
|
52
|
-
"anstyle-wincon",
|
53
|
-
"colorchoice",
|
54
|
-
"utf8parse",
|
55
|
-
]
|
56
|
-
|
57
|
-
[[package]]
|
58
|
-
name = "anstyle"
|
59
|
-
version = "1.0.4"
|
60
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
61
|
-
checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87"
|
62
|
-
|
63
|
-
[[package]]
|
64
|
-
name = "anstyle-parse"
|
65
|
-
version = "0.2.3"
|
66
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
67
|
-
checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c"
|
68
|
-
dependencies = [
|
69
|
-
"utf8parse",
|
70
|
-
]
|
71
|
-
|
72
|
-
[[package]]
|
73
|
-
name = "anstyle-query"
|
74
|
-
version = "1.0.2"
|
75
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
76
|
-
checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648"
|
77
|
-
dependencies = [
|
78
|
-
"windows-sys 0.52.0",
|
79
|
-
]
|
80
|
-
|
81
|
-
[[package]]
|
82
|
-
name = "anstyle-wincon"
|
83
|
-
version = "3.0.2"
|
84
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
85
|
-
checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7"
|
86
|
-
dependencies = [
|
87
|
-
"anstyle",
|
88
|
-
"windows-sys 0.52.0",
|
89
|
-
]
|
90
|
-
|
91
|
-
[[package]]
|
92
|
-
name = "anyhow"
|
93
|
-
version = "1.0.79"
|
94
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
95
|
-
checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca"
|
96
|
-
|
97
43
|
[[package]]
|
98
44
|
name = "autocfg"
|
99
|
-
version = "1.
|
45
|
+
version = "1.4.0"
|
100
46
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
101
|
-
checksum = "
|
47
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
102
48
|
|
103
49
|
[[package]]
|
104
50
|
name = "backtrace"
|
105
|
-
version = "0.3.
|
51
|
+
version = "0.3.74"
|
106
52
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
107
|
-
checksum = "
|
53
|
+
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
|
108
54
|
dependencies = [
|
109
55
|
"addr2line",
|
110
|
-
"cc",
|
111
56
|
"cfg-if",
|
112
57
|
"libc",
|
113
58
|
"miniz_oxide",
|
114
59
|
"object",
|
115
60
|
"rustc-demangle",
|
61
|
+
"windows-targets 0.52.6",
|
116
62
|
]
|
117
63
|
|
118
64
|
[[package]]
|
119
65
|
name = "base64"
|
120
|
-
version = "0.
|
66
|
+
version = "0.22.1"
|
121
67
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
122
|
-
checksum = "
|
68
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
123
69
|
|
124
70
|
[[package]]
|
125
71
|
name = "bindgen"
|
126
|
-
version = "0.69.
|
72
|
+
version = "0.69.5"
|
127
73
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
128
|
-
checksum = "
|
74
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
129
75
|
dependencies = [
|
130
|
-
"bitflags
|
76
|
+
"bitflags",
|
131
77
|
"cexpr",
|
132
78
|
"clang-sys",
|
79
|
+
"itertools",
|
133
80
|
"lazy_static",
|
134
81
|
"lazycell",
|
135
|
-
"peeking_take_while",
|
136
82
|
"proc-macro2",
|
137
83
|
"quote",
|
138
84
|
"regex",
|
@@ -143,57 +89,48 @@ dependencies = [
|
|
143
89
|
|
144
90
|
[[package]]
|
145
91
|
name = "bit-set"
|
146
|
-
version = "0.
|
92
|
+
version = "0.8.0"
|
147
93
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
148
|
-
checksum = "
|
94
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
149
95
|
dependencies = [
|
150
96
|
"bit-vec",
|
151
97
|
]
|
152
98
|
|
153
99
|
[[package]]
|
154
100
|
name = "bit-vec"
|
155
|
-
version = "0.
|
101
|
+
version = "0.8.0"
|
156
102
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
157
|
-
checksum = "
|
103
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
158
104
|
|
159
105
|
[[package]]
|
160
106
|
name = "bitflags"
|
161
|
-
version = "
|
107
|
+
version = "2.9.0"
|
162
108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
163
|
-
checksum = "
|
109
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
164
110
|
|
165
111
|
[[package]]
|
166
|
-
name = "
|
167
|
-
version = "2.
|
112
|
+
name = "borrow-or-share"
|
113
|
+
version = "0.2.2"
|
168
114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
169
|
-
checksum = "
|
115
|
+
checksum = "3eeab4423108c5d7c744f4d234de88d18d636100093ae04caf4825134b9c3a32"
|
170
116
|
|
171
117
|
[[package]]
|
172
118
|
name = "bumpalo"
|
173
|
-
version = "3.
|
119
|
+
version = "3.17.0"
|
174
120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
175
|
-
checksum = "
|
121
|
+
checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
|
176
122
|
|
177
123
|
[[package]]
|
178
124
|
name = "bytecount"
|
179
|
-
version = "0.6.
|
125
|
+
version = "0.6.8"
|
180
126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
181
|
-
checksum = "
|
127
|
+
checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
|
182
128
|
|
183
129
|
[[package]]
|
184
130
|
name = "bytes"
|
185
|
-
version = "1.
|
186
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
187
|
-
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
|
188
|
-
|
189
|
-
[[package]]
|
190
|
-
name = "cc"
|
191
|
-
version = "1.0.83"
|
131
|
+
version = "1.10.1"
|
192
132
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
193
|
-
checksum = "
|
194
|
-
dependencies = [
|
195
|
-
"libc",
|
196
|
-
]
|
133
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
197
134
|
|
198
135
|
[[package]]
|
199
136
|
name = "cexpr"
|
@@ -212,9 +149,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
212
149
|
|
213
150
|
[[package]]
|
214
151
|
name = "clang-sys"
|
215
|
-
version = "1.
|
152
|
+
version = "1.8.1"
|
216
153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
217
|
-
checksum = "
|
154
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
218
155
|
dependencies = [
|
219
156
|
"glob",
|
220
157
|
"libc",
|
@@ -222,148 +159,58 @@ dependencies = [
|
|
222
159
|
]
|
223
160
|
|
224
161
|
[[package]]
|
225
|
-
name = "
|
226
|
-
version = "
|
227
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
228
|
-
checksum = "c12ed66a79a555082f595f7eb980d08669de95009dd4b3d61168c573ebe38fc9"
|
229
|
-
dependencies = [
|
230
|
-
"clap_builder",
|
231
|
-
"clap_derive",
|
232
|
-
]
|
233
|
-
|
234
|
-
[[package]]
|
235
|
-
name = "clap_builder"
|
236
|
-
version = "4.4.15"
|
237
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
238
|
-
checksum = "0f4645eab3431e5a8403a96bea02506a8b35d28cd0f0330977dd5d22f9c84f43"
|
239
|
-
dependencies = [
|
240
|
-
"anstream",
|
241
|
-
"anstyle",
|
242
|
-
"clap_lex",
|
243
|
-
"strsim",
|
244
|
-
]
|
245
|
-
|
246
|
-
[[package]]
|
247
|
-
name = "clap_derive"
|
248
|
-
version = "4.4.7"
|
162
|
+
name = "displaydoc"
|
163
|
+
version = "0.2.5"
|
249
164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
250
|
-
checksum = "
|
165
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
251
166
|
dependencies = [
|
252
|
-
"heck",
|
253
167
|
"proc-macro2",
|
254
168
|
"quote",
|
255
169
|
"syn",
|
256
170
|
]
|
257
171
|
|
258
172
|
[[package]]
|
259
|
-
name = "
|
260
|
-
version = "
|
173
|
+
name = "either"
|
174
|
+
version = "1.15.0"
|
261
175
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
262
|
-
checksum = "
|
176
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
263
177
|
|
264
178
|
[[package]]
|
265
|
-
name = "
|
266
|
-
version = "
|
179
|
+
name = "email_address"
|
180
|
+
version = "0.2.9"
|
267
181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
268
|
-
checksum = "
|
269
|
-
|
270
|
-
[[package]]
|
271
|
-
name = "core-foundation"
|
272
|
-
version = "0.9.4"
|
273
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
274
|
-
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
275
|
-
dependencies = [
|
276
|
-
"core-foundation-sys",
|
277
|
-
"libc",
|
278
|
-
]
|
279
|
-
|
280
|
-
[[package]]
|
281
|
-
name = "core-foundation-sys"
|
282
|
-
version = "0.8.6"
|
283
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
284
|
-
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
285
|
-
|
286
|
-
[[package]]
|
287
|
-
name = "deranged"
|
288
|
-
version = "0.3.11"
|
289
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
290
|
-
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
|
182
|
+
checksum = "e079f19b08ca6239f47f8ba8509c11cf3ea30095831f7fed61441475edd8c449"
|
291
183
|
dependencies = [
|
292
|
-
"
|
293
|
-
]
|
294
|
-
|
295
|
-
[[package]]
|
296
|
-
name = "encoding_rs"
|
297
|
-
version = "0.8.33"
|
298
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
299
|
-
checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
|
300
|
-
dependencies = [
|
301
|
-
"cfg-if",
|
302
|
-
]
|
303
|
-
|
304
|
-
[[package]]
|
305
|
-
name = "equivalent"
|
306
|
-
version = "1.0.1"
|
307
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
308
|
-
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
309
|
-
|
310
|
-
[[package]]
|
311
|
-
name = "errno"
|
312
|
-
version = "0.3.3"
|
313
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
314
|
-
checksum = "136526188508e25c6fef639d7927dfb3e0e3084488bf202267829cf7fc23dbdd"
|
315
|
-
dependencies = [
|
316
|
-
"errno-dragonfly",
|
317
|
-
"libc",
|
318
|
-
"windows-sys 0.48.0",
|
319
|
-
]
|
320
|
-
|
321
|
-
[[package]]
|
322
|
-
name = "errno-dragonfly"
|
323
|
-
version = "0.1.2"
|
324
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
325
|
-
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
|
326
|
-
dependencies = [
|
327
|
-
"cc",
|
328
|
-
"libc",
|
184
|
+
"serde",
|
329
185
|
]
|
330
186
|
|
331
187
|
[[package]]
|
332
188
|
name = "fancy-regex"
|
333
|
-
version = "0.
|
189
|
+
version = "0.14.0"
|
334
190
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
335
|
-
checksum = "
|
191
|
+
checksum = "6e24cb5a94bcae1e5408b0effca5cd7172ea3c5755049c5f3af4cd283a165298"
|
336
192
|
dependencies = [
|
337
193
|
"bit-set",
|
338
|
-
"regex",
|
194
|
+
"regex-automata",
|
195
|
+
"regex-syntax",
|
339
196
|
]
|
340
197
|
|
341
198
|
[[package]]
|
342
|
-
name = "
|
343
|
-
version = "2.0.0"
|
344
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
345
|
-
checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764"
|
346
|
-
|
347
|
-
[[package]]
|
348
|
-
name = "fnv"
|
349
|
-
version = "1.0.7"
|
350
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
351
|
-
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
352
|
-
|
353
|
-
[[package]]
|
354
|
-
name = "foreign-types"
|
199
|
+
name = "fluent-uri"
|
355
200
|
version = "0.3.2"
|
356
201
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
357
|
-
checksum = "
|
202
|
+
checksum = "1918b65d96df47d3591bed19c5cca17e3fa5d0707318e4b5ef2eae01764df7e5"
|
358
203
|
dependencies = [
|
359
|
-
"
|
204
|
+
"borrow-or-share",
|
205
|
+
"ref-cast",
|
206
|
+
"serde",
|
360
207
|
]
|
361
208
|
|
362
209
|
[[package]]
|
363
|
-
name = "
|
364
|
-
version = "0.
|
210
|
+
name = "fnv"
|
211
|
+
version = "1.0.7"
|
365
212
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
366
|
-
checksum = "
|
213
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
367
214
|
|
368
215
|
[[package]]
|
369
216
|
name = "form_urlencoded"
|
@@ -376,9 +223,9 @@ dependencies = [
|
|
376
223
|
|
377
224
|
[[package]]
|
378
225
|
name = "fraction"
|
379
|
-
version = "0.
|
226
|
+
version = "0.15.3"
|
380
227
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
381
|
-
checksum = "
|
228
|
+
checksum = "0f158e3ff0a1b334408dc9fb811cd99b446986f4d8b741bb08f9df1604085ae7"
|
382
229
|
dependencies = [
|
383
230
|
"lazy_static",
|
384
231
|
"num",
|
@@ -386,45 +233,47 @@ dependencies = [
|
|
386
233
|
|
387
234
|
[[package]]
|
388
235
|
name = "futures-channel"
|
389
|
-
version = "0.3.
|
236
|
+
version = "0.3.31"
|
390
237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
391
|
-
checksum = "
|
238
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
392
239
|
dependencies = [
|
393
240
|
"futures-core",
|
241
|
+
"futures-sink",
|
394
242
|
]
|
395
243
|
|
396
244
|
[[package]]
|
397
245
|
name = "futures-core"
|
398
|
-
version = "0.3.
|
246
|
+
version = "0.3.31"
|
399
247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
400
|
-
checksum = "
|
248
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
401
249
|
|
402
250
|
[[package]]
|
403
251
|
name = "futures-io"
|
404
|
-
version = "0.3.
|
252
|
+
version = "0.3.31"
|
405
253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
406
|
-
checksum = "
|
254
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
407
255
|
|
408
256
|
[[package]]
|
409
257
|
name = "futures-sink"
|
410
|
-
version = "0.3.
|
258
|
+
version = "0.3.31"
|
411
259
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
412
|
-
checksum = "
|
260
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
413
261
|
|
414
262
|
[[package]]
|
415
263
|
name = "futures-task"
|
416
|
-
version = "0.3.
|
264
|
+
version = "0.3.31"
|
417
265
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
418
|
-
checksum = "
|
266
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
419
267
|
|
420
268
|
[[package]]
|
421
269
|
name = "futures-util"
|
422
|
-
version = "0.3.
|
270
|
+
version = "0.3.31"
|
423
271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
424
|
-
checksum = "
|
272
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
425
273
|
dependencies = [
|
426
274
|
"futures-core",
|
427
275
|
"futures-io",
|
276
|
+
"futures-sink",
|
428
277
|
"futures-task",
|
429
278
|
"memchr",
|
430
279
|
"pin-project-lite",
|
@@ -434,236 +283,306 @@ dependencies = [
|
|
434
283
|
|
435
284
|
[[package]]
|
436
285
|
name = "getrandom"
|
437
|
-
version = "0.2.
|
286
|
+
version = "0.2.15"
|
438
287
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
439
|
-
checksum = "
|
288
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
440
289
|
dependencies = [
|
441
290
|
"cfg-if",
|
442
|
-
"js-sys",
|
443
291
|
"libc",
|
444
292
|
"wasi",
|
445
|
-
"wasm-bindgen",
|
446
293
|
]
|
447
294
|
|
448
295
|
[[package]]
|
449
296
|
name = "gimli"
|
450
|
-
version = "0.
|
297
|
+
version = "0.31.1"
|
451
298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
452
|
-
checksum = "
|
299
|
+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
453
300
|
|
454
301
|
[[package]]
|
455
302
|
name = "glob"
|
456
|
-
version = "0.3.
|
303
|
+
version = "0.3.2"
|
457
304
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
458
|
-
checksum = "
|
305
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
459
306
|
|
460
307
|
[[package]]
|
461
|
-
name = "
|
462
|
-
version = "
|
308
|
+
name = "http"
|
309
|
+
version = "1.3.1"
|
463
310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
464
|
-
checksum = "
|
311
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
465
312
|
dependencies = [
|
466
313
|
"bytes",
|
467
314
|
"fnv",
|
468
|
-
"
|
469
|
-
"futures-sink",
|
470
|
-
"futures-util",
|
471
|
-
"http",
|
472
|
-
"indexmap",
|
473
|
-
"slab",
|
474
|
-
"tokio",
|
475
|
-
"tokio-util",
|
476
|
-
"tracing",
|
315
|
+
"itoa",
|
477
316
|
]
|
478
317
|
|
479
318
|
[[package]]
|
480
|
-
name = "
|
481
|
-
version = "0.
|
482
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
483
|
-
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
|
484
|
-
|
485
|
-
[[package]]
|
486
|
-
name = "heck"
|
487
|
-
version = "0.4.1"
|
488
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
489
|
-
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
490
|
-
|
491
|
-
[[package]]
|
492
|
-
name = "hermit-abi"
|
493
|
-
version = "0.3.3"
|
494
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
495
|
-
checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
|
496
|
-
|
497
|
-
[[package]]
|
498
|
-
name = "http"
|
499
|
-
version = "0.2.11"
|
319
|
+
name = "http-body"
|
320
|
+
version = "1.0.1"
|
500
321
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
501
|
-
checksum = "
|
322
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
502
323
|
dependencies = [
|
503
324
|
"bytes",
|
504
|
-
"
|
505
|
-
"itoa",
|
325
|
+
"http",
|
506
326
|
]
|
507
327
|
|
508
328
|
[[package]]
|
509
|
-
name = "http-body"
|
510
|
-
version = "0.
|
329
|
+
name = "http-body-util"
|
330
|
+
version = "0.1.3"
|
511
331
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
512
|
-
checksum = "
|
332
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
513
333
|
dependencies = [
|
514
334
|
"bytes",
|
335
|
+
"futures-core",
|
515
336
|
"http",
|
337
|
+
"http-body",
|
516
338
|
"pin-project-lite",
|
517
339
|
]
|
518
340
|
|
519
341
|
[[package]]
|
520
342
|
name = "httparse"
|
521
|
-
version = "1.
|
343
|
+
version = "1.10.1"
|
522
344
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
523
|
-
checksum = "
|
524
|
-
|
525
|
-
[[package]]
|
526
|
-
name = "httpdate"
|
527
|
-
version = "1.0.3"
|
528
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
529
|
-
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
345
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
530
346
|
|
531
347
|
[[package]]
|
532
348
|
name = "hyper"
|
533
|
-
version = "
|
349
|
+
version = "1.6.0"
|
534
350
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
535
|
-
checksum = "
|
351
|
+
checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
|
536
352
|
dependencies = [
|
537
353
|
"bytes",
|
538
354
|
"futures-channel",
|
539
|
-
"futures-core",
|
540
355
|
"futures-util",
|
541
|
-
"h2",
|
542
356
|
"http",
|
543
357
|
"http-body",
|
544
358
|
"httparse",
|
545
|
-
"httpdate",
|
546
359
|
"itoa",
|
547
360
|
"pin-project-lite",
|
548
|
-
"
|
361
|
+
"smallvec",
|
549
362
|
"tokio",
|
550
|
-
"tower-service",
|
551
|
-
"tracing",
|
552
363
|
"want",
|
553
364
|
]
|
554
365
|
|
555
366
|
[[package]]
|
556
|
-
name = "hyper-
|
557
|
-
version = "0.
|
367
|
+
name = "hyper-util"
|
368
|
+
version = "0.1.11"
|
558
369
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
559
|
-
checksum = "
|
370
|
+
checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
|
560
371
|
dependencies = [
|
372
|
+
"bytes",
|
373
|
+
"futures-channel",
|
561
374
|
"futures-util",
|
562
375
|
"http",
|
376
|
+
"http-body",
|
563
377
|
"hyper",
|
564
|
-
"
|
378
|
+
"libc",
|
379
|
+
"pin-project-lite",
|
380
|
+
"socket2",
|
565
381
|
"tokio",
|
566
|
-
"
|
382
|
+
"tower-service",
|
383
|
+
"tracing",
|
567
384
|
]
|
568
385
|
|
569
386
|
[[package]]
|
570
|
-
name = "
|
571
|
-
version = "
|
387
|
+
name = "icu_collections"
|
388
|
+
version = "1.5.0"
|
572
389
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
573
|
-
checksum = "
|
390
|
+
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
|
574
391
|
dependencies = [
|
575
|
-
"
|
576
|
-
"
|
577
|
-
"
|
578
|
-
"
|
579
|
-
|
392
|
+
"displaydoc",
|
393
|
+
"yoke",
|
394
|
+
"zerofrom",
|
395
|
+
"zerovec",
|
396
|
+
]
|
397
|
+
|
398
|
+
[[package]]
|
399
|
+
name = "icu_locid"
|
400
|
+
version = "1.5.0"
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
402
|
+
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
|
403
|
+
dependencies = [
|
404
|
+
"displaydoc",
|
405
|
+
"litemap",
|
406
|
+
"tinystr",
|
407
|
+
"writeable",
|
408
|
+
"zerovec",
|
409
|
+
]
|
410
|
+
|
411
|
+
[[package]]
|
412
|
+
name = "icu_locid_transform"
|
413
|
+
version = "1.5.0"
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
415
|
+
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
416
|
+
dependencies = [
|
417
|
+
"displaydoc",
|
418
|
+
"icu_locid",
|
419
|
+
"icu_locid_transform_data",
|
420
|
+
"icu_provider",
|
421
|
+
"tinystr",
|
422
|
+
"zerovec",
|
423
|
+
]
|
424
|
+
|
425
|
+
[[package]]
|
426
|
+
name = "icu_locid_transform_data"
|
427
|
+
version = "1.5.1"
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
429
|
+
checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
|
430
|
+
|
431
|
+
[[package]]
|
432
|
+
name = "icu_normalizer"
|
433
|
+
version = "1.5.0"
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
435
|
+
checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
|
436
|
+
dependencies = [
|
437
|
+
"displaydoc",
|
438
|
+
"icu_collections",
|
439
|
+
"icu_normalizer_data",
|
440
|
+
"icu_properties",
|
441
|
+
"icu_provider",
|
442
|
+
"smallvec",
|
443
|
+
"utf16_iter",
|
444
|
+
"utf8_iter",
|
445
|
+
"write16",
|
446
|
+
"zerovec",
|
447
|
+
]
|
448
|
+
|
449
|
+
[[package]]
|
450
|
+
name = "icu_normalizer_data"
|
451
|
+
version = "1.5.1"
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
453
|
+
checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
|
454
|
+
|
455
|
+
[[package]]
|
456
|
+
name = "icu_properties"
|
457
|
+
version = "1.5.1"
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
459
|
+
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
|
460
|
+
dependencies = [
|
461
|
+
"displaydoc",
|
462
|
+
"icu_collections",
|
463
|
+
"icu_locid_transform",
|
464
|
+
"icu_properties_data",
|
465
|
+
"icu_provider",
|
466
|
+
"tinystr",
|
467
|
+
"zerovec",
|
468
|
+
]
|
469
|
+
|
470
|
+
[[package]]
|
471
|
+
name = "icu_properties_data"
|
472
|
+
version = "1.5.1"
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
474
|
+
checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
|
475
|
+
|
476
|
+
[[package]]
|
477
|
+
name = "icu_provider"
|
478
|
+
version = "1.5.0"
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
480
|
+
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
|
481
|
+
dependencies = [
|
482
|
+
"displaydoc",
|
483
|
+
"icu_locid",
|
484
|
+
"icu_provider_macros",
|
485
|
+
"stable_deref_trait",
|
486
|
+
"tinystr",
|
487
|
+
"writeable",
|
488
|
+
"yoke",
|
489
|
+
"zerofrom",
|
490
|
+
"zerovec",
|
491
|
+
]
|
492
|
+
|
493
|
+
[[package]]
|
494
|
+
name = "icu_provider_macros"
|
495
|
+
version = "1.5.0"
|
496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
497
|
+
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
498
|
+
dependencies = [
|
499
|
+
"proc-macro2",
|
500
|
+
"quote",
|
501
|
+
"syn",
|
580
502
|
]
|
581
503
|
|
582
504
|
[[package]]
|
583
505
|
name = "idna"
|
584
|
-
version = "0.
|
506
|
+
version = "1.0.3"
|
585
507
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
586
|
-
checksum = "
|
508
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
587
509
|
dependencies = [
|
588
|
-
"
|
589
|
-
"
|
510
|
+
"idna_adapter",
|
511
|
+
"smallvec",
|
512
|
+
"utf8_iter",
|
590
513
|
]
|
591
514
|
|
592
515
|
[[package]]
|
593
|
-
name = "
|
594
|
-
version = "2.
|
516
|
+
name = "idna_adapter"
|
517
|
+
version = "1.2.0"
|
595
518
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
596
|
-
checksum = "
|
519
|
+
checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
|
597
520
|
dependencies = [
|
598
|
-
"
|
599
|
-
"
|
521
|
+
"icu_normalizer",
|
522
|
+
"icu_properties",
|
600
523
|
]
|
601
524
|
|
602
525
|
[[package]]
|
603
526
|
name = "ipnet"
|
604
|
-
version = "2.
|
527
|
+
version = "2.11.0"
|
605
528
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
606
|
-
checksum = "
|
529
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
607
530
|
|
608
531
|
[[package]]
|
609
|
-
name = "
|
610
|
-
version = "0.
|
532
|
+
name = "itertools"
|
533
|
+
version = "0.12.1"
|
611
534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
612
|
-
checksum = "
|
535
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
613
536
|
dependencies = [
|
614
|
-
"
|
537
|
+
"either",
|
615
538
|
]
|
616
539
|
|
617
540
|
[[package]]
|
618
541
|
name = "itoa"
|
619
|
-
version = "1.0.
|
542
|
+
version = "1.0.15"
|
620
543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
621
|
-
checksum = "
|
544
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
622
545
|
|
623
546
|
[[package]]
|
624
547
|
name = "js-sys"
|
625
|
-
version = "0.3.
|
548
|
+
version = "0.3.77"
|
626
549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
627
|
-
checksum = "
|
550
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
628
551
|
dependencies = [
|
552
|
+
"once_cell",
|
629
553
|
"wasm-bindgen",
|
630
554
|
]
|
631
555
|
|
632
556
|
[[package]]
|
633
557
|
name = "jsonschema"
|
634
|
-
version = "0.
|
558
|
+
version = "0.29.1"
|
635
559
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
636
|
-
checksum = "
|
560
|
+
checksum = "161c33c3ec738cfea3288c5c53dfcdb32fd4fc2954de86ea06f71b5a1a40bfcd"
|
637
561
|
dependencies = [
|
638
562
|
"ahash",
|
639
|
-
"anyhow",
|
640
563
|
"base64",
|
641
564
|
"bytecount",
|
642
|
-
"
|
565
|
+
"email_address",
|
643
566
|
"fancy-regex",
|
644
567
|
"fraction",
|
645
|
-
"
|
646
|
-
"iso8601",
|
568
|
+
"idna",
|
647
569
|
"itoa",
|
648
|
-
"memchr",
|
649
570
|
"num-cmp",
|
650
571
|
"once_cell",
|
651
|
-
"parking_lot",
|
652
572
|
"percent-encoding",
|
653
|
-
"
|
573
|
+
"referencing",
|
574
|
+
"regex-syntax",
|
654
575
|
"reqwest",
|
655
576
|
"serde",
|
656
577
|
"serde_json",
|
657
|
-
"
|
658
|
-
"url",
|
659
|
-
"uuid",
|
578
|
+
"uuid-simd",
|
660
579
|
]
|
661
580
|
|
662
581
|
[[package]]
|
663
582
|
name = "lazy_static"
|
664
|
-
version = "1.
|
583
|
+
version = "1.5.0"
|
665
584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
666
|
-
checksum = "
|
585
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
667
586
|
|
668
587
|
[[package]]
|
669
588
|
name = "lazycell"
|
@@ -673,31 +592,31 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
673
592
|
|
674
593
|
[[package]]
|
675
594
|
name = "libc"
|
676
|
-
version = "0.2.
|
595
|
+
version = "0.2.171"
|
677
596
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
678
|
-
checksum = "
|
597
|
+
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
|
679
598
|
|
680
599
|
[[package]]
|
681
600
|
name = "libloading"
|
682
|
-
version = "0.8.
|
601
|
+
version = "0.8.6"
|
683
602
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
684
|
-
checksum = "
|
603
|
+
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
685
604
|
dependencies = [
|
686
605
|
"cfg-if",
|
687
|
-
"windows-
|
606
|
+
"windows-targets 0.52.6",
|
688
607
|
]
|
689
608
|
|
690
609
|
[[package]]
|
691
|
-
name = "
|
692
|
-
version = "0.
|
610
|
+
name = "litemap"
|
611
|
+
version = "0.7.5"
|
693
612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
694
|
-
checksum = "
|
613
|
+
checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
|
695
614
|
|
696
615
|
[[package]]
|
697
616
|
name = "lock_api"
|
698
|
-
version = "0.4.
|
617
|
+
version = "0.4.12"
|
699
618
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
700
|
-
checksum = "
|
619
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
701
620
|
dependencies = [
|
702
621
|
"autocfg",
|
703
622
|
"scopeguard",
|
@@ -705,15 +624,15 @@ dependencies = [
|
|
705
624
|
|
706
625
|
[[package]]
|
707
626
|
name = "log"
|
708
|
-
version = "0.4.
|
627
|
+
version = "0.4.27"
|
709
628
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
710
|
-
checksum = "
|
629
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
711
630
|
|
712
631
|
[[package]]
|
713
632
|
name = "magnus"
|
714
|
-
version = "0.
|
633
|
+
version = "0.7.1"
|
715
634
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
716
|
-
checksum = "
|
635
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
717
636
|
dependencies = [
|
718
637
|
"magnus-macros",
|
719
638
|
"rb-sys",
|
@@ -734,9 +653,9 @@ dependencies = [
|
|
734
653
|
|
735
654
|
[[package]]
|
736
655
|
name = "memchr"
|
737
|
-
version = "2.7.
|
656
|
+
version = "2.7.4"
|
738
657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
739
|
-
checksum = "
|
658
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
740
659
|
|
741
660
|
[[package]]
|
742
661
|
name = "mime"
|
@@ -752,40 +671,22 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
752
671
|
|
753
672
|
[[package]]
|
754
673
|
name = "miniz_oxide"
|
755
|
-
version = "0.
|
674
|
+
version = "0.8.8"
|
756
675
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
757
|
-
checksum = "
|
676
|
+
checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
|
758
677
|
dependencies = [
|
759
|
-
"
|
678
|
+
"adler2",
|
760
679
|
]
|
761
680
|
|
762
681
|
[[package]]
|
763
682
|
name = "mio"
|
764
|
-
version = "0.
|
683
|
+
version = "1.0.3"
|
765
684
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
766
|
-
checksum = "
|
685
|
+
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
767
686
|
dependencies = [
|
768
687
|
"libc",
|
769
688
|
"wasi",
|
770
|
-
"windows-sys
|
771
|
-
]
|
772
|
-
|
773
|
-
[[package]]
|
774
|
-
name = "native-tls"
|
775
|
-
version = "0.2.11"
|
776
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
777
|
-
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
|
778
|
-
dependencies = [
|
779
|
-
"lazy_static",
|
780
|
-
"libc",
|
781
|
-
"log",
|
782
|
-
"openssl",
|
783
|
-
"openssl-probe",
|
784
|
-
"openssl-sys",
|
785
|
-
"schannel",
|
786
|
-
"security-framework",
|
787
|
-
"security-framework-sys",
|
788
|
-
"tempfile",
|
689
|
+
"windows-sys",
|
789
690
|
]
|
790
691
|
|
791
692
|
[[package]]
|
@@ -800,9 +701,9 @@ dependencies = [
|
|
800
701
|
|
801
702
|
[[package]]
|
802
703
|
name = "num"
|
803
|
-
version = "0.4.
|
704
|
+
version = "0.4.3"
|
804
705
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
805
|
-
checksum = "
|
706
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
806
707
|
dependencies = [
|
807
708
|
"num-bigint",
|
808
709
|
"num-complex",
|
@@ -814,11 +715,10 @@ dependencies = [
|
|
814
715
|
|
815
716
|
[[package]]
|
816
717
|
name = "num-bigint"
|
817
|
-
version = "0.4.
|
718
|
+
version = "0.4.6"
|
818
719
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
819
|
-
checksum = "
|
720
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
820
721
|
dependencies = [
|
821
|
-
"autocfg",
|
822
722
|
"num-integer",
|
823
723
|
"num-traits",
|
824
724
|
]
|
@@ -831,28 +731,27 @@ checksum = "63335b2e2c34fae2fb0aa2cecfd9f0832a1e24b3b32ecec612c3426d46dc8aaa"
|
|
831
731
|
|
832
732
|
[[package]]
|
833
733
|
name = "num-complex"
|
834
|
-
version = "0.4.
|
734
|
+
version = "0.4.6"
|
835
735
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
836
|
-
checksum = "
|
736
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
837
737
|
dependencies = [
|
838
738
|
"num-traits",
|
839
739
|
]
|
840
740
|
|
841
741
|
[[package]]
|
842
742
|
name = "num-integer"
|
843
|
-
version = "0.1.
|
743
|
+
version = "0.1.46"
|
844
744
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
845
|
-
checksum = "
|
745
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
846
746
|
dependencies = [
|
847
|
-
"autocfg",
|
848
747
|
"num-traits",
|
849
748
|
]
|
850
749
|
|
851
750
|
[[package]]
|
852
751
|
name = "num-iter"
|
853
|
-
version = "0.1.
|
752
|
+
version = "0.1.45"
|
854
753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
855
|
-
checksum = "
|
754
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
856
755
|
dependencies = [
|
857
756
|
"autocfg",
|
858
757
|
"num-integer",
|
@@ -861,11 +760,10 @@ dependencies = [
|
|
861
760
|
|
862
761
|
[[package]]
|
863
762
|
name = "num-rational"
|
864
|
-
version = "0.4.
|
763
|
+
version = "0.4.2"
|
865
764
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
866
|
-
checksum = "
|
765
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
867
766
|
dependencies = [
|
868
|
-
"autocfg",
|
869
767
|
"num-bigint",
|
870
768
|
"num-integer",
|
871
769
|
"num-traits",
|
@@ -873,87 +771,39 @@ dependencies = [
|
|
873
771
|
|
874
772
|
[[package]]
|
875
773
|
name = "num-traits"
|
876
|
-
version = "0.2.
|
774
|
+
version = "0.2.19"
|
877
775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
878
|
-
checksum = "
|
776
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
879
777
|
dependencies = [
|
880
778
|
"autocfg",
|
881
779
|
]
|
882
780
|
|
883
|
-
[[package]]
|
884
|
-
name = "num_cpus"
|
885
|
-
version = "1.16.0"
|
886
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
887
|
-
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
888
|
-
dependencies = [
|
889
|
-
"hermit-abi",
|
890
|
-
"libc",
|
891
|
-
]
|
892
|
-
|
893
781
|
[[package]]
|
894
782
|
name = "object"
|
895
|
-
version = "0.
|
783
|
+
version = "0.36.7"
|
896
784
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
897
|
-
checksum = "
|
785
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
898
786
|
dependencies = [
|
899
787
|
"memchr",
|
900
788
|
]
|
901
789
|
|
902
790
|
[[package]]
|
903
791
|
name = "once_cell"
|
904
|
-
version = "1.
|
905
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
906
|
-
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
907
|
-
|
908
|
-
[[package]]
|
909
|
-
name = "openssl"
|
910
|
-
version = "0.10.62"
|
911
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
912
|
-
checksum = "8cde4d2d9200ad5909f8dac647e29482e07c3a35de8a13fce7c9c7747ad9f671"
|
913
|
-
dependencies = [
|
914
|
-
"bitflags 2.4.1",
|
915
|
-
"cfg-if",
|
916
|
-
"foreign-types",
|
917
|
-
"libc",
|
918
|
-
"once_cell",
|
919
|
-
"openssl-macros",
|
920
|
-
"openssl-sys",
|
921
|
-
]
|
922
|
-
|
923
|
-
[[package]]
|
924
|
-
name = "openssl-macros"
|
925
|
-
version = "0.1.1"
|
926
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
927
|
-
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
928
|
-
dependencies = [
|
929
|
-
"proc-macro2",
|
930
|
-
"quote",
|
931
|
-
"syn",
|
932
|
-
]
|
933
|
-
|
934
|
-
[[package]]
|
935
|
-
name = "openssl-probe"
|
936
|
-
version = "0.1.5"
|
792
|
+
version = "1.21.3"
|
937
793
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
938
|
-
checksum = "
|
794
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
939
795
|
|
940
|
-
[[package]]
|
941
|
-
name = "
|
942
|
-
version = "0.
|
943
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
944
|
-
checksum = "
|
945
|
-
dependencies = [
|
946
|
-
"cc",
|
947
|
-
"libc",
|
948
|
-
"pkg-config",
|
949
|
-
"vcpkg",
|
950
|
-
]
|
796
|
+
[[package]]
|
797
|
+
name = "outref"
|
798
|
+
version = "0.5.2"
|
799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
800
|
+
checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
|
951
801
|
|
952
802
|
[[package]]
|
953
803
|
name = "parking_lot"
|
954
|
-
version = "0.12.
|
804
|
+
version = "0.12.3"
|
955
805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
956
|
-
checksum = "
|
806
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
957
807
|
dependencies = [
|
958
808
|
"lock_api",
|
959
809
|
"parking_lot_core",
|
@@ -961,23 +811,17 @@ dependencies = [
|
|
961
811
|
|
962
812
|
[[package]]
|
963
813
|
name = "parking_lot_core"
|
964
|
-
version = "0.9.
|
814
|
+
version = "0.9.10"
|
965
815
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
966
|
-
checksum = "
|
816
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
967
817
|
dependencies = [
|
968
818
|
"cfg-if",
|
969
819
|
"libc",
|
970
|
-
"redox_syscall
|
820
|
+
"redox_syscall",
|
971
821
|
"smallvec",
|
972
|
-
"windows-targets 0.
|
822
|
+
"windows-targets 0.52.6",
|
973
823
|
]
|
974
824
|
|
975
|
-
[[package]]
|
976
|
-
name = "peeking_take_while"
|
977
|
-
version = "0.1.2"
|
978
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
979
|
-
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
980
|
-
|
981
825
|
[[package]]
|
982
826
|
name = "percent-encoding"
|
983
827
|
version = "2.3.1"
|
@@ -986,9 +830,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
986
830
|
|
987
831
|
[[package]]
|
988
832
|
name = "pin-project-lite"
|
989
|
-
version = "0.2.
|
833
|
+
version = "0.2.16"
|
990
834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
991
|
-
checksum = "
|
835
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
992
836
|
|
993
837
|
[[package]]
|
994
838
|
name = "pin-utils"
|
@@ -996,50 +840,38 @@ version = "0.1.0"
|
|
996
840
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
997
841
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
998
842
|
|
999
|
-
[[package]]
|
1000
|
-
name = "pkg-config"
|
1001
|
-
version = "0.3.27"
|
1002
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1003
|
-
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
|
1004
|
-
|
1005
|
-
[[package]]
|
1006
|
-
name = "powerfmt"
|
1007
|
-
version = "0.2.0"
|
1008
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1009
|
-
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
1010
|
-
|
1011
843
|
[[package]]
|
1012
844
|
name = "proc-macro2"
|
1013
|
-
version = "1.0.
|
845
|
+
version = "1.0.94"
|
1014
846
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1015
|
-
checksum = "
|
847
|
+
checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
|
1016
848
|
dependencies = [
|
1017
849
|
"unicode-ident",
|
1018
850
|
]
|
1019
851
|
|
1020
852
|
[[package]]
|
1021
853
|
name = "quote"
|
1022
|
-
version = "1.0.
|
854
|
+
version = "1.0.40"
|
1023
855
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1024
|
-
checksum = "
|
856
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
1025
857
|
dependencies = [
|
1026
858
|
"proc-macro2",
|
1027
859
|
]
|
1028
860
|
|
1029
861
|
[[package]]
|
1030
862
|
name = "rb-sys"
|
1031
|
-
version = "0.9.
|
863
|
+
version = "0.9.111"
|
1032
864
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1033
|
-
checksum = "
|
865
|
+
checksum = "becea799ce051c16fb140be80f5e7cf781070f99ca099332383c2b17861249af"
|
1034
866
|
dependencies = [
|
1035
867
|
"rb-sys-build",
|
1036
868
|
]
|
1037
869
|
|
1038
870
|
[[package]]
|
1039
871
|
name = "rb-sys-build"
|
1040
|
-
version = "0.9.
|
872
|
+
version = "0.9.111"
|
1041
873
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1042
|
-
checksum = "
|
874
|
+
checksum = "64691175abc704862f60a9ca8ef06174080cc50615f2bf1d4759f46db18b4d29"
|
1043
875
|
dependencies = [
|
1044
876
|
"bindgen",
|
1045
877
|
"lazy_static",
|
@@ -1058,27 +890,52 @@ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
|
1058
890
|
|
1059
891
|
[[package]]
|
1060
892
|
name = "redox_syscall"
|
1061
|
-
version = "0.
|
893
|
+
version = "0.5.11"
|
1062
894
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1063
|
-
checksum = "
|
895
|
+
checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
|
1064
896
|
dependencies = [
|
1065
|
-
"bitflags
|
897
|
+
"bitflags",
|
1066
898
|
]
|
1067
899
|
|
1068
900
|
[[package]]
|
1069
|
-
name = "
|
1070
|
-
version = "0.
|
901
|
+
name = "ref-cast"
|
902
|
+
version = "1.0.24"
|
903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
904
|
+
checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf"
|
905
|
+
dependencies = [
|
906
|
+
"ref-cast-impl",
|
907
|
+
]
|
908
|
+
|
909
|
+
[[package]]
|
910
|
+
name = "ref-cast-impl"
|
911
|
+
version = "1.0.24"
|
912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
913
|
+
checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
|
914
|
+
dependencies = [
|
915
|
+
"proc-macro2",
|
916
|
+
"quote",
|
917
|
+
"syn",
|
918
|
+
]
|
919
|
+
|
920
|
+
[[package]]
|
921
|
+
name = "referencing"
|
922
|
+
version = "0.29.1"
|
1071
923
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1072
|
-
checksum = "
|
924
|
+
checksum = "40a64b3a635fad9000648b4d8a59c8710c523ab61a23d392a7d91d47683f5adc"
|
1073
925
|
dependencies = [
|
1074
|
-
"
|
926
|
+
"ahash",
|
927
|
+
"fluent-uri",
|
928
|
+
"once_cell",
|
929
|
+
"parking_lot",
|
930
|
+
"percent-encoding",
|
931
|
+
"serde_json",
|
1075
932
|
]
|
1076
933
|
|
1077
934
|
[[package]]
|
1078
935
|
name = "regex"
|
1079
|
-
version = "1.
|
936
|
+
version = "1.11.1"
|
1080
937
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1081
|
-
checksum = "
|
938
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
1082
939
|
dependencies = [
|
1083
940
|
"aho-corasick",
|
1084
941
|
"memchr",
|
@@ -1088,9 +945,9 @@ dependencies = [
|
|
1088
945
|
|
1089
946
|
[[package]]
|
1090
947
|
name = "regex-automata"
|
1091
|
-
version = "0.4.
|
948
|
+
version = "0.4.9"
|
1092
949
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1093
|
-
checksum = "
|
950
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
1094
951
|
dependencies = [
|
1095
952
|
"aho-corasick",
|
1096
953
|
"memchr",
|
@@ -1099,65 +956,45 @@ dependencies = [
|
|
1099
956
|
|
1100
957
|
[[package]]
|
1101
958
|
name = "regex-syntax"
|
1102
|
-
version = "0.8.
|
959
|
+
version = "0.8.5"
|
1103
960
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1104
|
-
checksum = "
|
961
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
1105
962
|
|
1106
963
|
[[package]]
|
1107
964
|
name = "reqwest"
|
1108
|
-
version = "0.
|
965
|
+
version = "0.12.15"
|
1109
966
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1110
|
-
checksum = "
|
967
|
+
checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
|
1111
968
|
dependencies = [
|
1112
969
|
"base64",
|
1113
970
|
"bytes",
|
1114
|
-
"
|
971
|
+
"futures-channel",
|
1115
972
|
"futures-core",
|
1116
973
|
"futures-util",
|
1117
|
-
"h2",
|
1118
974
|
"http",
|
1119
975
|
"http-body",
|
976
|
+
"http-body-util",
|
1120
977
|
"hyper",
|
1121
|
-
"hyper-
|
1122
|
-
"hyper-tls",
|
978
|
+
"hyper-util",
|
1123
979
|
"ipnet",
|
1124
980
|
"js-sys",
|
1125
981
|
"log",
|
1126
982
|
"mime",
|
1127
|
-
"native-tls",
|
1128
983
|
"once_cell",
|
1129
984
|
"percent-encoding",
|
1130
985
|
"pin-project-lite",
|
1131
|
-
"rustls",
|
1132
|
-
"rustls-pemfile",
|
1133
986
|
"serde",
|
1134
987
|
"serde_json",
|
1135
988
|
"serde_urlencoded",
|
1136
|
-
"
|
989
|
+
"sync_wrapper",
|
1137
990
|
"tokio",
|
1138
|
-
"
|
1139
|
-
"tokio-rustls",
|
991
|
+
"tower",
|
1140
992
|
"tower-service",
|
1141
993
|
"url",
|
1142
994
|
"wasm-bindgen",
|
1143
995
|
"wasm-bindgen-futures",
|
1144
996
|
"web-sys",
|
1145
|
-
"
|
1146
|
-
"winreg",
|
1147
|
-
]
|
1148
|
-
|
1149
|
-
[[package]]
|
1150
|
-
name = "ring"
|
1151
|
-
version = "0.17.7"
|
1152
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1153
|
-
checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74"
|
1154
|
-
dependencies = [
|
1155
|
-
"cc",
|
1156
|
-
"getrandom",
|
1157
|
-
"libc",
|
1158
|
-
"spin",
|
1159
|
-
"untrusted",
|
1160
|
-
"windows-sys 0.48.0",
|
997
|
+
"windows-registry",
|
1161
998
|
]
|
1162
999
|
|
1163
1000
|
[[package]]
|
@@ -1167,15 +1004,14 @@ dependencies = [
|
|
1167
1004
|
"jsonschema",
|
1168
1005
|
"magnus",
|
1169
1006
|
"rb-sys",
|
1170
|
-
"reqwest",
|
1171
1007
|
"serde_json",
|
1172
1008
|
]
|
1173
1009
|
|
1174
1010
|
[[package]]
|
1175
1011
|
name = "rustc-demangle"
|
1176
|
-
version = "0.1.
|
1012
|
+
version = "0.1.24"
|
1177
1013
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1178
|
-
checksum = "
|
1014
|
+
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
1179
1015
|
|
1180
1016
|
[[package]]
|
1181
1017
|
name = "rustc-hash"
|
@@ -1184,63 +1020,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1184
1020
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
1185
1021
|
|
1186
1022
|
[[package]]
|
1187
|
-
name = "
|
1188
|
-
version = "0.
|
1189
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1190
|
-
checksum = "d7db8590df6dfcd144d22afd1b83b36c21a18d7cbc1dc4bb5295a8712e9eb662"
|
1191
|
-
dependencies = [
|
1192
|
-
"bitflags 2.4.1",
|
1193
|
-
"errno",
|
1194
|
-
"libc",
|
1195
|
-
"linux-raw-sys",
|
1196
|
-
"windows-sys 0.48.0",
|
1197
|
-
]
|
1198
|
-
|
1199
|
-
[[package]]
|
1200
|
-
name = "rustls"
|
1201
|
-
version = "0.21.10"
|
1202
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1203
|
-
checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba"
|
1204
|
-
dependencies = [
|
1205
|
-
"log",
|
1206
|
-
"ring",
|
1207
|
-
"rustls-webpki",
|
1208
|
-
"sct",
|
1209
|
-
]
|
1210
|
-
|
1211
|
-
[[package]]
|
1212
|
-
name = "rustls-pemfile"
|
1213
|
-
version = "1.0.4"
|
1214
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1215
|
-
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
|
1216
|
-
dependencies = [
|
1217
|
-
"base64",
|
1218
|
-
]
|
1219
|
-
|
1220
|
-
[[package]]
|
1221
|
-
name = "rustls-webpki"
|
1222
|
-
version = "0.101.7"
|
1023
|
+
name = "rustversion"
|
1024
|
+
version = "1.0.20"
|
1223
1025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1224
|
-
checksum = "
|
1225
|
-
dependencies = [
|
1226
|
-
"ring",
|
1227
|
-
"untrusted",
|
1228
|
-
]
|
1026
|
+
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
1229
1027
|
|
1230
1028
|
[[package]]
|
1231
1029
|
name = "ryu"
|
1232
|
-
version = "1.0.
|
1233
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1234
|
-
checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
|
1235
|
-
|
1236
|
-
[[package]]
|
1237
|
-
name = "schannel"
|
1238
|
-
version = "0.1.23"
|
1030
|
+
version = "1.0.20"
|
1239
1031
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1240
|
-
checksum = "
|
1241
|
-
dependencies = [
|
1242
|
-
"windows-sys 0.52.0",
|
1243
|
-
]
|
1032
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
1244
1033
|
|
1245
1034
|
[[package]]
|
1246
1035
|
name = "scopeguard"
|
@@ -1248,59 +1037,26 @@ version = "1.2.0"
|
|
1248
1037
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1249
1038
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
1250
1039
|
|
1251
|
-
[[package]]
|
1252
|
-
name = "sct"
|
1253
|
-
version = "0.7.1"
|
1254
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1255
|
-
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
|
1256
|
-
dependencies = [
|
1257
|
-
"ring",
|
1258
|
-
"untrusted",
|
1259
|
-
]
|
1260
|
-
|
1261
|
-
[[package]]
|
1262
|
-
name = "security-framework"
|
1263
|
-
version = "2.9.2"
|
1264
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1265
|
-
checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
|
1266
|
-
dependencies = [
|
1267
|
-
"bitflags 1.3.2",
|
1268
|
-
"core-foundation",
|
1269
|
-
"core-foundation-sys",
|
1270
|
-
"libc",
|
1271
|
-
"security-framework-sys",
|
1272
|
-
]
|
1273
|
-
|
1274
|
-
[[package]]
|
1275
|
-
name = "security-framework-sys"
|
1276
|
-
version = "2.9.1"
|
1277
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1278
|
-
checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
|
1279
|
-
dependencies = [
|
1280
|
-
"core-foundation-sys",
|
1281
|
-
"libc",
|
1282
|
-
]
|
1283
|
-
|
1284
1040
|
[[package]]
|
1285
1041
|
name = "seq-macro"
|
1286
|
-
version = "0.3.
|
1042
|
+
version = "0.3.6"
|
1287
1043
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1288
|
-
checksum = "
|
1044
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
1289
1045
|
|
1290
1046
|
[[package]]
|
1291
1047
|
name = "serde"
|
1292
|
-
version = "1.0.
|
1048
|
+
version = "1.0.219"
|
1293
1049
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1294
|
-
checksum = "
|
1050
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
1295
1051
|
dependencies = [
|
1296
1052
|
"serde_derive",
|
1297
1053
|
]
|
1298
1054
|
|
1299
1055
|
[[package]]
|
1300
1056
|
name = "serde_derive"
|
1301
|
-
version = "1.0.
|
1057
|
+
version = "1.0.219"
|
1302
1058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1303
|
-
checksum = "
|
1059
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
1304
1060
|
dependencies = [
|
1305
1061
|
"proc-macro2",
|
1306
1062
|
"quote",
|
@@ -1309,11 +1065,12 @@ dependencies = [
|
|
1309
1065
|
|
1310
1066
|
[[package]]
|
1311
1067
|
name = "serde_json"
|
1312
|
-
version = "1.0.
|
1068
|
+
version = "1.0.140"
|
1313
1069
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1314
|
-
checksum = "
|
1070
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
1315
1071
|
dependencies = [
|
1316
1072
|
"itoa",
|
1073
|
+
"memchr",
|
1317
1074
|
"ryu",
|
1318
1075
|
"serde",
|
1319
1076
|
]
|
@@ -1338,9 +1095,9 @@ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
|
1338
1095
|
|
1339
1096
|
[[package]]
|
1340
1097
|
name = "shlex"
|
1341
|
-
version = "1.
|
1098
|
+
version = "1.3.0"
|
1342
1099
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1343
|
-
checksum = "
|
1100
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
1344
1101
|
|
1345
1102
|
[[package]]
|
1346
1103
|
name = "slab"
|
@@ -1353,37 +1110,31 @@ dependencies = [
|
|
1353
1110
|
|
1354
1111
|
[[package]]
|
1355
1112
|
name = "smallvec"
|
1356
|
-
version = "1.
|
1113
|
+
version = "1.15.0"
|
1357
1114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1358
|
-
checksum = "
|
1115
|
+
checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
1359
1116
|
|
1360
1117
|
[[package]]
|
1361
1118
|
name = "socket2"
|
1362
|
-
version = "0.5.
|
1119
|
+
version = "0.5.9"
|
1363
1120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1364
|
-
checksum = "
|
1121
|
+
checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
|
1365
1122
|
dependencies = [
|
1366
1123
|
"libc",
|
1367
|
-
"windows-sys
|
1124
|
+
"windows-sys",
|
1368
1125
|
]
|
1369
1126
|
|
1370
1127
|
[[package]]
|
1371
|
-
name = "
|
1372
|
-
version = "
|
1373
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1374
|
-
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
1375
|
-
|
1376
|
-
[[package]]
|
1377
|
-
name = "strsim"
|
1378
|
-
version = "0.10.0"
|
1128
|
+
name = "stable_deref_trait"
|
1129
|
+
version = "1.2.0"
|
1379
1130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1380
|
-
checksum = "
|
1131
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
1381
1132
|
|
1382
1133
|
[[package]]
|
1383
1134
|
name = "syn"
|
1384
|
-
version = "2.0.
|
1135
|
+
version = "2.0.100"
|
1385
1136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1386
|
-
checksum = "
|
1137
|
+
checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
|
1387
1138
|
dependencies = [
|
1388
1139
|
"proc-macro2",
|
1389
1140
|
"quote",
|
@@ -1391,143 +1142,81 @@ dependencies = [
|
|
1391
1142
|
]
|
1392
1143
|
|
1393
1144
|
[[package]]
|
1394
|
-
name = "
|
1395
|
-
version = "0.
|
1396
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1397
|
-
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
|
1398
|
-
dependencies = [
|
1399
|
-
"bitflags 1.3.2",
|
1400
|
-
"core-foundation",
|
1401
|
-
"system-configuration-sys",
|
1402
|
-
]
|
1403
|
-
|
1404
|
-
[[package]]
|
1405
|
-
name = "system-configuration-sys"
|
1406
|
-
version = "0.5.0"
|
1407
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1408
|
-
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
|
1409
|
-
dependencies = [
|
1410
|
-
"core-foundation-sys",
|
1411
|
-
"libc",
|
1412
|
-
]
|
1413
|
-
|
1414
|
-
[[package]]
|
1415
|
-
name = "tempfile"
|
1416
|
-
version = "3.8.0"
|
1417
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1418
|
-
checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef"
|
1419
|
-
dependencies = [
|
1420
|
-
"cfg-if",
|
1421
|
-
"fastrand",
|
1422
|
-
"redox_syscall 0.3.5",
|
1423
|
-
"rustix",
|
1424
|
-
"windows-sys 0.48.0",
|
1425
|
-
]
|
1426
|
-
|
1427
|
-
[[package]]
|
1428
|
-
name = "time"
|
1429
|
-
version = "0.3.31"
|
1145
|
+
name = "sync_wrapper"
|
1146
|
+
version = "1.0.2"
|
1430
1147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1431
|
-
checksum = "
|
1148
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
1432
1149
|
dependencies = [
|
1433
|
-
"
|
1434
|
-
"powerfmt",
|
1435
|
-
"serde",
|
1436
|
-
"time-core",
|
1437
|
-
"time-macros",
|
1150
|
+
"futures-core",
|
1438
1151
|
]
|
1439
1152
|
|
1440
1153
|
[[package]]
|
1441
|
-
name = "
|
1442
|
-
version = "0.1
|
1443
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1444
|
-
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
1445
|
-
|
1446
|
-
[[package]]
|
1447
|
-
name = "time-macros"
|
1448
|
-
version = "0.2.16"
|
1154
|
+
name = "synstructure"
|
1155
|
+
version = "0.13.1"
|
1449
1156
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1450
|
-
checksum = "
|
1157
|
+
checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
1451
1158
|
dependencies = [
|
1452
|
-
"
|
1159
|
+
"proc-macro2",
|
1160
|
+
"quote",
|
1161
|
+
"syn",
|
1453
1162
|
]
|
1454
1163
|
|
1455
1164
|
[[package]]
|
1456
|
-
name = "
|
1457
|
-
version = "
|
1165
|
+
name = "tinystr"
|
1166
|
+
version = "0.7.6"
|
1458
1167
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1459
|
-
checksum = "
|
1168
|
+
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
|
1460
1169
|
dependencies = [
|
1461
|
-
"
|
1170
|
+
"displaydoc",
|
1171
|
+
"zerovec",
|
1462
1172
|
]
|
1463
1173
|
|
1464
|
-
[[package]]
|
1465
|
-
name = "tinyvec_macros"
|
1466
|
-
version = "0.1.1"
|
1467
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1468
|
-
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
1469
|
-
|
1470
1174
|
[[package]]
|
1471
1175
|
name = "tokio"
|
1472
|
-
version = "1.
|
1176
|
+
version = "1.44.2"
|
1473
1177
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1474
|
-
checksum = "
|
1178
|
+
checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
|
1475
1179
|
dependencies = [
|
1476
1180
|
"backtrace",
|
1477
|
-
"bytes",
|
1478
1181
|
"libc",
|
1479
1182
|
"mio",
|
1480
|
-
"num_cpus",
|
1481
1183
|
"pin-project-lite",
|
1482
1184
|
"socket2",
|
1483
|
-
"windows-sys
|
1484
|
-
]
|
1485
|
-
|
1486
|
-
[[package]]
|
1487
|
-
name = "tokio-native-tls"
|
1488
|
-
version = "0.3.1"
|
1489
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1490
|
-
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
|
1491
|
-
dependencies = [
|
1492
|
-
"native-tls",
|
1493
|
-
"tokio",
|
1185
|
+
"windows-sys",
|
1494
1186
|
]
|
1495
1187
|
|
1496
1188
|
[[package]]
|
1497
|
-
name = "
|
1498
|
-
version = "0.
|
1189
|
+
name = "tower"
|
1190
|
+
version = "0.5.2"
|
1499
1191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1500
|
-
checksum = "
|
1192
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
1501
1193
|
dependencies = [
|
1502
|
-
"
|
1194
|
+
"futures-core",
|
1195
|
+
"futures-util",
|
1196
|
+
"pin-project-lite",
|
1197
|
+
"sync_wrapper",
|
1503
1198
|
"tokio",
|
1199
|
+
"tower-layer",
|
1200
|
+
"tower-service",
|
1504
1201
|
]
|
1505
1202
|
|
1506
1203
|
[[package]]
|
1507
|
-
name = "
|
1508
|
-
version = "0.
|
1204
|
+
name = "tower-layer"
|
1205
|
+
version = "0.3.3"
|
1509
1206
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1510
|
-
checksum = "
|
1511
|
-
dependencies = [
|
1512
|
-
"bytes",
|
1513
|
-
"futures-core",
|
1514
|
-
"futures-sink",
|
1515
|
-
"pin-project-lite",
|
1516
|
-
"tokio",
|
1517
|
-
"tracing",
|
1518
|
-
]
|
1207
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
1519
1208
|
|
1520
1209
|
[[package]]
|
1521
1210
|
name = "tower-service"
|
1522
|
-
version = "0.3.
|
1211
|
+
version = "0.3.3"
|
1523
1212
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1524
|
-
checksum = "
|
1213
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
1525
1214
|
|
1526
1215
|
[[package]]
|
1527
1216
|
name = "tracing"
|
1528
|
-
version = "0.1.
|
1217
|
+
version = "0.1.41"
|
1529
1218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1530
|
-
checksum = "
|
1219
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
1531
1220
|
dependencies = [
|
1532
1221
|
"pin-project-lite",
|
1533
1222
|
"tracing-core",
|
@@ -1535,9 +1224,9 @@ dependencies = [
|
|
1535
1224
|
|
1536
1225
|
[[package]]
|
1537
1226
|
name = "tracing-core"
|
1538
|
-
version = "0.1.
|
1227
|
+
version = "0.1.33"
|
1539
1228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1540
|
-
checksum = "
|
1229
|
+
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
1541
1230
|
dependencies = [
|
1542
1231
|
"once_cell",
|
1543
1232
|
]
|
@@ -1548,38 +1237,17 @@ version = "0.2.5"
|
|
1548
1237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1549
1238
|
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
1550
1239
|
|
1551
|
-
[[package]]
|
1552
|
-
name = "unicode-bidi"
|
1553
|
-
version = "0.3.14"
|
1554
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1555
|
-
checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416"
|
1556
|
-
|
1557
1240
|
[[package]]
|
1558
1241
|
name = "unicode-ident"
|
1559
|
-
version = "1.0.
|
1560
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1561
|
-
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
1562
|
-
|
1563
|
-
[[package]]
|
1564
|
-
name = "unicode-normalization"
|
1565
|
-
version = "0.1.22"
|
1242
|
+
version = "1.0.18"
|
1566
1243
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1567
|
-
checksum = "
|
1568
|
-
dependencies = [
|
1569
|
-
"tinyvec",
|
1570
|
-
]
|
1571
|
-
|
1572
|
-
[[package]]
|
1573
|
-
name = "untrusted"
|
1574
|
-
version = "0.9.0"
|
1575
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1576
|
-
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
1244
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
1577
1245
|
|
1578
1246
|
[[package]]
|
1579
1247
|
name = "url"
|
1580
|
-
version = "2.5.
|
1248
|
+
version = "2.5.4"
|
1581
1249
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1582
|
-
checksum = "
|
1250
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
1583
1251
|
dependencies = [
|
1584
1252
|
"form_urlencoded",
|
1585
1253
|
"idna",
|
@@ -1587,28 +1255,45 @@ dependencies = [
|
|
1587
1255
|
]
|
1588
1256
|
|
1589
1257
|
[[package]]
|
1590
|
-
name = "
|
1591
|
-
version = "0.
|
1258
|
+
name = "utf16_iter"
|
1259
|
+
version = "1.0.5"
|
1260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1261
|
+
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
1262
|
+
|
1263
|
+
[[package]]
|
1264
|
+
name = "utf8_iter"
|
1265
|
+
version = "1.0.4"
|
1592
1266
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1593
|
-
checksum = "
|
1267
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
1594
1268
|
|
1595
1269
|
[[package]]
|
1596
1270
|
name = "uuid"
|
1597
|
-
version = "1.
|
1271
|
+
version = "1.16.0"
|
1598
1272
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1599
|
-
checksum = "
|
1273
|
+
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
|
1600
1274
|
|
1601
1275
|
[[package]]
|
1602
|
-
name = "
|
1603
|
-
version = "0.
|
1276
|
+
name = "uuid-simd"
|
1277
|
+
version = "0.8.0"
|
1604
1278
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1605
|
-
checksum = "
|
1279
|
+
checksum = "23b082222b4f6619906941c17eb2297fff4c2fb96cb60164170522942a200bd8"
|
1280
|
+
dependencies = [
|
1281
|
+
"outref",
|
1282
|
+
"uuid",
|
1283
|
+
"vsimd",
|
1284
|
+
]
|
1606
1285
|
|
1607
1286
|
[[package]]
|
1608
1287
|
name = "version_check"
|
1609
|
-
version = "0.9.
|
1288
|
+
version = "0.9.5"
|
1289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1290
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
1291
|
+
|
1292
|
+
[[package]]
|
1293
|
+
name = "vsimd"
|
1294
|
+
version = "0.8.0"
|
1610
1295
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1611
|
-
checksum = "
|
1296
|
+
checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
|
1612
1297
|
|
1613
1298
|
[[package]]
|
1614
1299
|
name = "want"
|
@@ -1627,23 +1312,24 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
1627
1312
|
|
1628
1313
|
[[package]]
|
1629
1314
|
name = "wasm-bindgen"
|
1630
|
-
version = "0.2.
|
1315
|
+
version = "0.2.100"
|
1631
1316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1632
|
-
checksum = "
|
1317
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
1633
1318
|
dependencies = [
|
1634
1319
|
"cfg-if",
|
1320
|
+
"once_cell",
|
1321
|
+
"rustversion",
|
1635
1322
|
"wasm-bindgen-macro",
|
1636
1323
|
]
|
1637
1324
|
|
1638
1325
|
[[package]]
|
1639
1326
|
name = "wasm-bindgen-backend"
|
1640
|
-
version = "0.2.
|
1327
|
+
version = "0.2.100"
|
1641
1328
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1642
|
-
checksum = "
|
1329
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
1643
1330
|
dependencies = [
|
1644
1331
|
"bumpalo",
|
1645
1332
|
"log",
|
1646
|
-
"once_cell",
|
1647
1333
|
"proc-macro2",
|
1648
1334
|
"quote",
|
1649
1335
|
"syn",
|
@@ -1652,21 +1338,22 @@ dependencies = [
|
|
1652
1338
|
|
1653
1339
|
[[package]]
|
1654
1340
|
name = "wasm-bindgen-futures"
|
1655
|
-
version = "0.4.
|
1341
|
+
version = "0.4.50"
|
1656
1342
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1657
|
-
checksum = "
|
1343
|
+
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
|
1658
1344
|
dependencies = [
|
1659
1345
|
"cfg-if",
|
1660
1346
|
"js-sys",
|
1347
|
+
"once_cell",
|
1661
1348
|
"wasm-bindgen",
|
1662
1349
|
"web-sys",
|
1663
1350
|
]
|
1664
1351
|
|
1665
1352
|
[[package]]
|
1666
1353
|
name = "wasm-bindgen-macro"
|
1667
|
-
version = "0.2.
|
1354
|
+
version = "0.2.100"
|
1668
1355
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1669
|
-
checksum = "
|
1356
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
1670
1357
|
dependencies = [
|
1671
1358
|
"quote",
|
1672
1359
|
"wasm-bindgen-macro-support",
|
@@ -1674,9 +1361,9 @@ dependencies = [
|
|
1674
1361
|
|
1675
1362
|
[[package]]
|
1676
1363
|
name = "wasm-bindgen-macro-support"
|
1677
|
-
version = "0.2.
|
1364
|
+
version = "0.2.100"
|
1678
1365
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1679
|
-
checksum = "
|
1366
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
1680
1367
|
dependencies = [
|
1681
1368
|
"proc-macro2",
|
1682
1369
|
"quote",
|
@@ -1687,33 +1374,56 @@ dependencies = [
|
|
1687
1374
|
|
1688
1375
|
[[package]]
|
1689
1376
|
name = "wasm-bindgen-shared"
|
1690
|
-
version = "0.2.
|
1377
|
+
version = "0.2.100"
|
1691
1378
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1692
|
-
checksum = "
|
1379
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
1380
|
+
dependencies = [
|
1381
|
+
"unicode-ident",
|
1382
|
+
]
|
1693
1383
|
|
1694
1384
|
[[package]]
|
1695
1385
|
name = "web-sys"
|
1696
|
-
version = "0.3.
|
1386
|
+
version = "0.3.77"
|
1697
1387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1698
|
-
checksum = "
|
1388
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
1699
1389
|
dependencies = [
|
1700
1390
|
"js-sys",
|
1701
1391
|
"wasm-bindgen",
|
1702
1392
|
]
|
1703
1393
|
|
1704
1394
|
[[package]]
|
1705
|
-
name = "
|
1706
|
-
version = "0.
|
1395
|
+
name = "windows-link"
|
1396
|
+
version = "0.1.1"
|
1707
1397
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1708
|
-
checksum = "
|
1398
|
+
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
1709
1399
|
|
1710
1400
|
[[package]]
|
1711
|
-
name = "windows-
|
1712
|
-
version = "0.
|
1401
|
+
name = "windows-registry"
|
1402
|
+
version = "0.4.0"
|
1403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1404
|
+
checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
|
1405
|
+
dependencies = [
|
1406
|
+
"windows-result",
|
1407
|
+
"windows-strings",
|
1408
|
+
"windows-targets 0.53.0",
|
1409
|
+
]
|
1410
|
+
|
1411
|
+
[[package]]
|
1412
|
+
name = "windows-result"
|
1413
|
+
version = "0.3.2"
|
1713
1414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1714
|
-
checksum = "
|
1415
|
+
checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
|
1715
1416
|
dependencies = [
|
1716
|
-
"windows-
|
1417
|
+
"windows-link",
|
1418
|
+
]
|
1419
|
+
|
1420
|
+
[[package]]
|
1421
|
+
name = "windows-strings"
|
1422
|
+
version = "0.3.1"
|
1423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1424
|
+
checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
|
1425
|
+
dependencies = [
|
1426
|
+
"windows-link",
|
1717
1427
|
]
|
1718
1428
|
|
1719
1429
|
[[package]]
|
@@ -1722,147 +1432,230 @@ version = "0.52.0"
|
|
1722
1432
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1723
1433
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
1724
1434
|
dependencies = [
|
1725
|
-
"windows-targets 0.52.
|
1435
|
+
"windows-targets 0.52.6",
|
1726
1436
|
]
|
1727
1437
|
|
1728
1438
|
[[package]]
|
1729
1439
|
name = "windows-targets"
|
1730
|
-
version = "0.
|
1440
|
+
version = "0.52.6"
|
1731
1441
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1732
|
-
checksum = "
|
1442
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
1733
1443
|
dependencies = [
|
1734
|
-
"windows_aarch64_gnullvm 0.
|
1735
|
-
"windows_aarch64_msvc 0.
|
1736
|
-
"windows_i686_gnu 0.
|
1737
|
-
"
|
1738
|
-
"
|
1739
|
-
"
|
1740
|
-
"
|
1444
|
+
"windows_aarch64_gnullvm 0.52.6",
|
1445
|
+
"windows_aarch64_msvc 0.52.6",
|
1446
|
+
"windows_i686_gnu 0.52.6",
|
1447
|
+
"windows_i686_gnullvm 0.52.6",
|
1448
|
+
"windows_i686_msvc 0.52.6",
|
1449
|
+
"windows_x86_64_gnu 0.52.6",
|
1450
|
+
"windows_x86_64_gnullvm 0.52.6",
|
1451
|
+
"windows_x86_64_msvc 0.52.6",
|
1741
1452
|
]
|
1742
1453
|
|
1743
1454
|
[[package]]
|
1744
1455
|
name = "windows-targets"
|
1745
|
-
version = "0.
|
1456
|
+
version = "0.53.0"
|
1746
1457
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1747
|
-
checksum = "
|
1458
|
+
checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
|
1748
1459
|
dependencies = [
|
1749
|
-
"windows_aarch64_gnullvm 0.
|
1750
|
-
"windows_aarch64_msvc 0.
|
1751
|
-
"windows_i686_gnu 0.
|
1752
|
-
"
|
1753
|
-
"
|
1754
|
-
"
|
1755
|
-
"
|
1460
|
+
"windows_aarch64_gnullvm 0.53.0",
|
1461
|
+
"windows_aarch64_msvc 0.53.0",
|
1462
|
+
"windows_i686_gnu 0.53.0",
|
1463
|
+
"windows_i686_gnullvm 0.53.0",
|
1464
|
+
"windows_i686_msvc 0.53.0",
|
1465
|
+
"windows_x86_64_gnu 0.53.0",
|
1466
|
+
"windows_x86_64_gnullvm 0.53.0",
|
1467
|
+
"windows_x86_64_msvc 0.53.0",
|
1756
1468
|
]
|
1757
1469
|
|
1758
1470
|
[[package]]
|
1759
1471
|
name = "windows_aarch64_gnullvm"
|
1760
|
-
version = "0.
|
1472
|
+
version = "0.52.6"
|
1761
1473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1762
|
-
checksum = "
|
1474
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
1763
1475
|
|
1764
1476
|
[[package]]
|
1765
1477
|
name = "windows_aarch64_gnullvm"
|
1766
|
-
version = "0.
|
1478
|
+
version = "0.53.0"
|
1767
1479
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1768
|
-
checksum = "
|
1480
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
1769
1481
|
|
1770
1482
|
[[package]]
|
1771
1483
|
name = "windows_aarch64_msvc"
|
1772
|
-
version = "0.
|
1484
|
+
version = "0.52.6"
|
1773
1485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1774
|
-
checksum = "
|
1486
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
1775
1487
|
|
1776
1488
|
[[package]]
|
1777
1489
|
name = "windows_aarch64_msvc"
|
1778
|
-
version = "0.
|
1490
|
+
version = "0.53.0"
|
1779
1491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1780
|
-
checksum = "
|
1492
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
1781
1493
|
|
1782
1494
|
[[package]]
|
1783
1495
|
name = "windows_i686_gnu"
|
1784
|
-
version = "0.
|
1496
|
+
version = "0.52.6"
|
1785
1497
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1786
|
-
checksum = "
|
1498
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
1787
1499
|
|
1788
1500
|
[[package]]
|
1789
1501
|
name = "windows_i686_gnu"
|
1790
|
-
version = "0.
|
1502
|
+
version = "0.53.0"
|
1503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1504
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
1505
|
+
|
1506
|
+
[[package]]
|
1507
|
+
name = "windows_i686_gnullvm"
|
1508
|
+
version = "0.52.6"
|
1509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1510
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
1511
|
+
|
1512
|
+
[[package]]
|
1513
|
+
name = "windows_i686_gnullvm"
|
1514
|
+
version = "0.53.0"
|
1791
1515
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1792
|
-
checksum = "
|
1516
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
1793
1517
|
|
1794
1518
|
[[package]]
|
1795
1519
|
name = "windows_i686_msvc"
|
1796
|
-
version = "0.
|
1520
|
+
version = "0.52.6"
|
1797
1521
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1798
|
-
checksum = "
|
1522
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
1799
1523
|
|
1800
1524
|
[[package]]
|
1801
1525
|
name = "windows_i686_msvc"
|
1802
|
-
version = "0.
|
1526
|
+
version = "0.53.0"
|
1803
1527
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1804
|
-
checksum = "
|
1528
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
1805
1529
|
|
1806
1530
|
[[package]]
|
1807
1531
|
name = "windows_x86_64_gnu"
|
1808
|
-
version = "0.
|
1532
|
+
version = "0.52.6"
|
1809
1533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1810
|
-
checksum = "
|
1534
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
1811
1535
|
|
1812
1536
|
[[package]]
|
1813
1537
|
name = "windows_x86_64_gnu"
|
1814
|
-
version = "0.
|
1538
|
+
version = "0.53.0"
|
1815
1539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1816
|
-
checksum = "
|
1540
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
1817
1541
|
|
1818
1542
|
[[package]]
|
1819
1543
|
name = "windows_x86_64_gnullvm"
|
1820
|
-
version = "0.
|
1544
|
+
version = "0.52.6"
|
1821
1545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1822
|
-
checksum = "
|
1546
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
1823
1547
|
|
1824
1548
|
[[package]]
|
1825
1549
|
name = "windows_x86_64_gnullvm"
|
1826
|
-
version = "0.
|
1550
|
+
version = "0.53.0"
|
1827
1551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1828
|
-
checksum = "
|
1552
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
1829
1553
|
|
1830
1554
|
[[package]]
|
1831
1555
|
name = "windows_x86_64_msvc"
|
1832
|
-
version = "0.
|
1556
|
+
version = "0.52.6"
|
1833
1557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1834
|
-
checksum = "
|
1558
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
1835
1559
|
|
1836
1560
|
[[package]]
|
1837
1561
|
name = "windows_x86_64_msvc"
|
1838
|
-
version = "0.
|
1562
|
+
version = "0.53.0"
|
1563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1564
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
1565
|
+
|
1566
|
+
[[package]]
|
1567
|
+
name = "write16"
|
1568
|
+
version = "1.0.0"
|
1839
1569
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1840
|
-
checksum = "
|
1570
|
+
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
1841
1571
|
|
1842
1572
|
[[package]]
|
1843
|
-
name = "
|
1844
|
-
version = "0.
|
1573
|
+
name = "writeable"
|
1574
|
+
version = "0.5.5"
|
1575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1576
|
+
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
1577
|
+
|
1578
|
+
[[package]]
|
1579
|
+
name = "yoke"
|
1580
|
+
version = "0.7.5"
|
1845
1581
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1846
|
-
checksum = "
|
1582
|
+
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
1847
1583
|
dependencies = [
|
1848
|
-
"
|
1849
|
-
"
|
1584
|
+
"serde",
|
1585
|
+
"stable_deref_trait",
|
1586
|
+
"yoke-derive",
|
1587
|
+
"zerofrom",
|
1588
|
+
]
|
1589
|
+
|
1590
|
+
[[package]]
|
1591
|
+
name = "yoke-derive"
|
1592
|
+
version = "0.7.5"
|
1593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1594
|
+
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
1595
|
+
dependencies = [
|
1596
|
+
"proc-macro2",
|
1597
|
+
"quote",
|
1598
|
+
"syn",
|
1599
|
+
"synstructure",
|
1850
1600
|
]
|
1851
1601
|
|
1852
1602
|
[[package]]
|
1853
1603
|
name = "zerocopy"
|
1854
|
-
version = "0.7.
|
1604
|
+
version = "0.7.35"
|
1855
1605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1856
|
-
checksum = "
|
1606
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
1857
1607
|
dependencies = [
|
1858
1608
|
"zerocopy-derive",
|
1859
1609
|
]
|
1860
1610
|
|
1861
1611
|
[[package]]
|
1862
1612
|
name = "zerocopy-derive"
|
1863
|
-
version = "0.7.
|
1613
|
+
version = "0.7.35"
|
1614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1615
|
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
1616
|
+
dependencies = [
|
1617
|
+
"proc-macro2",
|
1618
|
+
"quote",
|
1619
|
+
"syn",
|
1620
|
+
]
|
1621
|
+
|
1622
|
+
[[package]]
|
1623
|
+
name = "zerofrom"
|
1624
|
+
version = "0.1.6"
|
1625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1626
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
1627
|
+
dependencies = [
|
1628
|
+
"zerofrom-derive",
|
1629
|
+
]
|
1630
|
+
|
1631
|
+
[[package]]
|
1632
|
+
name = "zerofrom-derive"
|
1633
|
+
version = "0.1.6"
|
1634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1635
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
1636
|
+
dependencies = [
|
1637
|
+
"proc-macro2",
|
1638
|
+
"quote",
|
1639
|
+
"syn",
|
1640
|
+
"synstructure",
|
1641
|
+
]
|
1642
|
+
|
1643
|
+
[[package]]
|
1644
|
+
name = "zerovec"
|
1645
|
+
version = "0.10.4"
|
1646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1647
|
+
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
1648
|
+
dependencies = [
|
1649
|
+
"yoke",
|
1650
|
+
"zerofrom",
|
1651
|
+
"zerovec-derive",
|
1652
|
+
]
|
1653
|
+
|
1654
|
+
[[package]]
|
1655
|
+
name = "zerovec-derive"
|
1656
|
+
version = "0.10.3"
|
1864
1657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1865
|
-
checksum = "
|
1658
|
+
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
1866
1659
|
dependencies = [
|
1867
1660
|
"proc-macro2",
|
1868
1661
|
"quote",
|