wordchipper 0.9.0__tar.gz

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.
Files changed (135) hide show
  1. wordchipper-0.9.0/Cargo.lock +4585 -0
  2. wordchipper-0.9.0/Cargo.toml +96 -0
  3. wordchipper-0.9.0/PKG-INFO +15 -0
  4. wordchipper-0.9.0/bindings/python/Cargo.toml +23 -0
  5. wordchipper-0.9.0/bindings/python/README.md +118 -0
  6. wordchipper-0.9.0/bindings/python/benchmarks/conftest.py +90 -0
  7. wordchipper-0.9.0/bindings/python/benchmarks/test_bench_decode.py +81 -0
  8. wordchipper-0.9.0/bindings/python/benchmarks/test_bench_encode.py +308 -0
  9. wordchipper-0.9.0/bindings/python/par_batch.sh +17 -0
  10. wordchipper-0.9.0/bindings/python/src/lib.rs +31 -0
  11. wordchipper-0.9.0/bindings/python/src/support.rs +14 -0
  12. wordchipper-0.9.0/bindings/python/src/tokenizer/mod.rs +5 -0
  13. wordchipper-0.9.0/bindings/python/src/tokenizer/tokenizer_impl.rs +146 -0
  14. wordchipper-0.9.0/bindings/python/src/tokenizer/tokenizer_options.rs +106 -0
  15. wordchipper-0.9.0/bindings/python/tests/test_compat.py +375 -0
  16. wordchipper-0.9.0/bindings/python/tests/test_wordchipper.py +320 -0
  17. wordchipper-0.9.0/bindings/python/uv.lock +1246 -0
  18. wordchipper-0.9.0/crates/wordchipper/Cargo.lock +7 -0
  19. wordchipper-0.9.0/crates/wordchipper/Cargo.toml +151 -0
  20. wordchipper-0.9.0/crates/wordchipper/README.md +111 -0
  21. wordchipper-0.9.0/crates/wordchipper/assets/logo.png +0 -0
  22. wordchipper-0.9.0/crates/wordchipper/assets/wc_logos_vrs_brandx.rust.o200k.svg +1007 -0
  23. wordchipper-0.9.0/crates/wordchipper/assets/wc_vrs_brandx.py.o200k_base.svg +1089 -0
  24. wordchipper-0.9.0/crates/wordchipper/src/decoders/decode_results.rs +281 -0
  25. wordchipper-0.9.0/crates/wordchipper/src/decoders/decoder_options.rs +68 -0
  26. wordchipper-0.9.0/crates/wordchipper/src/decoders/mod.rs +47 -0
  27. wordchipper-0.9.0/crates/wordchipper/src/decoders/slab_index_decoder.rs +180 -0
  28. wordchipper-0.9.0/crates/wordchipper/src/decoders/token_decoder.rs +167 -0
  29. wordchipper-0.9.0/crates/wordchipper/src/decoders/token_dict_decoder.rs +158 -0
  30. wordchipper-0.9.0/crates/wordchipper/src/decoders/utility/byte_decoder.rs +99 -0
  31. wordchipper-0.9.0/crates/wordchipper/src/decoders/utility/mod.rs +12 -0
  32. wordchipper-0.9.0/crates/wordchipper/src/decoders/utility/pair_decoder.rs +155 -0
  33. wordchipper-0.9.0/crates/wordchipper/src/decoders/utility/testing.rs +95 -0
  34. wordchipper-0.9.0/crates/wordchipper/src/encoders/encoder_options.rs +299 -0
  35. wordchipper-0.9.0/crates/wordchipper/src/encoders/mod.rs +34 -0
  36. wordchipper-0.9.0/crates/wordchipper/src/encoders/testing.rs +88 -0
  37. wordchipper-0.9.0/crates/wordchipper/src/encoders/token_encoder.rs +96 -0
  38. wordchipper-0.9.0/crates/wordchipper/src/encoders/token_span_encoder/mod.rs +13 -0
  39. wordchipper-0.9.0/crates/wordchipper/src/encoders/token_span_encoder/span_encoders/bpe_backtrack_encoder.rs +387 -0
  40. wordchipper-0.9.0/crates/wordchipper/src/encoders/token_span_encoder/span_encoders/buffer_sweep_encoder.rs +102 -0
  41. wordchipper-0.9.0/crates/wordchipper/src/encoders/token_span_encoder/span_encoders/merge_heap_encoder.rs +130 -0
  42. wordchipper-0.9.0/crates/wordchipper/src/encoders/token_span_encoder/span_encoders/mod.rs +24 -0
  43. wordchipper-0.9.0/crates/wordchipper/src/encoders/token_span_encoder/span_encoders/priority_merge_encoder.rs +245 -0
  44. wordchipper-0.9.0/crates/wordchipper/src/encoders/token_span_encoder/span_encoders/span_encoder.rs +56 -0
  45. wordchipper-0.9.0/crates/wordchipper/src/encoders/token_span_encoder/span_encoders/span_encoder_selector.rs +111 -0
  46. wordchipper-0.9.0/crates/wordchipper/src/encoders/token_span_encoder/span_encoders/tail_sweep_encoder.rs +99 -0
  47. wordchipper-0.9.0/crates/wordchipper/src/encoders/token_span_encoder/token_span_encoder.rs +114 -0
  48. wordchipper-0.9.0/crates/wordchipper/src/errors.rs +60 -0
  49. wordchipper-0.9.0/crates/wordchipper/src/lib.rs +152 -0
  50. wordchipper-0.9.0/crates/wordchipper/src/pretrained/factory/mod.rs +15 -0
  51. wordchipper-0.9.0/crates/wordchipper/src/pretrained/factory/vocab_description.rs +125 -0
  52. wordchipper-0.9.0/crates/wordchipper/src/pretrained/factory/vocab_factory.rs +237 -0
  53. wordchipper-0.9.0/crates/wordchipper/src/pretrained/factory/vocab_provider.rs +145 -0
  54. wordchipper-0.9.0/crates/wordchipper/src/pretrained/factory/vocab_query.rs +245 -0
  55. wordchipper-0.9.0/crates/wordchipper/src/pretrained/mod.rs +49 -0
  56. wordchipper-0.9.0/crates/wordchipper/src/pretrained/openai/factories.rs +463 -0
  57. wordchipper-0.9.0/crates/wordchipper/src/pretrained/openai/mod.rs +14 -0
  58. wordchipper-0.9.0/crates/wordchipper/src/pretrained/openai/patterns.rs +121 -0
  59. wordchipper-0.9.0/crates/wordchipper/src/pretrained/openai/resources.rs +81 -0
  60. wordchipper-0.9.0/crates/wordchipper/src/pretrained/openai/spanning.rs +50 -0
  61. wordchipper-0.9.0/crates/wordchipper/src/pretrained/openai/specials.rs +248 -0
  62. wordchipper-0.9.0/crates/wordchipper/src/spanners/mod.rs +24 -0
  63. wordchipper-0.9.0/crates/wordchipper/src/spanners/span_lexers/accelerators.rs +149 -0
  64. wordchipper-0.9.0/crates/wordchipper/src/spanners/span_lexers/lexer_builder.rs +58 -0
  65. wordchipper-0.9.0/crates/wordchipper/src/spanners/span_lexers/lexer_spanner.rs +284 -0
  66. wordchipper-0.9.0/crates/wordchipper/src/spanners/span_lexers/logos/cl100k.rs +185 -0
  67. wordchipper-0.9.0/crates/wordchipper/src/spanners/span_lexers/logos/gpt2_family.rs +907 -0
  68. wordchipper-0.9.0/crates/wordchipper/src/spanners/span_lexers/logos/mod.rs +51 -0
  69. wordchipper-0.9.0/crates/wordchipper/src/spanners/span_lexers/logos/o200k.rs +263 -0
  70. wordchipper-0.9.0/crates/wordchipper/src/spanners/span_lexers/logos/r50k.rs +229 -0
  71. wordchipper-0.9.0/crates/wordchipper/src/spanners/span_lexers/logos/testutil.rs +69 -0
  72. wordchipper-0.9.0/crates/wordchipper/src/spanners/span_lexers/mod.rs +16 -0
  73. wordchipper-0.9.0/crates/wordchipper/src/spanners/span_lexers/regex_automata.rs +339 -0
  74. wordchipper-0.9.0/crates/wordchipper/src/spanners/span_lexers/span_lexer.rs +42 -0
  75. wordchipper-0.9.0/crates/wordchipper/src/spanners/spanner_builder.rs +250 -0
  76. wordchipper-0.9.0/crates/wordchipper/src/spanners/spanning_config.rs +159 -0
  77. wordchipper-0.9.0/crates/wordchipper/src/spanners/text_spanner.rs +159 -0
  78. wordchipper-0.9.0/crates/wordchipper/src/support/concurrency/mod.rs +11 -0
  79. wordchipper-0.9.0/crates/wordchipper/src/support/concurrency/pool_toy.rs +162 -0
  80. wordchipper-0.9.0/crates/wordchipper/src/support/concurrency/rayon/mod.rs +11 -0
  81. wordchipper-0.9.0/crates/wordchipper/src/support/concurrency/rayon/rayon_decoder.rs +114 -0
  82. wordchipper-0.9.0/crates/wordchipper/src/support/concurrency/rayon/rayon_encoder.rs +116 -0
  83. wordchipper-0.9.0/crates/wordchipper/src/support/concurrency/threads.rs +116 -0
  84. wordchipper-0.9.0/crates/wordchipper/src/support/mod.rs +11 -0
  85. wordchipper-0.9.0/crates/wordchipper/src/support/ranges.rs +29 -0
  86. wordchipper-0.9.0/crates/wordchipper/src/support/regex/alt_choice.rs +58 -0
  87. wordchipper-0.9.0/crates/wordchipper/src/support/regex/mod.rs +32 -0
  88. wordchipper-0.9.0/crates/wordchipper/src/support/regex/regex_pattern.rs +148 -0
  89. wordchipper-0.9.0/crates/wordchipper/src/support/regex/regex_wrapper.rs +379 -0
  90. wordchipper-0.9.0/crates/wordchipper/src/support/resources/mod.rs +9 -0
  91. wordchipper-0.9.0/crates/wordchipper/src/support/resources/resource_loader.rs +31 -0
  92. wordchipper-0.9.0/crates/wordchipper/src/support/resources/url_resource.rs +98 -0
  93. wordchipper-0.9.0/crates/wordchipper/src/support/slices.rs +42 -0
  94. wordchipper-0.9.0/crates/wordchipper/src/support/strings.rs +41 -0
  95. wordchipper-0.9.0/crates/wordchipper/src/support/timers.rs +27 -0
  96. wordchipper-0.9.0/crates/wordchipper/src/support/traits.rs +13 -0
  97. wordchipper-0.9.0/crates/wordchipper/src/tokenizer/mod.rs +9 -0
  98. wordchipper-0.9.0/crates/wordchipper/src/tokenizer/tokenizer_impl.rs +152 -0
  99. wordchipper-0.9.0/crates/wordchipper/src/tokenizer/tokenizer_options.rs +179 -0
  100. wordchipper-0.9.0/crates/wordchipper/src/types.rs +152 -0
  101. wordchipper-0.9.0/crates/wordchipper/src/vocab/byte_vocab.rs +264 -0
  102. wordchipper-0.9.0/crates/wordchipper/src/vocab/io/base64_vocab.rs +213 -0
  103. wordchipper-0.9.0/crates/wordchipper/src/vocab/io/datagym_vocab.rs +237 -0
  104. wordchipper-0.9.0/crates/wordchipper/src/vocab/io/mod.rs +42 -0
  105. wordchipper-0.9.0/crates/wordchipper/src/vocab/mod.rs +69 -0
  106. wordchipper-0.9.0/crates/wordchipper/src/vocab/pair_vocab.rs +219 -0
  107. wordchipper-0.9.0/crates/wordchipper/src/vocab/span_vocab.rs +380 -0
  108. wordchipper-0.9.0/crates/wordchipper/src/vocab/special_vocab.rs +208 -0
  109. wordchipper-0.9.0/crates/wordchipper/src/vocab/token_vocab.rs +40 -0
  110. wordchipper-0.9.0/crates/wordchipper/src/vocab/unified_vocab.rs +364 -0
  111. wordchipper-0.9.0/crates/wordchipper/src/vocab/utility/factories.rs +108 -0
  112. wordchipper-0.9.0/crates/wordchipper/src/vocab/utility/mod.rs +16 -0
  113. wordchipper-0.9.0/crates/wordchipper/src/vocab/utility/pattern_tools.rs +55 -0
  114. wordchipper-0.9.0/crates/wordchipper/src/vocab/utility/specials_tools.rs +89 -0
  115. wordchipper-0.9.0/crates/wordchipper/src/vocab/utility/testing/mod.rs +66 -0
  116. wordchipper-0.9.0/crates/wordchipper/src/vocab/utility/token_list.rs +26 -0
  117. wordchipper-0.9.0/crates/wordchipper/src/vocab/utility/validators.rs +52 -0
  118. wordchipper-0.9.0/crates/wordchipper/src/vocab/vocab_types.rs +51 -0
  119. wordchipper-0.9.0/crates/wordchipper/tests/validation.rs +171 -0
  120. wordchipper-0.9.0/crates/wordchipper-disk-cache/Cargo.toml +36 -0
  121. wordchipper-0.9.0/crates/wordchipper-disk-cache/README.md +4 -0
  122. wordchipper-0.9.0/crates/wordchipper-disk-cache/src/disk_cache.rs +316 -0
  123. wordchipper-0.9.0/crates/wordchipper-disk-cache/src/lib.rs +29 -0
  124. wordchipper-0.9.0/crates/wordchipper-disk-cache/src/path_resolver.rs +230 -0
  125. wordchipper-0.9.0/crates/wordchipper-disk-cache/src/path_utils.rs +41 -0
  126. wordchipper-0.9.0/py_src/wordchipper/__init__.py +4 -0
  127. wordchipper-0.9.0/py_src/wordchipper/__init__.pyi +109 -0
  128. wordchipper-0.9.0/py_src/wordchipper/compat/__init__.py +10 -0
  129. wordchipper-0.9.0/py_src/wordchipper/compat/__init__.pyi +1 -0
  130. wordchipper-0.9.0/py_src/wordchipper/compat/tiktoken.py +220 -0
  131. wordchipper-0.9.0/py_src/wordchipper/compat/tiktoken.pyi +39 -0
  132. wordchipper-0.9.0/py_src/wordchipper/compat/tokenizers.py +135 -0
  133. wordchipper-0.9.0/py_src/wordchipper/compat/tokenizers.pyi +39 -0
  134. wordchipper-0.9.0/py_src/wordchipper/py.typed +1 -0
  135. wordchipper-0.9.0/pyproject.toml +31 -0
