tokenizers 0.1.3 → 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 +7 -0
- data/Cargo.lock +478 -400
- 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"
|
@@ -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,9 +362,9 @@ 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
|
]
|
@@ -403,34 +380,32 @@ dependencies = [
|
|
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,13 +509,13 @@ dependencies = [
|
|
541
509
|
|
542
510
|
[[package]]
|
543
511
|
name = "getrandom"
|
544
|
-
version = "0.2.
|
512
|
+
version = "0.2.8"
|
545
513
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
546
|
-
checksum = "
|
514
|
+
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
|
547
515
|
dependencies = [
|
548
516
|
"cfg-if",
|
549
517
|
"libc",
|
550
|
-
"wasi",
|
518
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
551
519
|
]
|
552
520
|
|
553
521
|
[[package]]
|
@@ -558,9 +526,9 @@ checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
|
|
558
526
|
|
559
527
|
[[package]]
|
560
528
|
name = "h2"
|
561
|
-
version = "0.3.
|
529
|
+
version = "0.3.15"
|
562
530
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
563
|
-
checksum = "
|
531
|
+
checksum = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4"
|
564
532
|
dependencies = [
|
565
533
|
"bytes",
|
566
534
|
"fnv",
|
@@ -577,9 +545,9 @@ dependencies = [
|
|
577
545
|
|
578
546
|
[[package]]
|
579
547
|
name = "hashbrown"
|
580
|
-
version = "0.
|
548
|
+
version = "0.12.3"
|
581
549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
582
|
-
checksum = "
|
550
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
583
551
|
|
584
552
|
[[package]]
|
585
553
|
name = "hermit-abi"
|
@@ -592,9 +560,9 @@ dependencies = [
|
|
592
560
|
|
593
561
|
[[package]]
|
594
562
|
name = "http"
|
595
|
-
version = "0.2.
|
563
|
+
version = "0.2.8"
|
596
564
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
597
|
-
checksum = "
|
565
|
+
checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
|
598
566
|
dependencies = [
|
599
567
|
"bytes",
|
600
568
|
"fnv",
|
@@ -603,9 +571,9 @@ dependencies = [
|
|
603
571
|
|
604
572
|
[[package]]
|
605
573
|
name = "http-body"
|
606
|
-
version = "0.4.
|
574
|
+
version = "0.4.5"
|
607
575
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
608
|
-
checksum = "
|
576
|
+
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
|
609
577
|
dependencies = [
|
610
578
|
"bytes",
|
611
579
|
"http",
|
@@ -614,9 +582,9 @@ dependencies = [
|
|
614
582
|
|
615
583
|
[[package]]
|
616
584
|
name = "httparse"
|
617
|
-
version = "1.
|
585
|
+
version = "1.8.0"
|
618
586
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
619
|
-
checksum = "
|
587
|
+
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
|
620
588
|
|
621
589
|
[[package]]
|
622
590
|
name = "httpdate"
|
@@ -626,9 +594,9 @@ checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
|
|
626
594
|
|
627
595
|
[[package]]
|
628
596
|
name = "hyper"
|
629
|
-
version = "0.14.
|
597
|
+
version = "0.14.23"
|
630
598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
631
|
-
checksum = "
|
599
|
+
checksum = "034711faac9d2166cb1baf1a2fb0b60b1f277f8492fd72176c17f3515e1abd3c"
|
632
600
|
dependencies = [
|
633
601
|
"bytes",
|
634
602
|
"futures-channel",
|
@@ -669,20 +637,19 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
669
637
|
|
670
638
|
[[package]]
|
671
639
|
name = "idna"
|
672
|
-
version = "0.
|
640
|
+
version = "0.3.0"
|
673
641
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
674
|
-
checksum = "
|
642
|
+
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
|
675
643
|
dependencies = [
|
676
|
-
"matches",
|
677
644
|
"unicode-bidi",
|
678
645
|
"unicode-normalization",
|
679
646
|
]
|
680
647
|
|
681
648
|
[[package]]
|
682
649
|
name = "indexmap"
|
683
|
-
version = "1.
|
650
|
+
version = "1.9.2"
|
684
651
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
685
|
-
checksum = "
|
652
|
+
checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
|
686
653
|
dependencies = [
|
687
654
|
"autocfg",
|
688
655
|
"hashbrown",
|
@@ -723,9 +690,9 @@ dependencies = [
|
|
723
690
|
|
724
691
|
[[package]]
|
725
692
|
name = "ipnet"
|
726
|
-
version = "2.
|
693
|
+
version = "2.5.1"
|
727
694
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
728
|
-
checksum = "
|
695
|
+
checksum = "f88c5561171189e69df9d98bcf18fd5f9558300f7ea7b801eb8a0fd748bd8745"
|
729
696
|
|
730
697
|
[[package]]
|
731
698
|
name = "itertools"
|
@@ -747,15 +714,15 @@ dependencies = [
|
|
747
714
|
|
748
715
|
[[package]]
|
749
716
|
name = "itoa"
|
750
|
-
version = "1.0.
|
717
|
+
version = "1.0.4"
|
751
718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
752
|
-
checksum = "
|
719
|
+
checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
|
753
720
|
|
754
721
|
[[package]]
|
755
722
|
name = "js-sys"
|
756
|
-
version = "0.3.
|
723
|
+
version = "0.3.60"
|
757
724
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
758
|
-
checksum = "
|
725
|
+
checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
|
759
726
|
dependencies = [
|
760
727
|
"wasm-bindgen",
|
761
728
|
]
|
@@ -767,38 +734,41 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
734
|
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
768
735
|
|
769
736
|
[[package]]
|
770
|
-
name = "
|
771
|
-
version = "
|
737
|
+
name = "lazycell"
|
738
|
+
version = "1.3.0"
|
772
739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
773
|
-
checksum = "
|
774
|
-
dependencies = [
|
775
|
-
"arrayvec",
|
776
|
-
"bitflags",
|
777
|
-
"cfg-if",
|
778
|
-
"ryu",
|
779
|
-
"static_assertions",
|
780
|
-
]
|
740
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
781
741
|
|
782
742
|
[[package]]
|
783
743
|
name = "libc"
|
784
|
-
version = "0.2.
|
744
|
+
version = "0.2.137"
|
745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
746
|
+
checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89"
|
747
|
+
|
748
|
+
[[package]]
|
749
|
+
name = "libloading"
|
750
|
+
version = "0.7.4"
|
785
751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
786
|
-
checksum = "
|
752
|
+
checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
|
753
|
+
dependencies = [
|
754
|
+
"cfg-if",
|
755
|
+
"winapi",
|
756
|
+
]
|
787
757
|
|
788
758
|
[[package]]
|
789
759
|
name = "log"
|
790
|
-
version = "0.4.
|
760
|
+
version = "0.4.17"
|
791
761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
792
|
-
checksum = "
|
762
|
+
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
|
793
763
|
dependencies = [
|
794
764
|
"cfg-if",
|
795
765
|
]
|
796
766
|
|
797
767
|
[[package]]
|
798
768
|
name = "macro_rules_attribute"
|
799
|
-
version = "0.1.
|
769
|
+
version = "0.1.3"
|
800
770
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
801
|
-
checksum = "
|
771
|
+
checksum = "cf0c9b980bf4f3a37fd7b1c066941dd1b1d0152ce6ee6e8fe8c49b9f6810d862"
|
802
772
|
dependencies = [
|
803
773
|
"macro_rules_attribute-proc_macro",
|
804
774
|
"paste",
|
@@ -806,27 +776,42 @@ dependencies = [
|
|
806
776
|
|
807
777
|
[[package]]
|
808
778
|
name = "macro_rules_attribute-proc_macro"
|
809
|
-
version = "0.1.
|
779
|
+
version = "0.1.3"
|
810
780
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
811
|
-
checksum = "
|
781
|
+
checksum = "58093314a45e00c77d5c508f76e77c3396afbbc0d01506e7fae47b018bac2b1d"
|
812
782
|
|
813
783
|
[[package]]
|
814
|
-
name = "
|
815
|
-
version = "0.
|
784
|
+
name = "magnus"
|
785
|
+
version = "0.4.2"
|
816
786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
817
|
-
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
|
+
]
|
818
803
|
|
819
804
|
[[package]]
|
820
805
|
name = "memchr"
|
821
|
-
version = "2.
|
806
|
+
version = "2.5.0"
|
822
807
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
823
|
-
checksum = "
|
808
|
+
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
824
809
|
|
825
810
|
[[package]]
|
826
811
|
name = "memoffset"
|
827
|
-
version = "0.
|
812
|
+
version = "0.7.1"
|
828
813
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
829
|
-
checksum = "
|
814
|
+
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
|
830
815
|
dependencies = [
|
831
816
|
"autocfg",
|
832
817
|
]
|
@@ -837,44 +822,38 @@ version = "0.3.16"
|
|
837
822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
838
823
|
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
|
839
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
|
+
|
840
831
|
[[package]]
|
841
832
|
name = "miniz_oxide"
|
842
|
-
version = "0.
|
833
|
+
version = "0.6.2"
|
843
834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
844
|
-
checksum = "
|
835
|
+
checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
|
845
836
|
dependencies = [
|
846
837
|
"adler",
|
847
|
-
"autocfg",
|
848
838
|
]
|
849
839
|
|
850
840
|
[[package]]
|
851
841
|
name = "mio"
|
852
|
-
version = "0.8.
|
842
|
+
version = "0.8.5"
|
853
843
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
854
|
-
checksum = "
|
844
|
+
checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
|
855
845
|
dependencies = [
|
856
846
|
"libc",
|
857
847
|
"log",
|
858
|
-
"
|
859
|
-
"
|
860
|
-
"wasi",
|
861
|
-
"winapi",
|
862
|
-
]
|
863
|
-
|
864
|
-
[[package]]
|
865
|
-
name = "miow"
|
866
|
-
version = "0.3.7"
|
867
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
868
|
-
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
|
869
|
-
dependencies = [
|
870
|
-
"winapi",
|
848
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
849
|
+
"windows-sys 0.42.0",
|
871
850
|
]
|
872
851
|
|
873
852
|
[[package]]
|
874
853
|
name = "native-tls"
|
875
|
-
version = "0.2.
|
854
|
+
version = "0.2.11"
|
876
855
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
877
|
-
checksum = "
|
856
|
+
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
|
878
857
|
dependencies = [
|
879
858
|
"lazy_static",
|
880
859
|
"libc",
|
@@ -890,31 +869,19 @@ dependencies = [
|
|
890
869
|
|
891
870
|
[[package]]
|
892
871
|
name = "nom"
|
893
|
-
version = "
|
872
|
+
version = "7.1.1"
|
894
873
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
895
|
-
checksum = "
|
874
|
+
checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
|
896
875
|
dependencies = [
|
897
|
-
"bitvec",
|
898
|
-
"funty",
|
899
|
-
"lexical-core",
|
900
876
|
"memchr",
|
901
|
-
"
|
902
|
-
]
|
903
|
-
|
904
|
-
[[package]]
|
905
|
-
name = "ntapi"
|
906
|
-
version = "0.3.7"
|
907
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
908
|
-
checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
|
909
|
-
dependencies = [
|
910
|
-
"winapi",
|
877
|
+
"minimal-lexical",
|
911
878
|
]
|
912
879
|
|
913
880
|
[[package]]
|
914
881
|
name = "num_cpus"
|
915
|
-
version = "1.
|
882
|
+
version = "1.14.0"
|
916
883
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
917
|
-
checksum = "
|
884
|
+
checksum = "f6058e64324c71e02bc2b150e4f3bc8286db6c83092132ffa3f6b1eab0f9def5"
|
918
885
|
dependencies = [
|
919
886
|
"hermit-abi",
|
920
887
|
"libc",
|
@@ -929,32 +896,31 @@ checksum = "17b02fc0ff9a9e4b35b3342880f48e896ebf69f2967921fe8646bf5b7125956a"
|
|
929
896
|
[[package]]
|
930
897
|
name = "number_prefix"
|
931
898
|
version = "0.4.0"
|
932
|
-
source = "
|
933
|
-
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
899
|
+
source = "git+https://github.com/ankane/rust-number-prefix?branch=license-file#ce5a6a760b04c0f309e6d8fd7f72f5906c89723d"
|
934
900
|
|
935
901
|
[[package]]
|
936
902
|
name = "once_cell"
|
937
|
-
version = "1.
|
903
|
+
version = "1.16.0"
|
938
904
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
939
|
-
checksum = "
|
905
|
+
checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
|
940
906
|
|
941
907
|
[[package]]
|
942
908
|
name = "onig"
|
943
|
-
version = "6.
|
909
|
+
version = "6.4.0"
|
944
910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
945
|
-
checksum = "
|
911
|
+
checksum = "8c4b31c8722ad9171c6d77d3557db078cab2bd50afcc9d09c8b315c59df8ca4f"
|
946
912
|
dependencies = [
|
947
913
|
"bitflags",
|
948
|
-
"lazy_static",
|
949
914
|
"libc",
|
915
|
+
"once_cell",
|
950
916
|
"onig_sys",
|
951
917
|
]
|
952
918
|
|
953
919
|
[[package]]
|
954
920
|
name = "onig_sys"
|
955
|
-
version = "69.
|
921
|
+
version = "69.8.1"
|
956
922
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
957
|
-
checksum = "
|
923
|
+
checksum = "7b829e3d7e9cc74c7e315ee8edb185bf4190da5acde74afd7fc59c35b1f086e7"
|
958
924
|
dependencies = [
|
959
925
|
"cc",
|
960
926
|
"pkg-config",
|
@@ -962,18 +928,30 @@ dependencies = [
|
|
962
928
|
|
963
929
|
[[package]]
|
964
930
|
name = "openssl"
|
965
|
-
version = "0.10.
|
931
|
+
version = "0.10.43"
|
966
932
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
967
|
-
checksum = "
|
933
|
+
checksum = "020433887e44c27ff16365eaa2d380547a94544ad509aff6eb5b6e3e0b27b376"
|
968
934
|
dependencies = [
|
969
935
|
"bitflags",
|
970
936
|
"cfg-if",
|
971
937
|
"foreign-types",
|
972
938
|
"libc",
|
973
939
|
"once_cell",
|
940
|
+
"openssl-macros",
|
974
941
|
"openssl-sys",
|
975
942
|
]
|
976
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
|
+
|
977
955
|
[[package]]
|
978
956
|
name = "openssl-probe"
|
979
957
|
version = "0.1.5"
|
@@ -982,9 +960,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
|
982
960
|
|
983
961
|
[[package]]
|
984
962
|
name = "openssl-sys"
|
985
|
-
version = "0.9.
|
963
|
+
version = "0.9.78"
|
986
964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
987
|
-
checksum = "
|
965
|
+
checksum = "07d5c8cb6e57b3a3612064d7b18b117912b4ce70955c2504d4b741c9e244b132"
|
988
966
|
dependencies = [
|
989
967
|
"autocfg",
|
990
968
|
"cc",
|
@@ -999,17 +977,23 @@ version = "1.0.9"
|
|
999
977
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1000
978
|
checksum = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1"
|
1001
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"
|
985
|
+
|
1002
986
|
[[package]]
|
1003
987
|
name = "percent-encoding"
|
1004
|
-
version = "2.
|
988
|
+
version = "2.2.0"
|
1005
989
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1006
|
-
checksum = "
|
990
|
+
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
|
1007
991
|
|
1008
992
|
[[package]]
|
1009
993
|
name = "pin-project-lite"
|
1010
|
-
version = "0.2.
|
994
|
+
version = "0.2.9"
|
1011
995
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1012
|
-
checksum = "
|
996
|
+
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
|
1013
997
|
|
1014
998
|
[[package]]
|
1015
999
|
name = "pin-utils"
|
@@ -1019,40 +1003,34 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1019
1003
|
|
1020
1004
|
[[package]]
|
1021
1005
|
name = "pkg-config"
|
1022
|
-
version = "0.3.
|
1006
|
+
version = "0.3.26"
|
1023
1007
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1024
|
-
checksum = "
|
1008
|
+
checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
|
1025
1009
|
|
1026
1010
|
[[package]]
|
1027
1011
|
name = "ppv-lite86"
|
1028
|
-
version = "0.2.
|
1012
|
+
version = "0.2.17"
|
1029
1013
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1030
|
-
checksum = "
|
1014
|
+
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
1031
1015
|
|
1032
1016
|
[[package]]
|
1033
1017
|
name = "proc-macro2"
|
1034
|
-
version = "1.0.
|
1018
|
+
version = "1.0.47"
|
1035
1019
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1036
|
-
checksum = "
|
1020
|
+
checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725"
|
1037
1021
|
dependencies = [
|
1038
|
-
"unicode-
|
1022
|
+
"unicode-ident",
|
1039
1023
|
]
|
1040
1024
|
|
1041
1025
|
[[package]]
|
1042
1026
|
name = "quote"
|
1043
|
-
version = "1.0.
|
1027
|
+
version = "1.0.21"
|
1044
1028
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1045
|
-
checksum = "
|
1029
|
+
checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
|
1046
1030
|
dependencies = [
|
1047
1031
|
"proc-macro2",
|
1048
1032
|
]
|
1049
1033
|
|
1050
|
-
[[package]]
|
1051
|
-
name = "radium"
|
1052
|
-
version = "0.5.3"
|
1053
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1054
|
-
checksum = "941ba9d78d8e2f7ce474c015eea4d9c6d25b6a3327f9832ee29a4de27f91bbb8"
|
1055
|
-
|
1056
1034
|
[[package]]
|
1057
1035
|
name = "rand"
|
1058
1036
|
version = "0.8.5"
|
@@ -1076,20 +1054,19 @@ dependencies = [
|
|
1076
1054
|
|
1077
1055
|
[[package]]
|
1078
1056
|
name = "rand_core"
|
1079
|
-
version = "0.6.
|
1057
|
+
version = "0.6.4"
|
1080
1058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1081
|
-
checksum = "
|
1059
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
1082
1060
|
dependencies = [
|
1083
1061
|
"getrandom",
|
1084
1062
|
]
|
1085
1063
|
|
1086
1064
|
[[package]]
|
1087
1065
|
name = "rayon"
|
1088
|
-
version = "1.
|
1066
|
+
version = "1.6.0"
|
1089
1067
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1090
|
-
checksum = "
|
1068
|
+
checksum = "1e060280438193c554f654141c9ea9417886713b7acd75974c85b18a69a88e0b"
|
1091
1069
|
dependencies = [
|
1092
|
-
"autocfg",
|
1093
1070
|
"crossbeam-deque",
|
1094
1071
|
"either",
|
1095
1072
|
"rayon-core",
|
@@ -1108,31 +1085,55 @@ dependencies = [
|
|
1108
1085
|
|
1109
1086
|
[[package]]
|
1110
1087
|
name = "rayon-core"
|
1111
|
-
version = "1.
|
1088
|
+
version = "1.10.1"
|
1112
1089
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1113
|
-
checksum = "
|
1090
|
+
checksum = "cac410af5d00ab6884528b4ab69d1e8e146e8d471201800fa1b4524126de6ad3"
|
1114
1091
|
dependencies = [
|
1115
1092
|
"crossbeam-channel",
|
1116
1093
|
"crossbeam-deque",
|
1117
1094
|
"crossbeam-utils",
|
1118
|
-
"lazy_static",
|
1119
1095
|
"num_cpus",
|
1120
1096
|
]
|
1121
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
|
+
|
1122
1123
|
[[package]]
|
1123
1124
|
name = "redox_syscall"
|
1124
|
-
version = "0.2.
|
1125
|
+
version = "0.2.16"
|
1125
1126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1126
|
-
checksum = "
|
1127
|
+
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
|
1127
1128
|
dependencies = [
|
1128
1129
|
"bitflags",
|
1129
1130
|
]
|
1130
1131
|
|
1131
1132
|
[[package]]
|
1132
1133
|
name = "redox_users"
|
1133
|
-
version = "0.4.
|
1134
|
+
version = "0.4.3"
|
1134
1135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1135
|
-
checksum = "
|
1136
|
+
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
|
1136
1137
|
dependencies = [
|
1137
1138
|
"getrandom",
|
1138
1139
|
"redox_syscall",
|
@@ -1141,9 +1142,9 @@ dependencies = [
|
|
1141
1142
|
|
1142
1143
|
[[package]]
|
1143
1144
|
name = "regex"
|
1144
|
-
version = "1.
|
1145
|
+
version = "1.7.0"
|
1145
1146
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1146
|
-
checksum = "
|
1147
|
+
checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a"
|
1147
1148
|
dependencies = [
|
1148
1149
|
"aho-corasick",
|
1149
1150
|
"memchr",
|
@@ -1152,9 +1153,9 @@ dependencies = [
|
|
1152
1153
|
|
1153
1154
|
[[package]]
|
1154
1155
|
name = "regex-syntax"
|
1155
|
-
version = "0.6.
|
1156
|
+
version = "0.6.28"
|
1156
1157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1157
|
-
checksum = "
|
1158
|
+
checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
|
1158
1159
|
|
1159
1160
|
[[package]]
|
1160
1161
|
name = "remove_dir_all"
|
@@ -1167,11 +1168,11 @@ dependencies = [
|
|
1167
1168
|
|
1168
1169
|
[[package]]
|
1169
1170
|
name = "reqwest"
|
1170
|
-
version = "0.11.
|
1171
|
+
version = "0.11.13"
|
1171
1172
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1172
|
-
checksum = "
|
1173
|
+
checksum = "68cc60575865c7831548863cc02356512e3f1dc2f3f82cb837d7fc4cc8f3c97c"
|
1173
1174
|
dependencies = [
|
1174
|
-
"base64
|
1175
|
+
"base64",
|
1175
1176
|
"bytes",
|
1176
1177
|
"encoding_rs",
|
1177
1178
|
"futures-core",
|
@@ -1183,10 +1184,10 @@ dependencies = [
|
|
1183
1184
|
"hyper-tls",
|
1184
1185
|
"ipnet",
|
1185
1186
|
"js-sys",
|
1186
|
-
"lazy_static",
|
1187
1187
|
"log",
|
1188
1188
|
"mime",
|
1189
1189
|
"native-tls",
|
1190
|
+
"once_cell",
|
1190
1191
|
"percent-encoding",
|
1191
1192
|
"pin-project-lite",
|
1192
1193
|
"serde",
|
@@ -1194,6 +1195,7 @@ dependencies = [
|
|
1194
1195
|
"serde_urlencoded",
|
1195
1196
|
"tokio",
|
1196
1197
|
"tokio-native-tls",
|
1198
|
+
"tower-service",
|
1197
1199
|
"url",
|
1198
1200
|
"wasm-bindgen",
|
1199
1201
|
"wasm-bindgen-futures",
|
@@ -1202,29 +1204,25 @@ dependencies = [
|
|
1202
1204
|
]
|
1203
1205
|
|
1204
1206
|
[[package]]
|
1205
|
-
name = "
|
1206
|
-
version = "
|
1207
|
+
name = "rustc-hash"
|
1208
|
+
version = "1.1.0"
|
1207
1209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1208
|
-
checksum = "
|
1209
|
-
dependencies = [
|
1210
|
-
"lazy_static",
|
1211
|
-
"libc",
|
1212
|
-
]
|
1210
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
1213
1211
|
|
1214
1212
|
[[package]]
|
1215
1213
|
name = "ryu"
|
1216
|
-
version = "1.0.
|
1214
|
+
version = "1.0.11"
|
1217
1215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1218
|
-
checksum = "
|
1216
|
+
checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
|
1219
1217
|
|
1220
1218
|
[[package]]
|
1221
1219
|
name = "schannel"
|
1222
|
-
version = "0.1.
|
1220
|
+
version = "0.1.20"
|
1223
1221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1224
|
-
checksum = "
|
1222
|
+
checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
|
1225
1223
|
dependencies = [
|
1226
1224
|
"lazy_static",
|
1227
|
-
"
|
1225
|
+
"windows-sys 0.36.1",
|
1228
1226
|
]
|
1229
1227
|
|
1230
1228
|
[[package]]
|
@@ -1235,9 +1233,9 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
|
1235
1233
|
|
1236
1234
|
[[package]]
|
1237
1235
|
name = "security-framework"
|
1238
|
-
version = "2.
|
1236
|
+
version = "2.7.0"
|
1239
1237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1240
|
-
checksum = "
|
1238
|
+
checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c"
|
1241
1239
|
dependencies = [
|
1242
1240
|
"bitflags",
|
1243
1241
|
"core-foundation",
|
@@ -1258,18 +1256,18 @@ dependencies = [
|
|
1258
1256
|
|
1259
1257
|
[[package]]
|
1260
1258
|
name = "serde"
|
1261
|
-
version = "1.0.
|
1259
|
+
version = "1.0.148"
|
1262
1260
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1263
|
-
checksum = "
|
1261
|
+
checksum = "e53f64bb4ba0191d6d0676e1b141ca55047d83b74f5607e6d8eb88126c52c2dc"
|
1264
1262
|
dependencies = [
|
1265
1263
|
"serde_derive",
|
1266
1264
|
]
|
1267
1265
|
|
1268
1266
|
[[package]]
|
1269
1267
|
name = "serde_derive"
|
1270
|
-
version = "1.0.
|
1268
|
+
version = "1.0.148"
|
1271
1269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1272
|
-
checksum = "
|
1270
|
+
checksum = "a55492425aa53521babf6137309e7d34c20bbfbbfcfe2c7f3a047fd1f6b92c0c"
|
1273
1271
|
dependencies = [
|
1274
1272
|
"proc-macro2",
|
1275
1273
|
"quote",
|
@@ -1278,9 +1276,9 @@ dependencies = [
|
|
1278
1276
|
|
1279
1277
|
[[package]]
|
1280
1278
|
name = "serde_json"
|
1281
|
-
version = "1.0.
|
1279
|
+
version = "1.0.89"
|
1282
1280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1283
|
-
checksum = "
|
1281
|
+
checksum = "020ff22c755c2ed3f8cf162dbb41a7268d934702f3ed3631656ea597e08fc3db"
|
1284
1282
|
dependencies = [
|
1285
1283
|
"itoa",
|
1286
1284
|
"ryu",
|
@@ -1301,32 +1299,47 @@ dependencies = [
|
|
1301
1299
|
|
1302
1300
|
[[package]]
|
1303
1301
|
name = "sha2"
|
1304
|
-
version = "0.10.
|
1302
|
+
version = "0.10.6"
|
1305
1303
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1306
|
-
checksum = "
|
1304
|
+
checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
|
1307
1305
|
dependencies = [
|
1308
1306
|
"cfg-if",
|
1309
1307
|
"cpufeatures",
|
1310
1308
|
"digest",
|
1311
1309
|
]
|
1312
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
|
+
|
1313
1323
|
[[package]]
|
1314
1324
|
name = "slab"
|
1315
|
-
version = "0.4.
|
1325
|
+
version = "0.4.7"
|
1316
1326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1317
|
-
checksum = "
|
1327
|
+
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
|
1328
|
+
dependencies = [
|
1329
|
+
"autocfg",
|
1330
|
+
]
|
1318
1331
|
|
1319
1332
|
[[package]]
|
1320
1333
|
name = "smallvec"
|
1321
|
-
version = "1.
|
1334
|
+
version = "1.10.0"
|
1322
1335
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1323
|
-
checksum = "
|
1336
|
+
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
|
1324
1337
|
|
1325
1338
|
[[package]]
|
1326
1339
|
name = "socket2"
|
1327
|
-
version = "0.4.
|
1340
|
+
version = "0.4.7"
|
1328
1341
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1329
|
-
checksum = "
|
1342
|
+
checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
|
1330
1343
|
dependencies = [
|
1331
1344
|
"libc",
|
1332
1345
|
"winapi",
|
@@ -1334,28 +1347,16 @@ dependencies = [
|
|
1334
1347
|
|
1335
1348
|
[[package]]
|
1336
1349
|
name = "spm_precompiled"
|
1337
|
-
version = "0.1.
|
1350
|
+
version = "0.1.4"
|
1338
1351
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1339
|
-
checksum = "
|
1352
|
+
checksum = "5851699c4033c63636f7ea4cf7b7c1f1bf06d0cc03cfb42e711de5a5c46cf326"
|
1340
1353
|
dependencies = [
|
1341
|
-
"base64
|
1354
|
+
"base64",
|
1342
1355
|
"nom",
|
1343
1356
|
"serde",
|
1344
1357
|
"unicode-segmentation",
|
1345
1358
|
]
|
1346
1359
|
|
1347
|
-
[[package]]
|
1348
|
-
name = "static_assertions"
|
1349
|
-
version = "1.1.0"
|
1350
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1351
|
-
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
1352
|
-
|
1353
|
-
[[package]]
|
1354
|
-
name = "strsim"
|
1355
|
-
version = "0.8.0"
|
1356
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1357
|
-
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
|
1358
|
-
|
1359
1360
|
[[package]]
|
1360
1361
|
name = "strsim"
|
1361
1362
|
version = "0.9.3"
|
@@ -1364,21 +1365,15 @@ checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
|
|
1364
1365
|
|
1365
1366
|
[[package]]
|
1366
1367
|
name = "syn"
|
1367
|
-
version = "1.0.
|
1368
|
+
version = "1.0.104"
|
1368
1369
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1369
|
-
checksum = "
|
1370
|
+
checksum = "4ae548ec36cf198c0ef7710d3c230987c2d6d7bd98ad6edc0274462724c585ce"
|
1370
1371
|
dependencies = [
|
1371
1372
|
"proc-macro2",
|
1372
1373
|
"quote",
|
1373
|
-
"unicode-
|
1374
|
+
"unicode-ident",
|
1374
1375
|
]
|
1375
1376
|
|
1376
|
-
[[package]]
|
1377
|
-
name = "tap"
|
1378
|
-
version = "1.0.1"
|
1379
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1380
|
-
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
1381
|
-
|
1382
1377
|
[[package]]
|
1383
1378
|
name = "tar"
|
1384
1379
|
version = "0.4.38"
|
@@ -1414,29 +1409,20 @@ dependencies = [
|
|
1414
1409
|
"winapi",
|
1415
1410
|
]
|
1416
1411
|
|
1417
|
-
[[package]]
|
1418
|
-
name = "textwrap"
|
1419
|
-
version = "0.11.0"
|
1420
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1421
|
-
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
|
1422
|
-
dependencies = [
|
1423
|
-
"unicode-width",
|
1424
|
-
]
|
1425
|
-
|
1426
1412
|
[[package]]
|
1427
1413
|
name = "thiserror"
|
1428
|
-
version = "1.0.
|
1414
|
+
version = "1.0.37"
|
1429
1415
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1430
|
-
checksum = "
|
1416
|
+
checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
|
1431
1417
|
dependencies = [
|
1432
1418
|
"thiserror-impl",
|
1433
1419
|
]
|
1434
1420
|
|
1435
1421
|
[[package]]
|
1436
1422
|
name = "thiserror-impl"
|
1437
|
-
version = "1.0.
|
1423
|
+
version = "1.0.37"
|
1438
1424
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1439
|
-
checksum = "
|
1425
|
+
checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
|
1440
1426
|
dependencies = [
|
1441
1427
|
"proc-macro2",
|
1442
1428
|
"quote",
|
@@ -1445,19 +1431,20 @@ dependencies = [
|
|
1445
1431
|
|
1446
1432
|
[[package]]
|
1447
1433
|
name = "time"
|
1448
|
-
version = "0.1.
|
1434
|
+
version = "0.1.45"
|
1449
1435
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1450
|
-
checksum = "
|
1436
|
+
checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
|
1451
1437
|
dependencies = [
|
1452
1438
|
"libc",
|
1439
|
+
"wasi 0.10.0+wasi-snapshot-preview1",
|
1453
1440
|
"winapi",
|
1454
1441
|
]
|
1455
1442
|
|
1456
1443
|
[[package]]
|
1457
1444
|
name = "tinyvec"
|
1458
|
-
version = "1.
|
1445
|
+
version = "1.6.0"
|
1459
1446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1460
|
-
checksum = "
|
1447
|
+
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
|
1461
1448
|
dependencies = [
|
1462
1449
|
"tinyvec_macros",
|
1463
1450
|
]
|
@@ -1470,13 +1457,19 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
|
1470
1457
|
|
1471
1458
|
[[package]]
|
1472
1459
|
name = "tokenizers"
|
1473
|
-
version = "0.
|
1474
|
-
|
1475
|
-
|
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"
|
1476
1470
|
dependencies = [
|
1477
1471
|
"aho-corasick",
|
1478
1472
|
"cached-path",
|
1479
|
-
"clap",
|
1480
1473
|
"derive_builder",
|
1481
1474
|
"dirs",
|
1482
1475
|
"esaxx-rs",
|
@@ -1503,21 +1496,13 @@ dependencies = [
|
|
1503
1496
|
"unicode_categories",
|
1504
1497
|
]
|
1505
1498
|
|
1506
|
-
[[package]]
|
1507
|
-
name = "tokenizers-ruby"
|
1508
|
-
version = "0.1.0"
|
1509
|
-
dependencies = [
|
1510
|
-
"lazy_static",
|
1511
|
-
"rutie",
|
1512
|
-
"tokenizers",
|
1513
|
-
]
|
1514
|
-
|
1515
1499
|
[[package]]
|
1516
1500
|
name = "tokio"
|
1517
|
-
version = "1.
|
1501
|
+
version = "1.22.0"
|
1518
1502
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1519
|
-
checksum = "
|
1503
|
+
checksum = "d76ce4a75fb488c605c54bf610f221cea8b0dafb53333c1a67e8ee199dcd2ae3"
|
1520
1504
|
dependencies = [
|
1505
|
+
"autocfg",
|
1521
1506
|
"bytes",
|
1522
1507
|
"libc",
|
1523
1508
|
"memchr",
|
@@ -1540,29 +1525,29 @@ dependencies = [
|
|
1540
1525
|
|
1541
1526
|
[[package]]
|
1542
1527
|
name = "tokio-util"
|
1543
|
-
version = "0.
|
1528
|
+
version = "0.7.4"
|
1544
1529
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1545
|
-
checksum = "
|
1530
|
+
checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740"
|
1546
1531
|
dependencies = [
|
1547
1532
|
"bytes",
|
1548
1533
|
"futures-core",
|
1549
1534
|
"futures-sink",
|
1550
|
-
"log",
|
1551
1535
|
"pin-project-lite",
|
1552
1536
|
"tokio",
|
1537
|
+
"tracing",
|
1553
1538
|
]
|
1554
1539
|
|
1555
1540
|
[[package]]
|
1556
1541
|
name = "tower-service"
|
1557
|
-
version = "0.3.
|
1542
|
+
version = "0.3.2"
|
1558
1543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1559
|
-
checksum = "
|
1544
|
+
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
|
1560
1545
|
|
1561
1546
|
[[package]]
|
1562
1547
|
name = "tracing"
|
1563
|
-
version = "0.1.
|
1548
|
+
version = "0.1.37"
|
1564
1549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1565
|
-
checksum = "
|
1550
|
+
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
|
1566
1551
|
dependencies = [
|
1567
1552
|
"cfg-if",
|
1568
1553
|
"pin-project-lite",
|
@@ -1571,11 +1556,11 @@ dependencies = [
|
|
1571
1556
|
|
1572
1557
|
[[package]]
|
1573
1558
|
name = "tracing-core"
|
1574
|
-
version = "0.1.
|
1559
|
+
version = "0.1.30"
|
1575
1560
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1576
|
-
checksum = "
|
1561
|
+
checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
|
1577
1562
|
dependencies = [
|
1578
|
-
"
|
1563
|
+
"once_cell",
|
1579
1564
|
]
|
1580
1565
|
|
1581
1566
|
[[package]]
|
@@ -1592,15 +1577,21 @@ checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
|
|
1592
1577
|
|
1593
1578
|
[[package]]
|
1594
1579
|
name = "unicode-bidi"
|
1595
|
-
version = "0.3.
|
1580
|
+
version = "0.3.8"
|
1581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1582
|
+
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
|
1583
|
+
|
1584
|
+
[[package]]
|
1585
|
+
name = "unicode-ident"
|
1586
|
+
version = "1.0.5"
|
1596
1587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1597
|
-
checksum = "
|
1588
|
+
checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
|
1598
1589
|
|
1599
1590
|
[[package]]
|
1600
1591
|
name = "unicode-normalization"
|
1601
|
-
version = "0.1.
|
1592
|
+
version = "0.1.22"
|
1602
1593
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1603
|
-
checksum = "
|
1594
|
+
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
|
1604
1595
|
dependencies = [
|
1605
1596
|
"tinyvec",
|
1606
1597
|
]
|
@@ -1616,21 +1607,15 @@ dependencies = [
|
|
1616
1607
|
|
1617
1608
|
[[package]]
|
1618
1609
|
name = "unicode-segmentation"
|
1619
|
-
version = "1.
|
1610
|
+
version = "1.10.0"
|
1620
1611
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1621
|
-
checksum = "
|
1612
|
+
checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a"
|
1622
1613
|
|
1623
1614
|
[[package]]
|
1624
1615
|
name = "unicode-width"
|
1625
|
-
version = "0.1.
|
1626
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1627
|
-
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
|
1628
|
-
|
1629
|
-
[[package]]
|
1630
|
-
name = "unicode-xid"
|
1631
|
-
version = "0.2.2"
|
1616
|
+
version = "0.1.10"
|
1632
1617
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1633
|
-
checksum = "
|
1618
|
+
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
|
1634
1619
|
|
1635
1620
|
[[package]]
|
1636
1621
|
name = "unicode_categories"
|
@@ -1640,13 +1625,12 @@ checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
|
|
1640
1625
|
|
1641
1626
|
[[package]]
|
1642
1627
|
name = "url"
|
1643
|
-
version = "2.
|
1628
|
+
version = "2.3.1"
|
1644
1629
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1645
|
-
checksum = "
|
1630
|
+
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
|
1646
1631
|
dependencies = [
|
1647
1632
|
"form_urlencoded",
|
1648
1633
|
"idna",
|
1649
|
-
"matches",
|
1650
1634
|
"percent-encoding",
|
1651
1635
|
]
|
1652
1636
|
|
@@ -1656,12 +1640,6 @@ version = "0.2.15"
|
|
1656
1640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1657
1641
|
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
1658
1642
|
|
1659
|
-
[[package]]
|
1660
|
-
name = "vec_map"
|
1661
|
-
version = "0.8.2"
|
1662
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1663
|
-
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
|
1664
|
-
|
1665
1643
|
[[package]]
|
1666
1644
|
name = "version_check"
|
1667
1645
|
version = "0.9.4"
|
@@ -1678,6 +1656,12 @@ dependencies = [
|
|
1678
1656
|
"try-lock",
|
1679
1657
|
]
|
1680
1658
|
|
1659
|
+
[[package]]
|
1660
|
+
name = "wasi"
|
1661
|
+
version = "0.10.0+wasi-snapshot-preview1"
|
1662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1663
|
+
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
|
1664
|
+
|
1681
1665
|
[[package]]
|
1682
1666
|
name = "wasi"
|
1683
1667
|
version = "0.11.0+wasi-snapshot-preview1"
|
@@ -1686,9 +1670,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
1686
1670
|
|
1687
1671
|
[[package]]
|
1688
1672
|
name = "wasm-bindgen"
|
1689
|
-
version = "0.2.
|
1673
|
+
version = "0.2.83"
|
1690
1674
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1691
|
-
checksum = "
|
1675
|
+
checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
|
1692
1676
|
dependencies = [
|
1693
1677
|
"cfg-if",
|
1694
1678
|
"wasm-bindgen-macro",
|
@@ -1696,13 +1680,13 @@ dependencies = [
|
|
1696
1680
|
|
1697
1681
|
[[package]]
|
1698
1682
|
name = "wasm-bindgen-backend"
|
1699
|
-
version = "0.2.
|
1683
|
+
version = "0.2.83"
|
1700
1684
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1701
|
-
checksum = "
|
1685
|
+
checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
|
1702
1686
|
dependencies = [
|
1703
1687
|
"bumpalo",
|
1704
|
-
"lazy_static",
|
1705
1688
|
"log",
|
1689
|
+
"once_cell",
|
1706
1690
|
"proc-macro2",
|
1707
1691
|
"quote",
|
1708
1692
|
"syn",
|
@@ -1711,9 +1695,9 @@ dependencies = [
|
|
1711
1695
|
|
1712
1696
|
[[package]]
|
1713
1697
|
name = "wasm-bindgen-futures"
|
1714
|
-
version = "0.4.
|
1698
|
+
version = "0.4.33"
|
1715
1699
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1716
|
-
checksum = "
|
1700
|
+
checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d"
|
1717
1701
|
dependencies = [
|
1718
1702
|
"cfg-if",
|
1719
1703
|
"js-sys",
|
@@ -1723,9 +1707,9 @@ dependencies = [
|
|
1723
1707
|
|
1724
1708
|
[[package]]
|
1725
1709
|
name = "wasm-bindgen-macro"
|
1726
|
-
version = "0.2.
|
1710
|
+
version = "0.2.83"
|
1727
1711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1728
|
-
checksum = "
|
1712
|
+
checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
|
1729
1713
|
dependencies = [
|
1730
1714
|
"quote",
|
1731
1715
|
"wasm-bindgen-macro-support",
|
@@ -1733,9 +1717,9 @@ dependencies = [
|
|
1733
1717
|
|
1734
1718
|
[[package]]
|
1735
1719
|
name = "wasm-bindgen-macro-support"
|
1736
|
-
version = "0.2.
|
1720
|
+
version = "0.2.83"
|
1737
1721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1738
|
-
checksum = "
|
1722
|
+
checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
|
1739
1723
|
dependencies = [
|
1740
1724
|
"proc-macro2",
|
1741
1725
|
"quote",
|
@@ -1746,15 +1730,15 @@ dependencies = [
|
|
1746
1730
|
|
1747
1731
|
[[package]]
|
1748
1732
|
name = "wasm-bindgen-shared"
|
1749
|
-
version = "0.2.
|
1733
|
+
version = "0.2.83"
|
1750
1734
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1751
|
-
checksum = "
|
1735
|
+
checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
|
1752
1736
|
|
1753
1737
|
[[package]]
|
1754
1738
|
name = "web-sys"
|
1755
|
-
version = "0.3.
|
1739
|
+
version = "0.3.60"
|
1756
1740
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1757
|
-
checksum = "
|
1741
|
+
checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f"
|
1758
1742
|
dependencies = [
|
1759
1743
|
"js-sys",
|
1760
1744
|
"wasm-bindgen",
|
@@ -1782,6 +1766,106 @@ version = "0.4.0"
|
|
1782
1766
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1783
1767
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
1784
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
|
+
|
1785
1869
|
[[package]]
|
1786
1870
|
name = "winreg"
|
1787
1871
|
version = "0.10.1"
|
@@ -1791,17 +1875,11 @@ dependencies = [
|
|
1791
1875
|
"winapi",
|
1792
1876
|
]
|
1793
1877
|
|
1794
|
-
[[package]]
|
1795
|
-
name = "wyz"
|
1796
|
-
version = "0.2.0"
|
1797
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1798
|
-
checksum = "85e60b0d1b5f99db2556934e21937020776a5d31520bf169e851ac44e6420214"
|
1799
|
-
|
1800
1878
|
[[package]]
|
1801
1879
|
name = "xattr"
|
1802
|
-
version = "0.2.
|
1880
|
+
version = "0.2.3"
|
1803
1881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1804
|
-
checksum = "
|
1882
|
+
checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc"
|
1805
1883
|
dependencies = [
|
1806
1884
|
"libc",
|
1807
1885
|
]
|