tokenizers 0.4.3-x86_64-linux → 0.5.0-x86_64-linux
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/Cargo.lock +65 -67
- data/LICENSE-THIRD-PARTY.txt +268 -266
- data/README.md +1 -1
- data/lib/tokenizers/3.1/tokenizers.so +0 -0
- data/lib/tokenizers/3.2/tokenizers.so +0 -0
- data/lib/tokenizers/3.3/tokenizers.so +0 -0
- data/lib/tokenizers/decoders/metaspace.rb +2 -2
- data/lib/tokenizers/from_pretrained.rb +1 -1
- data/lib/tokenizers/pre_tokenizers/metaspace.rb +2 -2
- data/lib/tokenizers/version.rb +1 -1
- metadata +3 -4
- data/lib/tokenizers/3.0/tokenizers.so +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 73c92c500a274ba952cfd529fc69f96613e19f2dc2acb0e608eba84e6477442f
|
4
|
+
data.tar.gz: da18d3aa30c01ae75b8b50c1fa675fd6a32acabe3f14c5a30802b6078c9801e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 544f43731aba4981487a1e14a13b76dd627ec60e6c68f808d47b4b721a0153fe427402e845e7595ca729ab877008b6a452b32b95a851bfb1236b273c3e64d10b
|
7
|
+
data.tar.gz: 38ca9c1e9dd511f0a875de4ba83df3015186c9e609d740525da9ee7660db70e90e1f539c20e38c43ae44fbe7df09e8ffc0781de8e7826fbe0f7a8f5c86bd6125
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
## 0.5.0 (2024-05-21)
|
2
|
+
|
3
|
+
- Updated Tokenizers to 0.19.1
|
4
|
+
- Replaced `add_prefix_space` with `prepend_scheme` and `split` options for `Metaspace` decoder and pre-tokenizer
|
5
|
+
- Dropped support for Ruby < 3.1
|
6
|
+
|
7
|
+
## 0.4.4 (2024-02-27)
|
8
|
+
|
9
|
+
- Updated Tokenizers to 0.15.2
|
10
|
+
|
1
11
|
## 0.4.3 (2024-01-03)
|
2
12
|
|
3
13
|
- Added support for Ruby 3.3
|
data/Cargo.lock
CHANGED
@@ -40,7 +40,7 @@ dependencies = [
|
|
40
40
|
"regex",
|
41
41
|
"rustc-hash",
|
42
42
|
"shlex",
|
43
|
-
"syn
|
43
|
+
"syn",
|
44
44
|
]
|
45
45
|
|
46
46
|
[[package]]
|
@@ -135,9 +135,9 @@ dependencies = [
|
|
135
135
|
|
136
136
|
[[package]]
|
137
137
|
name = "darling"
|
138
|
-
version = "0.
|
138
|
+
version = "0.20.8"
|
139
139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
140
|
-
checksum = "
|
140
|
+
checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391"
|
141
141
|
dependencies = [
|
142
142
|
"darling_core",
|
143
143
|
"darling_macro",
|
@@ -145,58 +145,58 @@ dependencies = [
|
|
145
145
|
|
146
146
|
[[package]]
|
147
147
|
name = "darling_core"
|
148
|
-
version = "0.
|
148
|
+
version = "0.20.8"
|
149
149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
150
|
-
checksum = "
|
150
|
+
checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f"
|
151
151
|
dependencies = [
|
152
152
|
"fnv",
|
153
153
|
"ident_case",
|
154
154
|
"proc-macro2",
|
155
155
|
"quote",
|
156
156
|
"strsim",
|
157
|
-
"syn
|
157
|
+
"syn",
|
158
158
|
]
|
159
159
|
|
160
160
|
[[package]]
|
161
161
|
name = "darling_macro"
|
162
|
-
version = "0.
|
162
|
+
version = "0.20.8"
|
163
163
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
164
|
-
checksum = "
|
164
|
+
checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f"
|
165
165
|
dependencies = [
|
166
166
|
"darling_core",
|
167
167
|
"quote",
|
168
|
-
"syn
|
168
|
+
"syn",
|
169
169
|
]
|
170
170
|
|
171
171
|
[[package]]
|
172
172
|
name = "derive_builder"
|
173
|
-
version = "0.
|
173
|
+
version = "0.20.0"
|
174
174
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
175
|
-
checksum = "
|
175
|
+
checksum = "0350b5cb0331628a5916d6c5c0b72e97393b8b6b03b47a9284f4e7f5a405ffd7"
|
176
176
|
dependencies = [
|
177
177
|
"derive_builder_macro",
|
178
178
|
]
|
179
179
|
|
180
180
|
[[package]]
|
181
181
|
name = "derive_builder_core"
|
182
|
-
version = "0.
|
182
|
+
version = "0.20.0"
|
183
183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
184
|
-
checksum = "
|
184
|
+
checksum = "d48cda787f839151732d396ac69e3473923d54312c070ee21e9effcaa8ca0b1d"
|
185
185
|
dependencies = [
|
186
186
|
"darling",
|
187
187
|
"proc-macro2",
|
188
188
|
"quote",
|
189
|
-
"syn
|
189
|
+
"syn",
|
190
190
|
]
|
191
191
|
|
192
192
|
[[package]]
|
193
193
|
name = "derive_builder_macro"
|
194
|
-
version = "0.
|
194
|
+
version = "0.20.0"
|
195
195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
196
|
-
checksum = "
|
196
|
+
checksum = "206868b8242f27cecce124c19fd88157fbd0dd334df2587f36417bafbc85097b"
|
197
197
|
dependencies = [
|
198
198
|
"derive_builder_core",
|
199
|
-
"syn
|
199
|
+
"syn",
|
200
200
|
]
|
201
201
|
|
202
202
|
[[package]]
|
@@ -280,6 +280,15 @@ dependencies = [
|
|
280
280
|
"either",
|
281
281
|
]
|
282
282
|
|
283
|
+
[[package]]
|
284
|
+
name = "itertools"
|
285
|
+
version = "0.12.1"
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
287
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
288
|
+
dependencies = [
|
289
|
+
"either",
|
290
|
+
]
|
291
|
+
|
283
292
|
[[package]]
|
284
293
|
name = "itoa"
|
285
294
|
version = "1.0.6"
|
@@ -341,9 +350,9 @@ checksum = "b8dd856d451cc0da70e2ef2ce95a18e39a93b7558bedf10201ad28503f918568"
|
|
341
350
|
|
342
351
|
[[package]]
|
343
352
|
name = "magnus"
|
344
|
-
version = "0.6.
|
353
|
+
version = "0.6.4"
|
345
354
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
346
|
-
checksum = "
|
355
|
+
checksum = "b1597ef40aa8c36be098249e82c9a20cf7199278ac1c1a1a995eeead6a184479"
|
347
356
|
dependencies = [
|
348
357
|
"magnus-macros",
|
349
358
|
"rb-sys",
|
@@ -359,7 +368,7 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
|
359
368
|
dependencies = [
|
360
369
|
"proc-macro2",
|
361
370
|
"quote",
|
362
|
-
"syn
|
371
|
+
"syn",
|
363
372
|
]
|
364
373
|
|
365
374
|
[[package]]
|
@@ -385,9 +394,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
385
394
|
|
386
395
|
[[package]]
|
387
396
|
name = "monostate"
|
388
|
-
version = "0.1.
|
397
|
+
version = "0.1.12"
|
389
398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
390
|
-
checksum = "
|
399
|
+
checksum = "a20fffcd8ca4c69d31e036a71abc400147b41f90895df4edcb36497a1f8af8bf"
|
391
400
|
dependencies = [
|
392
401
|
"monostate-impl",
|
393
402
|
"serde",
|
@@ -395,13 +404,13 @@ dependencies = [
|
|
395
404
|
|
396
405
|
[[package]]
|
397
406
|
name = "monostate-impl"
|
398
|
-
version = "0.1.
|
407
|
+
version = "0.1.12"
|
399
408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
400
|
-
checksum = "
|
409
|
+
checksum = "bf307cbbbd777a9c10cec88ddafee572b3484caad5cce0c9236523c3803105a6"
|
401
410
|
dependencies = [
|
402
411
|
"proc-macro2",
|
403
412
|
"quote",
|
404
|
-
"syn
|
413
|
+
"syn",
|
405
414
|
]
|
406
415
|
|
407
416
|
[[package]]
|
@@ -480,18 +489,18 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
480
489
|
|
481
490
|
[[package]]
|
482
491
|
name = "proc-macro2"
|
483
|
-
version = "1.0.
|
492
|
+
version = "1.0.81"
|
484
493
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
485
|
-
checksum = "
|
494
|
+
checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba"
|
486
495
|
dependencies = [
|
487
496
|
"unicode-ident",
|
488
497
|
]
|
489
498
|
|
490
499
|
[[package]]
|
491
500
|
name = "quote"
|
492
|
-
version = "1.0.
|
501
|
+
version = "1.0.36"
|
493
502
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
494
|
-
checksum = "
|
503
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
495
504
|
dependencies = [
|
496
505
|
"proc-macro2",
|
497
506
|
]
|
@@ -528,9 +537,9 @@ dependencies = [
|
|
528
537
|
|
529
538
|
[[package]]
|
530
539
|
name = "rayon"
|
531
|
-
version = "1.
|
540
|
+
version = "1.10.0"
|
532
541
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
533
|
-
checksum = "
|
542
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
534
543
|
dependencies = [
|
535
544
|
"either",
|
536
545
|
"rayon-core",
|
@@ -543,15 +552,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
552
|
checksum = "059f538b55efd2309c9794130bc149c6a553db90e9d99c2030785c82f0bd7df9"
|
544
553
|
dependencies = [
|
545
554
|
"either",
|
546
|
-
"itertools",
|
555
|
+
"itertools 0.11.0",
|
547
556
|
"rayon",
|
548
557
|
]
|
549
558
|
|
550
559
|
[[package]]
|
551
560
|
name = "rayon-core"
|
552
|
-
version = "1.12.
|
561
|
+
version = "1.12.1"
|
553
562
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
554
|
-
checksum = "
|
563
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
555
564
|
dependencies = [
|
556
565
|
"crossbeam-deque",
|
557
566
|
"crossbeam-utils",
|
@@ -559,18 +568,18 @@ dependencies = [
|
|
559
568
|
|
560
569
|
[[package]]
|
561
570
|
name = "rb-sys"
|
562
|
-
version = "0.9.
|
571
|
+
version = "0.9.97"
|
563
572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
564
|
-
checksum = "
|
573
|
+
checksum = "47d30bcad206b51f2f66121190ca678dce1fdf3a2eae0ac5d838d1818b19bdf5"
|
565
574
|
dependencies = [
|
566
575
|
"rb-sys-build",
|
567
576
|
]
|
568
577
|
|
569
578
|
[[package]]
|
570
579
|
name = "rb-sys-build"
|
571
|
-
version = "0.9.
|
580
|
+
version = "0.9.97"
|
572
581
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
573
|
-
checksum = "
|
582
|
+
checksum = "3cbd92f281615f3c2dcb9dcb0f0576624752afbf9a7f99173b37c4b55b62dd8a"
|
574
583
|
dependencies = [
|
575
584
|
"bindgen",
|
576
585
|
"lazy_static",
|
@@ -578,7 +587,7 @@ dependencies = [
|
|
578
587
|
"quote",
|
579
588
|
"regex",
|
580
589
|
"shell-words",
|
581
|
-
"syn
|
590
|
+
"syn",
|
582
591
|
]
|
583
592
|
|
584
593
|
[[package]]
|
@@ -589,9 +598,9 @@ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
|
589
598
|
|
590
599
|
[[package]]
|
591
600
|
name = "regex"
|
592
|
-
version = "1.
|
601
|
+
version = "1.10.4"
|
593
602
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
594
|
-
checksum = "
|
603
|
+
checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
|
595
604
|
dependencies = [
|
596
605
|
"aho-corasick",
|
597
606
|
"memchr",
|
@@ -601,9 +610,9 @@ dependencies = [
|
|
601
610
|
|
602
611
|
[[package]]
|
603
612
|
name = "regex-automata"
|
604
|
-
version = "0.
|
613
|
+
version = "0.4.6"
|
605
614
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
606
|
-
checksum = "
|
615
|
+
checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
|
607
616
|
dependencies = [
|
608
617
|
"aho-corasick",
|
609
618
|
"memchr",
|
@@ -612,9 +621,9 @@ dependencies = [
|
|
612
621
|
|
613
622
|
[[package]]
|
614
623
|
name = "regex-syntax"
|
615
|
-
version = "0.
|
624
|
+
version = "0.8.2"
|
616
625
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
617
|
-
checksum = "
|
626
|
+
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
|
618
627
|
|
619
628
|
[[package]]
|
620
629
|
name = "rustc-hash"
|
@@ -657,7 +666,7 @@ checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2"
|
|
657
666
|
dependencies = [
|
658
667
|
"proc-macro2",
|
659
668
|
"quote",
|
660
|
-
"syn
|
669
|
+
"syn",
|
661
670
|
]
|
662
671
|
|
663
672
|
[[package]]
|
@@ -709,20 +718,9 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
|
709
718
|
|
710
719
|
[[package]]
|
711
720
|
name = "syn"
|
712
|
-
version = "
|
713
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
714
|
-
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
715
|
-
dependencies = [
|
716
|
-
"proc-macro2",
|
717
|
-
"quote",
|
718
|
-
"unicode-ident",
|
719
|
-
]
|
720
|
-
|
721
|
-
[[package]]
|
722
|
-
name = "syn"
|
723
|
-
version = "2.0.38"
|
721
|
+
version = "2.0.59"
|
724
722
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
725
|
-
checksum = "
|
723
|
+
checksum = "4a6531ffc7b071655e4ce2e04bd464c4830bb585a61cabb96cf808f05172615a"
|
726
724
|
dependencies = [
|
727
725
|
"proc-macro2",
|
728
726
|
"quote",
|
@@ -746,31 +744,31 @@ checksum = "10712f02019e9288794769fba95cd6847df9874d49d871d062172f9dd41bc4cc"
|
|
746
744
|
dependencies = [
|
747
745
|
"proc-macro2",
|
748
746
|
"quote",
|
749
|
-
"syn
|
747
|
+
"syn",
|
750
748
|
]
|
751
749
|
|
752
750
|
[[package]]
|
753
751
|
name = "tokenizers"
|
754
|
-
version = "0.
|
752
|
+
version = "0.5.0"
|
755
753
|
dependencies = [
|
756
754
|
"magnus",
|
757
755
|
"onig",
|
758
756
|
"serde",
|
759
|
-
"tokenizers 0.
|
757
|
+
"tokenizers 0.19.1",
|
760
758
|
]
|
761
759
|
|
762
760
|
[[package]]
|
763
761
|
name = "tokenizers"
|
764
|
-
version = "0.
|
762
|
+
version = "0.19.1"
|
765
763
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
766
|
-
checksum = "
|
764
|
+
checksum = "e500fad1dd3af3d626327e6a3fe5050e664a6eaa4708b8ca92f1794aaf73e6fd"
|
767
765
|
dependencies = [
|
768
766
|
"aho-corasick",
|
769
767
|
"derive_builder",
|
770
768
|
"esaxx-rs",
|
771
769
|
"getrandom",
|
772
770
|
"indicatif",
|
773
|
-
"itertools",
|
771
|
+
"itertools 0.12.1",
|
774
772
|
"lazy_static",
|
775
773
|
"log",
|
776
774
|
"macro_rules_attribute",
|
@@ -808,9 +806,9 @@ dependencies = [
|
|
808
806
|
|
809
807
|
[[package]]
|
810
808
|
name = "unicode-segmentation"
|
811
|
-
version = "1.
|
809
|
+
version = "1.11.0"
|
812
810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
813
|
-
checksum = "
|
811
|
+
checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
|
814
812
|
|
815
813
|
[[package]]
|
816
814
|
name = "unicode-width"
|
data/LICENSE-THIRD-PARTY.txt
CHANGED
@@ -58,29 +58,29 @@ crossbeam-utils v0.8.15
|
|
58
58
|
https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils
|
59
59
|
MIT OR Apache-2.0
|
60
60
|
|
61
|
-
darling v0.
|
61
|
+
darling v0.20.8
|
62
62
|
https://github.com/TedDriggs/darling
|
63
63
|
MIT
|
64
64
|
|
65
|
-
darling_core v0.
|
65
|
+
darling_core v0.20.8
|
66
66
|
https://github.com/TedDriggs/darling
|
67
67
|
MIT
|
68
68
|
|
69
|
-
darling_macro v0.
|
69
|
+
darling_macro v0.20.8
|
70
70
|
https://github.com/TedDriggs/darling
|
71
71
|
MIT
|
72
72
|
|
73
|
-
derive_builder v0.
|
73
|
+
derive_builder v0.20.0
|
74
74
|
https://github.com/colin-kiegel/rust-derive-builder
|
75
|
-
MIT
|
75
|
+
MIT OR Apache-2.0
|
76
76
|
|
77
|
-
derive_builder_core v0.
|
77
|
+
derive_builder_core v0.20.0
|
78
78
|
https://github.com/colin-kiegel/rust-derive-builder
|
79
|
-
MIT
|
79
|
+
MIT OR Apache-2.0
|
80
80
|
|
81
|
-
derive_builder_macro v0.
|
81
|
+
derive_builder_macro v0.20.0
|
82
82
|
https://github.com/colin-kiegel/rust-derive-builder
|
83
|
-
MIT
|
83
|
+
MIT OR Apache-2.0
|
84
84
|
|
85
85
|
either v1.8.1
|
86
86
|
https://github.com/bluss/either
|
@@ -114,6 +114,10 @@ itertools v0.11.0
|
|
114
114
|
https://github.com/rust-itertools/itertools
|
115
115
|
MIT OR Apache-2.0
|
116
116
|
|
117
|
+
itertools v0.12.1
|
118
|
+
https://github.com/rust-itertools/itertools
|
119
|
+
MIT OR Apache-2.0
|
120
|
+
|
117
121
|
itoa v1.0.6
|
118
122
|
https://github.com/dtolnay/itoa
|
119
123
|
MIT OR Apache-2.0
|
@@ -146,7 +150,7 @@ macro_rules_attribute-proc_macro v0.2.0
|
|
146
150
|
https://github.com/danielhenrymantilla/macro_rules_attribute-rs
|
147
151
|
MIT
|
148
152
|
|
149
|
-
magnus v0.6.
|
153
|
+
magnus v0.6.4
|
150
154
|
https://github.com/matsadler/magnus
|
151
155
|
MIT
|
152
156
|
|
@@ -166,11 +170,11 @@ minimal-lexical v0.2.1
|
|
166
170
|
https://github.com/Alexhuszagh/minimal-lexical
|
167
171
|
MIT/Apache-2.0
|
168
172
|
|
169
|
-
monostate v0.1.
|
173
|
+
monostate v0.1.12
|
170
174
|
https://github.com/dtolnay/monostate
|
171
175
|
MIT OR Apache-2.0
|
172
176
|
|
173
|
-
monostate-impl v0.1.
|
177
|
+
monostate-impl v0.1.12
|
174
178
|
https://github.com/dtolnay/monostate
|
175
179
|
MIT OR Apache-2.0
|
176
180
|
|
@@ -214,11 +218,11 @@ ppv-lite86 v0.2.17
|
|
214
218
|
https://github.com/cryptocorrosion/cryptocorrosion
|
215
219
|
MIT/Apache-2.0
|
216
220
|
|
217
|
-
proc-macro2 v1.0.
|
221
|
+
proc-macro2 v1.0.81
|
218
222
|
https://github.com/dtolnay/proc-macro2
|
219
223
|
MIT OR Apache-2.0
|
220
224
|
|
221
|
-
quote v1.0.
|
225
|
+
quote v1.0.36
|
222
226
|
https://github.com/dtolnay/quote
|
223
227
|
MIT OR Apache-2.0
|
224
228
|
|
@@ -234,7 +238,7 @@ rand_core v0.6.4
|
|
234
238
|
https://rust-random.github.io/book
|
235
239
|
MIT OR Apache-2.0
|
236
240
|
|
237
|
-
rayon v1.
|
241
|
+
rayon v1.10.0
|
238
242
|
https://github.com/rayon-rs/rayon
|
239
243
|
MIT OR Apache-2.0
|
240
244
|
|
@@ -242,15 +246,15 @@ rayon-cond v0.3.0
|
|
242
246
|
https://github.com/cuviper/rayon-cond
|
243
247
|
Apache-2.0/MIT
|
244
248
|
|
245
|
-
rayon-core v1.12.
|
249
|
+
rayon-core v1.12.1
|
246
250
|
https://github.com/rayon-rs/rayon
|
247
251
|
MIT OR Apache-2.0
|
248
252
|
|
249
|
-
rb-sys v0.9.
|
253
|
+
rb-sys v0.9.97
|
250
254
|
https://github.com/oxidize-rb/rb-sys
|
251
255
|
MIT OR Apache-2.0
|
252
256
|
|
253
|
-
rb-sys-build v0.9.
|
257
|
+
rb-sys-build v0.9.97
|
254
258
|
https://github.com/oxidize-rb/rb-sys
|
255
259
|
MIT OR Apache-2.0
|
256
260
|
|
@@ -258,15 +262,15 @@ rb-sys-env v0.1.2
|
|
258
262
|
https://github.com/oxidize-rb/rb-sys
|
259
263
|
MIT OR Apache-2.0
|
260
264
|
|
261
|
-
regex v1.
|
265
|
+
regex v1.10.4
|
262
266
|
https://github.com/rust-lang/regex
|
263
267
|
MIT OR Apache-2.0
|
264
268
|
|
265
|
-
regex-automata v0.
|
269
|
+
regex-automata v0.4.6
|
266
270
|
https://github.com/rust-lang/regex/tree/master/regex-automata
|
267
271
|
MIT OR Apache-2.0
|
268
272
|
|
269
|
-
regex-syntax v0.
|
273
|
+
regex-syntax v0.8.2
|
270
274
|
https://github.com/rust-lang/regex/tree/master/regex-syntax
|
271
275
|
MIT OR Apache-2.0
|
272
276
|
|
@@ -318,11 +322,7 @@ strsim v0.10.0
|
|
318
322
|
https://github.com/dguo/strsim-rs
|
319
323
|
MIT
|
320
324
|
|
321
|
-
syn
|
322
|
-
https://github.com/dtolnay/syn
|
323
|
-
MIT OR Apache-2.0
|
324
|
-
|
325
|
-
syn v2.0.38
|
325
|
+
syn v2.0.59
|
326
326
|
https://github.com/dtolnay/syn
|
327
327
|
MIT OR Apache-2.0
|
328
328
|
|
@@ -334,7 +334,7 @@ thiserror-impl v1.0.49
|
|
334
334
|
https://github.com/dtolnay/thiserror
|
335
335
|
MIT OR Apache-2.0
|
336
336
|
|
337
|
-
tokenizers v0.
|
337
|
+
tokenizers v0.19.1
|
338
338
|
https://github.com/huggingface/tokenizers
|
339
339
|
Apache-2.0
|
340
340
|
|
@@ -346,7 +346,7 @@ unicode-normalization-alignments v0.1.12
|
|
346
346
|
https://github.com/n1t0/unicode-normalization
|
347
347
|
MIT/Apache-2.0
|
348
348
|
|
349
|
-
unicode-segmentation v1.
|
349
|
+
unicode-segmentation v1.11.0
|
350
350
|
https://github.com/unicode-rs/unicode-segmentation
|
351
351
|
MIT/Apache-2.0
|
352
352
|
|
@@ -5031,7 +5031,243 @@ SOFTWARE.
|
|
5031
5031
|
|
5032
5032
|
|
5033
5033
|
================================================================================
|
5034
|
-
itertools LICENSE-APACHE
|
5034
|
+
itertools v0.11.0 LICENSE-APACHE
|
5035
|
+
================================================================================
|
5036
|
+
|
5037
|
+
Apache License
|
5038
|
+
Version 2.0, January 2004
|
5039
|
+
http://www.apache.org/licenses/
|
5040
|
+
|
5041
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
5042
|
+
|
5043
|
+
1. Definitions.
|
5044
|
+
|
5045
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
5046
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
5047
|
+
|
5048
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
5049
|
+
the copyright owner that is granting the License.
|
5050
|
+
|
5051
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
5052
|
+
other entities that control, are controlled by, or are under common
|
5053
|
+
control with that entity. For the purposes of this definition,
|
5054
|
+
"control" means (i) the power, direct or indirect, to cause the
|
5055
|
+
direction or management of such entity, whether by contract or
|
5056
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
5057
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
5058
|
+
|
5059
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
5060
|
+
exercising permissions granted by this License.
|
5061
|
+
|
5062
|
+
"Source" form shall mean the preferred form for making modifications,
|
5063
|
+
including but not limited to software source code, documentation
|
5064
|
+
source, and configuration files.
|
5065
|
+
|
5066
|
+
"Object" form shall mean any form resulting from mechanical
|
5067
|
+
transformation or translation of a Source form, including but
|
5068
|
+
not limited to compiled object code, generated documentation,
|
5069
|
+
and conversions to other media types.
|
5070
|
+
|
5071
|
+
"Work" shall mean the work of authorship, whether in Source or
|
5072
|
+
Object form, made available under the License, as indicated by a
|
5073
|
+
copyright notice that is included in or attached to the work
|
5074
|
+
(an example is provided in the Appendix below).
|
5075
|
+
|
5076
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
5077
|
+
form, that is based on (or derived from) the Work and for which the
|
5078
|
+
editorial revisions, annotations, elaborations, or other modifications
|
5079
|
+
represent, as a whole, an original work of authorship. For the purposes
|
5080
|
+
of this License, Derivative Works shall not include works that remain
|
5081
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
5082
|
+
the Work and Derivative Works thereof.
|
5083
|
+
|
5084
|
+
"Contribution" shall mean any work of authorship, including
|
5085
|
+
the original version of the Work and any modifications or additions
|
5086
|
+
to that Work or Derivative Works thereof, that is intentionally
|
5087
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
5088
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
5089
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
5090
|
+
means any form of electronic, verbal, or written communication sent
|
5091
|
+
to the Licensor or its representatives, including but not limited to
|
5092
|
+
communication on electronic mailing lists, source code control systems,
|
5093
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
5094
|
+
Licensor for the purpose of discussing and improving the Work, but
|
5095
|
+
excluding communication that is conspicuously marked or otherwise
|
5096
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
5097
|
+
|
5098
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
5099
|
+
on behalf of whom a Contribution has been received by Licensor and
|
5100
|
+
subsequently incorporated within the Work.
|
5101
|
+
|
5102
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
5103
|
+
this License, each Contributor hereby grants to You a perpetual,
|
5104
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
5105
|
+
copyright license to reproduce, prepare Derivative Works of,
|
5106
|
+
publicly display, publicly perform, sublicense, and distribute the
|
5107
|
+
Work and such Derivative Works in Source or Object form.
|
5108
|
+
|
5109
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
5110
|
+
this License, each Contributor hereby grants to You a perpetual,
|
5111
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
5112
|
+
(except as stated in this section) patent license to make, have made,
|
5113
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
5114
|
+
where such license applies only to those patent claims licensable
|
5115
|
+
by such Contributor that are necessarily infringed by their
|
5116
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
5117
|
+
with the Work to which such Contribution(s) was submitted. If You
|
5118
|
+
institute patent litigation against any entity (including a
|
5119
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
5120
|
+
or a Contribution incorporated within the Work constitutes direct
|
5121
|
+
or contributory patent infringement, then any patent licenses
|
5122
|
+
granted to You under this License for that Work shall terminate
|
5123
|
+
as of the date such litigation is filed.
|
5124
|
+
|
5125
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
5126
|
+
Work or Derivative Works thereof in any medium, with or without
|
5127
|
+
modifications, and in Source or Object form, provided that You
|
5128
|
+
meet the following conditions:
|
5129
|
+
|
5130
|
+
(a) You must give any other recipients of the Work or
|
5131
|
+
Derivative Works a copy of this License; and
|
5132
|
+
|
5133
|
+
(b) You must cause any modified files to carry prominent notices
|
5134
|
+
stating that You changed the files; and
|
5135
|
+
|
5136
|
+
(c) You must retain, in the Source form of any Derivative Works
|
5137
|
+
that You distribute, all copyright, patent, trademark, and
|
5138
|
+
attribution notices from the Source form of the Work,
|
5139
|
+
excluding those notices that do not pertain to any part of
|
5140
|
+
the Derivative Works; and
|
5141
|
+
|
5142
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
5143
|
+
distribution, then any Derivative Works that You distribute must
|
5144
|
+
include a readable copy of the attribution notices contained
|
5145
|
+
within such NOTICE file, excluding those notices that do not
|
5146
|
+
pertain to any part of the Derivative Works, in at least one
|
5147
|
+
of the following places: within a NOTICE text file distributed
|
5148
|
+
as part of the Derivative Works; within the Source form or
|
5149
|
+
documentation, if provided along with the Derivative Works; or,
|
5150
|
+
within a display generated by the Derivative Works, if and
|
5151
|
+
wherever such third-party notices normally appear. The contents
|
5152
|
+
of the NOTICE file are for informational purposes only and
|
5153
|
+
do not modify the License. You may add Your own attribution
|
5154
|
+
notices within Derivative Works that You distribute, alongside
|
5155
|
+
or as an addendum to the NOTICE text from the Work, provided
|
5156
|
+
that such additional attribution notices cannot be construed
|
5157
|
+
as modifying the License.
|
5158
|
+
|
5159
|
+
You may add Your own copyright statement to Your modifications and
|
5160
|
+
may provide additional or different license terms and conditions
|
5161
|
+
for use, reproduction, or distribution of Your modifications, or
|
5162
|
+
for any such Derivative Works as a whole, provided Your use,
|
5163
|
+
reproduction, and distribution of the Work otherwise complies with
|
5164
|
+
the conditions stated in this License.
|
5165
|
+
|
5166
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
5167
|
+
any Contribution intentionally submitted for inclusion in the Work
|
5168
|
+
by You to the Licensor shall be under the terms and conditions of
|
5169
|
+
this License, without any additional terms or conditions.
|
5170
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
5171
|
+
the terms of any separate license agreement you may have executed
|
5172
|
+
with Licensor regarding such Contributions.
|
5173
|
+
|
5174
|
+
6. Trademarks. This License does not grant permission to use the trade
|
5175
|
+
names, trademarks, service marks, or product names of the Licensor,
|
5176
|
+
except as required for reasonable and customary use in describing the
|
5177
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
5178
|
+
|
5179
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
5180
|
+
agreed to in writing, Licensor provides the Work (and each
|
5181
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
5182
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
5183
|
+
implied, including, without limitation, any warranties or conditions
|
5184
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
5185
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
5186
|
+
appropriateness of using or redistributing the Work and assume any
|
5187
|
+
risks associated with Your exercise of permissions under this License.
|
5188
|
+
|
5189
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
5190
|
+
whether in tort (including negligence), contract, or otherwise,
|
5191
|
+
unless required by applicable law (such as deliberate and grossly
|
5192
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
5193
|
+
liable to You for damages, including any direct, indirect, special,
|
5194
|
+
incidental, or consequential damages of any character arising as a
|
5195
|
+
result of this License or out of the use or inability to use the
|
5196
|
+
Work (including but not limited to damages for loss of goodwill,
|
5197
|
+
work stoppage, computer failure or malfunction, or any and all
|
5198
|
+
other commercial damages or losses), even if such Contributor
|
5199
|
+
has been advised of the possibility of such damages.
|
5200
|
+
|
5201
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
5202
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
5203
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
5204
|
+
or other liability obligations and/or rights consistent with this
|
5205
|
+
License. However, in accepting such obligations, You may act only
|
5206
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
5207
|
+
of any other Contributor, and only if You agree to indemnify,
|
5208
|
+
defend, and hold each Contributor harmless for any liability
|
5209
|
+
incurred by, or claims asserted against, such Contributor by reason
|
5210
|
+
of your accepting any such warranty or additional liability.
|
5211
|
+
|
5212
|
+
END OF TERMS AND CONDITIONS
|
5213
|
+
|
5214
|
+
APPENDIX: How to apply the Apache License to your work.
|
5215
|
+
|
5216
|
+
To apply the Apache License to your work, attach the following
|
5217
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
5218
|
+
replaced with your own identifying information. (Don't include
|
5219
|
+
the brackets!) The text should be enclosed in the appropriate
|
5220
|
+
comment syntax for the file format. We also recommend that a
|
5221
|
+
file or class name and description of purpose be included on the
|
5222
|
+
same "printed page" as the copyright notice for easier
|
5223
|
+
identification within third-party archives.
|
5224
|
+
|
5225
|
+
Copyright [yyyy] [name of copyright owner]
|
5226
|
+
|
5227
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
5228
|
+
you may not use this file except in compliance with the License.
|
5229
|
+
You may obtain a copy of the License at
|
5230
|
+
|
5231
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
5232
|
+
|
5233
|
+
Unless required by applicable law or agreed to in writing, software
|
5234
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
5235
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
5236
|
+
See the License for the specific language governing permissions and
|
5237
|
+
limitations under the License.
|
5238
|
+
|
5239
|
+
================================================================================
|
5240
|
+
itertools v0.11.0 LICENSE-MIT
|
5241
|
+
================================================================================
|
5242
|
+
|
5243
|
+
Copyright (c) 2015
|
5244
|
+
|
5245
|
+
Permission is hereby granted, free of charge, to any
|
5246
|
+
person obtaining a copy of this software and associated
|
5247
|
+
documentation files (the "Software"), to deal in the
|
5248
|
+
Software without restriction, including without
|
5249
|
+
limitation the rights to use, copy, modify, merge,
|
5250
|
+
publish, distribute, sublicense, and/or sell copies of
|
5251
|
+
the Software, and to permit persons to whom the Software
|
5252
|
+
is furnished to do so, subject to the following
|
5253
|
+
conditions:
|
5254
|
+
|
5255
|
+
The above copyright notice and this permission notice
|
5256
|
+
shall be included in all copies or substantial portions
|
5257
|
+
of the Software.
|
5258
|
+
|
5259
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
5260
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
5261
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
5262
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
5263
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
5264
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
5265
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
5266
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
5267
|
+
DEALINGS IN THE SOFTWARE.
|
5268
|
+
|
5269
|
+
================================================================================
|
5270
|
+
itertools v0.12.1 LICENSE-APACHE
|
5035
5271
|
================================================================================
|
5036
5272
|
|
5037
5273
|
Apache License
|
@@ -5237,7 +5473,7 @@ See the License for the specific language governing permissions and
|
|
5237
5473
|
limitations under the License.
|
5238
5474
|
|
5239
5475
|
================================================================================
|
5240
|
-
itertools LICENSE-MIT
|
5476
|
+
itertools v0.12.1 LICENSE-MIT
|
5241
5477
|
================================================================================
|
5242
5478
|
|
5243
5479
|
Copyright (c) 2015
|
@@ -14766,241 +15002,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
14766
15002
|
SOFTWARE.
|
14767
15003
|
|
14768
15004
|
================================================================================
|
14769
|
-
syn
|
14770
|
-
================================================================================
|
14771
|
-
|
14772
|
-
Apache License
|
14773
|
-
Version 2.0, January 2004
|
14774
|
-
http://www.apache.org/licenses/
|
14775
|
-
|
14776
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
14777
|
-
|
14778
|
-
1. Definitions.
|
14779
|
-
|
14780
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
14781
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
14782
|
-
|
14783
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
14784
|
-
the copyright owner that is granting the License.
|
14785
|
-
|
14786
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
14787
|
-
other entities that control, are controlled by, or are under common
|
14788
|
-
control with that entity. For the purposes of this definition,
|
14789
|
-
"control" means (i) the power, direct or indirect, to cause the
|
14790
|
-
direction or management of such entity, whether by contract or
|
14791
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
14792
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
14793
|
-
|
14794
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
14795
|
-
exercising permissions granted by this License.
|
14796
|
-
|
14797
|
-
"Source" form shall mean the preferred form for making modifications,
|
14798
|
-
including but not limited to software source code, documentation
|
14799
|
-
source, and configuration files.
|
14800
|
-
|
14801
|
-
"Object" form shall mean any form resulting from mechanical
|
14802
|
-
transformation or translation of a Source form, including but
|
14803
|
-
not limited to compiled object code, generated documentation,
|
14804
|
-
and conversions to other media types.
|
14805
|
-
|
14806
|
-
"Work" shall mean the work of authorship, whether in Source or
|
14807
|
-
Object form, made available under the License, as indicated by a
|
14808
|
-
copyright notice that is included in or attached to the work
|
14809
|
-
(an example is provided in the Appendix below).
|
14810
|
-
|
14811
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
14812
|
-
form, that is based on (or derived from) the Work and for which the
|
14813
|
-
editorial revisions, annotations, elaborations, or other modifications
|
14814
|
-
represent, as a whole, an original work of authorship. For the purposes
|
14815
|
-
of this License, Derivative Works shall not include works that remain
|
14816
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
14817
|
-
the Work and Derivative Works thereof.
|
14818
|
-
|
14819
|
-
"Contribution" shall mean any work of authorship, including
|
14820
|
-
the original version of the Work and any modifications or additions
|
14821
|
-
to that Work or Derivative Works thereof, that is intentionally
|
14822
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
14823
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
14824
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
14825
|
-
means any form of electronic, verbal, or written communication sent
|
14826
|
-
to the Licensor or its representatives, including but not limited to
|
14827
|
-
communication on electronic mailing lists, source code control systems,
|
14828
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
14829
|
-
Licensor for the purpose of discussing and improving the Work, but
|
14830
|
-
excluding communication that is conspicuously marked or otherwise
|
14831
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
14832
|
-
|
14833
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
14834
|
-
on behalf of whom a Contribution has been received by Licensor and
|
14835
|
-
subsequently incorporated within the Work.
|
14836
|
-
|
14837
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
14838
|
-
this License, each Contributor hereby grants to You a perpetual,
|
14839
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
14840
|
-
copyright license to reproduce, prepare Derivative Works of,
|
14841
|
-
publicly display, publicly perform, sublicense, and distribute the
|
14842
|
-
Work and such Derivative Works in Source or Object form.
|
14843
|
-
|
14844
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
14845
|
-
this License, each Contributor hereby grants to You a perpetual,
|
14846
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
14847
|
-
(except as stated in this section) patent license to make, have made,
|
14848
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
14849
|
-
where such license applies only to those patent claims licensable
|
14850
|
-
by such Contributor that are necessarily infringed by their
|
14851
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
14852
|
-
with the Work to which such Contribution(s) was submitted. If You
|
14853
|
-
institute patent litigation against any entity (including a
|
14854
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
14855
|
-
or a Contribution incorporated within the Work constitutes direct
|
14856
|
-
or contributory patent infringement, then any patent licenses
|
14857
|
-
granted to You under this License for that Work shall terminate
|
14858
|
-
as of the date such litigation is filed.
|
14859
|
-
|
14860
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
14861
|
-
Work or Derivative Works thereof in any medium, with or without
|
14862
|
-
modifications, and in Source or Object form, provided that You
|
14863
|
-
meet the following conditions:
|
14864
|
-
|
14865
|
-
(a) You must give any other recipients of the Work or
|
14866
|
-
Derivative Works a copy of this License; and
|
14867
|
-
|
14868
|
-
(b) You must cause any modified files to carry prominent notices
|
14869
|
-
stating that You changed the files; and
|
14870
|
-
|
14871
|
-
(c) You must retain, in the Source form of any Derivative Works
|
14872
|
-
that You distribute, all copyright, patent, trademark, and
|
14873
|
-
attribution notices from the Source form of the Work,
|
14874
|
-
excluding those notices that do not pertain to any part of
|
14875
|
-
the Derivative Works; and
|
14876
|
-
|
14877
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
14878
|
-
distribution, then any Derivative Works that You distribute must
|
14879
|
-
include a readable copy of the attribution notices contained
|
14880
|
-
within such NOTICE file, excluding those notices that do not
|
14881
|
-
pertain to any part of the Derivative Works, in at least one
|
14882
|
-
of the following places: within a NOTICE text file distributed
|
14883
|
-
as part of the Derivative Works; within the Source form or
|
14884
|
-
documentation, if provided along with the Derivative Works; or,
|
14885
|
-
within a display generated by the Derivative Works, if and
|
14886
|
-
wherever such third-party notices normally appear. The contents
|
14887
|
-
of the NOTICE file are for informational purposes only and
|
14888
|
-
do not modify the License. You may add Your own attribution
|
14889
|
-
notices within Derivative Works that You distribute, alongside
|
14890
|
-
or as an addendum to the NOTICE text from the Work, provided
|
14891
|
-
that such additional attribution notices cannot be construed
|
14892
|
-
as modifying the License.
|
14893
|
-
|
14894
|
-
You may add Your own copyright statement to Your modifications and
|
14895
|
-
may provide additional or different license terms and conditions
|
14896
|
-
for use, reproduction, or distribution of Your modifications, or
|
14897
|
-
for any such Derivative Works as a whole, provided Your use,
|
14898
|
-
reproduction, and distribution of the Work otherwise complies with
|
14899
|
-
the conditions stated in this License.
|
14900
|
-
|
14901
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
14902
|
-
any Contribution intentionally submitted for inclusion in the Work
|
14903
|
-
by You to the Licensor shall be under the terms and conditions of
|
14904
|
-
this License, without any additional terms or conditions.
|
14905
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
14906
|
-
the terms of any separate license agreement you may have executed
|
14907
|
-
with Licensor regarding such Contributions.
|
14908
|
-
|
14909
|
-
6. Trademarks. This License does not grant permission to use the trade
|
14910
|
-
names, trademarks, service marks, or product names of the Licensor,
|
14911
|
-
except as required for reasonable and customary use in describing the
|
14912
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
14913
|
-
|
14914
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
14915
|
-
agreed to in writing, Licensor provides the Work (and each
|
14916
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
14917
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
14918
|
-
implied, including, without limitation, any warranties or conditions
|
14919
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
14920
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
14921
|
-
appropriateness of using or redistributing the Work and assume any
|
14922
|
-
risks associated with Your exercise of permissions under this License.
|
14923
|
-
|
14924
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
14925
|
-
whether in tort (including negligence), contract, or otherwise,
|
14926
|
-
unless required by applicable law (such as deliberate and grossly
|
14927
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
14928
|
-
liable to You for damages, including any direct, indirect, special,
|
14929
|
-
incidental, or consequential damages of any character arising as a
|
14930
|
-
result of this License or out of the use or inability to use the
|
14931
|
-
Work (including but not limited to damages for loss of goodwill,
|
14932
|
-
work stoppage, computer failure or malfunction, or any and all
|
14933
|
-
other commercial damages or losses), even if such Contributor
|
14934
|
-
has been advised of the possibility of such damages.
|
14935
|
-
|
14936
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
14937
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
14938
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
14939
|
-
or other liability obligations and/or rights consistent with this
|
14940
|
-
License. However, in accepting such obligations, You may act only
|
14941
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
14942
|
-
of any other Contributor, and only if You agree to indemnify,
|
14943
|
-
defend, and hold each Contributor harmless for any liability
|
14944
|
-
incurred by, or claims asserted against, such Contributor by reason
|
14945
|
-
of your accepting any such warranty or additional liability.
|
14946
|
-
|
14947
|
-
END OF TERMS AND CONDITIONS
|
14948
|
-
|
14949
|
-
APPENDIX: How to apply the Apache License to your work.
|
14950
|
-
|
14951
|
-
To apply the Apache License to your work, attach the following
|
14952
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
14953
|
-
replaced with your own identifying information. (Don't include
|
14954
|
-
the brackets!) The text should be enclosed in the appropriate
|
14955
|
-
comment syntax for the file format. We also recommend that a
|
14956
|
-
file or class name and description of purpose be included on the
|
14957
|
-
same "printed page" as the copyright notice for easier
|
14958
|
-
identification within third-party archives.
|
14959
|
-
|
14960
|
-
Copyright [yyyy] [name of copyright owner]
|
14961
|
-
|
14962
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
14963
|
-
you may not use this file except in compliance with the License.
|
14964
|
-
You may obtain a copy of the License at
|
14965
|
-
|
14966
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
14967
|
-
|
14968
|
-
Unless required by applicable law or agreed to in writing, software
|
14969
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
14970
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14971
|
-
See the License for the specific language governing permissions and
|
14972
|
-
limitations under the License.
|
14973
|
-
|
14974
|
-
================================================================================
|
14975
|
-
syn v1.0.109 LICENSE-MIT
|
14976
|
-
================================================================================
|
14977
|
-
|
14978
|
-
Permission is hereby granted, free of charge, to any
|
14979
|
-
person obtaining a copy of this software and associated
|
14980
|
-
documentation files (the "Software"), to deal in the
|
14981
|
-
Software without restriction, including without
|
14982
|
-
limitation the rights to use, copy, modify, merge,
|
14983
|
-
publish, distribute, sublicense, and/or sell copies of
|
14984
|
-
the Software, and to permit persons to whom the Software
|
14985
|
-
is furnished to do so, subject to the following
|
14986
|
-
conditions:
|
14987
|
-
|
14988
|
-
The above copyright notice and this permission notice
|
14989
|
-
shall be included in all copies or substantial portions
|
14990
|
-
of the Software.
|
14991
|
-
|
14992
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
14993
|
-
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
14994
|
-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
14995
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
14996
|
-
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
14997
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
14998
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
14999
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
15000
|
-
DEALINGS IN THE SOFTWARE.
|
15001
|
-
|
15002
|
-
================================================================================
|
15003
|
-
syn v2.0.38 LICENSE-APACHE
|
15005
|
+
syn LICENSE-APACHE
|
15004
15006
|
================================================================================
|
15005
15007
|
|
15006
15008
|
Apache License
|
@@ -15181,7 +15183,7 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
15181
15183
|
END OF TERMS AND CONDITIONS
|
15182
15184
|
|
15183
15185
|
================================================================================
|
15184
|
-
syn
|
15186
|
+
syn LICENSE-MIT
|
15185
15187
|
================================================================================
|
15186
15188
|
|
15187
15189
|
Permission is hereby granted, free of charge, to any
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
:slightly_smiling_face: Fast state-of-the-art [tokenizers](https://github.com/huggingface/tokenizers) for Ruby
|
4
4
|
|
5
|
-
[![Build Status](https://github.com/ankane/tokenizers-ruby/workflows/build/badge.svg
|
5
|
+
[![Build Status](https://github.com/ankane/tokenizers-ruby/actions/workflows/build.yml/badge.svg)](https://github.com/ankane/tokenizers-ruby/actions)
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,8 +1,8 @@
|
|
1
1
|
module Tokenizers
|
2
2
|
module Decoders
|
3
3
|
class Metaspace
|
4
|
-
def self.new(replacement: "\u2581",
|
5
|
-
_new(replacement,
|
4
|
+
def self.new(replacement: "\u2581", prepend_scheme: "always", split: true)
|
5
|
+
_new(replacement, prepend_scheme, split)
|
6
6
|
end
|
7
7
|
end
|
8
8
|
end
|
@@ -1,8 +1,8 @@
|
|
1
1
|
module Tokenizers
|
2
2
|
module PreTokenizers
|
3
3
|
class Metaspace
|
4
|
-
def self.new(replacement: "\u2581",
|
5
|
-
_new(replacement,
|
4
|
+
def self.new(replacement: "\u2581", prepend_scheme: "always", split: true)
|
5
|
+
_new(replacement, prepend_scheme, split)
|
6
6
|
end
|
7
7
|
end
|
8
8
|
end
|
data/lib/tokenizers/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tokenizers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: x86_64-linux
|
6
6
|
authors:
|
7
7
|
- Andrew Kane
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-05-21 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email: andrew@ankane.org
|
@@ -23,7 +23,6 @@ files:
|
|
23
23
|
- LICENSE.txt
|
24
24
|
- README.md
|
25
25
|
- lib/tokenizers.rb
|
26
|
-
- lib/tokenizers/3.0/tokenizers.so
|
27
26
|
- lib/tokenizers/3.1/tokenizers.so
|
28
27
|
- lib/tokenizers/3.2/tokenizers.so
|
29
28
|
- lib/tokenizers/3.3/tokenizers.so
|
@@ -68,7 +67,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
67
|
requirements:
|
69
68
|
- - ">="
|
70
69
|
- !ruby/object:Gem::Version
|
71
|
-
version: '3.
|
70
|
+
version: '3.1'
|
72
71
|
- - "<"
|
73
72
|
- !ruby/object:Gem::Version
|
74
73
|
version: 3.4.dev
|
Binary file
|