@@ -0,0 +1,4585 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.8.12"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "const-random",
19
+ "getrandom 0.3.4",
20
+ "once_cell",
21
+ "serde",
22
+ "version_check",
23
+ "zerocopy",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "aho-corasick"
28
+ version = "1.1.4"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
31
+ dependencies = [
32
+ "memchr",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "alloc-no-stdlib"
37
+ version = "2.0.4"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
40
+
41
+ [[package]]
42
+ name = "alloc-stdlib"
43
+ version = "0.2.2"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
46
+ dependencies = [
47
+ "alloc-no-stdlib",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "allocator-api2"
52
+ version = "0.2.21"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
55
+
56
+ [[package]]
57
+ name = "android_system_properties"
58
+ version = "0.1.5"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
61
+ dependencies = [
62
+ "libc",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "aneubeck-daachorse"
67
+ version = "1.1.1"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "a902604543851c9ccc59d6252eb77502a9e01d6bf7205dd2ab4b543bd22cbda3"
70
+
71
+ [[package]]
72
+ name = "anstream"
73
+ version = "0.6.21"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
76
+ dependencies = [
77
+ "anstyle",
78
+ "anstyle-parse",
79
+ "anstyle-query",
80
+ "anstyle-wincon",
81
+ "colorchoice",
82
+ "is_terminal_polyfill",
83
+ "utf8parse",
84
+ ]
85
+
86
+ [[package]]
87
+ name = "anstyle"
88
+ version = "1.0.13"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
91
+
92
+ [[package]]
93
+ name = "anstyle-parse"
94
+ version = "0.2.7"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
97
+ dependencies = [
98
+ "utf8parse",
99
+ ]
100
+
101
+ [[package]]
102
+ name = "anstyle-query"
103
+ version = "1.1.5"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
106
+ dependencies = [
107
+ "windows-sys 0.61.2",
108
+ ]
109
+
110
+ [[package]]
111
+ name = "anstyle-wincon"
112
+ version = "3.0.11"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
115
+ dependencies = [
116
+ "anstyle",
117
+ "once_cell_polyfill",
118
+ "windows-sys 0.61.2",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "anyhow"
123
+ version = "1.0.102"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
126
+
127
+ [[package]]
128
+ name = "approx"
129
+ version = "0.5.1"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
132
+ dependencies = [
133
+ "num-traits",
134
+ ]
135
+
136
+ [[package]]
137
+ name = "arrow"
138
+ version = "58.0.0"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "602268ce9f569f282cedb9a9f6bac569b680af47b9b077d515900c03c5d190da"
141
+ dependencies = [
142
+ "arrow-arith",
143
+ "arrow-array",
144
+ "arrow-buffer",
145
+ "arrow-cast",
146
+ "arrow-csv",
147
+ "arrow-data",
148
+ "arrow-ipc",
149
+ "arrow-json",
150
+ "arrow-ord",
151
+ "arrow-row",
152
+ "arrow-schema",
153
+ "arrow-select",
154
+ "arrow-string",
155
+ ]
156
+
157
+ [[package]]
158
+ name = "arrow-arith"
159
+ version = "58.0.0"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "cd53c6bf277dea91f136ae8e3a5d7041b44b5e489e244e637d00ae302051f56f"
162
+ dependencies = [
163
+ "arrow-array",
164
+ "arrow-buffer",
165
+ "arrow-data",
166
+ "arrow-schema",
167
+ "chrono",
168
+ "num-traits",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "arrow-array"
173
+ version = "58.0.0"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "e53796e07a6525edaf7dc28b540d477a934aff14af97967ad1d5550878969b9e"
176
+ dependencies = [
177
+ "ahash",
178
+ "arrow-buffer",
179
+ "arrow-data",
180
+ "arrow-schema",
181
+ "chrono",
182
+ "half",
183
+ "hashbrown 0.16.1",
184
+ "num-complex",
185
+ "num-integer",
186
+ "num-traits",
187
+ ]
188
+
189
+ [[package]]
190
+ name = "arrow-buffer"
191
+ version = "58.0.0"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "f2c1a85bb2e94ee10b76531d8bc3ce9b7b4c0d508cabfb17d477f63f2617bd20"
194
+ dependencies = [
195
+ "bytes",
196
+ "half",
197
+ "num-bigint",
198
+ "num-traits",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "arrow-cast"
203
+ version = "58.0.0"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "89fb245db6b0e234ed8e15b644edb8664673fefe630575e94e62cd9d489a8a26"
206
+ dependencies = [
207
+ "arrow-array",
208
+ "arrow-buffer",
209
+ "arrow-data",
210
+ "arrow-ord",
211
+ "arrow-schema",
212
+ "arrow-select",
213
+ "atoi",
214
+ "base64 0.22.1",
215
+ "chrono",
216
+ "half",
217
+ "lexical-core",
218
+ "num-traits",
219
+ "ryu",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "arrow-csv"
224
+ version = "58.0.0"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "d374882fb465a194462527c0c15a93aa19a554cf690a6b77a26b2a02539937a7"
227
+ dependencies = [
228
+ "arrow-array",
229
+ "arrow-cast",
230
+ "arrow-schema",
231
+ "chrono",
232
+ "csv",
233
+ "csv-core",
234
+ "regex",
235
+ ]
236
+
237
+ [[package]]
238
+ name = "arrow-data"
239
+ version = "58.0.0"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "189d210bc4244c715fa3ed9e6e22864673cccb73d5da28c2723fb2e527329b33"
242
+ dependencies = [
243
+ "arrow-buffer",
244
+ "arrow-schema",
245
+ "half",
246
+ "num-integer",
247
+ "num-traits",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "arrow-ipc"
252
+ version = "58.0.0"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "7968c2e5210c41f4909b2ef76f6e05e172b99021c2def5edf3cc48fdd39d1d6c"
255
+ dependencies = [
256
+ "arrow-array",
257
+ "arrow-buffer",
258
+ "arrow-data",
259
+ "arrow-schema",
260
+ "arrow-select",
261
+ "flatbuffers",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "arrow-json"
266
+ version = "58.0.0"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "92111dba5bf900f443488e01f00d8c4ddc2f47f5c50039d18120287b580baa22"
269
+ dependencies = [
270
+ "arrow-array",
271
+ "arrow-buffer",
272
+ "arrow-cast",
273
+ "arrow-data",
274
+ "arrow-schema",
275
+ "chrono",
276
+ "half",
277
+ "indexmap",
278
+ "itoa",
279
+ "lexical-core",
280
+ "memchr",
281
+ "num-traits",
282
+ "ryu",
283
+ "serde_core",
284
+ "serde_json",
285
+ "simdutf8",
286
+ ]
287
+
288
+ [[package]]
289
+ name = "arrow-ord"
290
+ version = "58.0.0"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "211136cb253577ee1a6665f741a13136d4e563f64f5093ffd6fb837af90b9495"
293
+ dependencies = [
294
+ "arrow-array",
295
+ "arrow-buffer",
296
+ "arrow-data",
297
+ "arrow-schema",
298
+ "arrow-select",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "arrow-row"
303
+ version = "58.0.0"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "8e0f20145f9f5ea3fe383e2ba7a7487bf19be36aa9dbf5dd6a1f92f657179663"
306
+ dependencies = [
307
+ "arrow-array",
308
+ "arrow-buffer",
309
+ "arrow-data",
310
+ "arrow-schema",
311
+ "half",
312
+ ]
313
+
314
+ [[package]]
315
+ name = "arrow-schema"
316
+ version = "58.0.0"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "1b47e0ca91cc438d2c7879fe95e0bca5329fff28649e30a88c6f760b1faeddcb"
319
+
320
+ [[package]]
321
+ name = "arrow-select"
322
+ version = "58.0.0"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "750a7d1dda177735f5e82a314485b6915c7cccdbb278262ac44090f4aba4a325"
325
+ dependencies = [
326
+ "ahash",
327
+ "arrow-array",
328
+ "arrow-buffer",
329
+ "arrow-data",
330
+ "arrow-schema",
331
+ "num-traits",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "arrow-string"
336
+ version = "58.0.0"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "e1eab1208bc4fe55d768cdc9b9f3d9df5a794cdb3ee2586bf89f9b30dc31ad8c"
339
+ dependencies = [
340
+ "arrow-array",
341
+ "arrow-buffer",
342
+ "arrow-data",
343
+ "arrow-schema",
344
+ "arrow-select",
345
+ "memchr",
346
+ "num-traits",
347
+ "regex",
348
+ "regex-syntax",
349
+ ]
350
+
351
+ [[package]]
352
+ name = "async-trait"
353
+ version = "0.1.89"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
356
+ dependencies = [
357
+ "proc-macro2",
358
+ "quote",
359
+ "syn",
360
+ ]
361
+
362
+ [[package]]
363
+ name = "atoi"
364
+ version = "2.0.0"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
367
+ dependencies = [
368
+ "num-traits",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "atomic-waker"
373
+ version = "1.1.2"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
376
+
377
+ [[package]]
378
+ name = "autocfg"
379
+ version = "1.5.0"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
382
+
383
+ [[package]]
384
+ name = "base64"
385
+ version = "0.13.1"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
388
+
389
+ [[package]]
390
+ name = "base64"
391
+ version = "0.22.1"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
394
+
395
+ [[package]]
396
+ name = "bit-set"
397
+ version = "0.5.3"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
400
+ dependencies = [
401
+ "bit-vec 0.6.3",
402
+ ]
403
+
404
+ [[package]]
405
+ name = "bit-set"
406
+ version = "0.8.0"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
409
+ dependencies = [
410
+ "bit-vec 0.8.0",
411
+ ]
412
+
413
+ [[package]]
414
+ name = "bit-vec"
415
+ version = "0.6.3"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
418
+
419
+ [[package]]
420
+ name = "bit-vec"
421
+ version = "0.8.0"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
424
+
425
+ [[package]]
426
+ name = "bitflags"
427
+ version = "2.11.0"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
430
+
431
+ [[package]]
432
+ name = "bpe"
433
+ version = "0.2.1"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "f3f0f0ef446ddbb042aac62a2da0b680e116b6cb2b1f79c20eda2a9107611408"
436
+ dependencies = [
437
+ "aneubeck-daachorse",
438
+ "base64 0.22.1",
439
+ "fnv",
440
+ "itertools",
441
+ "serde",
442
+ ]
443
+
444
+ [[package]]
445
+ name = "bpe-openai"
446
+ version = "0.3.0"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "b25deec0a72cf5d8b66a6e487c5ee9757b0639f3e16d687f6c6dea834812000c"
449
+ dependencies = [
450
+ "base64 0.22.1",
451
+ "bpe",
452
+ "either",
453
+ "flate2",
454
+ "regex-automata",
455
+ "rmp-serde",
456
+ "serde",
457
+ "unicode-normalization",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "brotli"
462
+ version = "8.0.2"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
465
+ dependencies = [
466
+ "alloc-no-stdlib",
467
+ "alloc-stdlib",
468
+ "brotli-decompressor",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "brotli-decompressor"
473
+ version = "5.0.0"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
476
+ dependencies = [
477
+ "alloc-no-stdlib",
478
+ "alloc-stdlib",
479
+ ]
480
+
481
+ [[package]]
482
+ name = "bstr"
483
+ version = "1.12.1"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
486
+ dependencies = [
487
+ "memchr",
488
+ "regex-automata",
489
+ "serde",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "bumpalo"
494
+ version = "3.20.2"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
497
+
498
+ [[package]]
499
+ name = "byteorder"
500
+ version = "1.5.0"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
503
+
504
+ [[package]]
505
+ name = "bytes"
506
+ version = "1.11.1"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
509
+
510
+ [[package]]
511
+ name = "cast"
512
+ version = "0.3.0"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
515
+
516
+ [[package]]
517
+ name = "castaway"
518
+ version = "0.2.4"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
521
+ dependencies = [
522
+ "rustversion",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "cc"
527
+ version = "1.2.56"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
530
+ dependencies = [
531
+ "find-msvc-tools",
532
+ "jobserver",
533
+ "libc",
534
+ "shlex",
535
+ ]
536
+
537
+ [[package]]
538
+ name = "cfg-if"
539
+ version = "1.0.4"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
542
+
543
+ [[package]]
544
+ name = "cfg_aliases"
545
+ version = "0.2.1"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
548
+
549
+ [[package]]
550
+ name = "chrono"
551
+ version = "0.4.44"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
554
+ dependencies = [
555
+ "iana-time-zone",
556
+ "js-sys",
557
+ "num-traits",
558
+ "wasm-bindgen",
559
+ "windows-link",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "clap"
564
+ version = "4.5.60"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a"
567
+ dependencies = [
568
+ "clap_builder",
569
+ "clap_derive",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "clap-markdown"
574
+ version = "0.1.5"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "d2a2617956a06d4885b490697b5307ebb09fec10b088afc18c81762d848c2339"
577
+ dependencies = [
578
+ "clap",
579
+ ]
580
+
581
+ [[package]]
582
+ name = "clap_builder"
583
+ version = "4.5.60"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876"
586
+ dependencies = [
587
+ "anstream",
588
+ "anstyle",
589
+ "clap_lex",
590
+ "strsim",
591
+ "terminal_size",
592
+ ]
593
+
594
+ [[package]]
595
+ name = "clap_derive"
596
+ version = "4.5.55"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
599
+ dependencies = [
600
+ "heck",
601
+ "proc-macro2",
602
+ "quote",
603
+ "syn",
604
+ ]
605
+
606
+ [[package]]
607
+ name = "clap_lex"
608
+ version = "1.0.0"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
611
+
612
+ [[package]]
613
+ name = "codspeed"
614
+ version = "4.3.0"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "38c2eb3388ebe26b5a0ab6bf4969d9c4840143d7f6df07caa3cc851b0606cef6"
617
+ dependencies = [
618
+ "anyhow",
619
+ "cc",
620
+ "colored",
621
+ "getrandom 0.2.17",
622
+ "glob",
623
+ "libc",
624
+ "nix",
625
+ "serde",
626
+ "serde_json",
627
+ "statrs",
628
+ ]
629
+
630
+ [[package]]
631
+ name = "codspeed-divan-compat"
632
+ version = "4.3.0"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "b2de65b7489a59709724d489070c6d05b7744039e4bf751d0a2006b90bb5593d"
635
+ dependencies = [
636
+ "clap",
637
+ "codspeed",
638
+ "codspeed-divan-compat-macros",
639
+ "codspeed-divan-compat-walltime",
640
+ "regex",
641
+ ]
642
+
643
+ [[package]]
644
+ name = "codspeed-divan-compat-macros"
645
+ version = "4.3.0"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "56ca01ce4fd22b8dcc6c770dcd6b74343642e842482b94e8920d14e10c57638d"
648
+ dependencies = [
649
+ "divan-macros",
650
+ "itertools",
651
+ "proc-macro-crate",
652
+ "proc-macro2",
653
+ "quote",
654
+ "syn",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "codspeed-divan-compat-walltime"
659
+ version = "4.3.0"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "720ab9d0714718afe5f5832be6e5f5eb5ce97836e24ca7bf7042eea4308b9fb8"
662
+ dependencies = [
663
+ "cfg-if",
664
+ "clap",
665
+ "codspeed",
666
+ "condtype",
667
+ "divan-macros",
668
+ "libc",
669
+ "regex-lite",
670
+ ]
671
+
672
+ [[package]]
673
+ name = "colorchoice"
674
+ version = "1.0.4"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
677
+
678
+ [[package]]
679
+ name = "colored"
680
+ version = "2.2.0"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
683
+ dependencies = [
684
+ "lazy_static",
685
+ "windows-sys 0.59.0",
686
+ ]
687
+
688
+ [[package]]
689
+ name = "compact_str"
690
+ version = "0.9.0"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
693
+ dependencies = [
694
+ "castaway",
695
+ "cfg-if",
696
+ "itoa",
697
+ "rustversion",
698
+ "ryu",
699
+ "serde",
700
+ "static_assertions",
701
+ ]
702
+
703
+ [[package]]
704
+ name = "condtype"
705
+ version = "1.3.0"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "baf0a07a401f374238ab8e2f11a104d2851bf9ce711ec69804834de8af45c7af"
708
+
709
+ [[package]]
710
+ name = "console"
711
+ version = "0.15.11"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
714
+ dependencies = [
715
+ "encode_unicode",
716
+ "libc",
717
+ "once_cell",
718
+ "unicode-width",
719
+ "windows-sys 0.59.0",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "console"
724
+ version = "0.16.2"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "03e45a4a8926227e4197636ba97a9fc9b00477e9f4bd711395687c5f0734bec4"
727
+ dependencies = [
728
+ "encode_unicode",
729
+ "libc",
730
+ "once_cell",
731
+ "unicode-width",
732
+ "windows-sys 0.61.2",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "const-random"
737
+ version = "0.1.18"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
740
+ dependencies = [
741
+ "const-random-macro",
742
+ ]
743
+
744
+ [[package]]
745
+ name = "const-random-macro"
746
+ version = "0.1.16"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
749
+ dependencies = [
750
+ "getrandom 0.2.17",
751
+ "once_cell",
752
+ "tiny-keccak",
753
+ ]
754
+
755
+ [[package]]
756
+ name = "core-foundation"
757
+ version = "0.10.1"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
760
+ dependencies = [
761
+ "core-foundation-sys",
762
+ "libc",
763
+ ]
764
+
765
+ [[package]]
766
+ name = "core-foundation-sys"
767
+ version = "0.8.7"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
770
+
771
+ [[package]]
772
+ name = "crc32fast"
773
+ version = "1.5.0"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
776
+ dependencies = [
777
+ "cfg-if",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "critical-section"
782
+ version = "1.2.0"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
785
+
786
+ [[package]]
787
+ name = "crossbeam-deque"
788
+ version = "0.8.6"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
791
+ dependencies = [
792
+ "crossbeam-epoch",
793
+ "crossbeam-utils",
794
+ ]
795
+
796
+ [[package]]
797
+ name = "crossbeam-epoch"
798
+ version = "0.9.18"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
801
+ dependencies = [
802
+ "crossbeam-utils",
803
+ ]
804
+
805
+ [[package]]
806
+ name = "crossbeam-utils"
807
+ version = "0.8.21"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
810
+
811
+ [[package]]
812
+ name = "crunchy"
813
+ version = "0.2.4"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
816
+
817
+ [[package]]
818
+ name = "csv"
819
+ version = "1.4.0"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
822
+ dependencies = [
823
+ "csv-core",
824
+ "itoa",
825
+ "ryu",
826
+ "serde_core",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "csv-core"
831
+ version = "0.1.13"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
834
+ dependencies = [
835
+ "memchr",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "darling"
840
+ version = "0.20.11"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
843
+ dependencies = [
844
+ "darling_core",
845
+ "darling_macro",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "darling_core"
850
+ version = "0.20.11"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
853
+ dependencies = [
854
+ "fnv",
855
+ "ident_case",
856
+ "proc-macro2",
857
+ "quote",
858
+ "strsim",
859
+ "syn",
860
+ ]
861
+
862
+ [[package]]
863
+ name = "darling_macro"
864
+ version = "0.20.11"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
867
+ dependencies = [
868
+ "darling_core",
869
+ "quote",
870
+ "syn",
871
+ ]
872
+
873
+ [[package]]
874
+ name = "dary_heap"
875
+ version = "0.3.8"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "06d2e3287df1c007e74221c49ca10a95d557349e54b3a75dc2fb14712c751f04"
878
+ dependencies = [
879
+ "serde",
880
+ ]
881
+
882
+ [[package]]
883
+ name = "derive_builder"
884
+ version = "0.20.2"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
887
+ dependencies = [
888
+ "derive_builder_macro",
889
+ ]
890
+
891
+ [[package]]
892
+ name = "derive_builder_core"
893
+ version = "0.20.2"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
896
+ dependencies = [
897
+ "darling",
898
+ "proc-macro2",
899
+ "quote",
900
+ "syn",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "derive_builder_macro"
905
+ version = "0.20.2"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
908
+ dependencies = [
909
+ "derive_builder_core",
910
+ "syn",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "directories-next"
915
+ version = "2.0.0"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc"
918
+ dependencies = [
919
+ "cfg-if",
920
+ "dirs-sys-next",
921
+ ]
922
+
923
+ [[package]]
924
+ name = "dirs"
925
+ version = "6.0.0"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
928
+ dependencies = [
929
+ "dirs-sys",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "dirs-sys"
934
+ version = "0.5.0"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
937
+ dependencies = [
938
+ "libc",
939
+ "option-ext",
940
+ "redox_users 0.5.2",
941
+ "windows-sys 0.61.2",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "dirs-sys-next"
946
+ version = "0.1.2"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
949
+ dependencies = [
950
+ "libc",
951
+ "redox_users 0.4.6",
952
+ "winapi",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "displaydoc"
957
+ version = "0.2.5"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
960
+ dependencies = [
961
+ "proc-macro2",
962
+ "quote",
963
+ "syn",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "divan-macros"
968
+ version = "0.1.17"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "8dc51d98e636f5e3b0759a39257458b22619cac7e96d932da6eeb052891bb67c"
971
+ dependencies = [
972
+ "proc-macro2",
973
+ "quote",
974
+ "syn",
975
+ ]
976
+
977
+ [[package]]
978
+ name = "divan-parser"
979
+ version = "0.0.0"
980
+ dependencies = [
981
+ "serde",
982
+ ]
983
+
984
+ [[package]]
985
+ name = "document-features"
986
+ version = "0.2.12"
987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
988
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
989
+ dependencies = [
990
+ "litrs",
991
+ ]
992
+
993
+ [[package]]
994
+ name = "downloader"
995
+ version = "0.2.8"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "9ac1e888d6830712d565b2f3a974be3200be9296bc1b03db8251a4cbf18a4a34"
998
+ dependencies = [
999
+ "futures",
1000
+ "rand 0.8.5",
1001
+ "reqwest",
1002
+ "thiserror 1.0.69",
1003
+ "tokio",
1004
+ ]
1005
+
1006
+ [[package]]
1007
+ name = "either"
1008
+ version = "1.15.0"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
1011
+
1012
+ [[package]]
1013
+ name = "encode_unicode"
1014
+ version = "1.0.0"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
1017
+
1018
+ [[package]]
1019
+ name = "equivalent"
1020
+ version = "1.0.2"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
1023
+
1024
+ [[package]]
1025
+ name = "errno"
1026
+ version = "0.3.14"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
1029
+ dependencies = [
1030
+ "libc",
1031
+ "windows-sys 0.61.2",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "esaxx-rs"
1036
+ version = "0.1.10"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "d817e038c30374a4bcb22f94d0a8a0e216958d4c3dcde369b1439fec4bdda6e6"
1039
+ dependencies = [
1040
+ "cc",
1041
+ ]
1042
+
1043
+ [[package]]
1044
+ name = "fancy-regex"
1045
+ version = "0.13.0"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "531e46835a22af56d1e3b66f04844bed63158bc094a628bec1d321d9b4c44bf2"
1048
+ dependencies = [
1049
+ "bit-set 0.5.3",
1050
+ "regex-automata",
1051
+ "regex-syntax",
1052
+ ]
1053
+
1054
+ [[package]]
1055
+ name = "fastrand"
1056
+ version = "2.3.0"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
1059
+
1060
+ [[package]]
1061
+ name = "find-msvc-tools"
1062
+ version = "0.1.9"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
1065
+
1066
+ [[package]]
1067
+ name = "flatbuffers"
1068
+ version = "25.12.19"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
1071
+ dependencies = [
1072
+ "bitflags",
1073
+ "rustc_version",
1074
+ ]
1075
+
1076
+ [[package]]
1077
+ name = "flate2"
1078
+ version = "1.1.9"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
1081
+ dependencies = [
1082
+ "crc32fast",
1083
+ "miniz_oxide",
1084
+ "zlib-rs",
1085
+ ]
1086
+
1087
+ [[package]]
1088
+ name = "fnv"
1089
+ version = "1.0.7"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1092
+
1093
+ [[package]]
1094
+ name = "foldhash"
1095
+ version = "0.1.5"
1096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1097
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1098
+
1099
+ [[package]]
1100
+ name = "foldhash"
1101
+ version = "0.2.0"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
1104
+
1105
+ [[package]]
1106
+ name = "foreign-types"
1107
+ version = "0.3.2"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
1110
+ dependencies = [
1111
+ "foreign-types-shared",
1112
+ ]
1113
+
1114
+ [[package]]
1115
+ name = "foreign-types-shared"
1116
+ version = "0.1.1"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
1119
+
1120
+ [[package]]
1121
+ name = "form_urlencoded"
1122
+ version = "1.2.2"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1125
+ dependencies = [
1126
+ "percent-encoding",
1127
+ ]
1128
+
1129
+ [[package]]
1130
+ name = "fuchsia-cprng"
1131
+ version = "0.1.1"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
1134
+
1135
+ [[package]]
1136
+ name = "futures"
1137
+ version = "0.3.32"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
1140
+ dependencies = [
1141
+ "futures-channel",
1142
+ "futures-core",
1143
+ "futures-executor",
1144
+ "futures-io",
1145
+ "futures-sink",
1146
+ "futures-task",
1147
+ "futures-util",
1148
+ ]
1149
+
1150
+ [[package]]
1151
+ name = "futures-channel"
1152
+ version = "0.3.32"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
1155
+ dependencies = [
1156
+ "futures-core",
1157
+ "futures-sink",
1158
+ ]
1159
+
1160
+ [[package]]
1161
+ name = "futures-core"
1162
+ version = "0.3.32"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
1165
+
1166
+ [[package]]
1167
+ name = "futures-executor"
1168
+ version = "0.3.32"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
1171
+ dependencies = [
1172
+ "futures-core",
1173
+ "futures-task",
1174
+ "futures-util",
1175
+ ]
1176
+
1177
+ [[package]]
1178
+ name = "futures-io"
1179
+ version = "0.3.32"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
1182
+
1183
+ [[package]]
1184
+ name = "futures-macro"
1185
+ version = "0.3.32"
1186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
1188
+ dependencies = [
1189
+ "proc-macro2",
1190
+ "quote",
1191
+ "syn",
1192
+ ]
1193
+
1194
+ [[package]]
1195
+ name = "futures-sink"
1196
+ version = "0.3.32"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
1199
+
1200
+ [[package]]
1201
+ name = "futures-task"
1202
+ version = "0.3.32"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
1205
+
1206
+ [[package]]
1207
+ name = "futures-util"
1208
+ version = "0.3.32"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
1211
+ dependencies = [
1212
+ "futures-channel",
1213
+ "futures-core",
1214
+ "futures-io",
1215
+ "futures-macro",
1216
+ "futures-sink",
1217
+ "futures-task",
1218
+ "memchr",
1219
+ "pin-project-lite",
1220
+ "slab",
1221
+ ]
1222
+
1223
+ [[package]]
1224
+ name = "getrandom"
1225
+ version = "0.2.17"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1228
+ dependencies = [
1229
+ "cfg-if",
1230
+ "js-sys",
1231
+ "libc",
1232
+ "wasi",
1233
+ "wasm-bindgen",
1234
+ ]
1235
+
1236
+ [[package]]
1237
+ name = "getrandom"
1238
+ version = "0.3.4"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1241
+ dependencies = [
1242
+ "cfg-if",
1243
+ "js-sys",
1244
+ "libc",
1245
+ "r-efi",
1246
+ "wasip2",
1247
+ "wasm-bindgen",
1248
+ ]
1249
+
1250
+ [[package]]
1251
+ name = "getrandom"
1252
+ version = "0.4.1"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec"
1255
+ dependencies = [
1256
+ "cfg-if",
1257
+ "libc",
1258
+ "r-efi",
1259
+ "wasip2",
1260
+ "wasip3",
1261
+ ]
1262
+
1263
+ [[package]]
1264
+ name = "glob"
1265
+ version = "0.3.3"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1268
+
1269
+ [[package]]
1270
+ name = "half"
1271
+ version = "2.7.1"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1274
+ dependencies = [
1275
+ "cfg-if",
1276
+ "crunchy",
1277
+ "num-traits",
1278
+ "zerocopy",
1279
+ ]
1280
+
1281
+ [[package]]
1282
+ name = "hashbrown"
1283
+ version = "0.15.5"
1284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1285
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1286
+ dependencies = [
1287
+ "foldhash 0.1.5",
1288
+ ]
1289
+
1290
+ [[package]]
1291
+ name = "hashbrown"
1292
+ version = "0.16.1"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1295
+ dependencies = [
1296
+ "allocator-api2",
1297
+ "equivalent",
1298
+ "foldhash 0.2.0",
1299
+ "rustc-std-workspace-alloc",
1300
+ ]
1301
+
1302
+ [[package]]
1303
+ name = "heck"
1304
+ version = "0.5.0"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1307
+
1308
+ [[package]]
1309
+ name = "hermit-abi"
1310
+ version = "0.5.2"
1311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1312
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1313
+
1314
+ [[package]]
1315
+ name = "hf-hub"
1316
+ version = "0.4.3"
1317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1318
+ checksum = "629d8f3bbeda9d148036d6b0de0a3ab947abd08ce90626327fc3547a49d59d97"
1319
+ dependencies = [
1320
+ "dirs",
1321
+ "http",
1322
+ "indicatif 0.17.11",
1323
+ "libc",
1324
+ "log",
1325
+ "rand 0.9.2",
1326
+ "serde",
1327
+ "serde_json",
1328
+ "thiserror 2.0.18",
1329
+ "ureq",
1330
+ "windows-sys 0.60.2",
1331
+ ]
1332
+
1333
+ [[package]]
1334
+ name = "http"
1335
+ version = "1.4.0"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1338
+ dependencies = [
1339
+ "bytes",
1340
+ "itoa",
1341
+ ]
1342
+
1343
+ [[package]]
1344
+ name = "http-body"
1345
+ version = "1.0.1"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1348
+ dependencies = [
1349
+ "bytes",
1350
+ "http",
1351
+ ]
1352
+
1353
+ [[package]]
1354
+ name = "http-body-util"
1355
+ version = "0.1.3"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1358
+ dependencies = [
1359
+ "bytes",
1360
+ "futures-core",
1361
+ "http",
1362
+ "http-body",
1363
+ "pin-project-lite",
1364
+ ]
1365
+
1366
+ [[package]]
1367
+ name = "httparse"
1368
+ version = "1.10.1"
1369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1370
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1371
+
1372
+ [[package]]
1373
+ name = "humansize"
1374
+ version = "2.1.3"
1375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1376
+ checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7"
1377
+ dependencies = [
1378
+ "libm",
1379
+ ]
1380
+
1381
+ [[package]]
1382
+ name = "hyper"
1383
+ version = "1.8.1"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1386
+ dependencies = [
1387
+ "atomic-waker",
1388
+ "bytes",
1389
+ "futures-channel",
1390
+ "futures-core",
1391
+ "http",
1392
+ "http-body",
1393
+ "httparse",
1394
+ "itoa",
1395
+ "pin-project-lite",
1396
+ "pin-utils",
1397
+ "smallvec",
1398
+ "tokio",
1399
+ "want",
1400
+ ]
1401
+
1402
+ [[package]]
1403
+ name = "hyper-rustls"
1404
+ version = "0.27.7"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1407
+ dependencies = [
1408
+ "http",
1409
+ "hyper",
1410
+ "hyper-util",
1411
+ "rustls",
1412
+ "rustls-pki-types",
1413
+ "tokio",
1414
+ "tokio-rustls",
1415
+ "tower-service",
1416
+ "webpki-roots 1.0.6",
1417
+ ]
1418
+
1419
+ [[package]]
1420
+ name = "hyper-tls"
1421
+ version = "0.6.0"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
1424
+ dependencies = [
1425
+ "bytes",
1426
+ "http-body-util",
1427
+ "hyper",
1428
+ "hyper-util",
1429
+ "native-tls",
1430
+ "tokio",
1431
+ "tokio-native-tls",
1432
+ "tower-service",
1433
+ ]
1434
+
1435
+ [[package]]
1436
+ name = "hyper-util"
1437
+ version = "0.1.20"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1440
+ dependencies = [
1441
+ "base64 0.22.1",
1442
+ "bytes",
1443
+ "futures-channel",
1444
+ "futures-util",
1445
+ "http",
1446
+ "http-body",
1447
+ "hyper",
1448
+ "ipnet",
1449
+ "libc",
1450
+ "percent-encoding",
1451
+ "pin-project-lite",
1452
+ "socket2",
1453
+ "tokio",
1454
+ "tower-service",
1455
+ "tracing",
1456
+ ]
1457
+
1458
+ [[package]]
1459
+ name = "iana-time-zone"
1460
+ version = "0.1.65"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1463
+ dependencies = [
1464
+ "android_system_properties",
1465
+ "core-foundation-sys",
1466
+ "iana-time-zone-haiku",
1467
+ "js-sys",
1468
+ "log",
1469
+ "wasm-bindgen",
1470
+ "windows-core",
1471
+ ]
1472
+
1473
+ [[package]]
1474
+ name = "iana-time-zone-haiku"
1475
+ version = "0.1.2"
1476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1477
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1478
+ dependencies = [
1479
+ "cc",
1480
+ ]
1481
+
1482
+ [[package]]
1483
+ name = "icu_collections"
1484
+ version = "2.1.1"
1485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1486
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1487
+ dependencies = [
1488
+ "displaydoc",
1489
+ "potential_utf",
1490
+ "yoke",
1491
+ "zerofrom",
1492
+ "zerovec",
1493
+ ]
1494
+
1495
+ [[package]]
1496
+ name = "icu_locale_core"
1497
+ version = "2.1.1"
1498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1499
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1500
+ dependencies = [
1501
+ "displaydoc",
1502
+ "litemap",
1503
+ "tinystr",
1504
+ "writeable",
1505
+ "zerovec",
1506
+ ]
1507
+
1508
+ [[package]]
1509
+ name = "icu_normalizer"
1510
+ version = "2.1.1"
1511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1512
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1513
+ dependencies = [
1514
+ "icu_collections",
1515
+ "icu_normalizer_data",
1516
+ "icu_properties",
1517
+ "icu_provider",
1518
+ "smallvec",
1519
+ "zerovec",
1520
+ ]
1521
+
1522
+ [[package]]
1523
+ name = "icu_normalizer_data"
1524
+ version = "2.1.1"
1525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1526
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1527
+
1528
+ [[package]]
1529
+ name = "icu_properties"
1530
+ version = "2.1.2"
1531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1533
+ dependencies = [
1534
+ "icu_collections",
1535
+ "icu_locale_core",
1536
+ "icu_properties_data",
1537
+ "icu_provider",
1538
+ "zerotrie",
1539
+ "zerovec",
1540
+ ]
1541
+
1542
+ [[package]]
1543
+ name = "icu_properties_data"
1544
+ version = "2.1.2"
1545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1546
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1547
+
1548
+ [[package]]
1549
+ name = "icu_provider"
1550
+ version = "2.1.1"
1551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1552
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1553
+ dependencies = [
1554
+ "displaydoc",
1555
+ "icu_locale_core",
1556
+ "writeable",
1557
+ "yoke",
1558
+ "zerofrom",
1559
+ "zerotrie",
1560
+ "zerovec",
1561
+ ]
1562
+
1563
+ [[package]]
1564
+ name = "id-arena"
1565
+ version = "2.3.0"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1568
+
1569
+ [[package]]
1570
+ name = "ident_case"
1571
+ version = "1.0.1"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1574
+
1575
+ [[package]]
1576
+ name = "idna"
1577
+ version = "1.1.0"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1580
+ dependencies = [
1581
+ "idna_adapter",
1582
+ "smallvec",
1583
+ "utf8_iter",
1584
+ ]
1585
+
1586
+ [[package]]
1587
+ name = "idna_adapter"
1588
+ version = "1.2.1"
1589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1590
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1591
+ dependencies = [
1592
+ "icu_normalizer",
1593
+ "icu_properties",
1594
+ ]
1595
+
1596
+ [[package]]
1597
+ name = "indexmap"
1598
+ version = "2.13.0"
1599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1600
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1601
+ dependencies = [
1602
+ "equivalent",
1603
+ "hashbrown 0.16.1",
1604
+ "serde",
1605
+ "serde_core",
1606
+ ]
1607
+
1608
+ [[package]]
1609
+ name = "indicatif"
1610
+ version = "0.17.11"
1611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1612
+ checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
1613
+ dependencies = [
1614
+ "console 0.15.11",
1615
+ "number_prefix",
1616
+ "portable-atomic",
1617
+ "unicode-width",
1618
+ "web-time",
1619
+ ]
1620
+
1621
+ [[package]]
1622
+ name = "indicatif"
1623
+ version = "0.18.4"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "25470f23803092da7d239834776d653104d551bc4d7eacaf31e6837854b8e9eb"
1626
+ dependencies = [
1627
+ "console 0.16.2",
1628
+ "portable-atomic",
1629
+ "unicode-width",
1630
+ "unit-prefix",
1631
+ "web-time",
1632
+ ]
1633
+
1634
+ [[package]]
1635
+ name = "integer-encoding"
1636
+ version = "3.0.4"
1637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1638
+ checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
1639
+
1640
+ [[package]]
1641
+ name = "inventory"
1642
+ version = "0.3.22"
1643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1644
+ checksum = "009ae045c87e7082cb72dab0ccd01ae075dd00141ddc108f43a0ea150a9e7227"
1645
+ dependencies = [
1646
+ "rustversion",
1647
+ ]
1648
+
1649
+ [[package]]
1650
+ name = "ipnet"
1651
+ version = "2.11.0"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1654
+
1655
+ [[package]]
1656
+ name = "iri-string"
1657
+ version = "0.7.10"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
1660
+ dependencies = [
1661
+ "memchr",
1662
+ "serde",
1663
+ ]
1664
+
1665
+ [[package]]
1666
+ name = "is-terminal"
1667
+ version = "0.4.17"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1670
+ dependencies = [
1671
+ "hermit-abi",
1672
+ "libc",
1673
+ "windows-sys 0.61.2",
1674
+ ]
1675
+
1676
+ [[package]]
1677
+ name = "is_terminal_polyfill"
1678
+ version = "1.70.2"
1679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1680
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1681
+
1682
+ [[package]]
1683
+ name = "itertools"
1684
+ version = "0.14.0"
1685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1686
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1687
+ dependencies = [
1688
+ "either",
1689
+ ]
1690
+
1691
+ [[package]]
1692
+ name = "itoa"
1693
+ version = "1.0.17"
1694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1695
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1696
+
1697
+ [[package]]
1698
+ name = "jobserver"
1699
+ version = "0.1.34"
1700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1701
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1702
+ dependencies = [
1703
+ "getrandom 0.3.4",
1704
+ "libc",
1705
+ ]
1706
+
1707
+ [[package]]
1708
+ name = "js-sys"
1709
+ version = "0.3.90"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "14dc6f6450b3f6d4ed5b16327f38fed626d375a886159ca555bd7822c0c3a5a6"
1712
+ dependencies = [
1713
+ "once_cell",
1714
+ "wasm-bindgen",
1715
+ ]
1716
+
1717
+ [[package]]
1718
+ name = "lazy_static"
1719
+ version = "1.5.0"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1722
+
1723
+ [[package]]
1724
+ name = "leb128fmt"
1725
+ version = "0.1.0"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1728
+
1729
+ [[package]]
1730
+ name = "lexer-equivalence"
1731
+ version = "0.0.0"
1732
+ dependencies = [
1733
+ "rayon",
1734
+ "regex",
1735
+ "wordchipper",
1736
+ ]
1737
+
1738
+ [[package]]
1739
+ name = "lexical-core"
1740
+ version = "1.0.6"
1741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1742
+ checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
1743
+ dependencies = [
1744
+ "lexical-parse-float",
1745
+ "lexical-parse-integer",
1746
+ "lexical-util",
1747
+ "lexical-write-float",
1748
+ "lexical-write-integer",
1749
+ ]
1750
+
1751
+ [[package]]
1752
+ name = "lexical-parse-float"
1753
+ version = "1.0.6"
1754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1755
+ checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
1756
+ dependencies = [
1757
+ "lexical-parse-integer",
1758
+ "lexical-util",
1759
+ ]
1760
+
1761
+ [[package]]
1762
+ name = "lexical-parse-integer"
1763
+ version = "1.0.6"
1764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1765
+ checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
1766
+ dependencies = [
1767
+ "lexical-util",
1768
+ ]
1769
+
1770
+ [[package]]
1771
+ name = "lexical-util"
1772
+ version = "1.0.7"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
1775
+
1776
+ [[package]]
1777
+ name = "lexical-write-float"
1778
+ version = "1.0.6"
1779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1780
+ checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
1781
+ dependencies = [
1782
+ "lexical-util",
1783
+ "lexical-write-integer",
1784
+ ]
1785
+
1786
+ [[package]]
1787
+ name = "lexical-write-integer"
1788
+ version = "1.0.6"
1789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1790
+ checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
1791
+ dependencies = [
1792
+ "lexical-util",
1793
+ ]
1794
+
1795
+ [[package]]
1796
+ name = "libc"
1797
+ version = "0.2.182"
1798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1799
+ checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
1800
+
1801
+ [[package]]
1802
+ name = "libm"
1803
+ version = "0.2.16"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1806
+
1807
+ [[package]]
1808
+ name = "libredox"
1809
+ version = "0.1.12"
1810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1811
+ checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
1812
+ dependencies = [
1813
+ "bitflags",
1814
+ "libc",
1815
+ ]
1816
+
1817
+ [[package]]
1818
+ name = "linux-raw-sys"
1819
+ version = "0.12.1"
1820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1821
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1822
+
1823
+ [[package]]
1824
+ name = "litemap"
1825
+ version = "0.8.1"
1826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1827
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1828
+
1829
+ [[package]]
1830
+ name = "litrs"
1831
+ version = "1.0.0"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
1834
+
1835
+ [[package]]
1836
+ name = "lock_api"
1837
+ version = "0.4.14"
1838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1839
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1840
+ dependencies = [
1841
+ "scopeguard",
1842
+ ]
1843
+
1844
+ [[package]]
1845
+ name = "log"
1846
+ version = "0.4.29"
1847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1848
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1849
+
1850
+ [[package]]
1851
+ name = "logos"
1852
+ version = "0.16.1"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "eb2c55a318a87600ea870ff8c2012148b44bf18b74fad48d0f835c38c7d07c5f"
1855
+ dependencies = [
1856
+ "logos-derive",
1857
+ ]
1858
+
1859
+ [[package]]
1860
+ name = "logos-codegen"
1861
+ version = "0.16.1"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "58b3ffaa284e1350d017a57d04ada118c4583cf260c8fb01e0fe28a2e9cf8970"
1864
+ dependencies = [
1865
+ "fnv",
1866
+ "proc-macro2",
1867
+ "quote",
1868
+ "regex-automata",
1869
+ "regex-syntax",
1870
+ "syn",
1871
+ ]
1872
+
1873
+ [[package]]
1874
+ name = "logos-derive"
1875
+ version = "0.16.1"
1876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1877
+ checksum = "52d3a9855747c17eaf4383823f135220716ab49bea5fbea7dd42cc9a92f8aa31"
1878
+ dependencies = [
1879
+ "logos-codegen",
1880
+ ]
1881
+
1882
+ [[package]]
1883
+ name = "lru-slab"
1884
+ version = "0.1.2"
1885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1886
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1887
+
1888
+ [[package]]
1889
+ name = "lz4_flex"
1890
+ version = "0.12.0"
1891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1892
+ checksum = "ab6473172471198271ff72e9379150e9dfd70d8e533e0752a27e515b48dd375e"
1893
+ dependencies = [
1894
+ "twox-hash",
1895
+ ]
1896
+
1897
+ [[package]]
1898
+ name = "macro_rules_attribute"
1899
+ version = "0.2.2"
1900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1901
+ checksum = "65049d7923698040cd0b1ddcced9b0eb14dd22c5f86ae59c3740eab64a676520"
1902
+ dependencies = [
1903
+ "macro_rules_attribute-proc_macro",
1904
+ "paste",
1905
+ ]
1906
+
1907
+ [[package]]
1908
+ name = "macro_rules_attribute-proc_macro"
1909
+ version = "0.2.2"
1910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1911
+ checksum = "670fdfda89751bc4a84ac13eaa63e205cf0fd22b4c9a5fbfa085b63c1f1d3a30"
1912
+
1913
+ [[package]]
1914
+ name = "memchr"
1915
+ version = "2.8.0"
1916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1917
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1918
+
1919
+ [[package]]
1920
+ name = "minicov"
1921
+ version = "0.3.8"
1922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1923
+ checksum = "4869b6a491569605d66d3952bcdf03df789e5b536e5f0cf7758a7f08a55ae24d"
1924
+ dependencies = [
1925
+ "cc",
1926
+ "walkdir",
1927
+ ]
1928
+
1929
+ [[package]]
1930
+ name = "minimal-lexical"
1931
+ version = "0.2.1"
1932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1933
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1934
+
1935
+ [[package]]
1936
+ name = "miniz_oxide"
1937
+ version = "0.8.9"
1938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1939
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1940
+ dependencies = [
1941
+ "adler2",
1942
+ "simd-adler32",
1943
+ ]
1944
+
1945
+ [[package]]
1946
+ name = "mio"
1947
+ version = "1.1.1"
1948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1949
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1950
+ dependencies = [
1951
+ "libc",
1952
+ "wasi",
1953
+ "windows-sys 0.61.2",
1954
+ ]
1955
+
1956
+ [[package]]
1957
+ name = "monostate"
1958
+ version = "0.1.18"
1959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1960
+ checksum = "3341a273f6c9d5bef1908f17b7267bbab0e95c9bf69a0d4dcf8e9e1b2c76ef67"
1961
+ dependencies = [
1962
+ "monostate-impl",
1963
+ "serde",
1964
+ "serde_core",
1965
+ ]
1966
+
1967
+ [[package]]
1968
+ name = "monostate-impl"
1969
+ version = "0.1.18"
1970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1971
+ checksum = "e4db6d5580af57bf992f59068d4ea26fd518574ff48d7639b255a36f9de6e7e9"
1972
+ dependencies = [
1973
+ "proc-macro2",
1974
+ "quote",
1975
+ "syn",
1976
+ ]
1977
+
1978
+ [[package]]
1979
+ name = "native-tls"
1980
+ version = "0.2.18"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
1983
+ dependencies = [
1984
+ "libc",
1985
+ "log",
1986
+ "openssl",
1987
+ "openssl-probe",
1988
+ "openssl-sys",
1989
+ "schannel",
1990
+ "security-framework",
1991
+ "security-framework-sys",
1992
+ "tempfile",
1993
+ ]
1994
+
1995
+ [[package]]
1996
+ name = "nix"
1997
+ version = "0.30.1"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
2000
+ dependencies = [
2001
+ "bitflags",
2002
+ "cfg-if",
2003
+ "cfg_aliases",
2004
+ "libc",
2005
+ ]
2006
+
2007
+ [[package]]
2008
+ name = "nom"
2009
+ version = "7.1.3"
2010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2011
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2012
+ dependencies = [
2013
+ "memchr",
2014
+ "minimal-lexical",
2015
+ ]
2016
+
2017
+ [[package]]
2018
+ name = "nu-ansi-term"
2019
+ version = "0.50.3"
2020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2021
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
2022
+ dependencies = [
2023
+ "windows-sys 0.61.2",
2024
+ ]
2025
+
2026
+ [[package]]
2027
+ name = "num-bigint"
2028
+ version = "0.4.6"
2029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2030
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
2031
+ dependencies = [
2032
+ "num-integer",
2033
+ "num-traits",
2034
+ ]
2035
+
2036
+ [[package]]
2037
+ name = "num-complex"
2038
+ version = "0.4.6"
2039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2040
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
2041
+ dependencies = [
2042
+ "num-traits",
2043
+ ]
2044
+
2045
+ [[package]]
2046
+ name = "num-integer"
2047
+ version = "0.1.46"
2048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2049
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
2050
+ dependencies = [
2051
+ "num-traits",
2052
+ ]
2053
+
2054
+ [[package]]
2055
+ name = "num-traits"
2056
+ version = "0.2.19"
2057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2058
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2059
+ dependencies = [
2060
+ "autocfg",
2061
+ "libm",
2062
+ ]
2063
+
2064
+ [[package]]
2065
+ name = "number_prefix"
2066
+ version = "0.4.0"
2067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2068
+ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
2069
+
2070
+ [[package]]
2071
+ name = "once_cell"
2072
+ version = "1.21.3"
2073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2074
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
2075
+ dependencies = [
2076
+ "critical-section",
2077
+ "portable-atomic",
2078
+ ]
2079
+
2080
+ [[package]]
2081
+ name = "once_cell_polyfill"
2082
+ version = "1.70.2"
2083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2084
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
2085
+
2086
+ [[package]]
2087
+ name = "onig"
2088
+ version = "6.5.1"
2089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2090
+ checksum = "336b9c63443aceef14bea841b899035ae3abe89b7c486aaf4c5bd8aafedac3f0"
2091
+ dependencies = [
2092
+ "bitflags",
2093
+ "libc",
2094
+ "once_cell",
2095
+ "onig_sys",
2096
+ ]
2097
+
2098
+ [[package]]
2099
+ name = "onig_sys"
2100
+ version = "69.9.1"
2101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2102
+ checksum = "c7f86c6eef3d6df15f23bcfb6af487cbd2fed4e5581d58d5bf1f5f8b7f6727dc"
2103
+ dependencies = [
2104
+ "cc",
2105
+ "pkg-config",
2106
+ ]
2107
+
2108
+ [[package]]
2109
+ name = "oorandom"
2110
+ version = "11.1.5"
2111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2112
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
2113
+
2114
+ [[package]]
2115
+ name = "openssl"
2116
+ version = "0.10.75"
2117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2118
+ checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
2119
+ dependencies = [
2120
+ "bitflags",
2121
+ "cfg-if",
2122
+ "foreign-types",
2123
+ "libc",
2124
+ "once_cell",
2125
+ "openssl-macros",
2126
+ "openssl-sys",
2127
+ ]
2128
+
2129
+ [[package]]
2130
+ name = "openssl-macros"
2131
+ version = "0.1.1"
2132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2133
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
2134
+ dependencies = [
2135
+ "proc-macro2",
2136
+ "quote",
2137
+ "syn",
2138
+ ]
2139
+
2140
+ [[package]]
2141
+ name = "openssl-probe"
2142
+ version = "0.2.1"
2143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2144
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
2145
+
2146
+ [[package]]
2147
+ name = "openssl-sys"
2148
+ version = "0.9.111"
2149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2150
+ checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321"
2151
+ dependencies = [
2152
+ "cc",
2153
+ "libc",
2154
+ "pkg-config",
2155
+ "vcpkg",
2156
+ ]
2157
+
2158
+ [[package]]
2159
+ name = "option-ext"
2160
+ version = "0.2.0"
2161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2162
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
2163
+
2164
+ [[package]]
2165
+ name = "ordered-float"
2166
+ version = "2.10.1"
2167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2168
+ checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
2169
+ dependencies = [
2170
+ "num-traits",
2171
+ ]
2172
+
2173
+ [[package]]
2174
+ name = "parking_lot"
2175
+ version = "0.12.5"
2176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2177
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2178
+ dependencies = [
2179
+ "lock_api",
2180
+ "parking_lot_core",
2181
+ ]
2182
+
2183
+ [[package]]
2184
+ name = "parking_lot_core"
2185
+ version = "0.9.12"
2186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2187
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2188
+ dependencies = [
2189
+ "cfg-if",
2190
+ "libc",
2191
+ "redox_syscall",
2192
+ "smallvec",
2193
+ "windows-link",
2194
+ ]
2195
+
2196
+ [[package]]
2197
+ name = "parquet"
2198
+ version = "58.0.0"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "3f491d0ef1b510194426ee67ddc18a9b747ef3c42050c19322a2cd2e1666c29b"
2201
+ dependencies = [
2202
+ "ahash",
2203
+ "arrow-array",
2204
+ "arrow-buffer",
2205
+ "arrow-data",
2206
+ "arrow-ipc",
2207
+ "arrow-schema",
2208
+ "arrow-select",
2209
+ "base64 0.22.1",
2210
+ "brotli",
2211
+ "bytes",
2212
+ "chrono",
2213
+ "flate2",
2214
+ "half",
2215
+ "hashbrown 0.16.1",
2216
+ "lz4_flex",
2217
+ "num-bigint",
2218
+ "num-integer",
2219
+ "num-traits",
2220
+ "paste",
2221
+ "seq-macro",
2222
+ "simdutf8",
2223
+ "snap",
2224
+ "thrift",
2225
+ "twox-hash",
2226
+ "zstd",
2227
+ ]
2228
+
2229
+ [[package]]
2230
+ name = "paste"
2231
+ version = "1.0.15"
2232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2233
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2234
+
2235
+ [[package]]
2236
+ name = "percent-encoding"
2237
+ version = "2.3.2"
2238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2239
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2240
+
2241
+ [[package]]
2242
+ name = "pin-project-lite"
2243
+ version = "0.2.16"
2244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2245
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2246
+
2247
+ [[package]]
2248
+ name = "pin-utils"
2249
+ version = "0.1.0"
2250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2251
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2252
+
2253
+ [[package]]
2254
+ name = "pkg-config"
2255
+ version = "0.3.32"
2256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2257
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
2258
+
2259
+ [[package]]
2260
+ name = "plotters"
2261
+ version = "0.3.7"
2262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2263
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
2264
+ dependencies = [
2265
+ "num-traits",
2266
+ "plotters-backend",
2267
+ "plotters-svg",
2268
+ "wasm-bindgen",
2269
+ "web-sys",
2270
+ ]
2271
+
2272
+ [[package]]
2273
+ name = "plotters-backend"
2274
+ version = "0.3.7"
2275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2276
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
2277
+
2278
+ [[package]]
2279
+ name = "plotters-svg"
2280
+ version = "0.3.7"
2281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2282
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
2283
+ dependencies = [
2284
+ "plotters-backend",
2285
+ ]
2286
+
2287
+ [[package]]
2288
+ name = "portable-atomic"
2289
+ version = "1.13.1"
2290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2291
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2292
+
2293
+ [[package]]
2294
+ name = "potential_utf"
2295
+ version = "0.1.4"
2296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2297
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
2298
+ dependencies = [
2299
+ "zerovec",
2300
+ ]
2301
+
2302
+ [[package]]
2303
+ name = "ppv-lite86"
2304
+ version = "0.2.21"
2305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2306
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2307
+ dependencies = [
2308
+ "zerocopy",
2309
+ ]
2310
+
2311
+ [[package]]
2312
+ name = "prettyplease"
2313
+ version = "0.2.37"
2314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2315
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2316
+ dependencies = [
2317
+ "proc-macro2",
2318
+ "syn",
2319
+ ]
2320
+
2321
+ [[package]]
2322
+ name = "proc-macro-crate"
2323
+ version = "3.5.0"
2324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2325
+ checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
2326
+ dependencies = [
2327
+ "toml_edit",
2328
+ ]
2329
+
2330
+ [[package]]
2331
+ name = "proc-macro2"
2332
+ version = "1.0.106"
2333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2334
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2335
+ dependencies = [
2336
+ "unicode-ident",
2337
+ ]
2338
+
2339
+ [[package]]
2340
+ name = "proptest"
2341
+ version = "1.10.0"
2342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2343
+ checksum = "37566cb3fdacef14c0737f9546df7cfeadbfbc9fef10991038bf5015d0c80532"
2344
+ dependencies = [
2345
+ "bit-set 0.8.0",
2346
+ "bit-vec 0.8.0",
2347
+ "bitflags",
2348
+ "num-traits",
2349
+ "rand 0.9.2",
2350
+ "rand_chacha 0.9.0",
2351
+ "rand_xorshift",
2352
+ "regex-syntax",
2353
+ "rusty-fork",
2354
+ "tempfile",
2355
+ "unarray",
2356
+ ]
2357
+
2358
+ [[package]]
2359
+ name = "pyo3"
2360
+ version = "0.28.2"
2361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2362
+ checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
2363
+ dependencies = [
2364
+ "libc",
2365
+ "once_cell",
2366
+ "portable-atomic",
2367
+ "pyo3-build-config",
2368
+ "pyo3-ffi",
2369
+ "pyo3-macros",
2370
+ ]
2371
+
2372
+ [[package]]
2373
+ name = "pyo3-build-config"
2374
+ version = "0.28.2"
2375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2376
+ checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
2377
+ dependencies = [
2378
+ "target-lexicon",
2379
+ ]
2380
+
2381
+ [[package]]
2382
+ name = "pyo3-ffi"
2383
+ version = "0.28.2"
2384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2385
+ checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
2386
+ dependencies = [
2387
+ "libc",
2388
+ "pyo3-build-config",
2389
+ ]
2390
+
2391
+ [[package]]
2392
+ name = "pyo3-macros"
2393
+ version = "0.28.2"
2394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2395
+ checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
2396
+ dependencies = [
2397
+ "proc-macro2",
2398
+ "pyo3-macros-backend",
2399
+ "quote",
2400
+ "syn",
2401
+ ]
2402
+
2403
+ [[package]]
2404
+ name = "pyo3-macros-backend"
2405
+ version = "0.28.2"
2406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2407
+ checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
2408
+ dependencies = [
2409
+ "heck",
2410
+ "proc-macro2",
2411
+ "pyo3-build-config",
2412
+ "quote",
2413
+ "syn",
2414
+ ]
2415
+
2416
+ [[package]]
2417
+ name = "quick-error"
2418
+ version = "1.2.3"
2419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2420
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2421
+
2422
+ [[package]]
2423
+ name = "quinn"
2424
+ version = "0.11.9"
2425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2426
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2427
+ dependencies = [
2428
+ "bytes",
2429
+ "cfg_aliases",
2430
+ "pin-project-lite",
2431
+ "quinn-proto",
2432
+ "quinn-udp",
2433
+ "rustc-hash 2.1.1",
2434
+ "rustls",
2435
+ "socket2",
2436
+ "thiserror 2.0.18",
2437
+ "tokio",
2438
+ "tracing",
2439
+ "web-time",
2440
+ ]
2441
+
2442
+ [[package]]
2443
+ name = "quinn-proto"
2444
+ version = "0.11.14"
2445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2446
+ checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
2447
+ dependencies = [
2448
+ "bytes",
2449
+ "getrandom 0.3.4",
2450
+ "lru-slab",
2451
+ "rand 0.9.2",
2452
+ "ring",
2453
+ "rustc-hash 2.1.1",
2454
+ "rustls",
2455
+ "rustls-pki-types",
2456
+ "slab",
2457
+ "thiserror 2.0.18",
2458
+ "tinyvec",
2459
+ "tracing",
2460
+ "web-time",
2461
+ ]
2462
+
2463
+ [[package]]
2464
+ name = "quinn-udp"
2465
+ version = "0.5.14"
2466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2467
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2468
+ dependencies = [
2469
+ "cfg_aliases",
2470
+ "libc",
2471
+ "once_cell",
2472
+ "socket2",
2473
+ "tracing",
2474
+ "windows-sys 0.52.0",
2475
+ ]
2476
+
2477
+ [[package]]
2478
+ name = "quote"
2479
+ version = "1.0.44"
2480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2481
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
2482
+ dependencies = [
2483
+ "proc-macro2",
2484
+ ]
2485
+
2486
+ [[package]]
2487
+ name = "r-efi"
2488
+ version = "5.3.0"
2489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2490
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2491
+
2492
+ [[package]]
2493
+ name = "rand"
2494
+ version = "0.4.6"
2495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2496
+ checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
2497
+ dependencies = [
2498
+ "fuchsia-cprng",
2499
+ "libc",
2500
+ "rand_core 0.3.1",
2501
+ "rdrand",
2502
+ "winapi",
2503
+ ]
2504
+
2505
+ [[package]]
2506
+ name = "rand"
2507
+ version = "0.8.5"
2508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2509
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2510
+ dependencies = [
2511
+ "libc",
2512
+ "rand_chacha 0.3.1",
2513
+ "rand_core 0.6.4",
2514
+ ]
2515
+
2516
+ [[package]]
2517
+ name = "rand"
2518
+ version = "0.9.2"
2519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2520
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2521
+ dependencies = [
2522
+ "rand_chacha 0.9.0",
2523
+ "rand_core 0.9.5",
2524
+ ]
2525
+
2526
+ [[package]]
2527
+ name = "rand_chacha"
2528
+ version = "0.3.1"
2529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2530
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2531
+ dependencies = [
2532
+ "ppv-lite86",
2533
+ "rand_core 0.6.4",
2534
+ ]
2535
+
2536
+ [[package]]
2537
+ name = "rand_chacha"
2538
+ version = "0.9.0"
2539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2540
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2541
+ dependencies = [
2542
+ "ppv-lite86",
2543
+ "rand_core 0.9.5",
2544
+ ]
2545
+
2546
+ [[package]]
2547
+ name = "rand_core"
2548
+ version = "0.3.1"
2549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2550
+ checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
2551
+ dependencies = [
2552
+ "rand_core 0.4.2",
2553
+ ]
2554
+
2555
+ [[package]]
2556
+ name = "rand_core"
2557
+ version = "0.4.2"
2558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2559
+ checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
2560
+
2561
+ [[package]]
2562
+ name = "rand_core"
2563
+ version = "0.6.4"
2564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2565
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2566
+ dependencies = [
2567
+ "getrandom 0.2.17",
2568
+ ]
2569
+
2570
+ [[package]]
2571
+ name = "rand_core"
2572
+ version = "0.9.5"
2573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2574
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2575
+ dependencies = [
2576
+ "getrandom 0.3.4",
2577
+ ]
2578
+
2579
+ [[package]]
2580
+ name = "rand_xorshift"
2581
+ version = "0.4.0"
2582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2583
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
2584
+ dependencies = [
2585
+ "rand_core 0.9.5",
2586
+ ]
2587
+
2588
+ [[package]]
2589
+ name = "rayon"
2590
+ version = "1.11.0"
2591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2592
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
2593
+ dependencies = [
2594
+ "either",
2595
+ "rayon-core",
2596
+ ]
2597
+
2598
+ [[package]]
2599
+ name = "rayon-cond"
2600
+ version = "0.4.0"
2601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2602
+ checksum = "2964d0cf57a3e7a06e8183d14a8b527195c706b7983549cd5462d5aa3747438f"
2603
+ dependencies = [
2604
+ "either",
2605
+ "itertools",
2606
+ "rayon",
2607
+ ]
2608
+
2609
+ [[package]]
2610
+ name = "rayon-core"
2611
+ version = "1.13.0"
2612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2613
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2614
+ dependencies = [
2615
+ "crossbeam-deque",
2616
+ "crossbeam-utils",
2617
+ ]
2618
+
2619
+ [[package]]
2620
+ name = "rdrand"
2621
+ version = "0.4.0"
2622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2623
+ checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
2624
+ dependencies = [
2625
+ "rand_core 0.3.1",
2626
+ ]
2627
+
2628
+ [[package]]
2629
+ name = "redox_syscall"
2630
+ version = "0.5.18"
2631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2632
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2633
+ dependencies = [
2634
+ "bitflags",
2635
+ ]
2636
+
2637
+ [[package]]
2638
+ name = "redox_users"
2639
+ version = "0.4.6"
2640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2641
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
2642
+ dependencies = [
2643
+ "getrandom 0.2.17",
2644
+ "libredox",
2645
+ "thiserror 1.0.69",
2646
+ ]
2647
+
2648
+ [[package]]
2649
+ name = "redox_users"
2650
+ version = "0.5.2"
2651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2652
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
2653
+ dependencies = [
2654
+ "getrandom 0.2.17",
2655
+ "libredox",
2656
+ "thiserror 2.0.18",
2657
+ ]
2658
+
2659
+ [[package]]
2660
+ name = "regex"
2661
+ version = "1.12.3"
2662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2663
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2664
+ dependencies = [
2665
+ "aho-corasick",
2666
+ "memchr",
2667
+ "regex-automata",
2668
+ "regex-syntax",
2669
+ ]
2670
+
2671
+ [[package]]
2672
+ name = "regex-automata"
2673
+ version = "0.4.14"
2674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2675
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2676
+ dependencies = [
2677
+ "aho-corasick",
2678
+ "memchr",
2679
+ "regex-syntax",
2680
+ ]
2681
+
2682
+ [[package]]
2683
+ name = "regex-lite"
2684
+ version = "0.1.9"
2685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2686
+ checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973"
2687
+
2688
+ [[package]]
2689
+ name = "regex-syntax"
2690
+ version = "0.8.10"
2691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2692
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
2693
+
2694
+ [[package]]
2695
+ name = "remove_dir_all"
2696
+ version = "0.5.3"
2697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2698
+ checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
2699
+ dependencies = [
2700
+ "winapi",
2701
+ ]
2702
+
2703
+ [[package]]
2704
+ name = "report-tool"
2705
+ version = "0.0.0"
2706
+ dependencies = [
2707
+ "clap",
2708
+ "divan-parser",
2709
+ "humansize",
2710
+ "log",
2711
+ "plotters",
2712
+ "plotters-backend",
2713
+ "regex",
2714
+ "serde",
2715
+ "serde_json",
2716
+ "wordchipper-cli-util",
2717
+ ]
2718
+
2719
+ [[package]]
2720
+ name = "reqwest"
2721
+ version = "0.12.28"
2722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2723
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2724
+ dependencies = [
2725
+ "base64 0.22.1",
2726
+ "bytes",
2727
+ "futures-core",
2728
+ "http",
2729
+ "http-body",
2730
+ "http-body-util",
2731
+ "hyper",
2732
+ "hyper-rustls",
2733
+ "hyper-tls",
2734
+ "hyper-util",
2735
+ "js-sys",
2736
+ "log",
2737
+ "native-tls",
2738
+ "percent-encoding",
2739
+ "pin-project-lite",
2740
+ "quinn",
2741
+ "rustls",
2742
+ "rustls-pki-types",
2743
+ "serde",
2744
+ "serde_json",
2745
+ "serde_urlencoded",
2746
+ "sync_wrapper",
2747
+ "tokio",
2748
+ "tokio-native-tls",
2749
+ "tokio-rustls",
2750
+ "tower",
2751
+ "tower-http",
2752
+ "tower-service",
2753
+ "url",
2754
+ "wasm-bindgen",
2755
+ "wasm-bindgen-futures",
2756
+ "web-sys",
2757
+ "webpki-roots 1.0.6",
2758
+ ]
2759
+
2760
+ [[package]]
2761
+ name = "ring"
2762
+ version = "0.17.14"
2763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2764
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2765
+ dependencies = [
2766
+ "cc",
2767
+ "cfg-if",
2768
+ "getrandom 0.2.17",
2769
+ "libc",
2770
+ "untrusted",
2771
+ "windows-sys 0.52.0",
2772
+ ]
2773
+
2774
+ [[package]]
2775
+ name = "ringbuffer"
2776
+ version = "0.16.0"
2777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2778
+ checksum = "57b0b88a509053cbfd535726dcaaceee631313cef981266119527a1d110f6d2b"
2779
+
2780
+ [[package]]
2781
+ name = "rmp"
2782
+ version = "0.8.15"
2783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2784
+ checksum = "4ba8be72d372b2c9b35542551678538b562e7cf86c3315773cae48dfbfe7790c"
2785
+ dependencies = [
2786
+ "num-traits",
2787
+ ]
2788
+
2789
+ [[package]]
2790
+ name = "rmp-serde"
2791
+ version = "1.3.1"
2792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2793
+ checksum = "72f81bee8c8ef9b577d1681a70ebbc962c232461e397b22c208c43c04b67a155"
2794
+ dependencies = [
2795
+ "rmp",
2796
+ "serde",
2797
+ ]
2798
+
2799
+ [[package]]
2800
+ name = "rustc-hash"
2801
+ version = "1.1.0"
2802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2803
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2804
+
2805
+ [[package]]
2806
+ name = "rustc-hash"
2807
+ version = "2.1.1"
2808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2809
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2810
+
2811
+ [[package]]
2812
+ name = "rustc-std-workspace-alloc"
2813
+ version = "1.0.1"
2814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2815
+ checksum = "f9d441c3b2ebf55cebf796bfdc265d67fa09db17b7bb6bd4be75c509e1e8fec3"
2816
+
2817
+ [[package]]
2818
+ name = "rustc_version"
2819
+ version = "0.4.1"
2820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2821
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2822
+ dependencies = [
2823
+ "semver",
2824
+ ]
2825
+
2826
+ [[package]]
2827
+ name = "rustix"
2828
+ version = "1.1.4"
2829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2830
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2831
+ dependencies = [
2832
+ "bitflags",
2833
+ "errno",
2834
+ "libc",
2835
+ "linux-raw-sys",
2836
+ "windows-sys 0.61.2",
2837
+ ]
2838
+
2839
+ [[package]]
2840
+ name = "rustls"
2841
+ version = "0.23.37"
2842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2843
+ checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
2844
+ dependencies = [
2845
+ "log",
2846
+ "once_cell",
2847
+ "ring",
2848
+ "rustls-pki-types",
2849
+ "rustls-webpki",
2850
+ "subtle",
2851
+ "zeroize",
2852
+ ]
2853
+
2854
+ [[package]]
2855
+ name = "rustls-pki-types"
2856
+ version = "1.14.0"
2857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2858
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
2859
+ dependencies = [
2860
+ "web-time",
2861
+ "zeroize",
2862
+ ]
2863
+
2864
+ [[package]]
2865
+ name = "rustls-webpki"
2866
+ version = "0.103.9"
2867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2868
+ checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
2869
+ dependencies = [
2870
+ "ring",
2871
+ "rustls-pki-types",
2872
+ "untrusted",
2873
+ ]
2874
+
2875
+ [[package]]
2876
+ name = "rustversion"
2877
+ version = "1.0.22"
2878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2879
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2880
+
2881
+ [[package]]
2882
+ name = "rusty-fork"
2883
+ version = "0.3.1"
2884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2885
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
2886
+ dependencies = [
2887
+ "fnv",
2888
+ "quick-error",
2889
+ "tempfile",
2890
+ "wait-timeout",
2891
+ ]
2892
+
2893
+ [[package]]
2894
+ name = "ryu"
2895
+ version = "1.0.23"
2896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2897
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2898
+
2899
+ [[package]]
2900
+ name = "same-file"
2901
+ version = "1.0.6"
2902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2903
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2904
+ dependencies = [
2905
+ "winapi-util",
2906
+ ]
2907
+
2908
+ [[package]]
2909
+ name = "sample-timer"
2910
+ version = "0.0.0"
2911
+ dependencies = [
2912
+ "arrow",
2913
+ "cfg-if",
2914
+ "clap",
2915
+ "humansize",
2916
+ "indicatif 0.18.4",
2917
+ "rand 0.9.2",
2918
+ "rayon",
2919
+ "similar",
2920
+ "strum",
2921
+ "tiktoken-rs",
2922
+ "tokenizers",
2923
+ "wordchipper",
2924
+ "wordchipper-data",
2925
+ ]
2926
+
2927
+ [[package]]
2928
+ name = "scc"
2929
+ version = "2.4.0"
2930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2931
+ checksum = "46e6f046b7fef48e2660c57ed794263155d713de679057f2d0c169bfc6e756cc"
2932
+ dependencies = [
2933
+ "sdd",
2934
+ ]
2935
+
2936
+ [[package]]
2937
+ name = "schannel"
2938
+ version = "0.1.28"
2939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2940
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
2941
+ dependencies = [
2942
+ "windows-sys 0.61.2",
2943
+ ]
2944
+
2945
+ [[package]]
2946
+ name = "scopeguard"
2947
+ version = "1.2.0"
2948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2949
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2950
+
2951
+ [[package]]
2952
+ name = "sdd"
2953
+ version = "3.0.10"
2954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2955
+ checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca"
2956
+
2957
+ [[package]]
2958
+ name = "security-framework"
2959
+ version = "3.7.0"
2960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2961
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2962
+ dependencies = [
2963
+ "bitflags",
2964
+ "core-foundation",
2965
+ "core-foundation-sys",
2966
+ "libc",
2967
+ "security-framework-sys",
2968
+ ]
2969
+
2970
+ [[package]]
2971
+ name = "security-framework-sys"
2972
+ version = "2.17.0"
2973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2974
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2975
+ dependencies = [
2976
+ "core-foundation-sys",
2977
+ "libc",
2978
+ ]
2979
+
2980
+ [[package]]
2981
+ name = "semver"
2982
+ version = "1.0.27"
2983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2984
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
2985
+
2986
+ [[package]]
2987
+ name = "seq-macro"
2988
+ version = "0.3.6"
2989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2990
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
2991
+
2992
+ [[package]]
2993
+ name = "serde"
2994
+ version = "1.0.228"
2995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2996
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2997
+ dependencies = [
2998
+ "serde_core",
2999
+ "serde_derive",
3000
+ ]
3001
+
3002
+ [[package]]
3003
+ name = "serde_core"
3004
+ version = "1.0.228"
3005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3006
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
3007
+ dependencies = [
3008
+ "serde_derive",
3009
+ ]
3010
+
3011
+ [[package]]
3012
+ name = "serde_derive"
3013
+ version = "1.0.228"
3014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3015
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
3016
+ dependencies = [
3017
+ "proc-macro2",
3018
+ "quote",
3019
+ "syn",
3020
+ ]
3021
+
3022
+ [[package]]
3023
+ name = "serde_json"
3024
+ version = "1.0.149"
3025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3026
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
3027
+ dependencies = [
3028
+ "itoa",
3029
+ "memchr",
3030
+ "serde",
3031
+ "serde_core",
3032
+ "zmij",
3033
+ ]
3034
+
3035
+ [[package]]
3036
+ name = "serde_urlencoded"
3037
+ version = "0.7.1"
3038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3039
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3040
+ dependencies = [
3041
+ "form_urlencoded",
3042
+ "itoa",
3043
+ "ryu",
3044
+ "serde",
3045
+ ]
3046
+
3047
+ [[package]]
3048
+ name = "serial_test"
3049
+ version = "3.4.0"
3050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3051
+ checksum = "911bd979bf1070a3f3aa7b691a3b3e9968f339ceeec89e08c280a8a22207a32f"
3052
+ dependencies = [
3053
+ "futures-executor",
3054
+ "futures-util",
3055
+ "log",
3056
+ "once_cell",
3057
+ "parking_lot",
3058
+ "scc",
3059
+ "serial_test_derive",
3060
+ ]
3061
+
3062
+ [[package]]
3063
+ name = "serial_test_derive"
3064
+ version = "3.4.0"
3065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3066
+ checksum = "0a7d91949b85b0d2fb687445e448b40d322b6b3e4af6b44a29b21d9a5f33e6d9"
3067
+ dependencies = [
3068
+ "proc-macro2",
3069
+ "quote",
3070
+ "syn",
3071
+ ]
3072
+
3073
+ [[package]]
3074
+ name = "shellexpand"
3075
+ version = "3.1.2"
3076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3077
+ checksum = "32824fab5e16e6c4d86dc1ba84489390419a39f97699852b66480bb87d297ed8"
3078
+ dependencies = [
3079
+ "dirs",
3080
+ ]
3081
+
3082
+ [[package]]
3083
+ name = "shlex"
3084
+ version = "1.3.0"
3085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3086
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3087
+
3088
+ [[package]]
3089
+ name = "simd-adler32"
3090
+ version = "0.3.8"
3091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3092
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
3093
+
3094
+ [[package]]
3095
+ name = "simdutf8"
3096
+ version = "0.1.5"
3097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3098
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
3099
+
3100
+ [[package]]
3101
+ name = "similar"
3102
+ version = "2.7.0"
3103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3104
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
3105
+
3106
+ [[package]]
3107
+ name = "slab"
3108
+ version = "0.4.12"
3109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3110
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
3111
+
3112
+ [[package]]
3113
+ name = "smallvec"
3114
+ version = "1.15.1"
3115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3116
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3117
+
3118
+ [[package]]
3119
+ name = "snap"
3120
+ version = "1.1.1"
3121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3122
+ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
3123
+
3124
+ [[package]]
3125
+ name = "socket2"
3126
+ version = "0.6.2"
3127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3128
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
3129
+ dependencies = [
3130
+ "libc",
3131
+ "windows-sys 0.60.2",
3132
+ ]
3133
+
3134
+ [[package]]
3135
+ name = "socks"
3136
+ version = "0.3.4"
3137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3138
+ checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b"
3139
+ dependencies = [
3140
+ "byteorder",
3141
+ "libc",
3142
+ "winapi",
3143
+ ]
3144
+
3145
+ [[package]]
3146
+ name = "spin"
3147
+ version = "0.9.8"
3148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3149
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
3150
+ dependencies = [
3151
+ "lock_api",
3152
+ ]
3153
+
3154
+ [[package]]
3155
+ name = "spm_precompiled"
3156
+ version = "0.1.4"
3157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3158
+ checksum = "5851699c4033c63636f7ea4cf7b7c1f1bf06d0cc03cfb42e711de5a5c46cf326"
3159
+ dependencies = [
3160
+ "base64 0.13.1",
3161
+ "nom",
3162
+ "serde",
3163
+ "unicode-segmentation",
3164
+ ]
3165
+
3166
+ [[package]]
3167
+ name = "stable_deref_trait"
3168
+ version = "1.2.1"
3169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3170
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3171
+
3172
+ [[package]]
3173
+ name = "static_assertions"
3174
+ version = "1.1.0"
3175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3176
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
3177
+
3178
+ [[package]]
3179
+ name = "statrs"
3180
+ version = "0.18.0"
3181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3182
+ checksum = "2a3fe7c28c6512e766b0874335db33c94ad7b8f9054228ae1c2abd47ce7d335e"
3183
+ dependencies = [
3184
+ "approx",
3185
+ "num-traits",
3186
+ ]
3187
+
3188
+ [[package]]
3189
+ name = "stderrlog"
3190
+ version = "0.6.0"
3191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3192
+ checksum = "61c910772f992ab17d32d6760e167d2353f4130ed50e796752689556af07dc6b"
3193
+ dependencies = [
3194
+ "chrono",
3195
+ "is-terminal",
3196
+ "log",
3197
+ "termcolor",
3198
+ "thread_local",
3199
+ ]
3200
+
3201
+ [[package]]
3202
+ name = "strsim"
3203
+ version = "0.11.1"
3204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3205
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3206
+
3207
+ [[package]]
3208
+ name = "strum"
3209
+ version = "0.27.2"
3210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3211
+ checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
3212
+ dependencies = [
3213
+ "strum_macros",
3214
+ ]
3215
+
3216
+ [[package]]
3217
+ name = "strum_macros"
3218
+ version = "0.27.2"
3219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3220
+ checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
3221
+ dependencies = [
3222
+ "heck",
3223
+ "proc-macro2",
3224
+ "quote",
3225
+ "syn",
3226
+ ]
3227
+
3228
+ [[package]]
3229
+ name = "subtle"
3230
+ version = "2.6.1"
3231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3232
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3233
+
3234
+ [[package]]
3235
+ name = "syn"
3236
+ version = "2.0.117"
3237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3238
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
3239
+ dependencies = [
3240
+ "proc-macro2",
3241
+ "quote",
3242
+ "unicode-ident",
3243
+ ]
3244
+
3245
+ [[package]]
3246
+ name = "sync_wrapper"
3247
+ version = "1.0.2"
3248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3249
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3250
+ dependencies = [
3251
+ "futures-core",
3252
+ ]
3253
+
3254
+ [[package]]
3255
+ name = "synstructure"
3256
+ version = "0.13.2"
3257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3258
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3259
+ dependencies = [
3260
+ "proc-macro2",
3261
+ "quote",
3262
+ "syn",
3263
+ ]
3264
+
3265
+ [[package]]
3266
+ name = "target-lexicon"
3267
+ version = "0.13.5"
3268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3269
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
3270
+
3271
+ [[package]]
3272
+ name = "tempdir"
3273
+ version = "0.3.7"
3274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3275
+ checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8"
3276
+ dependencies = [
3277
+ "rand 0.4.6",
3278
+ "remove_dir_all",
3279
+ ]
3280
+
3281
+ [[package]]
3282
+ name = "tempfile"
3283
+ version = "3.26.0"
3284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3285
+ checksum = "82a72c767771b47409d2345987fda8628641887d5466101319899796367354a0"
3286
+ dependencies = [
3287
+ "fastrand",
3288
+ "getrandom 0.4.1",
3289
+ "once_cell",
3290
+ "rustix",
3291
+ "windows-sys 0.61.2",
3292
+ ]
3293
+
3294
+ [[package]]
3295
+ name = "termcolor"
3296
+ version = "1.1.3"
3297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3298
+ checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
3299
+ dependencies = [
3300
+ "winapi-util",
3301
+ ]
3302
+
3303
+ [[package]]
3304
+ name = "terminal_size"
3305
+ version = "0.4.3"
3306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3307
+ checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0"
3308
+ dependencies = [
3309
+ "rustix",
3310
+ "windows-sys 0.60.2",
3311
+ ]
3312
+
3313
+ [[package]]
3314
+ name = "thiserror"
3315
+ version = "1.0.69"
3316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3317
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3318
+ dependencies = [
3319
+ "thiserror-impl 1.0.69",
3320
+ ]
3321
+
3322
+ [[package]]
3323
+ name = "thiserror"
3324
+ version = "2.0.18"
3325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3326
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
3327
+ dependencies = [
3328
+ "thiserror-impl 2.0.18",
3329
+ ]
3330
+
3331
+ [[package]]
3332
+ name = "thiserror-impl"
3333
+ version = "1.0.69"
3334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3335
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3336
+ dependencies = [
3337
+ "proc-macro2",
3338
+ "quote",
3339
+ "syn",
3340
+ ]
3341
+
3342
+ [[package]]
3343
+ name = "thiserror-impl"
3344
+ version = "2.0.18"
3345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3346
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
3347
+ dependencies = [
3348
+ "proc-macro2",
3349
+ "quote",
3350
+ "syn",
3351
+ ]
3352
+
3353
+ [[package]]
3354
+ name = "thread_local"
3355
+ version = "1.1.9"
3356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3357
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
3358
+ dependencies = [
3359
+ "cfg-if",
3360
+ ]
3361
+
3362
+ [[package]]
3363
+ name = "thrift"
3364
+ version = "0.17.0"
3365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3366
+ checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
3367
+ dependencies = [
3368
+ "byteorder",
3369
+ "integer-encoding",
3370
+ "ordered-float",
3371
+ ]
3372
+
3373
+ [[package]]
3374
+ name = "tiktoken-rs"
3375
+ version = "0.9.1"
3376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3377
+ checksum = "3a19830747d9034cd9da43a60eaa8e552dfda7712424aebf187b7a60126bae0d"
3378
+ dependencies = [
3379
+ "anyhow",
3380
+ "base64 0.22.1",
3381
+ "bstr",
3382
+ "fancy-regex",
3383
+ "lazy_static",
3384
+ "regex",
3385
+ "rustc-hash 1.1.0",
3386
+ ]
3387
+
3388
+ [[package]]
3389
+ name = "tiny-keccak"
3390
+ version = "2.0.2"
3391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3392
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
3393
+ dependencies = [
3394
+ "crunchy",
3395
+ ]
3396
+
3397
+ [[package]]
3398
+ name = "tinystr"
3399
+ version = "0.8.2"
3400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3401
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
3402
+ dependencies = [
3403
+ "displaydoc",
3404
+ "zerovec",
3405
+ ]
3406
+
3407
+ [[package]]
3408
+ name = "tinyvec"
3409
+ version = "1.10.0"
3410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3411
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
3412
+ dependencies = [
3413
+ "tinyvec_macros",
3414
+ ]
3415
+
3416
+ [[package]]
3417
+ name = "tinyvec_macros"
3418
+ version = "0.1.1"
3419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3420
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3421
+
3422
+ [[package]]
3423
+ name = "tokenizers"
3424
+ version = "0.22.2"
3425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3426
+ checksum = "b238e22d44a15349529690fb07bd645cf58149a1b1e44d6cb5bd1641ff1a6223"
3427
+ dependencies = [
3428
+ "ahash",
3429
+ "aho-corasick",
3430
+ "compact_str",
3431
+ "dary_heap",
3432
+ "derive_builder",
3433
+ "esaxx-rs",
3434
+ "getrandom 0.3.4",
3435
+ "hf-hub",
3436
+ "indicatif 0.18.4",
3437
+ "itertools",
3438
+ "log",
3439
+ "macro_rules_attribute",
3440
+ "monostate",
3441
+ "onig",
3442
+ "paste",
3443
+ "rand 0.9.2",
3444
+ "rayon",
3445
+ "rayon-cond",
3446
+ "regex",
3447
+ "regex-syntax",
3448
+ "serde",
3449
+ "serde_json",
3450
+ "spm_precompiled",
3451
+ "thiserror 2.0.18",
3452
+ "unicode-normalization-alignments",
3453
+ "unicode-segmentation",
3454
+ "unicode_categories",
3455
+ ]
3456
+
3457
+ [[package]]
3458
+ name = "tokio"
3459
+ version = "1.49.0"
3460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3461
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
3462
+ dependencies = [
3463
+ "bytes",
3464
+ "libc",
3465
+ "mio",
3466
+ "pin-project-lite",
3467
+ "socket2",
3468
+ "windows-sys 0.61.2",
3469
+ ]
3470
+
3471
+ [[package]]
3472
+ name = "tokio-native-tls"
3473
+ version = "0.3.1"
3474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3475
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
3476
+ dependencies = [
3477
+ "native-tls",
3478
+ "tokio",
3479
+ ]
3480
+
3481
+ [[package]]
3482
+ name = "tokio-rustls"
3483
+ version = "0.26.4"
3484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3485
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3486
+ dependencies = [
3487
+ "rustls",
3488
+ "tokio",
3489
+ ]
3490
+
3491
+ [[package]]
3492
+ name = "toml_datetime"
3493
+ version = "1.0.0+spec-1.1.0"
3494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3495
+ checksum = "32c2555c699578a4f59f0cc68e5116c8d7cabbd45e1409b989d4be085b53f13e"
3496
+ dependencies = [
3497
+ "serde_core",
3498
+ ]
3499
+
3500
+ [[package]]
3501
+ name = "toml_edit"
3502
+ version = "0.25.4+spec-1.1.0"
3503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3504
+ checksum = "7193cbd0ce53dc966037f54351dbbcf0d5a642c7f0038c382ef9e677ce8c13f2"
3505
+ dependencies = [
3506
+ "indexmap",
3507
+ "toml_datetime",
3508
+ "toml_parser",
3509
+ "winnow",
3510
+ ]
3511
+
3512
+ [[package]]
3513
+ name = "toml_parser"
3514
+ version = "1.0.9+spec-1.1.0"
3515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3516
+ checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4"
3517
+ dependencies = [
3518
+ "winnow",
3519
+ ]
3520
+
3521
+ [[package]]
3522
+ name = "tower"
3523
+ version = "0.5.3"
3524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3525
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3526
+ dependencies = [
3527
+ "futures-core",
3528
+ "futures-util",
3529
+ "pin-project-lite",
3530
+ "sync_wrapper",
3531
+ "tokio",
3532
+ "tower-layer",
3533
+ "tower-service",
3534
+ ]
3535
+
3536
+ [[package]]
3537
+ name = "tower-http"
3538
+ version = "0.6.8"
3539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3540
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
3541
+ dependencies = [
3542
+ "bitflags",
3543
+ "bytes",
3544
+ "futures-util",
3545
+ "http",
3546
+ "http-body",
3547
+ "iri-string",
3548
+ "pin-project-lite",
3549
+ "tower",
3550
+ "tower-layer",
3551
+ "tower-service",
3552
+ ]
3553
+
3554
+ [[package]]
3555
+ name = "tower-layer"
3556
+ version = "0.3.3"
3557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3558
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3559
+
3560
+ [[package]]
3561
+ name = "tower-service"
3562
+ version = "0.3.3"
3563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3564
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3565
+
3566
+ [[package]]
3567
+ name = "tracing"
3568
+ version = "0.1.44"
3569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3570
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3571
+ dependencies = [
3572
+ "pin-project-lite",
3573
+ "tracing-attributes",
3574
+ "tracing-core",
3575
+ ]
3576
+
3577
+ [[package]]
3578
+ name = "tracing-attributes"
3579
+ version = "0.1.31"
3580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3581
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
3582
+ dependencies = [
3583
+ "proc-macro2",
3584
+ "quote",
3585
+ "syn",
3586
+ ]
3587
+
3588
+ [[package]]
3589
+ name = "tracing-core"
3590
+ version = "0.1.36"
3591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3592
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3593
+ dependencies = [
3594
+ "once_cell",
3595
+ ]
3596
+
3597
+ [[package]]
3598
+ name = "try-lock"
3599
+ version = "0.2.5"
3600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3601
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3602
+
3603
+ [[package]]
3604
+ name = "twox-hash"
3605
+ version = "2.1.2"
3606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3607
+ checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
3608
+
3609
+ [[package]]
3610
+ name = "unarray"
3611
+ version = "0.1.4"
3612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3613
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
3614
+
3615
+ [[package]]
3616
+ name = "unicode-general-category"
3617
+ version = "1.1.0"
3618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3619
+ checksum = "0b993bddc193ae5bd0d623b49ec06ac3e9312875fdae725a975c51db1cc1677f"
3620
+
3621
+ [[package]]
3622
+ name = "unicode-ident"
3623
+ version = "1.0.24"
3624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3625
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
3626
+
3627
+ [[package]]
3628
+ name = "unicode-normalization"
3629
+ version = "0.1.25"
3630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3631
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
3632
+ dependencies = [
3633
+ "tinyvec",
3634
+ ]
3635
+
3636
+ [[package]]
3637
+ name = "unicode-normalization-alignments"
3638
+ version = "0.1.12"
3639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3640
+ checksum = "43f613e4fa046e69818dd287fdc4bc78175ff20331479dab6e1b0f98d57062de"
3641
+ dependencies = [
3642
+ "smallvec",
3643
+ ]
3644
+
3645
+ [[package]]
3646
+ name = "unicode-segmentation"
3647
+ version = "1.12.0"
3648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3649
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3650
+
3651
+ [[package]]
3652
+ name = "unicode-width"
3653
+ version = "0.2.2"
3654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3655
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
3656
+
3657
+ [[package]]
3658
+ name = "unicode-xid"
3659
+ version = "0.2.6"
3660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3661
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
3662
+
3663
+ [[package]]
3664
+ name = "unicode_categories"
3665
+ version = "0.1.1"
3666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3667
+ checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
3668
+
3669
+ [[package]]
3670
+ name = "unit-prefix"
3671
+ version = "0.5.2"
3672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3673
+ checksum = "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3"
3674
+
3675
+ [[package]]
3676
+ name = "untrusted"
3677
+ version = "0.9.0"
3678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3679
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3680
+
3681
+ [[package]]
3682
+ name = "ureq"
3683
+ version = "2.12.1"
3684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3685
+ checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
3686
+ dependencies = [
3687
+ "base64 0.22.1",
3688
+ "flate2",
3689
+ "log",
3690
+ "once_cell",
3691
+ "rustls",
3692
+ "rustls-pki-types",
3693
+ "serde",
3694
+ "serde_json",
3695
+ "socks",
3696
+ "url",
3697
+ "webpki-roots 0.26.11",
3698
+ ]
3699
+
3700
+ [[package]]
3701
+ name = "url"
3702
+ version = "2.5.8"
3703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3704
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3705
+ dependencies = [
3706
+ "form_urlencoded",
3707
+ "idna",
3708
+ "percent-encoding",
3709
+ "serde",
3710
+ ]
3711
+
3712
+ [[package]]
3713
+ name = "utf8_iter"
3714
+ version = "1.0.4"
3715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3716
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3717
+
3718
+ [[package]]
3719
+ name = "utf8parse"
3720
+ version = "0.2.2"
3721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3722
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3723
+
3724
+ [[package]]
3725
+ name = "vcpkg"
3726
+ version = "0.2.15"
3727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3728
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3729
+
3730
+ [[package]]
3731
+ name = "version_check"
3732
+ version = "0.9.5"
3733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3734
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3735
+
3736
+ [[package]]
3737
+ name = "wait-timeout"
3738
+ version = "0.2.1"
3739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3740
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
3741
+ dependencies = [
3742
+ "libc",
3743
+ ]
3744
+
3745
+ [[package]]
3746
+ name = "walkdir"
3747
+ version = "2.5.0"
3748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3749
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3750
+ dependencies = [
3751
+ "same-file",
3752
+ "winapi-util",
3753
+ ]
3754
+
3755
+ [[package]]
3756
+ name = "want"
3757
+ version = "0.3.1"
3758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3759
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3760
+ dependencies = [
3761
+ "try-lock",
3762
+ ]
3763
+
3764
+ [[package]]
3765
+ name = "wasi"
3766
+ version = "0.11.1+wasi-snapshot-preview1"
3767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3768
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3769
+
3770
+ [[package]]
3771
+ name = "wasip2"
3772
+ version = "1.0.2+wasi-0.2.9"
3773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3774
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
3775
+ dependencies = [
3776
+ "wit-bindgen",
3777
+ ]
3778
+
3779
+ [[package]]
3780
+ name = "wasip3"
3781
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
3782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3783
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
3784
+ dependencies = [
3785
+ "wit-bindgen",
3786
+ ]
3787
+
3788
+ [[package]]
3789
+ name = "wasm-bindgen"
3790
+ version = "0.2.113"
3791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3792
+ checksum = "60722a937f594b7fde9adb894d7c092fc1bb6612897c46368d18e7a20208eff2"
3793
+ dependencies = [
3794
+ "cfg-if",
3795
+ "once_cell",
3796
+ "rustversion",
3797
+ "wasm-bindgen-macro",
3798
+ "wasm-bindgen-shared",
3799
+ ]
3800
+
3801
+ [[package]]
3802
+ name = "wasm-bindgen-futures"
3803
+ version = "0.4.63"
3804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3805
+ checksum = "8a89f4650b770e4521aa6573724e2aed4704372151bd0de9d16a3bbabb87441a"
3806
+ dependencies = [
3807
+ "cfg-if",
3808
+ "futures-util",
3809
+ "js-sys",
3810
+ "once_cell",
3811
+ "wasm-bindgen",
3812
+ "web-sys",
3813
+ ]
3814
+
3815
+ [[package]]
3816
+ name = "wasm-bindgen-macro"
3817
+ version = "0.2.113"
3818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3819
+ checksum = "0fac8c6395094b6b91c4af293f4c79371c163f9a6f56184d2c9a85f5a95f3950"
3820
+ dependencies = [
3821
+ "quote",
3822
+ "wasm-bindgen-macro-support",
3823
+ ]
3824
+
3825
+ [[package]]
3826
+ name = "wasm-bindgen-macro-support"
3827
+ version = "0.2.113"
3828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3829
+ checksum = "ab3fabce6159dc20728033842636887e4877688ae94382766e00b180abac9d60"
3830
+ dependencies = [
3831
+ "bumpalo",
3832
+ "proc-macro2",
3833
+ "quote",
3834
+ "syn",
3835
+ "wasm-bindgen-shared",
3836
+ ]
3837
+
3838
+ [[package]]
3839
+ name = "wasm-bindgen-shared"
3840
+ version = "0.2.113"
3841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3842
+ checksum = "de0e091bdb824da87dc01d967388880d017a0a9bc4f3bdc0d86ee9f9336e3bb5"
3843
+ dependencies = [
3844
+ "unicode-ident",
3845
+ ]
3846
+
3847
+ [[package]]
3848
+ name = "wasm-bindgen-test"
3849
+ version = "0.3.63"
3850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3851
+ checksum = "9e6fc7a6f61926fa909ee570d4ca194e264545ebbbb4ffd63ac07ba921bff447"
3852
+ dependencies = [
3853
+ "async-trait",
3854
+ "cast",
3855
+ "js-sys",
3856
+ "libm",
3857
+ "minicov",
3858
+ "nu-ansi-term",
3859
+ "num-traits",
3860
+ "oorandom",
3861
+ "serde",
3862
+ "serde_json",
3863
+ "wasm-bindgen",
3864
+ "wasm-bindgen-futures",
3865
+ "wasm-bindgen-test-macro",
3866
+ "wasm-bindgen-test-shared",
3867
+ ]
3868
+
3869
+ [[package]]
3870
+ name = "wasm-bindgen-test-macro"
3871
+ version = "0.3.63"
3872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3873
+ checksum = "f745a117245c232859f203d6c8d52c72d4cfc42de7e668c147ca6b3e45f1157e"
3874
+ dependencies = [
3875
+ "proc-macro2",
3876
+ "quote",
3877
+ "syn",
3878
+ ]
3879
+
3880
+ [[package]]
3881
+ name = "wasm-bindgen-test-shared"
3882
+ version = "0.2.113"
3883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3884
+ checksum = "1f88e7ae201cc7c291da857532eb1c8712e89494e76ec3967b9805221388e938"
3885
+
3886
+ [[package]]
3887
+ name = "wasm-encoder"
3888
+ version = "0.244.0"
3889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3890
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
3891
+ dependencies = [
3892
+ "leb128fmt",
3893
+ "wasmparser",
3894
+ ]
3895
+
3896
+ [[package]]
3897
+ name = "wasm-metadata"
3898
+ version = "0.244.0"
3899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3900
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
3901
+ dependencies = [
3902
+ "anyhow",
3903
+ "indexmap",
3904
+ "wasm-encoder",
3905
+ "wasmparser",
3906
+ ]
3907
+
3908
+ [[package]]
3909
+ name = "wasmparser"
3910
+ version = "0.244.0"
3911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3912
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
3913
+ dependencies = [
3914
+ "bitflags",
3915
+ "hashbrown 0.15.5",
3916
+ "indexmap",
3917
+ "semver",
3918
+ ]
3919
+
3920
+ [[package]]
3921
+ name = "web-sys"
3922
+ version = "0.3.90"
3923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3924
+ checksum = "705eceb4ce901230f8625bd1d665128056ccbe4b7408faa625eec1ba80f59a97"
3925
+ dependencies = [
3926
+ "js-sys",
3927
+ "wasm-bindgen",
3928
+ ]
3929
+
3930
+ [[package]]
3931
+ name = "web-time"
3932
+ version = "1.1.0"
3933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3934
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3935
+ dependencies = [
3936
+ "js-sys",
3937
+ "wasm-bindgen",
3938
+ ]
3939
+
3940
+ [[package]]
3941
+ name = "webpki-roots"
3942
+ version = "0.26.11"
3943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3944
+ checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
3945
+ dependencies = [
3946
+ "webpki-roots 1.0.6",
3947
+ ]
3948
+
3949
+ [[package]]
3950
+ name = "webpki-roots"
3951
+ version = "1.0.6"
3952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3953
+ checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
3954
+ dependencies = [
3955
+ "rustls-pki-types",
3956
+ ]
3957
+
3958
+ [[package]]
3959
+ name = "winapi"
3960
+ version = "0.3.9"
3961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3962
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3963
+ dependencies = [
3964
+ "winapi-i686-pc-windows-gnu",
3965
+ "winapi-x86_64-pc-windows-gnu",
3966
+ ]
3967
+
3968
+ [[package]]
3969
+ name = "winapi-i686-pc-windows-gnu"
3970
+ version = "0.4.0"
3971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3972
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3973
+
3974
+ [[package]]
3975
+ name = "winapi-util"
3976
+ version = "0.1.11"
3977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3978
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3979
+ dependencies = [
3980
+ "windows-sys 0.61.2",
3981
+ ]
3982
+
3983
+ [[package]]
3984
+ name = "winapi-x86_64-pc-windows-gnu"
3985
+ version = "0.4.0"
3986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3987
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3988
+
3989
+ [[package]]
3990
+ name = "windows-core"
3991
+ version = "0.62.2"
3992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3993
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3994
+ dependencies = [
3995
+ "windows-implement",
3996
+ "windows-interface",
3997
+ "windows-link",
3998
+ "windows-result",
3999
+ "windows-strings",
4000
+ ]
4001
+
4002
+ [[package]]
4003
+ name = "windows-implement"
4004
+ version = "0.60.2"
4005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4006
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
4007
+ dependencies = [
4008
+ "proc-macro2",
4009
+ "quote",
4010
+ "syn",
4011
+ ]
4012
+
4013
+ [[package]]
4014
+ name = "windows-interface"
4015
+ version = "0.59.3"
4016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4017
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
4018
+ dependencies = [
4019
+ "proc-macro2",
4020
+ "quote",
4021
+ "syn",
4022
+ ]
4023
+
4024
+ [[package]]
4025
+ name = "windows-link"
4026
+ version = "0.2.1"
4027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4028
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
4029
+
4030
+ [[package]]
4031
+ name = "windows-result"
4032
+ version = "0.4.1"
4033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4034
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
4035
+ dependencies = [
4036
+ "windows-link",
4037
+ ]
4038
+
4039
+ [[package]]
4040
+ name = "windows-strings"
4041
+ version = "0.5.1"
4042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4043
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
4044
+ dependencies = [
4045
+ "windows-link",
4046
+ ]
4047
+
4048
+ [[package]]
4049
+ name = "windows-sys"
4050
+ version = "0.52.0"
4051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4052
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4053
+ dependencies = [
4054
+ "windows-targets 0.52.6",
4055
+ ]
4056
+
4057
+ [[package]]
4058
+ name = "windows-sys"
4059
+ version = "0.59.0"
4060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4061
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4062
+ dependencies = [
4063
+ "windows-targets 0.52.6",
4064
+ ]
4065
+
4066
+ [[package]]
4067
+ name = "windows-sys"
4068
+ version = "0.60.2"
4069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4070
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4071
+ dependencies = [
4072
+ "windows-targets 0.53.5",
4073
+ ]
4074
+
4075
+ [[package]]
4076
+ name = "windows-sys"
4077
+ version = "0.61.2"
4078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4079
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
4080
+ dependencies = [
4081
+ "windows-link",
4082
+ ]
4083
+
4084
+ [[package]]
4085
+ name = "windows-targets"
4086
+ version = "0.52.6"
4087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4088
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4089
+ dependencies = [
4090
+ "windows_aarch64_gnullvm 0.52.6",
4091
+ "windows_aarch64_msvc 0.52.6",
4092
+ "windows_i686_gnu 0.52.6",
4093
+ "windows_i686_gnullvm 0.52.6",
4094
+ "windows_i686_msvc 0.52.6",
4095
+ "windows_x86_64_gnu 0.52.6",
4096
+ "windows_x86_64_gnullvm 0.52.6",
4097
+ "windows_x86_64_msvc 0.52.6",
4098
+ ]
4099
+
4100
+ [[package]]
4101
+ name = "windows-targets"
4102
+ version = "0.53.5"
4103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4104
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
4105
+ dependencies = [
4106
+ "windows-link",
4107
+ "windows_aarch64_gnullvm 0.53.1",
4108
+ "windows_aarch64_msvc 0.53.1",
4109
+ "windows_i686_gnu 0.53.1",
4110
+ "windows_i686_gnullvm 0.53.1",
4111
+ "windows_i686_msvc 0.53.1",
4112
+ "windows_x86_64_gnu 0.53.1",
4113
+ "windows_x86_64_gnullvm 0.53.1",
4114
+ "windows_x86_64_msvc 0.53.1",
4115
+ ]
4116
+
4117
+ [[package]]
4118
+ name = "windows_aarch64_gnullvm"
4119
+ version = "0.52.6"
4120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4121
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4122
+
4123
+ [[package]]
4124
+ name = "windows_aarch64_gnullvm"
4125
+ version = "0.53.1"
4126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4127
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
4128
+
4129
+ [[package]]
4130
+ name = "windows_aarch64_msvc"
4131
+ version = "0.52.6"
4132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4133
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4134
+
4135
+ [[package]]
4136
+ name = "windows_aarch64_msvc"
4137
+ version = "0.53.1"
4138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4139
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
4140
+
4141
+ [[package]]
4142
+ name = "windows_i686_gnu"
4143
+ version = "0.52.6"
4144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4145
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4146
+
4147
+ [[package]]
4148
+ name = "windows_i686_gnu"
4149
+ version = "0.53.1"
4150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4151
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
4152
+
4153
+ [[package]]
4154
+ name = "windows_i686_gnullvm"
4155
+ version = "0.52.6"
4156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4157
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4158
+
4159
+ [[package]]
4160
+ name = "windows_i686_gnullvm"
4161
+ version = "0.53.1"
4162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4163
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
4164
+
4165
+ [[package]]
4166
+ name = "windows_i686_msvc"
4167
+ version = "0.52.6"
4168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4169
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4170
+
4171
+ [[package]]
4172
+ name = "windows_i686_msvc"
4173
+ version = "0.53.1"
4174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4175
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
4176
+
4177
+ [[package]]
4178
+ name = "windows_x86_64_gnu"
4179
+ version = "0.52.6"
4180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4181
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4182
+
4183
+ [[package]]
4184
+ name = "windows_x86_64_gnu"
4185
+ version = "0.53.1"
4186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4187
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
4188
+
4189
+ [[package]]
4190
+ name = "windows_x86_64_gnullvm"
4191
+ version = "0.52.6"
4192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4193
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4194
+
4195
+ [[package]]
4196
+ name = "windows_x86_64_gnullvm"
4197
+ version = "0.53.1"
4198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4199
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
4200
+
4201
+ [[package]]
4202
+ name = "windows_x86_64_msvc"
4203
+ version = "0.52.6"
4204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4205
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4206
+
4207
+ [[package]]
4208
+ name = "windows_x86_64_msvc"
4209
+ version = "0.53.1"
4210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4211
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
4212
+
4213
+ [[package]]
4214
+ name = "winnow"
4215
+ version = "0.7.15"
4216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4217
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
4218
+ dependencies = [
4219
+ "memchr",
4220
+ ]
4221
+
4222
+ [[package]]
4223
+ name = "wit-bindgen"
4224
+ version = "0.51.0"
4225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4226
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
4227
+ dependencies = [
4228
+ "wit-bindgen-rust-macro",
4229
+ ]
4230
+
4231
+ [[package]]
4232
+ name = "wit-bindgen-core"
4233
+ version = "0.51.0"
4234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4235
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
4236
+ dependencies = [
4237
+ "anyhow",
4238
+ "heck",
4239
+ "wit-parser",
4240
+ ]
4241
+
4242
+ [[package]]
4243
+ name = "wit-bindgen-rust"
4244
+ version = "0.51.0"
4245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4246
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
4247
+ dependencies = [
4248
+ "anyhow",
4249
+ "heck",
4250
+ "indexmap",
4251
+ "prettyplease",
4252
+ "syn",
4253
+ "wasm-metadata",
4254
+ "wit-bindgen-core",
4255
+ "wit-component",
4256
+ ]
4257
+
4258
+ [[package]]
4259
+ name = "wit-bindgen-rust-macro"
4260
+ version = "0.51.0"
4261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4262
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
4263
+ dependencies = [
4264
+ "anyhow",
4265
+ "prettyplease",
4266
+ "proc-macro2",
4267
+ "quote",
4268
+ "syn",
4269
+ "wit-bindgen-core",
4270
+ "wit-bindgen-rust",
4271
+ ]
4272
+
4273
+ [[package]]
4274
+ name = "wit-component"
4275
+ version = "0.244.0"
4276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4277
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
4278
+ dependencies = [
4279
+ "anyhow",
4280
+ "bitflags",
4281
+ "indexmap",
4282
+ "log",
4283
+ "serde",
4284
+ "serde_derive",
4285
+ "serde_json",
4286
+ "wasm-encoder",
4287
+ "wasm-metadata",
4288
+ "wasmparser",
4289
+ "wit-parser",
4290
+ ]
4291
+
4292
+ [[package]]
4293
+ name = "wit-parser"
4294
+ version = "0.244.0"
4295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4296
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
4297
+ dependencies = [
4298
+ "anyhow",
4299
+ "id-arena",
4300
+ "indexmap",
4301
+ "log",
4302
+ "semver",
4303
+ "serde",
4304
+ "serde_derive",
4305
+ "serde_json",
4306
+ "unicode-xid",
4307
+ "wasmparser",
4308
+ ]
4309
+
4310
+ [[package]]
4311
+ name = "wordchipper"
4312
+ version = "0.9.0"
4313
+ dependencies = [
4314
+ "aho-corasick",
4315
+ "base64 0.22.1",
4316
+ "cfg-if",
4317
+ "document-features",
4318
+ "fancy-regex",
4319
+ "foldhash 0.2.0",
4320
+ "hashbrown 0.16.1",
4321
+ "inventory",
4322
+ "log",
4323
+ "logos",
4324
+ "num-traits",
4325
+ "once_cell",
4326
+ "proptest",
4327
+ "rayon",
4328
+ "regex",
4329
+ "regex-automata",
4330
+ "ringbuffer",
4331
+ "serde_json",
4332
+ "serial_test",
4333
+ "spin",
4334
+ "strum",
4335
+ "tempdir",
4336
+ "thiserror 2.0.18",
4337
+ "tiktoken-rs",
4338
+ "tokenizers",
4339
+ "tracing",
4340
+ "unicode-general-category",
4341
+ "wordchipper-disk-cache",
4342
+ ]
4343
+
4344
+ [[package]]
4345
+ name = "wordchipper-bench"
4346
+ version = "0.0.0"
4347
+ dependencies = [
4348
+ "arrow",
4349
+ "bpe-openai",
4350
+ "clap",
4351
+ "codspeed-divan-compat",
4352
+ "divan-parser",
4353
+ "log",
4354
+ "rayon",
4355
+ "serde",
4356
+ "serde_json",
4357
+ "tiktoken-rs",
4358
+ "tokenizers",
4359
+ "wordchipper",
4360
+ "wordchipper-data",
4361
+ ]
4362
+
4363
+ [[package]]
4364
+ name = "wordchipper-cli"
4365
+ version = "0.9.0"
4366
+ dependencies = [
4367
+ "clap",
4368
+ "clap-markdown",
4369
+ "log",
4370
+ "rayon",
4371
+ "wordchipper",
4372
+ "wordchipper-cli-util",
4373
+ "wordchipper-training",
4374
+ ]
4375
+
4376
+ [[package]]
4377
+ name = "wordchipper-cli-util"
4378
+ version = "0.9.0"
4379
+ dependencies = [
4380
+ "arrow",
4381
+ "clap",
4382
+ "log",
4383
+ "parquet",
4384
+ "stderrlog",
4385
+ "wordchipper",
4386
+ ]
4387
+
4388
+ [[package]]
4389
+ name = "wordchipper-data"
4390
+ version = "0.0.0"
4391
+ dependencies = [
4392
+ "downloader",
4393
+ "parquet",
4394
+ "shellexpand",
4395
+ "tempdir",
4396
+ ]
4397
+
4398
+ [[package]]
4399
+ name = "wordchipper-disk-cache"
4400
+ version = "0.9.0"
4401
+ dependencies = [
4402
+ "directories-next",
4403
+ "downloader",
4404
+ "serial_test",
4405
+ ]
4406
+
4407
+ [[package]]
4408
+ name = "wordchipper-python"
4409
+ version = "0.9.0"
4410
+ dependencies = [
4411
+ "pyo3",
4412
+ "wordchipper",
4413
+ ]
4414
+
4415
+ [[package]]
4416
+ name = "wordchipper-training"
4417
+ version = "0.9.0"
4418
+ dependencies = [
4419
+ "compact_str",
4420
+ "dary_heap",
4421
+ "log",
4422
+ "num-traits",
4423
+ "tracing",
4424
+ "wordchipper",
4425
+ ]
4426
+
4427
+ [[package]]
4428
+ name = "wordchipper-wasm"
4429
+ version = "0.9.0"
4430
+ dependencies = [
4431
+ "base64 0.22.1",
4432
+ "js-sys",
4433
+ "wasm-bindgen",
4434
+ "wasm-bindgen-test",
4435
+ "wordchipper",
4436
+ ]
4437
+
4438
+ [[package]]
4439
+ name = "writeable"
4440
+ version = "0.6.2"
4441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4442
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
4443
+
4444
+ [[package]]
4445
+ name = "yoke"
4446
+ version = "0.8.1"
4447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4448
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
4449
+ dependencies = [
4450
+ "stable_deref_trait",
4451
+ "yoke-derive",
4452
+ "zerofrom",
4453
+ ]
4454
+
4455
+ [[package]]
4456
+ name = "yoke-derive"
4457
+ version = "0.8.1"
4458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4459
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
4460
+ dependencies = [
4461
+ "proc-macro2",
4462
+ "quote",
4463
+ "syn",
4464
+ "synstructure",
4465
+ ]
4466
+
4467
+ [[package]]
4468
+ name = "zerocopy"
4469
+ version = "0.8.39"
4470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4471
+ checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
4472
+ dependencies = [
4473
+ "zerocopy-derive",
4474
+ ]
4475
+
4476
+ [[package]]
4477
+ name = "zerocopy-derive"
4478
+ version = "0.8.39"
4479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4480
+ checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
4481
+ dependencies = [
4482
+ "proc-macro2",
4483
+ "quote",
4484
+ "syn",
4485
+ ]
4486
+
4487
+ [[package]]
4488
+ name = "zerofrom"
4489
+ version = "0.1.6"
4490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4491
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
4492
+ dependencies = [
4493
+ "zerofrom-derive",
4494
+ ]
4495
+
4496
+ [[package]]
4497
+ name = "zerofrom-derive"
4498
+ version = "0.1.6"
4499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4500
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4501
+ dependencies = [
4502
+ "proc-macro2",
4503
+ "quote",
4504
+ "syn",
4505
+ "synstructure",
4506
+ ]
4507
+
4508
+ [[package]]
4509
+ name = "zeroize"
4510
+ version = "1.8.2"
4511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4512
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
4513
+
4514
+ [[package]]
4515
+ name = "zerotrie"
4516
+ version = "0.2.3"
4517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4518
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
4519
+ dependencies = [
4520
+ "displaydoc",
4521
+ "yoke",
4522
+ "zerofrom",
4523
+ ]
4524
+
4525
+ [[package]]
4526
+ name = "zerovec"
4527
+ version = "0.11.5"
4528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4529
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
4530
+ dependencies = [
4531
+ "yoke",
4532
+ "zerofrom",
4533
+ "zerovec-derive",
4534
+ ]
4535
+
4536
+ [[package]]
4537
+ name = "zerovec-derive"
4538
+ version = "0.11.2"
4539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4540
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
4541
+ dependencies = [
4542
+ "proc-macro2",
4543
+ "quote",
4544
+ "syn",
4545
+ ]
4546
+
4547
+ [[package]]
4548
+ name = "zlib-rs"
4549
+ version = "0.6.2"
4550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4551
+ checksum = "c745c48e1007337ed136dc99df34128b9faa6ed542d80a1c673cf55a6d7236c8"
4552
+
4553
+ [[package]]
4554
+ name = "zmij"
4555
+ version = "1.0.21"
4556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4557
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
4558
+
4559
+ [[package]]
4560
+ name = "zstd"
4561
+ version = "0.13.3"
4562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4563
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
4564
+ dependencies = [
4565
+ "zstd-safe",
4566
+ ]
4567
+
4568
+ [[package]]
4569
+ name = "zstd-safe"
4570
+ version = "7.2.4"
4571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4572
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
4573
+ dependencies = [
4574
+ "zstd-sys",
4575
+ ]
4576
+
4577
+ [[package]]
4578
+ name = "zstd-sys"
4579
+ version = "2.0.16+zstd.1.5.7"
4580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4581
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
4582
+ dependencies = [
4583
+ "cc",
4584
+ "pkg-config",
4585
+ ]