tokenizers 0.1.2 → 0.2.0
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/CHANGELOG.md +11 -0
- data/Cargo.lock +487 -470
- data/Cargo.toml +9 -12
- data/README.md +1 -3
- data/ext/tokenizers/Cargo.toml +17 -0
- data/ext/tokenizers/extconf.rb +3 -10
- data/ext/tokenizers/src/decoders.rs +14 -0
- data/ext/tokenizers/src/encoding.rs +16 -0
- data/ext/tokenizers/src/error.rs +16 -0
- data/ext/tokenizers/src/lib.rs +64 -0
- data/ext/tokenizers/src/models.rs +19 -0
- data/ext/tokenizers/src/normalizers.rs +14 -0
- data/ext/tokenizers/src/pre_tokenizers.rs +14 -0
- data/ext/tokenizers/src/tokenizer.rs +85 -0
- data/lib/tokenizers/version.rb +1 -1
- data/lib/tokenizers.rb +6 -2
- metadata +27 -5
- data/src/lib.rs +0 -290
data/Cargo.lock
CHANGED
|
@@ -10,39 +10,13 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
|
|
10
10
|
|
|
11
11
|
[[package]]
|
|
12
12
|
name = "aho-corasick"
|
|
13
|
-
version = "0.7.
|
|
13
|
+
version = "0.7.20"
|
|
14
14
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
-
checksum = "
|
|
15
|
+
checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
|
|
16
16
|
dependencies = [
|
|
17
17
|
"memchr",
|
|
18
18
|
]
|
|
19
19
|
|
|
20
|
-
[[package]]
|
|
21
|
-
name = "ansi_term"
|
|
22
|
-
version = "0.12.1"
|
|
23
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
-
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
|
|
25
|
-
dependencies = [
|
|
26
|
-
"winapi",
|
|
27
|
-
]
|
|
28
|
-
|
|
29
|
-
[[package]]
|
|
30
|
-
name = "arrayvec"
|
|
31
|
-
version = "0.5.2"
|
|
32
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
-
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
|
|
34
|
-
|
|
35
|
-
[[package]]
|
|
36
|
-
name = "atty"
|
|
37
|
-
version = "0.2.14"
|
|
38
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
-
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
|
40
|
-
dependencies = [
|
|
41
|
-
"hermit-abi",
|
|
42
|
-
"libc",
|
|
43
|
-
"winapi",
|
|
44
|
-
]
|
|
45
|
-
|
|
46
20
|
[[package]]
|
|
47
21
|
name = "autocfg"
|
|
48
22
|
version = "1.1.0"
|
|
@@ -51,15 +25,28 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
|
51
25
|
|
|
52
26
|
[[package]]
|
|
53
27
|
name = "base64"
|
|
54
|
-
version = "0.
|
|
28
|
+
version = "0.13.1"
|
|
55
29
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
|
-
checksum = "
|
|
30
|
+
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
|
57
31
|
|
|
58
32
|
[[package]]
|
|
59
|
-
name = "
|
|
60
|
-
version = "0.
|
|
33
|
+
name = "bindgen"
|
|
34
|
+
version = "0.60.1"
|
|
61
35
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
-
checksum = "
|
|
36
|
+
checksum = "062dddbc1ba4aca46de6338e2bf87771414c335f7b2f2036e8f3e9befebf88e6"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"bitflags",
|
|
39
|
+
"cexpr",
|
|
40
|
+
"clang-sys",
|
|
41
|
+
"lazy_static",
|
|
42
|
+
"lazycell",
|
|
43
|
+
"peeking_take_while",
|
|
44
|
+
"proc-macro2",
|
|
45
|
+
"quote",
|
|
46
|
+
"regex",
|
|
47
|
+
"rustc-hash",
|
|
48
|
+
"shlex",
|
|
49
|
+
]
|
|
63
50
|
|
|
64
51
|
[[package]]
|
|
65
52
|
name = "bitflags"
|
|
@@ -67,32 +54,20 @@ version = "1.3.2"
|
|
|
67
54
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
55
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
69
56
|
|
|
70
|
-
[[package]]
|
|
71
|
-
name = "bitvec"
|
|
72
|
-
version = "0.19.6"
|
|
73
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
-
checksum = "55f93d0ef3363c364d5976646a38f04cf67cfe1d4c8d160cdea02cab2c116b33"
|
|
75
|
-
dependencies = [
|
|
76
|
-
"funty",
|
|
77
|
-
"radium",
|
|
78
|
-
"tap",
|
|
79
|
-
"wyz",
|
|
80
|
-
]
|
|
81
|
-
|
|
82
57
|
[[package]]
|
|
83
58
|
name = "block-buffer"
|
|
84
|
-
version = "0.10.
|
|
59
|
+
version = "0.10.3"
|
|
85
60
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
-
checksum = "
|
|
61
|
+
checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
|
|
87
62
|
dependencies = [
|
|
88
63
|
"generic-array",
|
|
89
64
|
]
|
|
90
65
|
|
|
91
66
|
[[package]]
|
|
92
67
|
name = "bumpalo"
|
|
93
|
-
version = "3.
|
|
68
|
+
version = "3.11.1"
|
|
94
69
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
-
checksum = "
|
|
70
|
+
checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
|
|
96
71
|
|
|
97
72
|
[[package]]
|
|
98
73
|
name = "byteorder"
|
|
@@ -102,9 +77,9 @@ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
|
|
|
102
77
|
|
|
103
78
|
[[package]]
|
|
104
79
|
name = "bytes"
|
|
105
|
-
version = "1.
|
|
80
|
+
version = "1.3.0"
|
|
106
81
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
-
checksum = "
|
|
82
|
+
checksum = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c"
|
|
108
83
|
|
|
109
84
|
[[package]]
|
|
110
85
|
name = "bzip2"
|
|
@@ -138,7 +113,7 @@ dependencies = [
|
|
|
138
113
|
"glob",
|
|
139
114
|
"indicatif 0.16.2",
|
|
140
115
|
"log",
|
|
141
|
-
"rand
|
|
116
|
+
"rand",
|
|
142
117
|
"reqwest",
|
|
143
118
|
"serde",
|
|
144
119
|
"serde_json",
|
|
@@ -152,9 +127,18 @@ dependencies = [
|
|
|
152
127
|
|
|
153
128
|
[[package]]
|
|
154
129
|
name = "cc"
|
|
155
|
-
version = "1.0.
|
|
130
|
+
version = "1.0.77"
|
|
156
131
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
157
|
-
checksum = "
|
|
132
|
+
checksum = "e9f73505338f7d905b19d18738976aae232eb46b8efc15554ffc56deb5d9ebe4"
|
|
133
|
+
|
|
134
|
+
[[package]]
|
|
135
|
+
name = "cexpr"
|
|
136
|
+
version = "0.6.0"
|
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
139
|
+
dependencies = [
|
|
140
|
+
"nom",
|
|
141
|
+
]
|
|
158
142
|
|
|
159
143
|
[[package]]
|
|
160
144
|
name = "cfg-if"
|
|
@@ -163,30 +147,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
163
147
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
164
148
|
|
|
165
149
|
[[package]]
|
|
166
|
-
name = "
|
|
167
|
-
version = "
|
|
150
|
+
name = "clang-sys"
|
|
151
|
+
version = "1.4.0"
|
|
168
152
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
169
|
-
checksum = "
|
|
153
|
+
checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3"
|
|
170
154
|
dependencies = [
|
|
171
|
-
"
|
|
172
|
-
"
|
|
173
|
-
"
|
|
174
|
-
"strsim 0.8.0",
|
|
175
|
-
"textwrap",
|
|
176
|
-
"unicode-width",
|
|
177
|
-
"vec_map",
|
|
155
|
+
"glob",
|
|
156
|
+
"libc",
|
|
157
|
+
"libloading",
|
|
178
158
|
]
|
|
179
159
|
|
|
180
160
|
[[package]]
|
|
181
161
|
name = "console"
|
|
182
|
-
version = "0.15.
|
|
162
|
+
version = "0.15.2"
|
|
183
163
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
|
-
checksum = "
|
|
164
|
+
checksum = "c050367d967ced717c04b65d8c619d863ef9292ce0c5760028655a2fb298718c"
|
|
185
165
|
dependencies = [
|
|
186
166
|
"encode_unicode",
|
|
167
|
+
"lazy_static",
|
|
187
168
|
"libc",
|
|
188
|
-
"once_cell",
|
|
189
|
-
"regex",
|
|
190
169
|
"terminal_size",
|
|
191
170
|
"unicode-width",
|
|
192
171
|
"winapi",
|
|
@@ -210,9 +189,9 @@ checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
|
|
|
210
189
|
|
|
211
190
|
[[package]]
|
|
212
191
|
name = "cpufeatures"
|
|
213
|
-
version = "0.2.
|
|
192
|
+
version = "0.2.5"
|
|
214
193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
-
checksum = "
|
|
194
|
+
checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
|
|
216
195
|
dependencies = [
|
|
217
196
|
"libc",
|
|
218
197
|
]
|
|
@@ -228,9 +207,9 @@ dependencies = [
|
|
|
228
207
|
|
|
229
208
|
[[package]]
|
|
230
209
|
name = "crossbeam-channel"
|
|
231
|
-
version = "0.5.
|
|
210
|
+
version = "0.5.6"
|
|
232
211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
-
checksum = "
|
|
212
|
+
checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
|
|
234
213
|
dependencies = [
|
|
235
214
|
"cfg-if",
|
|
236
215
|
"crossbeam-utils",
|
|
@@ -238,9 +217,9 @@ dependencies = [
|
|
|
238
217
|
|
|
239
218
|
[[package]]
|
|
240
219
|
name = "crossbeam-deque"
|
|
241
|
-
version = "0.8.
|
|
220
|
+
version = "0.8.2"
|
|
242
221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
-
checksum = "
|
|
222
|
+
checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
|
|
244
223
|
dependencies = [
|
|
245
224
|
"cfg-if",
|
|
246
225
|
"crossbeam-epoch",
|
|
@@ -249,33 +228,31 @@ dependencies = [
|
|
|
249
228
|
|
|
250
229
|
[[package]]
|
|
251
230
|
name = "crossbeam-epoch"
|
|
252
|
-
version = "0.9.
|
|
231
|
+
version = "0.9.13"
|
|
253
232
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
-
checksum = "
|
|
233
|
+
checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a"
|
|
255
234
|
dependencies = [
|
|
256
235
|
"autocfg",
|
|
257
236
|
"cfg-if",
|
|
258
237
|
"crossbeam-utils",
|
|
259
|
-
"lazy_static",
|
|
260
238
|
"memoffset",
|
|
261
239
|
"scopeguard",
|
|
262
240
|
]
|
|
263
241
|
|
|
264
242
|
[[package]]
|
|
265
243
|
name = "crossbeam-utils"
|
|
266
|
-
version = "0.8.
|
|
244
|
+
version = "0.8.14"
|
|
267
245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
268
|
-
checksum = "
|
|
246
|
+
checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f"
|
|
269
247
|
dependencies = [
|
|
270
248
|
"cfg-if",
|
|
271
|
-
"lazy_static",
|
|
272
249
|
]
|
|
273
250
|
|
|
274
251
|
[[package]]
|
|
275
252
|
name = "crypto-common"
|
|
276
|
-
version = "0.1.
|
|
253
|
+
version = "0.1.6"
|
|
277
254
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
-
checksum = "
|
|
255
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
279
256
|
dependencies = [
|
|
280
257
|
"generic-array",
|
|
281
258
|
"typenum",
|
|
@@ -301,7 +278,7 @@ dependencies = [
|
|
|
301
278
|
"ident_case",
|
|
302
279
|
"proc-macro2",
|
|
303
280
|
"quote",
|
|
304
|
-
"strsim
|
|
281
|
+
"strsim",
|
|
305
282
|
"syn",
|
|
306
283
|
]
|
|
307
284
|
|
|
@@ -343,9 +320,9 @@ dependencies = [
|
|
|
343
320
|
|
|
344
321
|
[[package]]
|
|
345
322
|
name = "digest"
|
|
346
|
-
version = "0.10.
|
|
323
|
+
version = "0.10.6"
|
|
347
324
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
-
checksum = "
|
|
325
|
+
checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
|
|
349
326
|
dependencies = [
|
|
350
327
|
"block-buffer",
|
|
351
328
|
"crypto-common",
|
|
@@ -373,9 +350,9 @@ dependencies = [
|
|
|
373
350
|
|
|
374
351
|
[[package]]
|
|
375
352
|
name = "either"
|
|
376
|
-
version = "1.
|
|
353
|
+
version = "1.8.0"
|
|
377
354
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
-
checksum = "
|
|
355
|
+
checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
|
|
379
356
|
|
|
380
357
|
[[package]]
|
|
381
358
|
name = "encode_unicode"
|
|
@@ -385,52 +362,50 @@ checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
|
|
|
385
362
|
|
|
386
363
|
[[package]]
|
|
387
364
|
name = "encoding_rs"
|
|
388
|
-
version = "0.8.
|
|
365
|
+
version = "0.8.31"
|
|
389
366
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
-
checksum = "
|
|
367
|
+
checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
|
|
391
368
|
dependencies = [
|
|
392
369
|
"cfg-if",
|
|
393
370
|
]
|
|
394
371
|
|
|
395
372
|
[[package]]
|
|
396
373
|
name = "esaxx-rs"
|
|
397
|
-
version = "0.1.
|
|
374
|
+
version = "0.1.8"
|
|
398
375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
-
checksum = "
|
|
376
|
+
checksum = "1f748b253ceca9fed5f42f8b5ceb3851e93102199bc25b64b65369f76e5c0a35"
|
|
400
377
|
dependencies = [
|
|
401
378
|
"cc",
|
|
402
379
|
]
|
|
403
380
|
|
|
404
381
|
[[package]]
|
|
405
382
|
name = "fastrand"
|
|
406
|
-
version = "1.
|
|
383
|
+
version = "1.8.0"
|
|
407
384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
-
checksum = "
|
|
385
|
+
checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
|
|
409
386
|
dependencies = [
|
|
410
387
|
"instant",
|
|
411
388
|
]
|
|
412
389
|
|
|
413
390
|
[[package]]
|
|
414
391
|
name = "filetime"
|
|
415
|
-
version = "0.2.
|
|
392
|
+
version = "0.2.18"
|
|
416
393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
-
checksum = "
|
|
394
|
+
checksum = "4b9663d381d07ae25dc88dbdf27df458faa83a9b25336bcac83d5e452b5fc9d3"
|
|
418
395
|
dependencies = [
|
|
419
396
|
"cfg-if",
|
|
420
397
|
"libc",
|
|
421
398
|
"redox_syscall",
|
|
422
|
-
"
|
|
399
|
+
"windows-sys 0.42.0",
|
|
423
400
|
]
|
|
424
401
|
|
|
425
402
|
[[package]]
|
|
426
403
|
name = "flate2"
|
|
427
|
-
version = "1.0.
|
|
404
|
+
version = "1.0.25"
|
|
428
405
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
-
checksum = "
|
|
406
|
+
checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
|
|
430
407
|
dependencies = [
|
|
431
|
-
"cfg-if",
|
|
432
408
|
"crc32fast",
|
|
433
|
-
"libc",
|
|
434
409
|
"miniz_oxide",
|
|
435
410
|
]
|
|
436
411
|
|
|
@@ -457,11 +432,10 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
|
457
432
|
|
|
458
433
|
[[package]]
|
|
459
434
|
name = "form_urlencoded"
|
|
460
|
-
version = "1.0
|
|
435
|
+
version = "1.1.0"
|
|
461
436
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
-
checksum = "
|
|
437
|
+
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
|
|
463
438
|
dependencies = [
|
|
464
|
-
"matches",
|
|
465
439
|
"percent-encoding",
|
|
466
440
|
]
|
|
467
441
|
|
|
@@ -475,50 +449,44 @@ dependencies = [
|
|
|
475
449
|
"winapi",
|
|
476
450
|
]
|
|
477
451
|
|
|
478
|
-
[[package]]
|
|
479
|
-
name = "funty"
|
|
480
|
-
version = "1.1.0"
|
|
481
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
-
checksum = "fed34cd105917e91daa4da6b3728c47b068749d6a62c59811f06ed2ac71d9da7"
|
|
483
|
-
|
|
484
452
|
[[package]]
|
|
485
453
|
name = "futures-channel"
|
|
486
|
-
version = "0.3.
|
|
454
|
+
version = "0.3.25"
|
|
487
455
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
488
|
-
checksum = "
|
|
456
|
+
checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed"
|
|
489
457
|
dependencies = [
|
|
490
458
|
"futures-core",
|
|
491
459
|
]
|
|
492
460
|
|
|
493
461
|
[[package]]
|
|
494
462
|
name = "futures-core"
|
|
495
|
-
version = "0.3.
|
|
463
|
+
version = "0.3.25"
|
|
496
464
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
497
|
-
checksum = "
|
|
465
|
+
checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac"
|
|
498
466
|
|
|
499
467
|
[[package]]
|
|
500
468
|
name = "futures-io"
|
|
501
|
-
version = "0.3.
|
|
469
|
+
version = "0.3.25"
|
|
502
470
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
-
checksum = "
|
|
471
|
+
checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb"
|
|
504
472
|
|
|
505
473
|
[[package]]
|
|
506
474
|
name = "futures-sink"
|
|
507
|
-
version = "0.3.
|
|
475
|
+
version = "0.3.25"
|
|
508
476
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
509
|
-
checksum = "
|
|
477
|
+
checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9"
|
|
510
478
|
|
|
511
479
|
[[package]]
|
|
512
480
|
name = "futures-task"
|
|
513
|
-
version = "0.3.
|
|
481
|
+
version = "0.3.25"
|
|
514
482
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
-
checksum = "
|
|
483
|
+
checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea"
|
|
516
484
|
|
|
517
485
|
[[package]]
|
|
518
486
|
name = "futures-util"
|
|
519
|
-
version = "0.3.
|
|
487
|
+
version = "0.3.25"
|
|
520
488
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
-
checksum = "
|
|
489
|
+
checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
|
|
522
490
|
dependencies = [
|
|
523
491
|
"futures-core",
|
|
524
492
|
"futures-io",
|
|
@@ -531,9 +499,9 @@ dependencies = [
|
|
|
531
499
|
|
|
532
500
|
[[package]]
|
|
533
501
|
name = "generic-array"
|
|
534
|
-
version = "0.14.
|
|
502
|
+
version = "0.14.6"
|
|
535
503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
-
checksum = "
|
|
504
|
+
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
|
|
537
505
|
dependencies = [
|
|
538
506
|
"typenum",
|
|
539
507
|
"version_check",
|
|
@@ -541,24 +509,13 @@ dependencies = [
|
|
|
541
509
|
|
|
542
510
|
[[package]]
|
|
543
511
|
name = "getrandom"
|
|
544
|
-
version = "0.
|
|
545
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
546
|
-
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
|
|
547
|
-
dependencies = [
|
|
548
|
-
"cfg-if",
|
|
549
|
-
"libc",
|
|
550
|
-
"wasi 0.9.0+wasi-snapshot-preview1",
|
|
551
|
-
]
|
|
552
|
-
|
|
553
|
-
[[package]]
|
|
554
|
-
name = "getrandom"
|
|
555
|
-
version = "0.2.5"
|
|
512
|
+
version = "0.2.8"
|
|
556
513
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
-
checksum = "
|
|
514
|
+
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
|
|
558
515
|
dependencies = [
|
|
559
516
|
"cfg-if",
|
|
560
517
|
"libc",
|
|
561
|
-
"wasi 0.
|
|
518
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
562
519
|
]
|
|
563
520
|
|
|
564
521
|
[[package]]
|
|
@@ -569,9 +526,9 @@ checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
|
|
|
569
526
|
|
|
570
527
|
[[package]]
|
|
571
528
|
name = "h2"
|
|
572
|
-
version = "0.3.
|
|
529
|
+
version = "0.3.15"
|
|
573
530
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
-
checksum = "
|
|
531
|
+
checksum = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4"
|
|
575
532
|
dependencies = [
|
|
576
533
|
"bytes",
|
|
577
534
|
"fnv",
|
|
@@ -588,9 +545,9 @@ dependencies = [
|
|
|
588
545
|
|
|
589
546
|
[[package]]
|
|
590
547
|
name = "hashbrown"
|
|
591
|
-
version = "0.
|
|
548
|
+
version = "0.12.3"
|
|
592
549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
-
checksum = "
|
|
550
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
594
551
|
|
|
595
552
|
[[package]]
|
|
596
553
|
name = "hermit-abi"
|
|
@@ -603,9 +560,9 @@ dependencies = [
|
|
|
603
560
|
|
|
604
561
|
[[package]]
|
|
605
562
|
name = "http"
|
|
606
|
-
version = "0.2.
|
|
563
|
+
version = "0.2.8"
|
|
607
564
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
-
checksum = "
|
|
565
|
+
checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
|
|
609
566
|
dependencies = [
|
|
610
567
|
"bytes",
|
|
611
568
|
"fnv",
|
|
@@ -614,9 +571,9 @@ dependencies = [
|
|
|
614
571
|
|
|
615
572
|
[[package]]
|
|
616
573
|
name = "http-body"
|
|
617
|
-
version = "0.4.
|
|
574
|
+
version = "0.4.5"
|
|
618
575
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
-
checksum = "
|
|
576
|
+
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
|
|
620
577
|
dependencies = [
|
|
621
578
|
"bytes",
|
|
622
579
|
"http",
|
|
@@ -625,9 +582,9 @@ dependencies = [
|
|
|
625
582
|
|
|
626
583
|
[[package]]
|
|
627
584
|
name = "httparse"
|
|
628
|
-
version = "1.
|
|
585
|
+
version = "1.8.0"
|
|
629
586
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
-
checksum = "
|
|
587
|
+
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
|
|
631
588
|
|
|
632
589
|
[[package]]
|
|
633
590
|
name = "httpdate"
|
|
@@ -637,9 +594,9 @@ checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
|
|
|
637
594
|
|
|
638
595
|
[[package]]
|
|
639
596
|
name = "hyper"
|
|
640
|
-
version = "0.14.
|
|
597
|
+
version = "0.14.23"
|
|
641
598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
-
checksum = "
|
|
599
|
+
checksum = "034711faac9d2166cb1baf1a2fb0b60b1f277f8492fd72176c17f3515e1abd3c"
|
|
643
600
|
dependencies = [
|
|
644
601
|
"bytes",
|
|
645
602
|
"futures-channel",
|
|
@@ -680,20 +637,19 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
|
680
637
|
|
|
681
638
|
[[package]]
|
|
682
639
|
name = "idna"
|
|
683
|
-
version = "0.
|
|
640
|
+
version = "0.3.0"
|
|
684
641
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
685
|
-
checksum = "
|
|
642
|
+
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
|
|
686
643
|
dependencies = [
|
|
687
|
-
"matches",
|
|
688
644
|
"unicode-bidi",
|
|
689
645
|
"unicode-normalization",
|
|
690
646
|
]
|
|
691
647
|
|
|
692
648
|
[[package]]
|
|
693
649
|
name = "indexmap"
|
|
694
|
-
version = "1.
|
|
650
|
+
version = "1.9.2"
|
|
695
651
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
|
-
checksum = "
|
|
652
|
+
checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
|
|
697
653
|
dependencies = [
|
|
698
654
|
"autocfg",
|
|
699
655
|
"hashbrown",
|
|
@@ -734,9 +690,9 @@ dependencies = [
|
|
|
734
690
|
|
|
735
691
|
[[package]]
|
|
736
692
|
name = "ipnet"
|
|
737
|
-
version = "2.
|
|
693
|
+
version = "2.5.1"
|
|
738
694
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
739
|
-
checksum = "
|
|
695
|
+
checksum = "f88c5561171189e69df9d98bcf18fd5f9558300f7ea7b801eb8a0fd748bd8745"
|
|
740
696
|
|
|
741
697
|
[[package]]
|
|
742
698
|
name = "itertools"
|
|
@@ -758,15 +714,15 @@ dependencies = [
|
|
|
758
714
|
|
|
759
715
|
[[package]]
|
|
760
716
|
name = "itoa"
|
|
761
|
-
version = "1.0.
|
|
717
|
+
version = "1.0.4"
|
|
762
718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
763
|
-
checksum = "
|
|
719
|
+
checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
|
|
764
720
|
|
|
765
721
|
[[package]]
|
|
766
722
|
name = "js-sys"
|
|
767
|
-
version = "0.3.
|
|
723
|
+
version = "0.3.60"
|
|
768
724
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
769
|
-
checksum = "
|
|
725
|
+
checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
|
|
770
726
|
dependencies = [
|
|
771
727
|
"wasm-bindgen",
|
|
772
728
|
]
|
|
@@ -778,65 +734,84 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
778
734
|
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
779
735
|
|
|
780
736
|
[[package]]
|
|
781
|
-
name = "
|
|
782
|
-
version = "
|
|
737
|
+
name = "lazycell"
|
|
738
|
+
version = "1.3.0"
|
|
783
739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
-
checksum = "
|
|
785
|
-
dependencies = [
|
|
786
|
-
"arrayvec",
|
|
787
|
-
"bitflags",
|
|
788
|
-
"cfg-if",
|
|
789
|
-
"ryu",
|
|
790
|
-
"static_assertions",
|
|
791
|
-
]
|
|
740
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
792
741
|
|
|
793
742
|
[[package]]
|
|
794
743
|
name = "libc"
|
|
795
|
-
version = "0.2.
|
|
744
|
+
version = "0.2.137"
|
|
796
745
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
|
-
checksum = "
|
|
746
|
+
checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89"
|
|
747
|
+
|
|
748
|
+
[[package]]
|
|
749
|
+
name = "libloading"
|
|
750
|
+
version = "0.7.4"
|
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
+
checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
|
|
753
|
+
dependencies = [
|
|
754
|
+
"cfg-if",
|
|
755
|
+
"winapi",
|
|
756
|
+
]
|
|
798
757
|
|
|
799
758
|
[[package]]
|
|
800
759
|
name = "log"
|
|
801
|
-
version = "0.4.
|
|
760
|
+
version = "0.4.17"
|
|
802
761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
-
checksum = "
|
|
762
|
+
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
|
|
804
763
|
dependencies = [
|
|
805
764
|
"cfg-if",
|
|
806
765
|
]
|
|
807
766
|
|
|
808
767
|
[[package]]
|
|
809
768
|
name = "macro_rules_attribute"
|
|
810
|
-
version = "0.
|
|
769
|
+
version = "0.1.3"
|
|
811
770
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
-
checksum = "
|
|
771
|
+
checksum = "cf0c9b980bf4f3a37fd7b1c066941dd1b1d0152ce6ee6e8fe8c49b9f6810d862"
|
|
813
772
|
dependencies = [
|
|
814
773
|
"macro_rules_attribute-proc_macro",
|
|
774
|
+
"paste",
|
|
815
775
|
]
|
|
816
776
|
|
|
817
777
|
[[package]]
|
|
818
778
|
name = "macro_rules_attribute-proc_macro"
|
|
819
|
-
version = "0.
|
|
779
|
+
version = "0.1.3"
|
|
820
780
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
821
|
-
checksum = "
|
|
781
|
+
checksum = "58093314a45e00c77d5c508f76e77c3396afbbc0d01506e7fae47b018bac2b1d"
|
|
822
782
|
|
|
823
783
|
[[package]]
|
|
824
|
-
name = "
|
|
825
|
-
version = "0.
|
|
784
|
+
name = "magnus"
|
|
785
|
+
version = "0.4.2"
|
|
826
786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
827
|
-
checksum = "
|
|
787
|
+
checksum = "a5f7b798b39aaa0781f3c34f5c8d510d0990b43f8ff6fbd20709d1edfbac5201"
|
|
788
|
+
dependencies = [
|
|
789
|
+
"magnus-macros",
|
|
790
|
+
"rb-sys",
|
|
791
|
+
"rb-sys-env",
|
|
792
|
+
]
|
|
793
|
+
|
|
794
|
+
[[package]]
|
|
795
|
+
name = "magnus-macros"
|
|
796
|
+
version = "0.2.0"
|
|
797
|
+
source = "git+https://github.com/matsadler/magnus#0ccc4cb4b0f3e054ad71356fcae2f1f8ba4aa385"
|
|
798
|
+
dependencies = [
|
|
799
|
+
"proc-macro2",
|
|
800
|
+
"quote",
|
|
801
|
+
"syn",
|
|
802
|
+
]
|
|
828
803
|
|
|
829
804
|
[[package]]
|
|
830
805
|
name = "memchr"
|
|
831
|
-
version = "2.
|
|
806
|
+
version = "2.5.0"
|
|
832
807
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
833
|
-
checksum = "
|
|
808
|
+
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
|
834
809
|
|
|
835
810
|
[[package]]
|
|
836
811
|
name = "memoffset"
|
|
837
|
-
version = "0.
|
|
812
|
+
version = "0.7.1"
|
|
838
813
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
-
checksum = "
|
|
814
|
+
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
|
|
840
815
|
dependencies = [
|
|
841
816
|
"autocfg",
|
|
842
817
|
]
|
|
@@ -847,44 +822,38 @@ version = "0.3.16"
|
|
|
847
822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
823
|
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
|
|
849
824
|
|
|
825
|
+
[[package]]
|
|
826
|
+
name = "minimal-lexical"
|
|
827
|
+
version = "0.2.1"
|
|
828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
829
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
830
|
+
|
|
850
831
|
[[package]]
|
|
851
832
|
name = "miniz_oxide"
|
|
852
|
-
version = "0.
|
|
833
|
+
version = "0.6.2"
|
|
853
834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
|
-
checksum = "
|
|
835
|
+
checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
|
|
855
836
|
dependencies = [
|
|
856
837
|
"adler",
|
|
857
|
-
"autocfg",
|
|
858
838
|
]
|
|
859
839
|
|
|
860
840
|
[[package]]
|
|
861
841
|
name = "mio"
|
|
862
|
-
version = "0.8.
|
|
842
|
+
version = "0.8.5"
|
|
863
843
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
864
|
-
checksum = "
|
|
844
|
+
checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
|
|
865
845
|
dependencies = [
|
|
866
846
|
"libc",
|
|
867
847
|
"log",
|
|
868
|
-
"miow",
|
|
869
|
-
"ntapi",
|
|
870
848
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
871
|
-
"
|
|
872
|
-
]
|
|
873
|
-
|
|
874
|
-
[[package]]
|
|
875
|
-
name = "miow"
|
|
876
|
-
version = "0.3.7"
|
|
877
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
-
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
|
|
879
|
-
dependencies = [
|
|
880
|
-
"winapi",
|
|
849
|
+
"windows-sys 0.42.0",
|
|
881
850
|
]
|
|
882
851
|
|
|
883
852
|
[[package]]
|
|
884
853
|
name = "native-tls"
|
|
885
|
-
version = "0.2.
|
|
854
|
+
version = "0.2.11"
|
|
886
855
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
-
checksum = "
|
|
856
|
+
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
|
|
888
857
|
dependencies = [
|
|
889
858
|
"lazy_static",
|
|
890
859
|
"libc",
|
|
@@ -900,31 +869,19 @@ dependencies = [
|
|
|
900
869
|
|
|
901
870
|
[[package]]
|
|
902
871
|
name = "nom"
|
|
903
|
-
version = "
|
|
872
|
+
version = "7.1.1"
|
|
904
873
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
-
checksum = "
|
|
874
|
+
checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
|
|
906
875
|
dependencies = [
|
|
907
|
-
"bitvec",
|
|
908
|
-
"funty",
|
|
909
|
-
"lexical-core",
|
|
910
876
|
"memchr",
|
|
911
|
-
"
|
|
912
|
-
]
|
|
913
|
-
|
|
914
|
-
[[package]]
|
|
915
|
-
name = "ntapi"
|
|
916
|
-
version = "0.3.7"
|
|
917
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
918
|
-
checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
|
|
919
|
-
dependencies = [
|
|
920
|
-
"winapi",
|
|
877
|
+
"minimal-lexical",
|
|
921
878
|
]
|
|
922
879
|
|
|
923
880
|
[[package]]
|
|
924
881
|
name = "num_cpus"
|
|
925
|
-
version = "1.
|
|
882
|
+
version = "1.14.0"
|
|
926
883
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
927
|
-
checksum = "
|
|
884
|
+
checksum = "f6058e64324c71e02bc2b150e4f3bc8286db6c83092132ffa3f6b1eab0f9def5"
|
|
928
885
|
dependencies = [
|
|
929
886
|
"hermit-abi",
|
|
930
887
|
"libc",
|
|
@@ -939,32 +896,31 @@ checksum = "17b02fc0ff9a9e4b35b3342880f48e896ebf69f2967921fe8646bf5b7125956a"
|
|
|
939
896
|
[[package]]
|
|
940
897
|
name = "number_prefix"
|
|
941
898
|
version = "0.4.0"
|
|
942
|
-
source = "
|
|
943
|
-
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
|
899
|
+
source = "git+https://github.com/ankane/rust-number-prefix?branch=license-file#ce5a6a760b04c0f309e6d8fd7f72f5906c89723d"
|
|
944
900
|
|
|
945
901
|
[[package]]
|
|
946
902
|
name = "once_cell"
|
|
947
|
-
version = "1.
|
|
903
|
+
version = "1.16.0"
|
|
948
904
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
-
checksum = "
|
|
905
|
+
checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
|
|
950
906
|
|
|
951
907
|
[[package]]
|
|
952
908
|
name = "onig"
|
|
953
|
-
version = "6.
|
|
909
|
+
version = "6.4.0"
|
|
954
910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
-
checksum = "
|
|
911
|
+
checksum = "8c4b31c8722ad9171c6d77d3557db078cab2bd50afcc9d09c8b315c59df8ca4f"
|
|
956
912
|
dependencies = [
|
|
957
913
|
"bitflags",
|
|
958
|
-
"lazy_static",
|
|
959
914
|
"libc",
|
|
915
|
+
"once_cell",
|
|
960
916
|
"onig_sys",
|
|
961
917
|
]
|
|
962
918
|
|
|
963
919
|
[[package]]
|
|
964
920
|
name = "onig_sys"
|
|
965
|
-
version = "69.
|
|
921
|
+
version = "69.8.1"
|
|
966
922
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
967
|
-
checksum = "
|
|
923
|
+
checksum = "7b829e3d7e9cc74c7e315ee8edb185bf4190da5acde74afd7fc59c35b1f086e7"
|
|
968
924
|
dependencies = [
|
|
969
925
|
"cc",
|
|
970
926
|
"pkg-config",
|
|
@@ -972,18 +928,30 @@ dependencies = [
|
|
|
972
928
|
|
|
973
929
|
[[package]]
|
|
974
930
|
name = "openssl"
|
|
975
|
-
version = "0.10.
|
|
931
|
+
version = "0.10.43"
|
|
976
932
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
-
checksum = "
|
|
933
|
+
checksum = "020433887e44c27ff16365eaa2d380547a94544ad509aff6eb5b6e3e0b27b376"
|
|
978
934
|
dependencies = [
|
|
979
935
|
"bitflags",
|
|
980
936
|
"cfg-if",
|
|
981
937
|
"foreign-types",
|
|
982
938
|
"libc",
|
|
983
939
|
"once_cell",
|
|
940
|
+
"openssl-macros",
|
|
984
941
|
"openssl-sys",
|
|
985
942
|
]
|
|
986
943
|
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "openssl-macros"
|
|
946
|
+
version = "0.1.0"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
|
|
949
|
+
dependencies = [
|
|
950
|
+
"proc-macro2",
|
|
951
|
+
"quote",
|
|
952
|
+
"syn",
|
|
953
|
+
]
|
|
954
|
+
|
|
987
955
|
[[package]]
|
|
988
956
|
name = "openssl-probe"
|
|
989
957
|
version = "0.1.5"
|
|
@@ -992,9 +960,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
|
|
992
960
|
|
|
993
961
|
[[package]]
|
|
994
962
|
name = "openssl-sys"
|
|
995
|
-
version = "0.9.
|
|
963
|
+
version = "0.9.78"
|
|
996
964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
-
checksum = "
|
|
965
|
+
checksum = "07d5c8cb6e57b3a3612064d7b18b117912b4ce70955c2504d4b741c9e244b132"
|
|
998
966
|
dependencies = [
|
|
999
967
|
"autocfg",
|
|
1000
968
|
"cc",
|
|
@@ -1005,21 +973,27 @@ dependencies = [
|
|
|
1005
973
|
|
|
1006
974
|
[[package]]
|
|
1007
975
|
name = "paste"
|
|
1008
|
-
version = "1.0.
|
|
976
|
+
version = "1.0.9"
|
|
1009
977
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1010
|
-
checksum = "
|
|
978
|
+
checksum = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1"
|
|
979
|
+
|
|
980
|
+
[[package]]
|
|
981
|
+
name = "peeking_take_while"
|
|
982
|
+
version = "0.1.2"
|
|
983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
+
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
|
1011
985
|
|
|
1012
986
|
[[package]]
|
|
1013
987
|
name = "percent-encoding"
|
|
1014
|
-
version = "2.
|
|
988
|
+
version = "2.2.0"
|
|
1015
989
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
-
checksum = "
|
|
990
|
+
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
|
|
1017
991
|
|
|
1018
992
|
[[package]]
|
|
1019
993
|
name = "pin-project-lite"
|
|
1020
|
-
version = "0.2.
|
|
994
|
+
version = "0.2.9"
|
|
1021
995
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
-
checksum = "
|
|
996
|
+
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
|
|
1023
997
|
|
|
1024
998
|
[[package]]
|
|
1025
999
|
name = "pin-utils"
|
|
@@ -1029,53 +1003,34 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
|
1029
1003
|
|
|
1030
1004
|
[[package]]
|
|
1031
1005
|
name = "pkg-config"
|
|
1032
|
-
version = "0.3.
|
|
1006
|
+
version = "0.3.26"
|
|
1033
1007
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1034
|
-
checksum = "
|
|
1008
|
+
checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
|
|
1035
1009
|
|
|
1036
1010
|
[[package]]
|
|
1037
1011
|
name = "ppv-lite86"
|
|
1038
|
-
version = "0.2.
|
|
1012
|
+
version = "0.2.17"
|
|
1039
1013
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
-
checksum = "
|
|
1014
|
+
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
1041
1015
|
|
|
1042
1016
|
[[package]]
|
|
1043
1017
|
name = "proc-macro2"
|
|
1044
|
-
version = "1.0.
|
|
1018
|
+
version = "1.0.47"
|
|
1045
1019
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1046
|
-
checksum = "
|
|
1020
|
+
checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725"
|
|
1047
1021
|
dependencies = [
|
|
1048
|
-
"unicode-
|
|
1022
|
+
"unicode-ident",
|
|
1049
1023
|
]
|
|
1050
1024
|
|
|
1051
1025
|
[[package]]
|
|
1052
1026
|
name = "quote"
|
|
1053
|
-
version = "1.0.
|
|
1027
|
+
version = "1.0.21"
|
|
1054
1028
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1055
|
-
checksum = "
|
|
1029
|
+
checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
|
|
1056
1030
|
dependencies = [
|
|
1057
1031
|
"proc-macro2",
|
|
1058
1032
|
]
|
|
1059
1033
|
|
|
1060
|
-
[[package]]
|
|
1061
|
-
name = "radium"
|
|
1062
|
-
version = "0.5.3"
|
|
1063
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1064
|
-
checksum = "941ba9d78d8e2f7ce474c015eea4d9c6d25b6a3327f9832ee29a4de27f91bbb8"
|
|
1065
|
-
|
|
1066
|
-
[[package]]
|
|
1067
|
-
name = "rand"
|
|
1068
|
-
version = "0.7.3"
|
|
1069
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1070
|
-
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
|
|
1071
|
-
dependencies = [
|
|
1072
|
-
"getrandom 0.1.16",
|
|
1073
|
-
"libc",
|
|
1074
|
-
"rand_chacha 0.2.2",
|
|
1075
|
-
"rand_core 0.5.1",
|
|
1076
|
-
"rand_hc",
|
|
1077
|
-
]
|
|
1078
|
-
|
|
1079
1034
|
[[package]]
|
|
1080
1035
|
name = "rand"
|
|
1081
1036
|
version = "0.8.5"
|
|
@@ -1083,18 +1038,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1083
1038
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
1084
1039
|
dependencies = [
|
|
1085
1040
|
"libc",
|
|
1086
|
-
"rand_chacha
|
|
1087
|
-
"rand_core
|
|
1088
|
-
]
|
|
1089
|
-
|
|
1090
|
-
[[package]]
|
|
1091
|
-
name = "rand_chacha"
|
|
1092
|
-
version = "0.2.2"
|
|
1093
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1094
|
-
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
|
|
1095
|
-
dependencies = [
|
|
1096
|
-
"ppv-lite86",
|
|
1097
|
-
"rand_core 0.5.1",
|
|
1041
|
+
"rand_chacha",
|
|
1042
|
+
"rand_core",
|
|
1098
1043
|
]
|
|
1099
1044
|
|
|
1100
1045
|
[[package]]
|
|
@@ -1104,43 +1049,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1104
1049
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1105
1050
|
dependencies = [
|
|
1106
1051
|
"ppv-lite86",
|
|
1107
|
-
"rand_core
|
|
1052
|
+
"rand_core",
|
|
1108
1053
|
]
|
|
1109
1054
|
|
|
1110
1055
|
[[package]]
|
|
1111
1056
|
name = "rand_core"
|
|
1112
|
-
version = "0.
|
|
1113
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1114
|
-
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
|
|
1115
|
-
dependencies = [
|
|
1116
|
-
"getrandom 0.1.16",
|
|
1117
|
-
]
|
|
1118
|
-
|
|
1119
|
-
[[package]]
|
|
1120
|
-
name = "rand_core"
|
|
1121
|
-
version = "0.6.3"
|
|
1122
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1123
|
-
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
|
|
1124
|
-
dependencies = [
|
|
1125
|
-
"getrandom 0.2.5",
|
|
1126
|
-
]
|
|
1127
|
-
|
|
1128
|
-
[[package]]
|
|
1129
|
-
name = "rand_hc"
|
|
1130
|
-
version = "0.2.0"
|
|
1057
|
+
version = "0.6.4"
|
|
1131
1058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1132
|
-
checksum = "
|
|
1059
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1133
1060
|
dependencies = [
|
|
1134
|
-
"
|
|
1061
|
+
"getrandom",
|
|
1135
1062
|
]
|
|
1136
1063
|
|
|
1137
1064
|
[[package]]
|
|
1138
1065
|
name = "rayon"
|
|
1139
|
-
version = "1.
|
|
1066
|
+
version = "1.6.0"
|
|
1140
1067
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1141
|
-
checksum = "
|
|
1068
|
+
checksum = "1e060280438193c554f654141c9ea9417886713b7acd75974c85b18a69a88e0b"
|
|
1142
1069
|
dependencies = [
|
|
1143
|
-
"autocfg",
|
|
1144
1070
|
"crossbeam-deque",
|
|
1145
1071
|
"either",
|
|
1146
1072
|
"rayon-core",
|
|
@@ -1159,42 +1085,66 @@ dependencies = [
|
|
|
1159
1085
|
|
|
1160
1086
|
[[package]]
|
|
1161
1087
|
name = "rayon-core"
|
|
1162
|
-
version = "1.
|
|
1088
|
+
version = "1.10.1"
|
|
1163
1089
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1164
|
-
checksum = "
|
|
1090
|
+
checksum = "cac410af5d00ab6884528b4ab69d1e8e146e8d471201800fa1b4524126de6ad3"
|
|
1165
1091
|
dependencies = [
|
|
1166
1092
|
"crossbeam-channel",
|
|
1167
1093
|
"crossbeam-deque",
|
|
1168
1094
|
"crossbeam-utils",
|
|
1169
|
-
"lazy_static",
|
|
1170
1095
|
"num_cpus",
|
|
1171
1096
|
]
|
|
1172
1097
|
|
|
1098
|
+
[[package]]
|
|
1099
|
+
name = "rb-sys"
|
|
1100
|
+
version = "0.9.46"
|
|
1101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1102
|
+
checksum = "b9f1cfd225389bd9333d93d393d0feeeacd191d97f9b1c881528ac1233c67f0f"
|
|
1103
|
+
dependencies = [
|
|
1104
|
+
"rb-sys-build",
|
|
1105
|
+
]
|
|
1106
|
+
|
|
1107
|
+
[[package]]
|
|
1108
|
+
name = "rb-sys-build"
|
|
1109
|
+
version = "0.9.46"
|
|
1110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
+
checksum = "fad39a523a00dc5d4f6dcec077568d985807aa5bd03204a0ddf7c1f36544289c"
|
|
1112
|
+
dependencies = [
|
|
1113
|
+
"bindgen",
|
|
1114
|
+
"regex",
|
|
1115
|
+
"shell-words",
|
|
1116
|
+
]
|
|
1117
|
+
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "rb-sys-env"
|
|
1120
|
+
version = "0.1.1"
|
|
1121
|
+
source = "git+https://github.com/oxidize-rb/rb-sys#f84304720fd4a60df93669e4790c14dd227f1e2e"
|
|
1122
|
+
|
|
1173
1123
|
[[package]]
|
|
1174
1124
|
name = "redox_syscall"
|
|
1175
|
-
version = "0.2.
|
|
1125
|
+
version = "0.2.16"
|
|
1176
1126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1177
|
-
checksum = "
|
|
1127
|
+
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
|
|
1178
1128
|
dependencies = [
|
|
1179
1129
|
"bitflags",
|
|
1180
1130
|
]
|
|
1181
1131
|
|
|
1182
1132
|
[[package]]
|
|
1183
1133
|
name = "redox_users"
|
|
1184
|
-
version = "0.4.
|
|
1134
|
+
version = "0.4.3"
|
|
1185
1135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1186
|
-
checksum = "
|
|
1136
|
+
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
|
|
1187
1137
|
dependencies = [
|
|
1188
|
-
"getrandom
|
|
1138
|
+
"getrandom",
|
|
1189
1139
|
"redox_syscall",
|
|
1190
1140
|
"thiserror",
|
|
1191
1141
|
]
|
|
1192
1142
|
|
|
1193
1143
|
[[package]]
|
|
1194
1144
|
name = "regex"
|
|
1195
|
-
version = "1.
|
|
1145
|
+
version = "1.7.0"
|
|
1196
1146
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1197
|
-
checksum = "
|
|
1147
|
+
checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a"
|
|
1198
1148
|
dependencies = [
|
|
1199
1149
|
"aho-corasick",
|
|
1200
1150
|
"memchr",
|
|
@@ -1203,9 +1153,9 @@ dependencies = [
|
|
|
1203
1153
|
|
|
1204
1154
|
[[package]]
|
|
1205
1155
|
name = "regex-syntax"
|
|
1206
|
-
version = "0.6.
|
|
1156
|
+
version = "0.6.28"
|
|
1207
1157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1208
|
-
checksum = "
|
|
1158
|
+
checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
|
|
1209
1159
|
|
|
1210
1160
|
[[package]]
|
|
1211
1161
|
name = "remove_dir_all"
|
|
@@ -1218,11 +1168,11 @@ dependencies = [
|
|
|
1218
1168
|
|
|
1219
1169
|
[[package]]
|
|
1220
1170
|
name = "reqwest"
|
|
1221
|
-
version = "0.11.
|
|
1171
|
+
version = "0.11.13"
|
|
1222
1172
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1223
|
-
checksum = "
|
|
1173
|
+
checksum = "68cc60575865c7831548863cc02356512e3f1dc2f3f82cb837d7fc4cc8f3c97c"
|
|
1224
1174
|
dependencies = [
|
|
1225
|
-
"base64
|
|
1175
|
+
"base64",
|
|
1226
1176
|
"bytes",
|
|
1227
1177
|
"encoding_rs",
|
|
1228
1178
|
"futures-core",
|
|
@@ -1234,10 +1184,10 @@ dependencies = [
|
|
|
1234
1184
|
"hyper-tls",
|
|
1235
1185
|
"ipnet",
|
|
1236
1186
|
"js-sys",
|
|
1237
|
-
"lazy_static",
|
|
1238
1187
|
"log",
|
|
1239
1188
|
"mime",
|
|
1240
1189
|
"native-tls",
|
|
1190
|
+
"once_cell",
|
|
1241
1191
|
"percent-encoding",
|
|
1242
1192
|
"pin-project-lite",
|
|
1243
1193
|
"serde",
|
|
@@ -1245,6 +1195,7 @@ dependencies = [
|
|
|
1245
1195
|
"serde_urlencoded",
|
|
1246
1196
|
"tokio",
|
|
1247
1197
|
"tokio-native-tls",
|
|
1198
|
+
"tower-service",
|
|
1248
1199
|
"url",
|
|
1249
1200
|
"wasm-bindgen",
|
|
1250
1201
|
"wasm-bindgen-futures",
|
|
@@ -1253,29 +1204,25 @@ dependencies = [
|
|
|
1253
1204
|
]
|
|
1254
1205
|
|
|
1255
1206
|
[[package]]
|
|
1256
|
-
name = "
|
|
1257
|
-
version = "
|
|
1207
|
+
name = "rustc-hash"
|
|
1208
|
+
version = "1.1.0"
|
|
1258
1209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1259
|
-
checksum = "
|
|
1260
|
-
dependencies = [
|
|
1261
|
-
"lazy_static",
|
|
1262
|
-
"libc",
|
|
1263
|
-
]
|
|
1210
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1264
1211
|
|
|
1265
1212
|
[[package]]
|
|
1266
1213
|
name = "ryu"
|
|
1267
|
-
version = "1.0.
|
|
1214
|
+
version = "1.0.11"
|
|
1268
1215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
-
checksum = "
|
|
1216
|
+
checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
|
|
1270
1217
|
|
|
1271
1218
|
[[package]]
|
|
1272
1219
|
name = "schannel"
|
|
1273
|
-
version = "0.1.
|
|
1220
|
+
version = "0.1.20"
|
|
1274
1221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1275
|
-
checksum = "
|
|
1222
|
+
checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
|
|
1276
1223
|
dependencies = [
|
|
1277
1224
|
"lazy_static",
|
|
1278
|
-
"
|
|
1225
|
+
"windows-sys 0.36.1",
|
|
1279
1226
|
]
|
|
1280
1227
|
|
|
1281
1228
|
[[package]]
|
|
@@ -1286,9 +1233,9 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
|
|
1286
1233
|
|
|
1287
1234
|
[[package]]
|
|
1288
1235
|
name = "security-framework"
|
|
1289
|
-
version = "2.
|
|
1236
|
+
version = "2.7.0"
|
|
1290
1237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1291
|
-
checksum = "
|
|
1238
|
+
checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c"
|
|
1292
1239
|
dependencies = [
|
|
1293
1240
|
"bitflags",
|
|
1294
1241
|
"core-foundation",
|
|
@@ -1309,18 +1256,18 @@ dependencies = [
|
|
|
1309
1256
|
|
|
1310
1257
|
[[package]]
|
|
1311
1258
|
name = "serde"
|
|
1312
|
-
version = "1.0.
|
|
1259
|
+
version = "1.0.148"
|
|
1313
1260
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1314
|
-
checksum = "
|
|
1261
|
+
checksum = "e53f64bb4ba0191d6d0676e1b141ca55047d83b74f5607e6d8eb88126c52c2dc"
|
|
1315
1262
|
dependencies = [
|
|
1316
1263
|
"serde_derive",
|
|
1317
1264
|
]
|
|
1318
1265
|
|
|
1319
1266
|
[[package]]
|
|
1320
1267
|
name = "serde_derive"
|
|
1321
|
-
version = "1.0.
|
|
1268
|
+
version = "1.0.148"
|
|
1322
1269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1323
|
-
checksum = "
|
|
1270
|
+
checksum = "a55492425aa53521babf6137309e7d34c20bbfbbfcfe2c7f3a047fd1f6b92c0c"
|
|
1324
1271
|
dependencies = [
|
|
1325
1272
|
"proc-macro2",
|
|
1326
1273
|
"quote",
|
|
@@ -1329,9 +1276,9 @@ dependencies = [
|
|
|
1329
1276
|
|
|
1330
1277
|
[[package]]
|
|
1331
1278
|
name = "serde_json"
|
|
1332
|
-
version = "1.0.
|
|
1279
|
+
version = "1.0.89"
|
|
1333
1280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
-
checksum = "
|
|
1281
|
+
checksum = "020ff22c755c2ed3f8cf162dbb41a7268d934702f3ed3631656ea597e08fc3db"
|
|
1335
1282
|
dependencies = [
|
|
1336
1283
|
"itoa",
|
|
1337
1284
|
"ryu",
|
|
@@ -1352,32 +1299,47 @@ dependencies = [
|
|
|
1352
1299
|
|
|
1353
1300
|
[[package]]
|
|
1354
1301
|
name = "sha2"
|
|
1355
|
-
version = "0.10.
|
|
1302
|
+
version = "0.10.6"
|
|
1356
1303
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1357
|
-
checksum = "
|
|
1304
|
+
checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
|
|
1358
1305
|
dependencies = [
|
|
1359
1306
|
"cfg-if",
|
|
1360
1307
|
"cpufeatures",
|
|
1361
1308
|
"digest",
|
|
1362
1309
|
]
|
|
1363
1310
|
|
|
1311
|
+
[[package]]
|
|
1312
|
+
name = "shell-words"
|
|
1313
|
+
version = "1.1.0"
|
|
1314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1315
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
|
1316
|
+
|
|
1317
|
+
[[package]]
|
|
1318
|
+
name = "shlex"
|
|
1319
|
+
version = "1.1.0"
|
|
1320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1321
|
+
checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
|
|
1322
|
+
|
|
1364
1323
|
[[package]]
|
|
1365
1324
|
name = "slab"
|
|
1366
|
-
version = "0.4.
|
|
1325
|
+
version = "0.4.7"
|
|
1367
1326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1368
|
-
checksum = "
|
|
1327
|
+
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
|
|
1328
|
+
dependencies = [
|
|
1329
|
+
"autocfg",
|
|
1330
|
+
]
|
|
1369
1331
|
|
|
1370
1332
|
[[package]]
|
|
1371
1333
|
name = "smallvec"
|
|
1372
|
-
version = "1.
|
|
1334
|
+
version = "1.10.0"
|
|
1373
1335
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1374
|
-
checksum = "
|
|
1336
|
+
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
|
|
1375
1337
|
|
|
1376
1338
|
[[package]]
|
|
1377
1339
|
name = "socket2"
|
|
1378
|
-
version = "0.4.
|
|
1340
|
+
version = "0.4.7"
|
|
1379
1341
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
-
checksum = "
|
|
1342
|
+
checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
|
|
1381
1343
|
dependencies = [
|
|
1382
1344
|
"libc",
|
|
1383
1345
|
"winapi",
|
|
@@ -1385,28 +1347,16 @@ dependencies = [
|
|
|
1385
1347
|
|
|
1386
1348
|
[[package]]
|
|
1387
1349
|
name = "spm_precompiled"
|
|
1388
|
-
version = "0.1.
|
|
1350
|
+
version = "0.1.4"
|
|
1389
1351
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1390
|
-
checksum = "
|
|
1352
|
+
checksum = "5851699c4033c63636f7ea4cf7b7c1f1bf06d0cc03cfb42e711de5a5c46cf326"
|
|
1391
1353
|
dependencies = [
|
|
1392
|
-
"base64
|
|
1354
|
+
"base64",
|
|
1393
1355
|
"nom",
|
|
1394
1356
|
"serde",
|
|
1395
1357
|
"unicode-segmentation",
|
|
1396
1358
|
]
|
|
1397
1359
|
|
|
1398
|
-
[[package]]
|
|
1399
|
-
name = "static_assertions"
|
|
1400
|
-
version = "1.1.0"
|
|
1401
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1402
|
-
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
1403
|
-
|
|
1404
|
-
[[package]]
|
|
1405
|
-
name = "strsim"
|
|
1406
|
-
version = "0.8.0"
|
|
1407
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1408
|
-
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
|
|
1409
|
-
|
|
1410
1360
|
[[package]]
|
|
1411
1361
|
name = "strsim"
|
|
1412
1362
|
version = "0.9.3"
|
|
@@ -1415,21 +1365,15 @@ checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
|
|
|
1415
1365
|
|
|
1416
1366
|
[[package]]
|
|
1417
1367
|
name = "syn"
|
|
1418
|
-
version = "1.0.
|
|
1368
|
+
version = "1.0.104"
|
|
1419
1369
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1420
|
-
checksum = "
|
|
1370
|
+
checksum = "4ae548ec36cf198c0ef7710d3c230987c2d6d7bd98ad6edc0274462724c585ce"
|
|
1421
1371
|
dependencies = [
|
|
1422
1372
|
"proc-macro2",
|
|
1423
1373
|
"quote",
|
|
1424
|
-
"unicode-
|
|
1374
|
+
"unicode-ident",
|
|
1425
1375
|
]
|
|
1426
1376
|
|
|
1427
|
-
[[package]]
|
|
1428
|
-
name = "tap"
|
|
1429
|
-
version = "1.0.1"
|
|
1430
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1431
|
-
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
1432
|
-
|
|
1433
1377
|
[[package]]
|
|
1434
1378
|
name = "tar"
|
|
1435
1379
|
version = "0.4.38"
|
|
@@ -1465,29 +1409,20 @@ dependencies = [
|
|
|
1465
1409
|
"winapi",
|
|
1466
1410
|
]
|
|
1467
1411
|
|
|
1468
|
-
[[package]]
|
|
1469
|
-
name = "textwrap"
|
|
1470
|
-
version = "0.11.0"
|
|
1471
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1472
|
-
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
|
|
1473
|
-
dependencies = [
|
|
1474
|
-
"unicode-width",
|
|
1475
|
-
]
|
|
1476
|
-
|
|
1477
1412
|
[[package]]
|
|
1478
1413
|
name = "thiserror"
|
|
1479
|
-
version = "1.0.
|
|
1414
|
+
version = "1.0.37"
|
|
1480
1415
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1481
|
-
checksum = "
|
|
1416
|
+
checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
|
|
1482
1417
|
dependencies = [
|
|
1483
1418
|
"thiserror-impl",
|
|
1484
1419
|
]
|
|
1485
1420
|
|
|
1486
1421
|
[[package]]
|
|
1487
1422
|
name = "thiserror-impl"
|
|
1488
|
-
version = "1.0.
|
|
1423
|
+
version = "1.0.37"
|
|
1489
1424
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1490
|
-
checksum = "
|
|
1425
|
+
checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
|
|
1491
1426
|
dependencies = [
|
|
1492
1427
|
"proc-macro2",
|
|
1493
1428
|
"quote",
|
|
@@ -1496,19 +1431,20 @@ dependencies = [
|
|
|
1496
1431
|
|
|
1497
1432
|
[[package]]
|
|
1498
1433
|
name = "time"
|
|
1499
|
-
version = "0.1.
|
|
1434
|
+
version = "0.1.45"
|
|
1500
1435
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1501
|
-
checksum = "
|
|
1436
|
+
checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
|
|
1502
1437
|
dependencies = [
|
|
1503
1438
|
"libc",
|
|
1439
|
+
"wasi 0.10.0+wasi-snapshot-preview1",
|
|
1504
1440
|
"winapi",
|
|
1505
1441
|
]
|
|
1506
1442
|
|
|
1507
1443
|
[[package]]
|
|
1508
1444
|
name = "tinyvec"
|
|
1509
|
-
version = "1.
|
|
1445
|
+
version = "1.6.0"
|
|
1510
1446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1511
|
-
checksum = "
|
|
1447
|
+
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
|
|
1512
1448
|
dependencies = [
|
|
1513
1449
|
"tinyvec_macros",
|
|
1514
1450
|
]
|
|
@@ -1521,16 +1457,23 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
|
|
1521
1457
|
|
|
1522
1458
|
[[package]]
|
|
1523
1459
|
name = "tokenizers"
|
|
1524
|
-
version = "0.
|
|
1525
|
-
|
|
1526
|
-
|
|
1460
|
+
version = "0.2.0"
|
|
1461
|
+
dependencies = [
|
|
1462
|
+
"magnus",
|
|
1463
|
+
"tokenizers 0.13.2",
|
|
1464
|
+
]
|
|
1465
|
+
|
|
1466
|
+
[[package]]
|
|
1467
|
+
name = "tokenizers"
|
|
1468
|
+
version = "0.13.2"
|
|
1469
|
+
source = "git+https://github.com/huggingface/tokenizers#67080e163add50e278dce1407538e5cd03ef9d6d"
|
|
1527
1470
|
dependencies = [
|
|
1528
1471
|
"aho-corasick",
|
|
1529
1472
|
"cached-path",
|
|
1530
|
-
"clap",
|
|
1531
1473
|
"derive_builder",
|
|
1532
1474
|
"dirs",
|
|
1533
1475
|
"esaxx-rs",
|
|
1476
|
+
"getrandom",
|
|
1534
1477
|
"indicatif 0.15.0",
|
|
1535
1478
|
"itertools 0.9.0",
|
|
1536
1479
|
"lazy_static",
|
|
@@ -1538,7 +1481,7 @@ dependencies = [
|
|
|
1538
1481
|
"macro_rules_attribute",
|
|
1539
1482
|
"onig",
|
|
1540
1483
|
"paste",
|
|
1541
|
-
"rand
|
|
1484
|
+
"rand",
|
|
1542
1485
|
"rayon",
|
|
1543
1486
|
"rayon-cond",
|
|
1544
1487
|
"regex",
|
|
@@ -1547,26 +1490,19 @@ dependencies = [
|
|
|
1547
1490
|
"serde",
|
|
1548
1491
|
"serde_json",
|
|
1549
1492
|
"spm_precompiled",
|
|
1493
|
+
"thiserror",
|
|
1550
1494
|
"unicode-normalization-alignments",
|
|
1551
1495
|
"unicode-segmentation",
|
|
1552
1496
|
"unicode_categories",
|
|
1553
1497
|
]
|
|
1554
1498
|
|
|
1555
|
-
[[package]]
|
|
1556
|
-
name = "tokenizers-ruby"
|
|
1557
|
-
version = "0.1.0"
|
|
1558
|
-
dependencies = [
|
|
1559
|
-
"lazy_static",
|
|
1560
|
-
"rutie",
|
|
1561
|
-
"tokenizers",
|
|
1562
|
-
]
|
|
1563
|
-
|
|
1564
1499
|
[[package]]
|
|
1565
1500
|
name = "tokio"
|
|
1566
|
-
version = "1.
|
|
1501
|
+
version = "1.22.0"
|
|
1567
1502
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1568
|
-
checksum = "
|
|
1503
|
+
checksum = "d76ce4a75fb488c605c54bf610f221cea8b0dafb53333c1a67e8ee199dcd2ae3"
|
|
1569
1504
|
dependencies = [
|
|
1505
|
+
"autocfg",
|
|
1570
1506
|
"bytes",
|
|
1571
1507
|
"libc",
|
|
1572
1508
|
"memchr",
|
|
@@ -1589,29 +1525,29 @@ dependencies = [
|
|
|
1589
1525
|
|
|
1590
1526
|
[[package]]
|
|
1591
1527
|
name = "tokio-util"
|
|
1592
|
-
version = "0.
|
|
1528
|
+
version = "0.7.4"
|
|
1593
1529
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1594
|
-
checksum = "
|
|
1530
|
+
checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740"
|
|
1595
1531
|
dependencies = [
|
|
1596
1532
|
"bytes",
|
|
1597
1533
|
"futures-core",
|
|
1598
1534
|
"futures-sink",
|
|
1599
|
-
"log",
|
|
1600
1535
|
"pin-project-lite",
|
|
1601
1536
|
"tokio",
|
|
1537
|
+
"tracing",
|
|
1602
1538
|
]
|
|
1603
1539
|
|
|
1604
1540
|
[[package]]
|
|
1605
1541
|
name = "tower-service"
|
|
1606
|
-
version = "0.3.
|
|
1542
|
+
version = "0.3.2"
|
|
1607
1543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1608
|
-
checksum = "
|
|
1544
|
+
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
|
|
1609
1545
|
|
|
1610
1546
|
[[package]]
|
|
1611
1547
|
name = "tracing"
|
|
1612
|
-
version = "0.1.
|
|
1548
|
+
version = "0.1.37"
|
|
1613
1549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1614
|
-
checksum = "
|
|
1550
|
+
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
|
|
1615
1551
|
dependencies = [
|
|
1616
1552
|
"cfg-if",
|
|
1617
1553
|
"pin-project-lite",
|
|
@@ -1620,11 +1556,11 @@ dependencies = [
|
|
|
1620
1556
|
|
|
1621
1557
|
[[package]]
|
|
1622
1558
|
name = "tracing-core"
|
|
1623
|
-
version = "0.1.
|
|
1559
|
+
version = "0.1.30"
|
|
1624
1560
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1625
|
-
checksum = "
|
|
1561
|
+
checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
|
|
1626
1562
|
dependencies = [
|
|
1627
|
-
"
|
|
1563
|
+
"once_cell",
|
|
1628
1564
|
]
|
|
1629
1565
|
|
|
1630
1566
|
[[package]]
|
|
@@ -1641,15 +1577,21 @@ checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
|
|
|
1641
1577
|
|
|
1642
1578
|
[[package]]
|
|
1643
1579
|
name = "unicode-bidi"
|
|
1644
|
-
version = "0.3.
|
|
1580
|
+
version = "0.3.8"
|
|
1645
1581
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1646
|
-
checksum = "
|
|
1582
|
+
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
|
|
1583
|
+
|
|
1584
|
+
[[package]]
|
|
1585
|
+
name = "unicode-ident"
|
|
1586
|
+
version = "1.0.5"
|
|
1587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
|
+
checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
|
|
1647
1589
|
|
|
1648
1590
|
[[package]]
|
|
1649
1591
|
name = "unicode-normalization"
|
|
1650
|
-
version = "0.1.
|
|
1592
|
+
version = "0.1.22"
|
|
1651
1593
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1652
|
-
checksum = "
|
|
1594
|
+
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
|
|
1653
1595
|
dependencies = [
|
|
1654
1596
|
"tinyvec",
|
|
1655
1597
|
]
|
|
@@ -1665,21 +1607,15 @@ dependencies = [
|
|
|
1665
1607
|
|
|
1666
1608
|
[[package]]
|
|
1667
1609
|
name = "unicode-segmentation"
|
|
1668
|
-
version = "1.
|
|
1610
|
+
version = "1.10.0"
|
|
1669
1611
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1670
|
-
checksum = "
|
|
1612
|
+
checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a"
|
|
1671
1613
|
|
|
1672
1614
|
[[package]]
|
|
1673
1615
|
name = "unicode-width"
|
|
1674
|
-
version = "0.1.
|
|
1675
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1676
|
-
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
|
|
1677
|
-
|
|
1678
|
-
[[package]]
|
|
1679
|
-
name = "unicode-xid"
|
|
1680
|
-
version = "0.2.2"
|
|
1616
|
+
version = "0.1.10"
|
|
1681
1617
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1682
|
-
checksum = "
|
|
1618
|
+
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
|
|
1683
1619
|
|
|
1684
1620
|
[[package]]
|
|
1685
1621
|
name = "unicode_categories"
|
|
@@ -1689,13 +1625,12 @@ checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
|
|
|
1689
1625
|
|
|
1690
1626
|
[[package]]
|
|
1691
1627
|
name = "url"
|
|
1692
|
-
version = "2.
|
|
1628
|
+
version = "2.3.1"
|
|
1693
1629
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1694
|
-
checksum = "
|
|
1630
|
+
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
|
|
1695
1631
|
dependencies = [
|
|
1696
1632
|
"form_urlencoded",
|
|
1697
1633
|
"idna",
|
|
1698
|
-
"matches",
|
|
1699
1634
|
"percent-encoding",
|
|
1700
1635
|
]
|
|
1701
1636
|
|
|
@@ -1705,12 +1640,6 @@ version = "0.2.15"
|
|
|
1705
1640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1706
1641
|
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
1707
1642
|
|
|
1708
|
-
[[package]]
|
|
1709
|
-
name = "vec_map"
|
|
1710
|
-
version = "0.8.2"
|
|
1711
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1712
|
-
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
|
|
1713
|
-
|
|
1714
1643
|
[[package]]
|
|
1715
1644
|
name = "version_check"
|
|
1716
1645
|
version = "0.9.4"
|
|
@@ -1729,15 +1658,9 @@ dependencies = [
|
|
|
1729
1658
|
|
|
1730
1659
|
[[package]]
|
|
1731
1660
|
name = "wasi"
|
|
1732
|
-
version = "0.
|
|
1733
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1734
|
-
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
|
|
1735
|
-
|
|
1736
|
-
[[package]]
|
|
1737
|
-
name = "wasi"
|
|
1738
|
-
version = "0.10.2+wasi-snapshot-preview1"
|
|
1661
|
+
version = "0.10.0+wasi-snapshot-preview1"
|
|
1739
1662
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1740
|
-
checksum = "
|
|
1663
|
+
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
|
|
1741
1664
|
|
|
1742
1665
|
[[package]]
|
|
1743
1666
|
name = "wasi"
|
|
@@ -1747,9 +1670,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
1747
1670
|
|
|
1748
1671
|
[[package]]
|
|
1749
1672
|
name = "wasm-bindgen"
|
|
1750
|
-
version = "0.2.
|
|
1673
|
+
version = "0.2.83"
|
|
1751
1674
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1752
|
-
checksum = "
|
|
1675
|
+
checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
|
|
1753
1676
|
dependencies = [
|
|
1754
1677
|
"cfg-if",
|
|
1755
1678
|
"wasm-bindgen-macro",
|
|
@@ -1757,13 +1680,13 @@ dependencies = [
|
|
|
1757
1680
|
|
|
1758
1681
|
[[package]]
|
|
1759
1682
|
name = "wasm-bindgen-backend"
|
|
1760
|
-
version = "0.2.
|
|
1683
|
+
version = "0.2.83"
|
|
1761
1684
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1762
|
-
checksum = "
|
|
1685
|
+
checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
|
|
1763
1686
|
dependencies = [
|
|
1764
1687
|
"bumpalo",
|
|
1765
|
-
"lazy_static",
|
|
1766
1688
|
"log",
|
|
1689
|
+
"once_cell",
|
|
1767
1690
|
"proc-macro2",
|
|
1768
1691
|
"quote",
|
|
1769
1692
|
"syn",
|
|
@@ -1772,9 +1695,9 @@ dependencies = [
|
|
|
1772
1695
|
|
|
1773
1696
|
[[package]]
|
|
1774
1697
|
name = "wasm-bindgen-futures"
|
|
1775
|
-
version = "0.4.
|
|
1698
|
+
version = "0.4.33"
|
|
1776
1699
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1777
|
-
checksum = "
|
|
1700
|
+
checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d"
|
|
1778
1701
|
dependencies = [
|
|
1779
1702
|
"cfg-if",
|
|
1780
1703
|
"js-sys",
|
|
@@ -1784,9 +1707,9 @@ dependencies = [
|
|
|
1784
1707
|
|
|
1785
1708
|
[[package]]
|
|
1786
1709
|
name = "wasm-bindgen-macro"
|
|
1787
|
-
version = "0.2.
|
|
1710
|
+
version = "0.2.83"
|
|
1788
1711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1789
|
-
checksum = "
|
|
1712
|
+
checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
|
|
1790
1713
|
dependencies = [
|
|
1791
1714
|
"quote",
|
|
1792
1715
|
"wasm-bindgen-macro-support",
|
|
@@ -1794,9 +1717,9 @@ dependencies = [
|
|
|
1794
1717
|
|
|
1795
1718
|
[[package]]
|
|
1796
1719
|
name = "wasm-bindgen-macro-support"
|
|
1797
|
-
version = "0.2.
|
|
1720
|
+
version = "0.2.83"
|
|
1798
1721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1799
|
-
checksum = "
|
|
1722
|
+
checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
|
|
1800
1723
|
dependencies = [
|
|
1801
1724
|
"proc-macro2",
|
|
1802
1725
|
"quote",
|
|
@@ -1807,15 +1730,15 @@ dependencies = [
|
|
|
1807
1730
|
|
|
1808
1731
|
[[package]]
|
|
1809
1732
|
name = "wasm-bindgen-shared"
|
|
1810
|
-
version = "0.2.
|
|
1733
|
+
version = "0.2.83"
|
|
1811
1734
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1812
|
-
checksum = "
|
|
1735
|
+
checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
|
|
1813
1736
|
|
|
1814
1737
|
[[package]]
|
|
1815
1738
|
name = "web-sys"
|
|
1816
|
-
version = "0.3.
|
|
1739
|
+
version = "0.3.60"
|
|
1817
1740
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1818
|
-
checksum = "
|
|
1741
|
+
checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f"
|
|
1819
1742
|
dependencies = [
|
|
1820
1743
|
"js-sys",
|
|
1821
1744
|
"wasm-bindgen",
|
|
@@ -1843,6 +1766,106 @@ version = "0.4.0"
|
|
|
1843
1766
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1844
1767
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
1845
1768
|
|
|
1769
|
+
[[package]]
|
|
1770
|
+
name = "windows-sys"
|
|
1771
|
+
version = "0.36.1"
|
|
1772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1773
|
+
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
|
|
1774
|
+
dependencies = [
|
|
1775
|
+
"windows_aarch64_msvc 0.36.1",
|
|
1776
|
+
"windows_i686_gnu 0.36.1",
|
|
1777
|
+
"windows_i686_msvc 0.36.1",
|
|
1778
|
+
"windows_x86_64_gnu 0.36.1",
|
|
1779
|
+
"windows_x86_64_msvc 0.36.1",
|
|
1780
|
+
]
|
|
1781
|
+
|
|
1782
|
+
[[package]]
|
|
1783
|
+
name = "windows-sys"
|
|
1784
|
+
version = "0.42.0"
|
|
1785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1786
|
+
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
|
|
1787
|
+
dependencies = [
|
|
1788
|
+
"windows_aarch64_gnullvm",
|
|
1789
|
+
"windows_aarch64_msvc 0.42.0",
|
|
1790
|
+
"windows_i686_gnu 0.42.0",
|
|
1791
|
+
"windows_i686_msvc 0.42.0",
|
|
1792
|
+
"windows_x86_64_gnu 0.42.0",
|
|
1793
|
+
"windows_x86_64_gnullvm",
|
|
1794
|
+
"windows_x86_64_msvc 0.42.0",
|
|
1795
|
+
]
|
|
1796
|
+
|
|
1797
|
+
[[package]]
|
|
1798
|
+
name = "windows_aarch64_gnullvm"
|
|
1799
|
+
version = "0.42.0"
|
|
1800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1801
|
+
checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e"
|
|
1802
|
+
|
|
1803
|
+
[[package]]
|
|
1804
|
+
name = "windows_aarch64_msvc"
|
|
1805
|
+
version = "0.36.1"
|
|
1806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1807
|
+
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
|
|
1808
|
+
|
|
1809
|
+
[[package]]
|
|
1810
|
+
name = "windows_aarch64_msvc"
|
|
1811
|
+
version = "0.42.0"
|
|
1812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1813
|
+
checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4"
|
|
1814
|
+
|
|
1815
|
+
[[package]]
|
|
1816
|
+
name = "windows_i686_gnu"
|
|
1817
|
+
version = "0.36.1"
|
|
1818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1819
|
+
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
|
|
1820
|
+
|
|
1821
|
+
[[package]]
|
|
1822
|
+
name = "windows_i686_gnu"
|
|
1823
|
+
version = "0.42.0"
|
|
1824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1825
|
+
checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7"
|
|
1826
|
+
|
|
1827
|
+
[[package]]
|
|
1828
|
+
name = "windows_i686_msvc"
|
|
1829
|
+
version = "0.36.1"
|
|
1830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1831
|
+
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
|
|
1832
|
+
|
|
1833
|
+
[[package]]
|
|
1834
|
+
name = "windows_i686_msvc"
|
|
1835
|
+
version = "0.42.0"
|
|
1836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1837
|
+
checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246"
|
|
1838
|
+
|
|
1839
|
+
[[package]]
|
|
1840
|
+
name = "windows_x86_64_gnu"
|
|
1841
|
+
version = "0.36.1"
|
|
1842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1843
|
+
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
|
|
1844
|
+
|
|
1845
|
+
[[package]]
|
|
1846
|
+
name = "windows_x86_64_gnu"
|
|
1847
|
+
version = "0.42.0"
|
|
1848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1849
|
+
checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed"
|
|
1850
|
+
|
|
1851
|
+
[[package]]
|
|
1852
|
+
name = "windows_x86_64_gnullvm"
|
|
1853
|
+
version = "0.42.0"
|
|
1854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1855
|
+
checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028"
|
|
1856
|
+
|
|
1857
|
+
[[package]]
|
|
1858
|
+
name = "windows_x86_64_msvc"
|
|
1859
|
+
version = "0.36.1"
|
|
1860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1861
|
+
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
|
|
1862
|
+
|
|
1863
|
+
[[package]]
|
|
1864
|
+
name = "windows_x86_64_msvc"
|
|
1865
|
+
version = "0.42.0"
|
|
1866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1867
|
+
checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5"
|
|
1868
|
+
|
|
1846
1869
|
[[package]]
|
|
1847
1870
|
name = "winreg"
|
|
1848
1871
|
version = "0.10.1"
|
|
@@ -1852,17 +1875,11 @@ dependencies = [
|
|
|
1852
1875
|
"winapi",
|
|
1853
1876
|
]
|
|
1854
1877
|
|
|
1855
|
-
[[package]]
|
|
1856
|
-
name = "wyz"
|
|
1857
|
-
version = "0.2.0"
|
|
1858
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1859
|
-
checksum = "85e60b0d1b5f99db2556934e21937020776a5d31520bf169e851ac44e6420214"
|
|
1860
|
-
|
|
1861
1878
|
[[package]]
|
|
1862
1879
|
name = "xattr"
|
|
1863
|
-
version = "0.2.
|
|
1880
|
+
version = "0.2.3"
|
|
1864
1881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1865
|
-
checksum = "
|
|
1882
|
+
checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc"
|
|
1866
1883
|
dependencies = [
|
|
1867
1884
|
"libc",
|
|
1868
1885
|
]
|