tokenizers 0.5.4-x86_64-linux-musl → 0.6.0-x86_64-linux-musl
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 +9 -0
- data/Cargo.lock +202 -126
- data/LICENSE-THIRD-PARTY.txt +1071 -686
- data/lib/tokenizers/3.2/tokenizers.so +0 -0
- data/lib/tokenizers/3.3/tokenizers.so +0 -0
- data/lib/tokenizers/3.4/tokenizers.so +0 -0
- data/lib/tokenizers/from_pretrained.rb +2 -2
- data/lib/tokenizers/trainers/unigram_trainer.rb +10 -9
- data/lib/tokenizers/trainers/word_piece_trainer.rb +10 -9
- data/lib/tokenizers/version.rb +1 -1
- metadata +3 -4
- data/lib/tokenizers/3.1/tokenizers.so +0 -0
data/Cargo.lock
CHANGED
@@ -2,6 +2,20 @@
|
|
2
2
|
# It is not intended for manual editing.
|
3
3
|
version = 3
|
4
4
|
|
5
|
+
[[package]]
|
6
|
+
name = "ahash"
|
7
|
+
version = "0.8.12"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
10
|
+
dependencies = [
|
11
|
+
"cfg-if",
|
12
|
+
"getrandom",
|
13
|
+
"once_cell",
|
14
|
+
"serde",
|
15
|
+
"version_check",
|
16
|
+
"zerocopy",
|
17
|
+
]
|
18
|
+
|
5
19
|
[[package]]
|
6
20
|
name = "aho-corasick"
|
7
21
|
version = "1.1.3"
|
@@ -23,7 +37,7 @@ version = "0.69.5"
|
|
23
37
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
38
|
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
25
39
|
dependencies = [
|
26
|
-
"bitflags
|
40
|
+
"bitflags",
|
27
41
|
"cexpr",
|
28
42
|
"clang-sys",
|
29
43
|
"itertools 0.12.1",
|
@@ -39,33 +53,30 @@ dependencies = [
|
|
39
53
|
|
40
54
|
[[package]]
|
41
55
|
name = "bitflags"
|
42
|
-
version = "
|
43
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
44
|
-
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
45
|
-
|
46
|
-
[[package]]
|
47
|
-
name = "bitflags"
|
48
|
-
version = "2.6.0"
|
56
|
+
version = "2.9.0"
|
49
57
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
50
|
-
checksum = "
|
58
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
51
59
|
|
52
60
|
[[package]]
|
53
61
|
name = "bumpalo"
|
54
|
-
version = "3.
|
62
|
+
version = "3.17.0"
|
55
63
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
56
|
-
checksum = "
|
64
|
+
checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
|
57
65
|
|
58
66
|
[[package]]
|
59
|
-
name = "
|
60
|
-
version = "
|
67
|
+
name = "castaway"
|
68
|
+
version = "0.2.3"
|
61
69
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
62
|
-
checksum = "
|
70
|
+
checksum = "0abae9be0aaf9ea96a3b1b8b1b55c602ca751eba1b1500220cea4ecbafe7c0d5"
|
71
|
+
dependencies = [
|
72
|
+
"rustversion",
|
73
|
+
]
|
63
74
|
|
64
75
|
[[package]]
|
65
76
|
name = "cc"
|
66
|
-
version = "1.2.
|
77
|
+
version = "1.2.21"
|
67
78
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
68
|
-
checksum = "
|
79
|
+
checksum = "8691782945451c1c383942c4874dbe63814f61cb57ef773cda2972682b7bb3c0"
|
69
80
|
dependencies = [
|
70
81
|
"shlex",
|
71
82
|
]
|
@@ -96,11 +107,26 @@ dependencies = [
|
|
96
107
|
"libloading",
|
97
108
|
]
|
98
109
|
|
110
|
+
[[package]]
|
111
|
+
name = "compact_str"
|
112
|
+
version = "0.9.0"
|
113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
114
|
+
checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
|
115
|
+
dependencies = [
|
116
|
+
"castaway",
|
117
|
+
"cfg-if",
|
118
|
+
"itoa",
|
119
|
+
"rustversion",
|
120
|
+
"ryu",
|
121
|
+
"serde",
|
122
|
+
"static_assertions",
|
123
|
+
]
|
124
|
+
|
99
125
|
[[package]]
|
100
126
|
name = "console"
|
101
|
-
version = "0.15.
|
127
|
+
version = "0.15.11"
|
102
128
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
103
|
-
checksum = "
|
129
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
104
130
|
dependencies = [
|
105
131
|
"encode_unicode",
|
106
132
|
"libc",
|
@@ -136,9 +162,9 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
136
162
|
|
137
163
|
[[package]]
|
138
164
|
name = "darling"
|
139
|
-
version = "0.20.
|
165
|
+
version = "0.20.11"
|
140
166
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
141
|
-
checksum = "
|
167
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
142
168
|
dependencies = [
|
143
169
|
"darling_core",
|
144
170
|
"darling_macro",
|
@@ -146,9 +172,9 @@ dependencies = [
|
|
146
172
|
|
147
173
|
[[package]]
|
148
174
|
name = "darling_core"
|
149
|
-
version = "0.20.
|
175
|
+
version = "0.20.11"
|
150
176
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
151
|
-
checksum = "
|
177
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
152
178
|
dependencies = [
|
153
179
|
"fnv",
|
154
180
|
"ident_case",
|
@@ -160,15 +186,24 @@ dependencies = [
|
|
160
186
|
|
161
187
|
[[package]]
|
162
188
|
name = "darling_macro"
|
163
|
-
version = "0.20.
|
189
|
+
version = "0.20.11"
|
164
190
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
165
|
-
checksum = "
|
191
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
166
192
|
dependencies = [
|
167
193
|
"darling_core",
|
168
194
|
"quote",
|
169
195
|
"syn",
|
170
196
|
]
|
171
197
|
|
198
|
+
[[package]]
|
199
|
+
name = "dary_heap"
|
200
|
+
version = "0.3.7"
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
202
|
+
checksum = "04d2cd9c18b9f454ed67da600630b021a8a80bf33f8c95896ab33aaf1c26b728"
|
203
|
+
dependencies = [
|
204
|
+
"serde",
|
205
|
+
]
|
206
|
+
|
172
207
|
[[package]]
|
173
208
|
name = "derive_builder"
|
174
209
|
version = "0.20.2"
|
@@ -202,9 +237,9 @@ dependencies = [
|
|
202
237
|
|
203
238
|
[[package]]
|
204
239
|
name = "either"
|
205
|
-
version = "1.
|
240
|
+
version = "1.15.0"
|
206
241
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
207
|
-
checksum = "
|
242
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
208
243
|
|
209
244
|
[[package]]
|
210
245
|
name = "encode_unicode"
|
@@ -229,12 +264,13 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
229
264
|
|
230
265
|
[[package]]
|
231
266
|
name = "getrandom"
|
232
|
-
version = "0.
|
267
|
+
version = "0.3.3"
|
233
268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
234
|
-
checksum = "
|
269
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
235
270
|
dependencies = [
|
236
271
|
"cfg-if",
|
237
272
|
"libc",
|
273
|
+
"r-efi",
|
238
274
|
"wasi",
|
239
275
|
]
|
240
276
|
|
@@ -252,9 +288,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
252
288
|
|
253
289
|
[[package]]
|
254
290
|
name = "indicatif"
|
255
|
-
version = "0.17.
|
291
|
+
version = "0.17.11"
|
256
292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
257
|
-
checksum = "
|
293
|
+
checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
|
258
294
|
dependencies = [
|
259
295
|
"console",
|
260
296
|
"number_prefix",
|
@@ -265,33 +301,33 @@ dependencies = [
|
|
265
301
|
|
266
302
|
[[package]]
|
267
303
|
name = "itertools"
|
268
|
-
version = "0.
|
304
|
+
version = "0.12.1"
|
269
305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
270
|
-
checksum = "
|
306
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
271
307
|
dependencies = [
|
272
308
|
"either",
|
273
309
|
]
|
274
310
|
|
275
311
|
[[package]]
|
276
312
|
name = "itertools"
|
277
|
-
version = "0.
|
313
|
+
version = "0.14.0"
|
278
314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
279
|
-
checksum = "
|
315
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
280
316
|
dependencies = [
|
281
317
|
"either",
|
282
318
|
]
|
283
319
|
|
284
320
|
[[package]]
|
285
321
|
name = "itoa"
|
286
|
-
version = "1.0.
|
322
|
+
version = "1.0.15"
|
287
323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
288
|
-
checksum = "
|
324
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
289
325
|
|
290
326
|
[[package]]
|
291
327
|
name = "js-sys"
|
292
|
-
version = "0.3.
|
328
|
+
version = "0.3.77"
|
293
329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
294
|
-
checksum = "
|
330
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
295
331
|
dependencies = [
|
296
332
|
"once_cell",
|
297
333
|
"wasm-bindgen",
|
@@ -311,9 +347,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
311
347
|
|
312
348
|
[[package]]
|
313
349
|
name = "libc"
|
314
|
-
version = "0.2.
|
350
|
+
version = "0.2.172"
|
315
351
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
316
|
-
checksum = "
|
352
|
+
checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
|
317
353
|
|
318
354
|
[[package]]
|
319
355
|
name = "libloading"
|
@@ -327,9 +363,9 @@ dependencies = [
|
|
327
363
|
|
328
364
|
[[package]]
|
329
365
|
name = "log"
|
330
|
-
version = "0.4.
|
366
|
+
version = "0.4.27"
|
331
367
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
332
|
-
checksum = "
|
368
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
333
369
|
|
334
370
|
[[package]]
|
335
371
|
name = "macro_rules_attribute"
|
@@ -349,9 +385,9 @@ checksum = "b8dd856d451cc0da70e2ef2ce95a18e39a93b7558bedf10201ad28503f918568"
|
|
349
385
|
|
350
386
|
[[package]]
|
351
387
|
name = "magnus"
|
352
|
-
version = "0.
|
388
|
+
version = "0.8.0"
|
353
389
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
354
|
-
checksum = "
|
390
|
+
checksum = "3f14d3cc31b2dc4fce6cd447a83c7a7ca2ab8a9f1e535dcb2f796ff972b0e68b"
|
355
391
|
dependencies = [
|
356
392
|
"magnus-macros",
|
357
393
|
"rb-sys",
|
@@ -361,9 +397,9 @@ dependencies = [
|
|
361
397
|
|
362
398
|
[[package]]
|
363
399
|
name = "magnus-macros"
|
364
|
-
version = "0.
|
400
|
+
version = "0.8.0"
|
365
401
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
366
|
-
checksum = "
|
402
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
367
403
|
dependencies = [
|
368
404
|
"proc-macro2",
|
369
405
|
"quote",
|
@@ -384,9 +420,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
384
420
|
|
385
421
|
[[package]]
|
386
422
|
name = "monostate"
|
387
|
-
version = "0.1.
|
423
|
+
version = "0.1.14"
|
388
424
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
389
|
-
checksum = "
|
425
|
+
checksum = "aafe1be9d0c75642e3e50fedc7ecadf1ef1cbce6eb66462153fc44245343fbee"
|
390
426
|
dependencies = [
|
391
427
|
"monostate-impl",
|
392
428
|
"serde",
|
@@ -394,9 +430,9 @@ dependencies = [
|
|
394
430
|
|
395
431
|
[[package]]
|
396
432
|
name = "monostate-impl"
|
397
|
-
version = "0.1.
|
433
|
+
version = "0.1.14"
|
398
434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
399
|
-
checksum = "
|
435
|
+
checksum = "c402a4092d5e204f32c9e155431046831fa712637043c58cb73bc6bc6c9663b5"
|
400
436
|
dependencies = [
|
401
437
|
"proc-macro2",
|
402
438
|
"quote",
|
@@ -421,17 +457,17 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
|
421
457
|
|
422
458
|
[[package]]
|
423
459
|
name = "once_cell"
|
424
|
-
version = "1.
|
460
|
+
version = "1.21.3"
|
425
461
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
426
|
-
checksum = "
|
462
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
427
463
|
|
428
464
|
[[package]]
|
429
465
|
name = "onig"
|
430
|
-
version = "6.
|
466
|
+
version = "6.5.1"
|
431
467
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
432
|
-
checksum = "
|
468
|
+
checksum = "336b9c63443aceef14bea841b899035ae3abe89b7c486aaf4c5bd8aafedac3f0"
|
433
469
|
dependencies = [
|
434
|
-
"bitflags
|
470
|
+
"bitflags",
|
435
471
|
"libc",
|
436
472
|
"once_cell",
|
437
473
|
"onig_sys",
|
@@ -439,9 +475,9 @@ dependencies = [
|
|
439
475
|
|
440
476
|
[[package]]
|
441
477
|
name = "onig_sys"
|
442
|
-
version = "69.
|
478
|
+
version = "69.9.1"
|
443
479
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
444
|
-
checksum = "
|
480
|
+
checksum = "c7f86c6eef3d6df15f23bcfb6af487cbd2fed4e5581d58d5bf1f5f8b7f6727dc"
|
445
481
|
dependencies = [
|
446
482
|
"cc",
|
447
483
|
"pkg-config",
|
@@ -455,59 +491,64 @@ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
455
491
|
|
456
492
|
[[package]]
|
457
493
|
name = "pkg-config"
|
458
|
-
version = "0.3.
|
494
|
+
version = "0.3.32"
|
459
495
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
460
|
-
checksum = "
|
496
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
461
497
|
|
462
498
|
[[package]]
|
463
499
|
name = "portable-atomic"
|
464
|
-
version = "1.
|
500
|
+
version = "1.11.0"
|
465
501
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
466
|
-
checksum = "
|
502
|
+
checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
|
467
503
|
|
468
504
|
[[package]]
|
469
505
|
name = "ppv-lite86"
|
470
|
-
version = "0.2.
|
506
|
+
version = "0.2.21"
|
471
507
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
472
|
-
checksum = "
|
508
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
473
509
|
dependencies = [
|
474
510
|
"zerocopy",
|
475
511
|
]
|
476
512
|
|
477
513
|
[[package]]
|
478
514
|
name = "proc-macro2"
|
479
|
-
version = "1.0.
|
515
|
+
version = "1.0.95"
|
480
516
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
481
|
-
checksum = "
|
517
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
482
518
|
dependencies = [
|
483
519
|
"unicode-ident",
|
484
520
|
]
|
485
521
|
|
486
522
|
[[package]]
|
487
523
|
name = "quote"
|
488
|
-
version = "1.0.
|
524
|
+
version = "1.0.40"
|
489
525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
490
|
-
checksum = "
|
526
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
491
527
|
dependencies = [
|
492
528
|
"proc-macro2",
|
493
529
|
]
|
494
530
|
|
531
|
+
[[package]]
|
532
|
+
name = "r-efi"
|
533
|
+
version = "5.3.0"
|
534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
535
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
536
|
+
|
495
537
|
[[package]]
|
496
538
|
name = "rand"
|
497
|
-
version = "0.
|
539
|
+
version = "0.9.1"
|
498
540
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
499
|
-
checksum = "
|
541
|
+
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
|
500
542
|
dependencies = [
|
501
|
-
"libc",
|
502
543
|
"rand_chacha",
|
503
544
|
"rand_core",
|
504
545
|
]
|
505
546
|
|
506
547
|
[[package]]
|
507
548
|
name = "rand_chacha"
|
508
|
-
version = "0.
|
549
|
+
version = "0.9.0"
|
509
550
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
510
|
-
checksum = "
|
551
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
511
552
|
dependencies = [
|
512
553
|
"ppv-lite86",
|
513
554
|
"rand_core",
|
@@ -515,9 +556,9 @@ dependencies = [
|
|
515
556
|
|
516
557
|
[[package]]
|
517
558
|
name = "rand_core"
|
518
|
-
version = "0.
|
559
|
+
version = "0.9.3"
|
519
560
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
520
|
-
checksum = "
|
561
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
521
562
|
dependencies = [
|
522
563
|
"getrandom",
|
523
564
|
]
|
@@ -534,12 +575,12 @@ dependencies = [
|
|
534
575
|
|
535
576
|
[[package]]
|
536
577
|
name = "rayon-cond"
|
537
|
-
version = "0.
|
578
|
+
version = "0.4.0"
|
538
579
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
539
|
-
checksum = "
|
580
|
+
checksum = "2964d0cf57a3e7a06e8183d14a8b527195c706b7983549cd5462d5aa3747438f"
|
540
581
|
dependencies = [
|
541
582
|
"either",
|
542
|
-
"itertools 0.
|
583
|
+
"itertools 0.14.0",
|
543
584
|
"rayon",
|
544
585
|
]
|
545
586
|
|
@@ -555,18 +596,18 @@ dependencies = [
|
|
555
596
|
|
556
597
|
[[package]]
|
557
598
|
name = "rb-sys"
|
558
|
-
version = "0.9.
|
599
|
+
version = "0.9.117"
|
559
600
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
560
|
-
checksum = "
|
601
|
+
checksum = "f900d1ce4629a2ebffaf5de74bd8f9c1188d4c5ed406df02f97e22f77a006f44"
|
561
602
|
dependencies = [
|
562
603
|
"rb-sys-build",
|
563
604
|
]
|
564
605
|
|
565
606
|
[[package]]
|
566
607
|
name = "rb-sys-build"
|
567
|
-
version = "0.9.
|
608
|
+
version = "0.9.117"
|
568
609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
569
|
-
checksum = "
|
610
|
+
checksum = "ef1e9c857028f631056bcd6d88cec390c751e343ce2223ddb26d23eb4a151d59"
|
570
611
|
dependencies = [
|
571
612
|
"bindgen",
|
572
613
|
"lazy_static",
|
@@ -579,9 +620,9 @@ dependencies = [
|
|
579
620
|
|
580
621
|
[[package]]
|
581
622
|
name = "rb-sys-env"
|
582
|
-
version = "0.
|
623
|
+
version = "0.2.2"
|
583
624
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
584
|
-
checksum = "
|
625
|
+
checksum = "08f8d2924cf136a1315e2b4c7460a39f62ef11ee5d522df9b2750fab55b868b6"
|
585
626
|
|
586
627
|
[[package]]
|
587
628
|
name = "regex"
|
@@ -618,32 +659,38 @@ version = "1.1.0"
|
|
618
659
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
619
660
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
620
661
|
|
662
|
+
[[package]]
|
663
|
+
name = "rustversion"
|
664
|
+
version = "1.0.21"
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
666
|
+
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
|
667
|
+
|
621
668
|
[[package]]
|
622
669
|
name = "ryu"
|
623
|
-
version = "1.0.
|
670
|
+
version = "1.0.20"
|
624
671
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
625
|
-
checksum = "
|
672
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
626
673
|
|
627
674
|
[[package]]
|
628
675
|
name = "seq-macro"
|
629
|
-
version = "0.3.
|
676
|
+
version = "0.3.6"
|
630
677
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
631
|
-
checksum = "
|
678
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
632
679
|
|
633
680
|
[[package]]
|
634
681
|
name = "serde"
|
635
|
-
version = "1.0.
|
682
|
+
version = "1.0.219"
|
636
683
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
637
|
-
checksum = "
|
684
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
638
685
|
dependencies = [
|
639
686
|
"serde_derive",
|
640
687
|
]
|
641
688
|
|
642
689
|
[[package]]
|
643
690
|
name = "serde_derive"
|
644
|
-
version = "1.0.
|
691
|
+
version = "1.0.219"
|
645
692
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
646
|
-
checksum = "
|
693
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
647
694
|
dependencies = [
|
648
695
|
"proc-macro2",
|
649
696
|
"quote",
|
@@ -652,9 +699,9 @@ dependencies = [
|
|
652
699
|
|
653
700
|
[[package]]
|
654
701
|
name = "serde_json"
|
655
|
-
version = "1.0.
|
702
|
+
version = "1.0.140"
|
656
703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
657
|
-
checksum = "
|
704
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
658
705
|
dependencies = [
|
659
706
|
"itoa",
|
660
707
|
"memchr",
|
@@ -676,9 +723,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
676
723
|
|
677
724
|
[[package]]
|
678
725
|
name = "smallvec"
|
679
|
-
version = "1.
|
726
|
+
version = "1.15.0"
|
680
727
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
681
|
-
checksum = "
|
728
|
+
checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
682
729
|
|
683
730
|
[[package]]
|
684
731
|
name = "spm_precompiled"
|
@@ -692,6 +739,12 @@ dependencies = [
|
|
692
739
|
"unicode-segmentation",
|
693
740
|
]
|
694
741
|
|
742
|
+
[[package]]
|
743
|
+
name = "static_assertions"
|
744
|
+
version = "1.1.0"
|
745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
746
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
747
|
+
|
695
748
|
[[package]]
|
696
749
|
name = "strsim"
|
697
750
|
version = "0.11.1"
|
@@ -700,9 +753,9 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
700
753
|
|
701
754
|
[[package]]
|
702
755
|
name = "syn"
|
703
|
-
version = "2.0.
|
756
|
+
version = "2.0.101"
|
704
757
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
705
|
-
checksum = "
|
758
|
+
checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
|
706
759
|
dependencies = [
|
707
760
|
"proc-macro2",
|
708
761
|
"quote",
|
@@ -711,18 +764,18 @@ dependencies = [
|
|
711
764
|
|
712
765
|
[[package]]
|
713
766
|
name = "thiserror"
|
714
|
-
version = "
|
767
|
+
version = "2.0.12"
|
715
768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
716
|
-
checksum = "
|
769
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
717
770
|
dependencies = [
|
718
771
|
"thiserror-impl",
|
719
772
|
]
|
720
773
|
|
721
774
|
[[package]]
|
722
775
|
name = "thiserror-impl"
|
723
|
-
version = "
|
776
|
+
version = "2.0.12"
|
724
777
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
725
|
-
checksum = "
|
778
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
726
779
|
dependencies = [
|
727
780
|
"proc-macro2",
|
728
781
|
"quote",
|
@@ -731,27 +784,30 @@ dependencies = [
|
|
731
784
|
|
732
785
|
[[package]]
|
733
786
|
name = "tokenizers"
|
734
|
-
version = "0.
|
787
|
+
version = "0.6.0"
|
735
788
|
dependencies = [
|
789
|
+
"ahash",
|
736
790
|
"magnus",
|
737
791
|
"onig",
|
738
792
|
"serde",
|
739
|
-
"tokenizers 0.
|
793
|
+
"tokenizers 0.22.0",
|
740
794
|
]
|
741
795
|
|
742
796
|
[[package]]
|
743
797
|
name = "tokenizers"
|
744
|
-
version = "0.
|
798
|
+
version = "0.22.0"
|
745
799
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
746
|
-
checksum = "
|
800
|
+
checksum = "af10f51be57162b69d90a15cb226eef12c9e4faecbd5e3ea98a86bfb920b3d71"
|
747
801
|
dependencies = [
|
802
|
+
"ahash",
|
748
803
|
"aho-corasick",
|
804
|
+
"compact_str",
|
805
|
+
"dary_heap",
|
749
806
|
"derive_builder",
|
750
807
|
"esaxx-rs",
|
751
808
|
"getrandom",
|
752
809
|
"indicatif",
|
753
|
-
"itertools 0.
|
754
|
-
"lazy_static",
|
810
|
+
"itertools 0.14.0",
|
755
811
|
"log",
|
756
812
|
"macro_rules_attribute",
|
757
813
|
"monostate",
|
@@ -773,9 +829,9 @@ dependencies = [
|
|
773
829
|
|
774
830
|
[[package]]
|
775
831
|
name = "unicode-ident"
|
776
|
-
version = "1.0.
|
832
|
+
version = "1.0.18"
|
777
833
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
778
|
-
checksum = "
|
834
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
779
835
|
|
780
836
|
[[package]]
|
781
837
|
name = "unicode-normalization-alignments"
|
@@ -804,17 +860,26 @@ version = "0.1.1"
|
|
804
860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
805
861
|
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
|
806
862
|
|
863
|
+
[[package]]
|
864
|
+
name = "version_check"
|
865
|
+
version = "0.9.5"
|
866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
867
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
868
|
+
|
807
869
|
[[package]]
|
808
870
|
name = "wasi"
|
809
|
-
version = "0.
|
871
|
+
version = "0.14.2+wasi-0.2.4"
|
810
872
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
811
|
-
checksum = "
|
873
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
874
|
+
dependencies = [
|
875
|
+
"wit-bindgen-rt",
|
876
|
+
]
|
812
877
|
|
813
878
|
[[package]]
|
814
879
|
name = "wasm-bindgen"
|
815
|
-
version = "0.2.
|
880
|
+
version = "0.2.100"
|
816
881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
817
|
-
checksum = "
|
882
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
818
883
|
dependencies = [
|
819
884
|
"cfg-if",
|
820
885
|
"once_cell",
|
@@ -823,9 +888,9 @@ dependencies = [
|
|
823
888
|
|
824
889
|
[[package]]
|
825
890
|
name = "wasm-bindgen-backend"
|
826
|
-
version = "0.2.
|
891
|
+
version = "0.2.100"
|
827
892
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
828
|
-
checksum = "
|
893
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
829
894
|
dependencies = [
|
830
895
|
"bumpalo",
|
831
896
|
"log",
|
@@ -837,9 +902,9 @@ dependencies = [
|
|
837
902
|
|
838
903
|
[[package]]
|
839
904
|
name = "wasm-bindgen-macro"
|
840
|
-
version = "0.2.
|
905
|
+
version = "0.2.100"
|
841
906
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
842
|
-
checksum = "
|
907
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
843
908
|
dependencies = [
|
844
909
|
"quote",
|
845
910
|
"wasm-bindgen-macro-support",
|
@@ -847,9 +912,9 @@ dependencies = [
|
|
847
912
|
|
848
913
|
[[package]]
|
849
914
|
name = "wasm-bindgen-macro-support"
|
850
|
-
version = "0.2.
|
915
|
+
version = "0.2.100"
|
851
916
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
852
|
-
checksum = "
|
917
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
853
918
|
dependencies = [
|
854
919
|
"proc-macro2",
|
855
920
|
"quote",
|
@@ -860,9 +925,12 @@ dependencies = [
|
|
860
925
|
|
861
926
|
[[package]]
|
862
927
|
name = "wasm-bindgen-shared"
|
863
|
-
version = "0.2.
|
928
|
+
version = "0.2.100"
|
864
929
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
865
|
-
checksum = "
|
930
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
931
|
+
dependencies = [
|
932
|
+
"unicode-ident",
|
933
|
+
]
|
866
934
|
|
867
935
|
[[package]]
|
868
936
|
name = "web-time"
|
@@ -947,21 +1015,29 @@ version = "0.52.6"
|
|
947
1015
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
948
1016
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
949
1017
|
|
1018
|
+
[[package]]
|
1019
|
+
name = "wit-bindgen-rt"
|
1020
|
+
version = "0.39.0"
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1022
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
1023
|
+
dependencies = [
|
1024
|
+
"bitflags",
|
1025
|
+
]
|
1026
|
+
|
950
1027
|
[[package]]
|
951
1028
|
name = "zerocopy"
|
952
|
-
version = "0.
|
1029
|
+
version = "0.8.25"
|
953
1030
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
954
|
-
checksum = "
|
1031
|
+
checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
|
955
1032
|
dependencies = [
|
956
|
-
"byteorder",
|
957
1033
|
"zerocopy-derive",
|
958
1034
|
]
|
959
1035
|
|
960
1036
|
[[package]]
|
961
1037
|
name = "zerocopy-derive"
|
962
|
-
version = "0.
|
1038
|
+
version = "0.8.25"
|
963
1039
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
964
|
-
checksum = "
|
1040
|
+
checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
|
965
1041
|
dependencies = [
|
966
1042
|
"proc-macro2",
|
967
1043
|
"quote",
|