escapepod 0.6.2__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 (119) hide show
  1. escapepod-0.6.2/Cargo.lock +3756 -0
  2. escapepod-0.6.2/Cargo.toml +104 -0
  3. escapepod-0.6.2/LICENSE +21 -0
  4. escapepod-0.6.2/PKG-INFO +63 -0
  5. escapepod-0.6.2/README.md +40 -0
  6. escapepod-0.6.2/crates/escapepod-pod5/Cargo.toml +31 -0
  7. escapepod-0.6.2/crates/escapepod-pod5/README.md +159 -0
  8. escapepod-0.6.2/crates/escapepod-pod5/benches/io_hot_paths.rs +396 -0
  9. escapepod-0.6.2/crates/escapepod-pod5/examples/bulk_io_bench.rs +123 -0
  10. escapepod-0.6.2/crates/escapepod-pod5/examples/mmap_vs_read.rs +77 -0
  11. escapepod-0.6.2/crates/escapepod-pod5/examples/par_io_bench.rs +90 -0
  12. escapepod-0.6.2/crates/escapepod-pod5/src/arrow_helpers.rs +753 -0
  13. escapepod-0.6.2/crates/escapepod-pod5/src/arrow_ipc.rs +1006 -0
  14. escapepod-0.6.2/crates/escapepod-pod5/src/compression/mod.rs +10 -0
  15. escapepod-0.6.2/crates/escapepod-pod5/src/compression/svb16/mod.rs +410 -0
  16. escapepod-0.6.2/crates/escapepod-pod5/src/compression/svb16/simd_avx2.rs +262 -0
  17. escapepod-0.6.2/crates/escapepod-pod5/src/compression/svb16/simd_ssse3.rs +427 -0
  18. escapepod-0.6.2/crates/escapepod-pod5/src/compression/svb16/tables.rs +185 -0
  19. escapepod-0.6.2/crates/escapepod-pod5/src/compression/vbz.rs +305 -0
  20. escapepod-0.6.2/crates/escapepod-pod5/src/error.rs +97 -0
  21. escapepod-0.6.2/crates/escapepod-pod5/src/fields.rs +291 -0
  22. escapepod-0.6.2/crates/escapepod-pod5/src/flatbuffers_gen/footer_generated.rs +621 -0
  23. escapepod-0.6.2/crates/escapepod-pod5/src/flatbuffers_gen/mod.rs +4 -0
  24. escapepod-0.6.2/crates/escapepod-pod5/src/footer.rs +438 -0
  25. escapepod-0.6.2/crates/escapepod-pod5/src/lib.rs +79 -0
  26. escapepod-0.6.2/crates/escapepod-pod5/src/merge.rs +403 -0
  27. escapepod-0.6.2/crates/escapepod-pod5/src/operations/csv_utils.rs +82 -0
  28. escapepod-0.6.2/crates/escapepod-pod5/src/operations/filter.rs +1029 -0
  29. escapepod-0.6.2/crates/escapepod-pod5/src/operations/mod.rs +18 -0
  30. escapepod-0.6.2/crates/escapepod-pod5/src/operations/repack.rs +200 -0
  31. escapepod-0.6.2/crates/escapepod-pod5/src/operations/split.rs +124 -0
  32. escapepod-0.6.2/crates/escapepod-pod5/src/operations/subset.rs +154 -0
  33. escapepod-0.6.2/crates/escapepod-pod5/src/progress.rs +13 -0
  34. escapepod-0.6.2/crates/escapepod-pod5/src/reader/file_reader.rs +1641 -0
  35. escapepod-0.6.2/crates/escapepod-pod5/src/reader/mod.rs +10 -0
  36. escapepod-0.6.2/crates/escapepod-pod5/src/reader/read_index.rs +37 -0
  37. escapepod-0.6.2/crates/escapepod-pod5/src/reader/read_iter.rs +128 -0
  38. escapepod-0.6.2/crates/escapepod-pod5/src/reader/signal_extractor.rs +66 -0
  39. escapepod-0.6.2/crates/escapepod-pod5/src/schema/mod.rs +9 -0
  40. escapepod-0.6.2/crates/escapepod-pod5/src/schema/reads.rs +92 -0
  41. escapepod-0.6.2/crates/escapepod-pod5/src/schema/run_info.rs +106 -0
  42. escapepod-0.6.2/crates/escapepod-pod5/src/schema/signal.rs +70 -0
  43. escapepod-0.6.2/crates/escapepod-pod5/src/types.rs +395 -0
  44. escapepod-0.6.2/crates/escapepod-pod5/src/utils/dictionary.rs +72 -0
  45. escapepod-0.6.2/crates/escapepod-pod5/src/utils/mod.rs +16 -0
  46. escapepod-0.6.2/crates/escapepod-pod5/src/utils/pod5_assembler.rs +158 -0
  47. escapepod-0.6.2/crates/escapepod-pod5/src/utils/run_info.rs +73 -0
  48. escapepod-0.6.2/crates/escapepod-pod5/src/utils/statistics.rs +181 -0
  49. escapepod-0.6.2/crates/escapepod-pod5/src/utils/table_builders.rs +896 -0
  50. escapepod-0.6.2/crates/escapepod-pod5/src/utils/uuid.rs +68 -0
  51. escapepod-0.6.2/crates/escapepod-pod5/src/writer/atomic.rs +432 -0
  52. escapepod-0.6.2/crates/escapepod-pod5/src/writer/file_writer.rs +1608 -0
  53. escapepod-0.6.2/crates/escapepod-pod5/src/writer/mod.rs +7 -0
  54. escapepod-0.6.2/crates/escapepod-pod5/tests/common/mod.rs +106 -0
  55. escapepod-0.6.2/crates/escapepod-pod5/tests/test_atomic_write.rs +206 -0
  56. escapepod-0.6.2/crates/escapepod-pod5/tests/test_field_fidelity.rs +360 -0
  57. escapepod-0.6.2/crates/escapepod-pod5/tests/test_merge_integration.rs +218 -0
  58. escapepod-0.6.2/crates/escapepod-pod5/tests/test_operations_integration.rs +170 -0
  59. escapepod-0.6.2/crates/escapepod-pod5/tests/test_reader_integration.rs +199 -0
  60. escapepod-0.6.2/crates/escapepod-pod5/tests/test_signal_roundtrip.rs +193 -0
  61. escapepod-0.6.2/crates/escapepod-pod5/tests/test_writer_integration.rs +221 -0
  62. escapepod-0.6.2/crates/escapepod-python/Cargo.toml +20 -0
  63. escapepod-0.6.2/crates/escapepod-python/LICENSE +21 -0
  64. escapepod-0.6.2/crates/escapepod-python/README.md +40 -0
  65. escapepod-0.6.2/crates/escapepod-python/build.rs +11 -0
  66. escapepod-0.6.2/crates/escapepod-python/escapepod.pyi +406 -0
  67. escapepod-0.6.2/crates/escapepod-python/py.typed +0 -0
  68. escapepod-0.6.2/crates/escapepod-python/src/dataset.rs +567 -0
  69. escapepod-0.6.2/crates/escapepod-python/src/error.rs +21 -0
  70. escapepod-0.6.2/crates/escapepod-python/src/lib.rs +34 -0
  71. escapepod-0.6.2/crates/escapepod-python/src/read_data.rs +661 -0
  72. escapepod-0.6.2/crates/escapepod-python/src/reader.rs +507 -0
  73. escapepod-0.6.2/crates/escapepod-python/src/signal.rs +166 -0
  74. escapepod-0.6.2/crates/escapepod-python/src/writer.rs +471 -0
  75. escapepod-0.6.2/crates/escapepod-signal/Cargo.toml +48 -0
  76. escapepod-0.6.2/crates/escapepod-signal/README.md +159 -0
  77. escapepod-0.6.2/crates/escapepod-signal/benches/hot_paths.rs +287 -0
  78. escapepod-0.6.2/crates/escapepod-signal/benches/hot_paths_gpu.rs +74 -0
  79. escapepod-0.6.2/crates/escapepod-signal/examples/bench_reads_by_ids.rs +173 -0
  80. escapepod-0.6.2/crates/escapepod-signal/examples/dtw_example.rs +139 -0
  81. escapepod-0.6.2/crates/escapepod-signal/examples/write_pod5.rs +109 -0
  82. escapepod-0.6.2/crates/escapepod-signal/src/dtw/cuda/kernel.rs +131 -0
  83. escapepod-0.6.2/crates/escapepod-signal/src/dtw/cuda/llr_detect_block_kernel.rs +278 -0
  84. escapepod-0.6.2/crates/escapepod-signal/src/dtw/cuda/llr_detect_kernel.rs +243 -0
  85. escapepod-0.6.2/crates/escapepod-signal/src/dtw/cuda/mod.rs +790 -0
  86. escapepod-0.6.2/crates/escapepod-signal/src/dtw/cuda/svb16_kernel.rs +81 -0
  87. escapepod-0.6.2/crates/escapepod-signal/src/dtw/cuda/svm_kernels.rs +121 -0
  88. escapepod-0.6.2/crates/escapepod-signal/src/dtw/cuda/ttest_fp_kernel.rs +271 -0
  89. escapepod-0.6.2/crates/escapepod-signal/src/dtw/distance.rs +1218 -0
  90. escapepod-0.6.2/crates/escapepod-signal/src/dtw/fingerprint.rs +451 -0
  91. escapepod-0.6.2/crates/escapepod-signal/src/dtw/kernel.rs +198 -0
  92. escapepod-0.6.2/crates/escapepod-signal/src/dtw/mod.rs +28 -0
  93. escapepod-0.6.2/crates/escapepod-signal/src/lib.rs +47 -0
  94. escapepod-0.6.2/crates/escapepod-signal/src/resquiggle/adaptive_dp.rs +672 -0
  95. escapepod-0.6.2/crates/escapepod-signal/src/resquiggle/bands.rs +335 -0
  96. escapepod-0.6.2/crates/escapepod-signal/src/resquiggle/dp/buffers.rs +53 -0
  97. escapepod-0.6.2/crates/escapepod-signal/src/resquiggle/dp/fill.rs +287 -0
  98. escapepod-0.6.2/crates/escapepod-signal/src/resquiggle/dp/mod.rs +613 -0
  99. escapepod-0.6.2/crates/escapepod-signal/src/resquiggle/dp/traceback.rs +36 -0
  100. escapepod-0.6.2/crates/escapepod-signal/src/resquiggle/dp_raw_penalty.rs +340 -0
  101. escapepod-0.6.2/crates/escapepod-signal/src/resquiggle/kmer_table.rs +351 -0
  102. escapepod-0.6.2/crates/escapepod-signal/src/resquiggle/mod.rs +26 -0
  103. escapepod-0.6.2/crates/escapepod-signal/src/resquiggle/refine.rs +477 -0
  104. escapepod-0.6.2/crates/escapepod-signal/src/resquiggle/rescale.rs +757 -0
  105. escapepod-0.6.2/crates/escapepod-signal/src/resquiggle/types.rs +206 -0
  106. escapepod-0.6.2/crates/escapepod-signal/src/segmentation/llr.rs +514 -0
  107. escapepod-0.6.2/crates/escapepod-signal/src/segmentation/mod.rs +63 -0
  108. escapepod-0.6.2/crates/escapepod-signal/src/segmentation/normalize.rs +462 -0
  109. escapepod-0.6.2/crates/escapepod-signal/src/segmentation/ttest.rs +660 -0
  110. escapepod-0.6.2/crates/escapepod-signal/src/stats.rs +115 -0
  111. escapepod-0.6.2/crates/escapepod-signal/tests/gpu_dtw.rs +123 -0
  112. escapepod-0.6.2/crates/escapepod-signal/tests/gpu_llr_detect.rs +146 -0
  113. escapepod-0.6.2/crates/escapepod-signal/tests/gpu_svb16.rs +112 -0
  114. escapepod-0.6.2/crates/escapepod-signal/tests/integration_tests.rs +301 -0
  115. escapepod-0.6.2/crates/escapepod-signal/tests/test_resquiggle.rs +361 -0
  116. escapepod-0.6.2/crates/escapepod-signal/tests/test_resquiggle_pipeline.rs +172 -0
  117. escapepod-0.6.2/escapepod.pyi +406 -0
  118. escapepod-0.6.2/py.typed +0 -0
  119. escapepod-0.6.2/pyproject.toml +35 -0
@@ -0,0 +1,3756 @@
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
+ "version_check",
22
+ "zerocopy",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "aho-corasick"
27
+ version = "1.1.4"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
30
+ dependencies = [
31
+ "memchr",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "alloca"
36
+ version = "0.4.0"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
39
+ dependencies = [
40
+ "cc",
41
+ ]
42
+
43
+ [[package]]
44
+ name = "allocator-api2"
45
+ version = "0.2.21"
46
+ source = "registry+https://github.com/rust-lang/crates.io-index"
47
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
48
+
49
+ [[package]]
50
+ name = "android_system_properties"
51
+ version = "0.1.5"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
54
+ dependencies = [
55
+ "libc",
56
+ ]
57
+
58
+ [[package]]
59
+ name = "anes"
60
+ version = "0.1.6"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
63
+
64
+ [[package]]
65
+ name = "ansi-str"
66
+ version = "0.9.0"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "060de1453b69f46304b28274f382132f4e72c55637cf362920926a70d090890d"
69
+ dependencies = [
70
+ "ansitok",
71
+ ]
72
+
73
+ [[package]]
74
+ name = "ansitok"
75
+ version = "0.3.0"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "c0a8acea8c2f1c60f0a92a8cd26bf96ca97db56f10bbcab238bbe0cceba659ee"
78
+ dependencies = [
79
+ "nom 7.1.3",
80
+ "vte",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "anstream"
85
+ version = "1.0.0"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
88
+ dependencies = [
89
+ "anstyle",
90
+ "anstyle-parse",
91
+ "anstyle-query",
92
+ "anstyle-wincon",
93
+ "colorchoice",
94
+ "is_terminal_polyfill",
95
+ "utf8parse",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "anstyle"
100
+ version = "1.0.14"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
103
+
104
+ [[package]]
105
+ name = "anstyle-parse"
106
+ version = "1.0.0"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
109
+ dependencies = [
110
+ "utf8parse",
111
+ ]
112
+
113
+ [[package]]
114
+ name = "anstyle-query"
115
+ version = "1.1.5"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
118
+ dependencies = [
119
+ "windows-sys 0.61.2",
120
+ ]
121
+
122
+ [[package]]
123
+ name = "anstyle-wincon"
124
+ version = "3.0.11"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
127
+ dependencies = [
128
+ "anstyle",
129
+ "once_cell_polyfill",
130
+ "windows-sys 0.61.2",
131
+ ]
132
+
133
+ [[package]]
134
+ name = "anyhow"
135
+ version = "1.0.104"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
138
+
139
+ [[package]]
140
+ name = "anymap3"
141
+ version = "1.1.0"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "fb5dfbc6d8d2675589ccbe4d0fd61df2419075625f8c1a62325e718e2b0049f9"
144
+
145
+ [[package]]
146
+ name = "approx"
147
+ version = "0.5.1"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
150
+ dependencies = [
151
+ "num-traits",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "arrayvec"
156
+ version = "0.7.6"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
159
+
160
+ [[package]]
161
+ name = "arrow"
162
+ version = "59.1.0"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "b952ca5a8046ad741b60f142d6eca4aeebcad615694202bc64c5341f23e32c5b"
165
+ dependencies = [
166
+ "arrow-arith",
167
+ "arrow-array",
168
+ "arrow-buffer",
169
+ "arrow-cast",
170
+ "arrow-data",
171
+ "arrow-ipc",
172
+ "arrow-ord",
173
+ "arrow-row",
174
+ "arrow-schema",
175
+ "arrow-select",
176
+ "arrow-string",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "arrow-arith"
181
+ version = "59.1.0"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "64a13b8d3008c4e9063c597a08f46446fe3fd5789277127672d6c0bdbb43b1ff"
184
+ dependencies = [
185
+ "arrow-array",
186
+ "arrow-buffer",
187
+ "arrow-data",
188
+ "arrow-schema",
189
+ "chrono",
190
+ "num-traits",
191
+ ]
192
+
193
+ [[package]]
194
+ name = "arrow-array"
195
+ version = "59.1.0"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "9486151b2f0785bafc6fa04fc5c99fcb4495455662e58787ea32eaaed33c4192"
198
+ dependencies = [
199
+ "ahash",
200
+ "arrow-buffer",
201
+ "arrow-data",
202
+ "arrow-schema",
203
+ "chrono",
204
+ "half",
205
+ "hashbrown 0.17.1",
206
+ "num-complex",
207
+ "num-integer",
208
+ "num-traits",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "arrow-buffer"
213
+ version = "59.1.0"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "c4776577a87794bfdf0b4e90e2ea12454fa7738ea2823c4be5b9d1851da7b434"
216
+ dependencies = [
217
+ "bytes",
218
+ "half",
219
+ "num-bigint",
220
+ "num-traits",
221
+ ]
222
+
223
+ [[package]]
224
+ name = "arrow-cast"
225
+ version = "59.1.0"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "a9ad451ce4f98710828a455b96991b8f031deb2e67f5fcad6773f017e4a69c3a"
228
+ dependencies = [
229
+ "arrow-array",
230
+ "arrow-buffer",
231
+ "arrow-data",
232
+ "arrow-ord",
233
+ "arrow-schema",
234
+ "arrow-select",
235
+ "atoi",
236
+ "base64",
237
+ "chrono",
238
+ "half",
239
+ "lexical-core",
240
+ "num-traits",
241
+ "ryu",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "arrow-data"
246
+ version = "59.1.0"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "b38fe43e2e8704360f1464e6e8cc4fc381ef02cc4fb0192afa8df1aaa0115c66"
249
+ dependencies = [
250
+ "arrow-buffer",
251
+ "arrow-schema",
252
+ "half",
253
+ "num-integer",
254
+ "num-traits",
255
+ ]
256
+
257
+ [[package]]
258
+ name = "arrow-ipc"
259
+ version = "59.1.0"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "29dac499fcbc6ba74ee0324057821d381929a48526a3966bd9dffb44aa06d98c"
262
+ dependencies = [
263
+ "arrow-array",
264
+ "arrow-buffer",
265
+ "arrow-data",
266
+ "arrow-schema",
267
+ "arrow-select",
268
+ "flatbuffers",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "arrow-ord"
273
+ version = "59.1.0"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "0e13dbdc2a9c053c10c7baa6e30faee04a180aa7ce88e471835850ce37abd20b"
276
+ dependencies = [
277
+ "arrow-array",
278
+ "arrow-buffer",
279
+ "arrow-data",
280
+ "arrow-schema",
281
+ "arrow-select",
282
+ ]
283
+
284
+ [[package]]
285
+ name = "arrow-row"
286
+ version = "59.1.0"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "4d5a1f8c733d15260b305683472ee8ad89c62cbd706703ca873b90d051b41592"
289
+ dependencies = [
290
+ "arrow-array",
291
+ "arrow-buffer",
292
+ "arrow-data",
293
+ "arrow-schema",
294
+ "half",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "arrow-schema"
299
+ version = "59.1.0"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "d9e4969dc350d571766247143ab36a5187d095d3d3690970408bc630d47c69e5"
302
+
303
+ [[package]]
304
+ name = "arrow-select"
305
+ version = "59.1.0"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "402770dba90865359d98d1ef92ef16e23d75c0cca9c2c880c8a05468b7743bf9"
308
+ dependencies = [
309
+ "ahash",
310
+ "arrow-array",
311
+ "arrow-buffer",
312
+ "arrow-data",
313
+ "arrow-schema",
314
+ "num-traits",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "arrow-string"
319
+ version = "59.1.0"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "a2b0afbb8b9016700938291123df30838b89decc3213dba00852021988b170d3"
322
+ dependencies = [
323
+ "arrow-array",
324
+ "arrow-buffer",
325
+ "arrow-data",
326
+ "arrow-schema",
327
+ "arrow-select",
328
+ "memchr",
329
+ "num-traits",
330
+ "regex",
331
+ "regex-syntax",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "atoi"
336
+ version = "2.0.0"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
339
+ dependencies = [
340
+ "num-traits",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "autocfg"
345
+ version = "1.5.1"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
348
+
349
+ [[package]]
350
+ name = "base64"
351
+ version = "0.22.1"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
354
+
355
+ [[package]]
356
+ name = "base64ct"
357
+ version = "1.8.3"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
360
+
361
+ [[package]]
362
+ name = "bit-set"
363
+ version = "0.10.0"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "09ec2f926cc3060f09db9ebc5b52823d85268d24bb917e472c0c4bea35780a7d"
366
+ dependencies = [
367
+ "bit-vec",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "bit-vec"
372
+ version = "0.9.1"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "b71798fca2c1fe1086445a7258a4bc81e6e49dcd24c8d0dd9a1e57395b603f51"
375
+ dependencies = [
376
+ "serde",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "bitflags"
381
+ version = "2.13.0"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
384
+
385
+ [[package]]
386
+ name = "block-buffer"
387
+ version = "0.12.1"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
390
+ dependencies = [
391
+ "hybrid-array",
392
+ ]
393
+
394
+ [[package]]
395
+ name = "block2"
396
+ version = "0.6.2"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
399
+ dependencies = [
400
+ "objc2",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "bstr"
405
+ version = "1.13.0"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "1f7dc094d718f2e1c1559ad110e27eeaae14a5465d3d56dd6dbd793079fbd530"
408
+ dependencies = [
409
+ "memchr",
410
+ "regex-automata",
411
+ "serde_core",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "bumpalo"
416
+ version = "3.20.3"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
419
+
420
+ [[package]]
421
+ name = "bytecount"
422
+ version = "0.6.9"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
425
+
426
+ [[package]]
427
+ name = "byteorder"
428
+ version = "1.5.0"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
431
+
432
+ [[package]]
433
+ name = "bytes"
434
+ version = "1.11.1"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
437
+
438
+ [[package]]
439
+ name = "cast"
440
+ version = "0.3.0"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
443
+
444
+ [[package]]
445
+ name = "cc"
446
+ version = "1.2.64"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "dad887fd958be91b5098c0248def011f4523ab786cd411be668777e55063501f"
449
+ dependencies = [
450
+ "find-msvc-tools",
451
+ "jobserver",
452
+ "libc",
453
+ "shlex",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "cfg-if"
458
+ version = "1.0.4"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
461
+
462
+ [[package]]
463
+ name = "cfg_aliases"
464
+ version = "0.2.2"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
467
+
468
+ [[package]]
469
+ name = "chacha20"
470
+ version = "0.10.0"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
473
+ dependencies = [
474
+ "cfg-if",
475
+ "cpufeatures",
476
+ "rand_core 0.10.1",
477
+ ]
478
+
479
+ [[package]]
480
+ name = "chrono"
481
+ version = "0.4.45"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
484
+ dependencies = [
485
+ "iana-time-zone",
486
+ "num-traits",
487
+ "windows-link",
488
+ ]
489
+
490
+ [[package]]
491
+ name = "ciborium"
492
+ version = "0.2.2"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
495
+ dependencies = [
496
+ "ciborium-io",
497
+ "ciborium-ll",
498
+ "serde",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "ciborium-io"
503
+ version = "0.2.2"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
506
+
507
+ [[package]]
508
+ name = "ciborium-ll"
509
+ version = "0.2.2"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
512
+ dependencies = [
513
+ "ciborium-io",
514
+ "half",
515
+ ]
516
+
517
+ [[package]]
518
+ name = "clap"
519
+ version = "4.6.2"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "dd059f9da4f5c36b3787f65d38ccaab1cc315f07b01f89abc8359ee6a8205011"
522
+ dependencies = [
523
+ "clap_builder",
524
+ "clap_derive",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "clap_builder"
529
+ version = "4.6.2"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
532
+ dependencies = [
533
+ "anstream",
534
+ "anstyle",
535
+ "clap_lex",
536
+ "strsim",
537
+ ]
538
+
539
+ [[package]]
540
+ name = "clap_derive"
541
+ version = "4.6.1"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
544
+ dependencies = [
545
+ "heck",
546
+ "proc-macro2",
547
+ "quote",
548
+ "syn 2.0.117",
549
+ ]
550
+
551
+ [[package]]
552
+ name = "clap_lex"
553
+ version = "1.1.0"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
556
+
557
+ [[package]]
558
+ name = "colorchoice"
559
+ version = "1.0.5"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
562
+
563
+ [[package]]
564
+ name = "console"
565
+ version = "0.16.4"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "4fe5f465a4f6fee88fad41b85d990f84c835335e85b5d9e6e63e0d06d28cba7c"
568
+ dependencies = [
569
+ "encode_unicode",
570
+ "libc",
571
+ "unicode-width",
572
+ "windows-sys 0.61.2",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "const-oid"
577
+ version = "0.10.2"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
580
+
581
+ [[package]]
582
+ name = "const-random"
583
+ version = "0.1.18"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
586
+ dependencies = [
587
+ "const-random-macro",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "const-random-macro"
592
+ version = "0.1.16"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
595
+ dependencies = [
596
+ "getrandom 0.2.17",
597
+ "once_cell",
598
+ "tiny-keccak",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "core-foundation"
603
+ version = "0.10.1"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
606
+ dependencies = [
607
+ "core-foundation-sys",
608
+ "libc",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "core-foundation-sys"
613
+ version = "0.8.7"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
616
+
617
+ [[package]]
618
+ name = "cpufeatures"
619
+ version = "0.3.0"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
622
+ dependencies = [
623
+ "libc",
624
+ ]
625
+
626
+ [[package]]
627
+ name = "crc32fast"
628
+ version = "1.5.0"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
631
+ dependencies = [
632
+ "cfg-if",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "criterion"
637
+ version = "0.8.2"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
640
+ dependencies = [
641
+ "alloca",
642
+ "anes",
643
+ "cast",
644
+ "ciborium",
645
+ "clap",
646
+ "criterion-plot",
647
+ "itertools 0.13.0",
648
+ "num-traits",
649
+ "oorandom",
650
+ "page_size",
651
+ "plotters",
652
+ "rayon",
653
+ "regex",
654
+ "serde",
655
+ "serde_json",
656
+ "tinytemplate",
657
+ "walkdir",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "criterion-plot"
662
+ version = "0.8.2"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
665
+ dependencies = [
666
+ "cast",
667
+ "itertools 0.13.0",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "crossbeam-channel"
672
+ version = "0.5.15"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
675
+ dependencies = [
676
+ "crossbeam-utils",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "crossbeam-deque"
681
+ version = "0.8.6"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
684
+ dependencies = [
685
+ "crossbeam-epoch",
686
+ "crossbeam-utils",
687
+ ]
688
+
689
+ [[package]]
690
+ name = "crossbeam-epoch"
691
+ version = "0.9.18"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
694
+ dependencies = [
695
+ "crossbeam-utils",
696
+ ]
697
+
698
+ [[package]]
699
+ name = "crossbeam-utils"
700
+ version = "0.8.21"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
703
+
704
+ [[package]]
705
+ name = "crunchy"
706
+ version = "0.2.4"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
709
+
710
+ [[package]]
711
+ name = "crypto-common"
712
+ version = "0.2.2"
713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
714
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
715
+ dependencies = [
716
+ "hybrid-array",
717
+ ]
718
+
719
+ [[package]]
720
+ name = "csv"
721
+ version = "1.4.0"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
724
+ dependencies = [
725
+ "csv-core",
726
+ "itoa",
727
+ "ryu",
728
+ "serde_core",
729
+ ]
730
+
731
+ [[package]]
732
+ name = "csv-core"
733
+ version = "0.1.13"
734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
735
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
736
+ dependencies = [
737
+ "memchr",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "ctrlc"
742
+ version = "3.5.2"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "e0b1fab2ae45819af2d0731d60f2afe17227ebb1a1538a236da84c93e9a60162"
745
+ dependencies = [
746
+ "dispatch2",
747
+ "nix",
748
+ "windows-sys 0.61.2",
749
+ ]
750
+
751
+ [[package]]
752
+ name = "cudarc"
753
+ version = "0.19.8"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "42310153e06cf4cd532901f7096beb27504d681736a29ee90728ae4e2d93b2a8"
756
+ dependencies = [
757
+ "libloading",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "der"
762
+ version = "0.8.0"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "71fd89660b2dc699704064e59e9dba0147b903e85319429e131620d022be411b"
765
+ dependencies = [
766
+ "pem-rfc7468",
767
+ "zeroize",
768
+ ]
769
+
770
+ [[package]]
771
+ name = "derive-new"
772
+ version = "0.7.0"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "2cdc8d50f426189eef89dac62fabfa0abb27d5cc008f25bf4156a0203325becc"
775
+ dependencies = [
776
+ "proc-macro2",
777
+ "quote",
778
+ "syn 2.0.117",
779
+ ]
780
+
781
+ [[package]]
782
+ name = "digest"
783
+ version = "0.11.3"
784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
785
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
786
+ dependencies = [
787
+ "block-buffer",
788
+ "const-oid",
789
+ "crypto-common",
790
+ ]
791
+
792
+ [[package]]
793
+ name = "dispatch2"
794
+ version = "0.3.1"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
797
+ dependencies = [
798
+ "bitflags",
799
+ "block2",
800
+ "libc",
801
+ "objc2",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "downcast-rs"
806
+ version = "2.0.2"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "117240f60069e65410b3ae1bb213295bd828f707b5bec6596a1afc8793ce0cbc"
809
+
810
+ [[package]]
811
+ name = "dyn-clone"
812
+ version = "1.0.20"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
815
+
816
+ [[package]]
817
+ name = "dyn-eq"
818
+ version = "0.1.3"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "5c2d035d21af5cde1a6f5c7b444a5bf963520a9f142e5d06931178433d7d5388"
821
+
822
+ [[package]]
823
+ name = "dyn-hash"
824
+ version = "1.0.0"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "5fdab65db9274e0168143841eb8f864a0a21f8b1b8d2ba6812bbe6024346e99e"
827
+
828
+ [[package]]
829
+ name = "either"
830
+ version = "1.16.0"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
833
+
834
+ [[package]]
835
+ name = "encode_unicode"
836
+ version = "1.0.0"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
839
+
840
+ [[package]]
841
+ name = "equivalent"
842
+ version = "1.0.2"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
845
+
846
+ [[package]]
847
+ name = "erased-serde"
848
+ version = "0.4.10"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "d2add8a07dd6a8d93ff627029c51de145e12686fbc36ecb298ac22e74cf02dec"
851
+ dependencies = [
852
+ "serde",
853
+ "serde_core",
854
+ "typeid",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "errno"
859
+ version = "0.3.14"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
862
+ dependencies = [
863
+ "libc",
864
+ "windows-sys 0.61.2",
865
+ ]
866
+
867
+ [[package]]
868
+ name = "escapepod-cli"
869
+ version = "0.6.2"
870
+ dependencies = [
871
+ "anyhow",
872
+ "arrow",
873
+ "bstr",
874
+ "chrono",
875
+ "clap",
876
+ "csv",
877
+ "ctrlc",
878
+ "escapepod-demux",
879
+ "escapepod-pod5",
880
+ "escapepod-signal",
881
+ "flate2",
882
+ "indicatif",
883
+ "libc",
884
+ "noodles-bam",
885
+ "noodles-bgzf",
886
+ "noodles-core",
887
+ "noodles-csi",
888
+ "noodles-sam",
889
+ "owo-colors",
890
+ "parquet",
891
+ "rayon",
892
+ "serde",
893
+ "serde_json",
894
+ "sha2",
895
+ "tabled",
896
+ "tempfile",
897
+ "tracing",
898
+ "tracing-subscriber",
899
+ "ureq",
900
+ "uuid",
901
+ "walkdir",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "escapepod-demux"
906
+ version = "0.6.2"
907
+ dependencies = [
908
+ "anyhow",
909
+ "criterion",
910
+ "cudarc",
911
+ "escapepod-pod5",
912
+ "escapepod-signal",
913
+ "indicatif",
914
+ "linfa",
915
+ "linfa-svm",
916
+ "ndarray 0.17.2",
917
+ "ort",
918
+ "rand 0.10.2",
919
+ "rayon",
920
+ "serde",
921
+ "serde_json",
922
+ "tempfile",
923
+ "thiserror 2.0.19",
924
+ "tract-onnx",
925
+ "uuid",
926
+ ]
927
+
928
+ [[package]]
929
+ name = "escapepod-pod5"
930
+ version = "0.6.2"
931
+ dependencies = [
932
+ "anyhow",
933
+ "arrow",
934
+ "byteorder",
935
+ "criterion",
936
+ "csv",
937
+ "flatbuffers",
938
+ "memmap2",
939
+ "rayon",
940
+ "tempfile",
941
+ "thiserror 2.0.19",
942
+ "uuid",
943
+ "zstd",
944
+ ]
945
+
946
+ [[package]]
947
+ name = "escapepod-python"
948
+ version = "0.6.2"
949
+ dependencies = [
950
+ "escapepod-signal",
951
+ "numpy",
952
+ "pyo3",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "escapepod-signal"
957
+ version = "0.6.2"
958
+ dependencies = [
959
+ "anyhow",
960
+ "arrow",
961
+ "criterion",
962
+ "cudarc",
963
+ "escapepod-pod5",
964
+ "flate2",
965
+ "ndarray 0.17.2",
966
+ "noodles-bam",
967
+ "noodles-sam",
968
+ "parquet",
969
+ "rand 0.10.2",
970
+ "rayon",
971
+ "tempfile",
972
+ "thiserror 2.0.19",
973
+ "uuid",
974
+ ]
975
+
976
+ [[package]]
977
+ name = "fastrand"
978
+ version = "2.4.1"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
981
+
982
+ [[package]]
983
+ name = "filetime"
984
+ version = "0.2.29"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
987
+ dependencies = [
988
+ "cfg-if",
989
+ "libc",
990
+ ]
991
+
992
+ [[package]]
993
+ name = "find-msvc-tools"
994
+ version = "0.1.9"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
997
+
998
+ [[package]]
999
+ name = "flatbuffers"
1000
+ version = "25.12.19"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
1003
+ dependencies = [
1004
+ "bitflags",
1005
+ "rustc_version",
1006
+ ]
1007
+
1008
+ [[package]]
1009
+ name = "flate2"
1010
+ version = "1.1.9"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
1013
+ dependencies = [
1014
+ "crc32fast",
1015
+ "miniz_oxide",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "float-ord"
1020
+ version = "0.3.2"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "8ce81f49ae8a0482e4c55ea62ebbd7e5a686af544c00b9d090bba3ff9be97b3d"
1023
+
1024
+ [[package]]
1025
+ name = "fnv"
1026
+ version = "1.0.7"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1029
+
1030
+ [[package]]
1031
+ name = "foldhash"
1032
+ version = "0.1.5"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1035
+
1036
+ [[package]]
1037
+ name = "foldhash"
1038
+ version = "0.2.0"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
1041
+
1042
+ [[package]]
1043
+ name = "foreign-types"
1044
+ version = "0.3.2"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
1047
+ dependencies = [
1048
+ "foreign-types-shared",
1049
+ ]
1050
+
1051
+ [[package]]
1052
+ name = "foreign-types-shared"
1053
+ version = "0.1.1"
1054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
1056
+
1057
+ [[package]]
1058
+ name = "futures-core"
1059
+ version = "0.3.32"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
1062
+
1063
+ [[package]]
1064
+ name = "futures-task"
1065
+ version = "0.3.32"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
1068
+
1069
+ [[package]]
1070
+ name = "futures-util"
1071
+ version = "0.3.32"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
1074
+ dependencies = [
1075
+ "futures-core",
1076
+ "futures-task",
1077
+ "pin-project-lite",
1078
+ "slab",
1079
+ ]
1080
+
1081
+ [[package]]
1082
+ name = "getrandom"
1083
+ version = "0.2.17"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1086
+ dependencies = [
1087
+ "cfg-if",
1088
+ "libc",
1089
+ "wasi",
1090
+ ]
1091
+
1092
+ [[package]]
1093
+ name = "getrandom"
1094
+ version = "0.3.4"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1097
+ dependencies = [
1098
+ "cfg-if",
1099
+ "libc",
1100
+ "r-efi 5.3.0",
1101
+ "wasip2",
1102
+ ]
1103
+
1104
+ [[package]]
1105
+ name = "getrandom"
1106
+ version = "0.4.2"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
1109
+ dependencies = [
1110
+ "cfg-if",
1111
+ "libc",
1112
+ "r-efi 6.0.0",
1113
+ "rand_core 0.10.1",
1114
+ "wasip2",
1115
+ "wasip3",
1116
+ ]
1117
+
1118
+ [[package]]
1119
+ name = "half"
1120
+ version = "2.7.1"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1123
+ dependencies = [
1124
+ "cfg-if",
1125
+ "crunchy",
1126
+ "num-traits",
1127
+ "zerocopy",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "hashbrown"
1132
+ version = "0.15.5"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1135
+ dependencies = [
1136
+ "foldhash 0.1.5",
1137
+ ]
1138
+
1139
+ [[package]]
1140
+ name = "hashbrown"
1141
+ version = "0.16.1"
1142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1144
+ dependencies = [
1145
+ "allocator-api2",
1146
+ "equivalent",
1147
+ "foldhash 0.2.0",
1148
+ "serde",
1149
+ "serde_core",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "hashbrown"
1154
+ version = "0.17.1"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1157
+
1158
+ [[package]]
1159
+ name = "heck"
1160
+ version = "0.5.0"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1163
+
1164
+ [[package]]
1165
+ name = "hmac-sha256"
1166
+ version = "1.1.14"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "ec9d92d097f4749b64e8cc33d924d9f40a2d4eb91402b458014b781f5733d60f"
1169
+
1170
+ [[package]]
1171
+ name = "http"
1172
+ version = "1.4.1"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
1175
+ dependencies = [
1176
+ "bytes",
1177
+ "itoa",
1178
+ ]
1179
+
1180
+ [[package]]
1181
+ name = "httparse"
1182
+ version = "1.10.1"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1185
+
1186
+ [[package]]
1187
+ name = "hybrid-array"
1188
+ version = "0.4.13"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
1191
+ dependencies = [
1192
+ "typenum",
1193
+ ]
1194
+
1195
+ [[package]]
1196
+ name = "iana-time-zone"
1197
+ version = "0.1.65"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1200
+ dependencies = [
1201
+ "android_system_properties",
1202
+ "core-foundation-sys",
1203
+ "iana-time-zone-haiku",
1204
+ "js-sys",
1205
+ "log",
1206
+ "wasm-bindgen",
1207
+ "windows-core",
1208
+ ]
1209
+
1210
+ [[package]]
1211
+ name = "iana-time-zone-haiku"
1212
+ version = "0.1.2"
1213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1214
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1215
+ dependencies = [
1216
+ "cc",
1217
+ ]
1218
+
1219
+ [[package]]
1220
+ name = "id-arena"
1221
+ version = "2.3.0"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1224
+
1225
+ [[package]]
1226
+ name = "indexmap"
1227
+ version = "2.14.0"
1228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1229
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1230
+ dependencies = [
1231
+ "equivalent",
1232
+ "hashbrown 0.17.1",
1233
+ "serde",
1234
+ "serde_core",
1235
+ ]
1236
+
1237
+ [[package]]
1238
+ name = "indicatif"
1239
+ version = "0.18.6"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "9433806cd6b4ec1aba79c021c7e4c58fb4c3b9977c085062e611ac929998fb0c"
1242
+ dependencies = [
1243
+ "console",
1244
+ "portable-atomic",
1245
+ "unicode-width",
1246
+ "unit-prefix",
1247
+ "web-time",
1248
+ ]
1249
+
1250
+ [[package]]
1251
+ name = "inventory"
1252
+ version = "0.3.24"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
1255
+ dependencies = [
1256
+ "rustversion",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "is_terminal_polyfill"
1261
+ version = "1.70.2"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1264
+
1265
+ [[package]]
1266
+ name = "itertools"
1267
+ version = "0.13.0"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1270
+ dependencies = [
1271
+ "either",
1272
+ ]
1273
+
1274
+ [[package]]
1275
+ name = "itertools"
1276
+ version = "0.14.0"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1279
+ dependencies = [
1280
+ "either",
1281
+ ]
1282
+
1283
+ [[package]]
1284
+ name = "itoa"
1285
+ version = "1.0.18"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1288
+
1289
+ [[package]]
1290
+ name = "jobserver"
1291
+ version = "0.1.34"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1294
+ dependencies = [
1295
+ "getrandom 0.3.4",
1296
+ "libc",
1297
+ ]
1298
+
1299
+ [[package]]
1300
+ name = "js-sys"
1301
+ version = "0.3.102"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31"
1304
+ dependencies = [
1305
+ "cfg-if",
1306
+ "futures-util",
1307
+ "wasm-bindgen",
1308
+ ]
1309
+
1310
+ [[package]]
1311
+ name = "kdtree"
1312
+ version = "0.7.0"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "0f0a0e9f770b65bac9aad00f97a67ab5c5319effed07f6da385da3c2115e47ba"
1315
+ dependencies = [
1316
+ "num-traits",
1317
+ "thiserror 1.0.69",
1318
+ ]
1319
+
1320
+ [[package]]
1321
+ name = "lazy_static"
1322
+ version = "1.5.0"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1325
+
1326
+ [[package]]
1327
+ name = "leb128fmt"
1328
+ version = "0.1.0"
1329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1330
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1331
+
1332
+ [[package]]
1333
+ name = "lexical-core"
1334
+ version = "1.0.6"
1335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1336
+ checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
1337
+ dependencies = [
1338
+ "lexical-parse-float",
1339
+ "lexical-parse-integer",
1340
+ "lexical-util",
1341
+ "lexical-write-float",
1342
+ "lexical-write-integer",
1343
+ ]
1344
+
1345
+ [[package]]
1346
+ name = "lexical-parse-float"
1347
+ version = "1.0.6"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
1350
+ dependencies = [
1351
+ "lexical-parse-integer",
1352
+ "lexical-util",
1353
+ ]
1354
+
1355
+ [[package]]
1356
+ name = "lexical-parse-integer"
1357
+ version = "1.0.6"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
1360
+ dependencies = [
1361
+ "lexical-util",
1362
+ ]
1363
+
1364
+ [[package]]
1365
+ name = "lexical-util"
1366
+ version = "1.0.7"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
1369
+
1370
+ [[package]]
1371
+ name = "lexical-write-float"
1372
+ version = "1.0.6"
1373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+ checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
1375
+ dependencies = [
1376
+ "lexical-util",
1377
+ "lexical-write-integer",
1378
+ ]
1379
+
1380
+ [[package]]
1381
+ name = "lexical-write-integer"
1382
+ version = "1.0.6"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
1385
+ dependencies = [
1386
+ "lexical-util",
1387
+ ]
1388
+
1389
+ [[package]]
1390
+ name = "libc"
1391
+ version = "0.2.186"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1394
+
1395
+ [[package]]
1396
+ name = "libloading"
1397
+ version = "0.9.0"
1398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1399
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
1400
+ dependencies = [
1401
+ "cfg-if",
1402
+ "windows-link",
1403
+ ]
1404
+
1405
+ [[package]]
1406
+ name = "libm"
1407
+ version = "0.2.16"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1410
+
1411
+ [[package]]
1412
+ name = "linfa"
1413
+ version = "0.8.1"
1414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1415
+ checksum = "87b84e47ca7a9d63f5be24c104e216c8263bfada38080cbdfe1082e611a81fd3"
1416
+ dependencies = [
1417
+ "approx",
1418
+ "ndarray 0.16.1",
1419
+ "num-traits",
1420
+ "rand 0.8.6",
1421
+ "sprs",
1422
+ "thiserror 2.0.19",
1423
+ ]
1424
+
1425
+ [[package]]
1426
+ name = "linfa-kernel"
1427
+ version = "0.8.1"
1428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1429
+ checksum = "c3531f4d2c1636a1aad360ad5b8ca6196523b742c981d9b917fcbd2274393987"
1430
+ dependencies = [
1431
+ "linfa",
1432
+ "linfa-nn",
1433
+ "ndarray 0.16.1",
1434
+ "num-traits",
1435
+ "sprs",
1436
+ ]
1437
+
1438
+ [[package]]
1439
+ name = "linfa-nn"
1440
+ version = "0.8.1"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "d7ba257f89880df17b486e67731ef20c4a748a5f5f5eaace010853f69a0beee3"
1443
+ dependencies = [
1444
+ "kdtree",
1445
+ "linfa",
1446
+ "ndarray 0.16.1",
1447
+ "ndarray-stats",
1448
+ "noisy_float",
1449
+ "num-traits",
1450
+ "order-stat",
1451
+ "thiserror 2.0.19",
1452
+ ]
1453
+
1454
+ [[package]]
1455
+ name = "linfa-svm"
1456
+ version = "0.8.1"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "2bd4acc489c5667fc7ed9796e9a0aa2e1138966c2b34d61422d5433e40ca6337"
1459
+ dependencies = [
1460
+ "linfa",
1461
+ "linfa-kernel",
1462
+ "ndarray 0.16.1",
1463
+ "ndarray-rand",
1464
+ "num-traits",
1465
+ "thiserror 2.0.19",
1466
+ ]
1467
+
1468
+ [[package]]
1469
+ name = "linux-raw-sys"
1470
+ version = "0.12.1"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1473
+
1474
+ [[package]]
1475
+ name = "lock_api"
1476
+ version = "0.4.14"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1479
+ dependencies = [
1480
+ "scopeguard",
1481
+ ]
1482
+
1483
+ [[package]]
1484
+ name = "log"
1485
+ version = "0.4.32"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
1488
+
1489
+ [[package]]
1490
+ name = "lzma-rust2"
1491
+ version = "0.15.8"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "e20f57f9918e5bd7bc58c22cdd70a6afc7375d4dd9683af5f2b34bd3d2bba619"
1494
+
1495
+ [[package]]
1496
+ name = "maplit"
1497
+ version = "1.0.2"
1498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1499
+ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
1500
+
1501
+ [[package]]
1502
+ name = "matchers"
1503
+ version = "0.2.0"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1506
+ dependencies = [
1507
+ "regex-automata",
1508
+ ]
1509
+
1510
+ [[package]]
1511
+ name = "matrixmultiply"
1512
+ version = "0.3.10"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
1515
+ dependencies = [
1516
+ "autocfg",
1517
+ "rawpointer",
1518
+ ]
1519
+
1520
+ [[package]]
1521
+ name = "memchr"
1522
+ version = "2.8.2"
1523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1524
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
1525
+
1526
+ [[package]]
1527
+ name = "memmap2"
1528
+ version = "0.9.11"
1529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1530
+ checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0"
1531
+ dependencies = [
1532
+ "libc",
1533
+ ]
1534
+
1535
+ [[package]]
1536
+ name = "memo-map"
1537
+ version = "0.3.3"
1538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+ checksum = "38d1115007560874e373613744c6fba374c17688327a71c1476d1a5954cc857b"
1540
+
1541
+ [[package]]
1542
+ name = "minijinja"
1543
+ version = "2.21.0"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "cb3d648e68cea56d9858d535ee28f9538404e2dd8cb08ed0bd05dca379477f39"
1546
+ dependencies = [
1547
+ "memo-map",
1548
+ "serde",
1549
+ ]
1550
+
1551
+ [[package]]
1552
+ name = "minimal-lexical"
1553
+ version = "0.2.1"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1556
+
1557
+ [[package]]
1558
+ name = "miniz_oxide"
1559
+ version = "0.8.9"
1560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1561
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1562
+ dependencies = [
1563
+ "adler2",
1564
+ "simd-adler32",
1565
+ ]
1566
+
1567
+ [[package]]
1568
+ name = "native-tls"
1569
+ version = "0.2.18"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
1572
+ dependencies = [
1573
+ "libc",
1574
+ "log",
1575
+ "openssl",
1576
+ "openssl-probe",
1577
+ "openssl-sys",
1578
+ "schannel",
1579
+ "security-framework",
1580
+ "security-framework-sys",
1581
+ "tempfile",
1582
+ ]
1583
+
1584
+ [[package]]
1585
+ name = "ndarray"
1586
+ version = "0.16.1"
1587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1588
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
1589
+ dependencies = [
1590
+ "approx",
1591
+ "matrixmultiply",
1592
+ "num-complex",
1593
+ "num-integer",
1594
+ "num-traits",
1595
+ "portable-atomic",
1596
+ "portable-atomic-util",
1597
+ "rawpointer",
1598
+ ]
1599
+
1600
+ [[package]]
1601
+ name = "ndarray"
1602
+ version = "0.17.2"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
1605
+ dependencies = [
1606
+ "matrixmultiply",
1607
+ "num-complex",
1608
+ "num-integer",
1609
+ "num-traits",
1610
+ "portable-atomic",
1611
+ "portable-atomic-util",
1612
+ "rawpointer",
1613
+ ]
1614
+
1615
+ [[package]]
1616
+ name = "ndarray-rand"
1617
+ version = "0.15.0"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "f093b3db6fd194718dcdeea6bd8c829417deae904e3fcc7732dabcd4416d25d8"
1620
+ dependencies = [
1621
+ "ndarray 0.16.1",
1622
+ "rand 0.8.6",
1623
+ "rand_distr 0.4.3",
1624
+ ]
1625
+
1626
+ [[package]]
1627
+ name = "ndarray-stats"
1628
+ version = "0.6.0"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "17ebbe97acce52d06aebed4cd4a87c0941f4b2519b59b82b4feb5bd0ce003dfd"
1631
+ dependencies = [
1632
+ "indexmap",
1633
+ "itertools 0.13.0",
1634
+ "ndarray 0.16.1",
1635
+ "noisy_float",
1636
+ "num-integer",
1637
+ "num-traits",
1638
+ "rand 0.8.6",
1639
+ ]
1640
+
1641
+ [[package]]
1642
+ name = "nix"
1643
+ version = "0.31.3"
1644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1645
+ checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
1646
+ dependencies = [
1647
+ "bitflags",
1648
+ "cfg-if",
1649
+ "cfg_aliases",
1650
+ "libc",
1651
+ ]
1652
+
1653
+ [[package]]
1654
+ name = "noisy_float"
1655
+ version = "0.2.1"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "c16843be85dd410c6a12251c4eca0dd1d3ee8c5725f746c4d5e0fdcec0a864b2"
1658
+ dependencies = [
1659
+ "num-traits",
1660
+ ]
1661
+
1662
+ [[package]]
1663
+ name = "nom"
1664
+ version = "7.1.3"
1665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1666
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1667
+ dependencies = [
1668
+ "memchr",
1669
+ "minimal-lexical",
1670
+ ]
1671
+
1672
+ [[package]]
1673
+ name = "nom"
1674
+ version = "8.0.0"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
1677
+ dependencies = [
1678
+ "memchr",
1679
+ ]
1680
+
1681
+ [[package]]
1682
+ name = "nom-language"
1683
+ version = "0.1.0"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "2de2bc5b451bfedaef92c90b8939a8fff5770bdcc1fafd6239d086aab8fa6b29"
1686
+ dependencies = [
1687
+ "nom 8.0.0",
1688
+ ]
1689
+
1690
+ [[package]]
1691
+ name = "noodles-bam"
1692
+ version = "0.91.0"
1693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1694
+ checksum = "68aa8af90e253005bbb957a589da61d8966ea1453bb3c1122d53704ddaa5e93c"
1695
+ dependencies = [
1696
+ "bstr",
1697
+ "indexmap",
1698
+ "memchr",
1699
+ "noodles-bgzf",
1700
+ "noodles-core",
1701
+ "noodles-csi",
1702
+ "noodles-sam",
1703
+ ]
1704
+
1705
+ [[package]]
1706
+ name = "noodles-bgzf"
1707
+ version = "0.48.0"
1708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1709
+ checksum = "da1dbf501b46281ca402b458211653bc8c510ea605400a1192d272a35360aa54"
1710
+ dependencies = [
1711
+ "bytes",
1712
+ "crossbeam-channel",
1713
+ "rayon",
1714
+ "zlib-rs",
1715
+ ]
1716
+
1717
+ [[package]]
1718
+ name = "noodles-core"
1719
+ version = "0.20.0"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "c8dbac7c5f9a7de9fe45590f198a09697df631cd13d2060b4742cc48144555b0"
1722
+ dependencies = [
1723
+ "bstr",
1724
+ ]
1725
+
1726
+ [[package]]
1727
+ name = "noodles-csi"
1728
+ version = "0.57.0"
1729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1730
+ checksum = "56d2b47cd56d466c6b39d7d2d3f19905c786d5bbcf45c782af3c206129bb39b8"
1731
+ dependencies = [
1732
+ "bit-vec",
1733
+ "bstr",
1734
+ "indexmap",
1735
+ "noodles-bgzf",
1736
+ "noodles-core",
1737
+ ]
1738
+
1739
+ [[package]]
1740
+ name = "noodles-sam"
1741
+ version = "0.86.0"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "2553a62c2a78d87686005327f2597a765ae55e10e2fd09015a54c0337676fbae"
1744
+ dependencies = [
1745
+ "bitflags",
1746
+ "bstr",
1747
+ "indexmap",
1748
+ "lexical-core",
1749
+ "memchr",
1750
+ "noodles-bgzf",
1751
+ "noodles-core",
1752
+ "noodles-csi",
1753
+ ]
1754
+
1755
+ [[package]]
1756
+ name = "nu-ansi-term"
1757
+ version = "0.50.3"
1758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1759
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1760
+ dependencies = [
1761
+ "windows-sys 0.61.2",
1762
+ ]
1763
+
1764
+ [[package]]
1765
+ name = "num-bigint"
1766
+ version = "0.4.6"
1767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1768
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1769
+ dependencies = [
1770
+ "num-integer",
1771
+ "num-traits",
1772
+ ]
1773
+
1774
+ [[package]]
1775
+ name = "num-complex"
1776
+ version = "0.4.6"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1779
+ dependencies = [
1780
+ "num-traits",
1781
+ ]
1782
+
1783
+ [[package]]
1784
+ name = "num-integer"
1785
+ version = "0.1.46"
1786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1788
+ dependencies = [
1789
+ "num-traits",
1790
+ ]
1791
+
1792
+ [[package]]
1793
+ name = "num-traits"
1794
+ version = "0.2.19"
1795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1796
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1797
+ dependencies = [
1798
+ "autocfg",
1799
+ "libm",
1800
+ ]
1801
+
1802
+ [[package]]
1803
+ name = "numpy"
1804
+ version = "0.29.0"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "6a5b15d63a5ff39e378daed0e1340d3a5964703ea9712eb09a0dc66fade996f4"
1807
+ dependencies = [
1808
+ "libc",
1809
+ "ndarray 0.17.2",
1810
+ "num-complex",
1811
+ "num-integer",
1812
+ "num-traits",
1813
+ "pyo3",
1814
+ "pyo3-build-config",
1815
+ "rustc-hash",
1816
+ ]
1817
+
1818
+ [[package]]
1819
+ name = "objc2"
1820
+ version = "0.6.4"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
1823
+ dependencies = [
1824
+ "objc2-encode",
1825
+ ]
1826
+
1827
+ [[package]]
1828
+ name = "objc2-encode"
1829
+ version = "4.1.0"
1830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1831
+ checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
1832
+
1833
+ [[package]]
1834
+ name = "once_cell"
1835
+ version = "1.21.4"
1836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1837
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1838
+
1839
+ [[package]]
1840
+ name = "once_cell_polyfill"
1841
+ version = "1.70.2"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1844
+
1845
+ [[package]]
1846
+ name = "oorandom"
1847
+ version = "11.1.5"
1848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1849
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1850
+
1851
+ [[package]]
1852
+ name = "openssl"
1853
+ version = "0.10.80"
1854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1855
+ checksum = "a45fa2aa886c42762255da344f0a0d313e254066c46aad76f300c3d3da62d967"
1856
+ dependencies = [
1857
+ "bitflags",
1858
+ "cfg-if",
1859
+ "foreign-types",
1860
+ "libc",
1861
+ "openssl-macros",
1862
+ "openssl-sys",
1863
+ ]
1864
+
1865
+ [[package]]
1866
+ name = "openssl-macros"
1867
+ version = "0.1.1"
1868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1869
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1870
+ dependencies = [
1871
+ "proc-macro2",
1872
+ "quote",
1873
+ "syn 2.0.117",
1874
+ ]
1875
+
1876
+ [[package]]
1877
+ name = "openssl-probe"
1878
+ version = "0.2.1"
1879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1880
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1881
+
1882
+ [[package]]
1883
+ name = "openssl-sys"
1884
+ version = "0.9.116"
1885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1886
+ checksum = "f28a22dc7140cda5f096e5e7724a6962ca81a7f8bfd2979f9b18c11af56318c4"
1887
+ dependencies = [
1888
+ "cc",
1889
+ "libc",
1890
+ "pkg-config",
1891
+ "vcpkg",
1892
+ ]
1893
+
1894
+ [[package]]
1895
+ name = "order-stat"
1896
+ version = "0.1.3"
1897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1898
+ checksum = "efa535d5117d3661134dbf1719b6f0ffe06f2375843b13935db186cd094105eb"
1899
+
1900
+ [[package]]
1901
+ name = "ort"
1902
+ version = "2.0.0-rc.12"
1903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1904
+ checksum = "d7de3af33d24a745ffb8fab904b13478438d1cd52868e6f17735ef6e1f8bf133"
1905
+ dependencies = [
1906
+ "libloading",
1907
+ "ndarray 0.17.2",
1908
+ "ort-sys",
1909
+ "smallvec",
1910
+ "tracing",
1911
+ "ureq",
1912
+ ]
1913
+
1914
+ [[package]]
1915
+ name = "ort-sys"
1916
+ version = "2.0.0-rc.12"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "d7b497d21a8b6fbb4b5a544f8fadb77e801a09ae0add9e411d31c6f89e3c1e90"
1919
+ dependencies = [
1920
+ "hmac-sha256",
1921
+ "lzma-rust2",
1922
+ "ureq",
1923
+ ]
1924
+
1925
+ [[package]]
1926
+ name = "owo-colors"
1927
+ version = "4.3.0"
1928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1929
+ checksum = "d211803b9b6b570f68772237e415a029d5a50c65d382910b879fb19d3271f94d"
1930
+
1931
+ [[package]]
1932
+ name = "page_size"
1933
+ version = "0.6.0"
1934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1935
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
1936
+ dependencies = [
1937
+ "libc",
1938
+ "winapi",
1939
+ ]
1940
+
1941
+ [[package]]
1942
+ name = "papergrid"
1943
+ version = "0.18.0"
1944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1945
+ checksum = "d0984e668274d34691bc2b262ef0d115de5fa9973bcdee7ae32213f93099153e"
1946
+ dependencies = [
1947
+ "ansi-str",
1948
+ "ansitok",
1949
+ "bytecount",
1950
+ "fnv",
1951
+ "unicode-width",
1952
+ ]
1953
+
1954
+ [[package]]
1955
+ name = "parking_lot"
1956
+ version = "0.12.5"
1957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1958
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1959
+ dependencies = [
1960
+ "lock_api",
1961
+ "parking_lot_core",
1962
+ ]
1963
+
1964
+ [[package]]
1965
+ name = "parking_lot_core"
1966
+ version = "0.9.12"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1969
+ dependencies = [
1970
+ "cfg-if",
1971
+ "libc",
1972
+ "redox_syscall",
1973
+ "smallvec",
1974
+ "windows-link",
1975
+ ]
1976
+
1977
+ [[package]]
1978
+ name = "parquet"
1979
+ version = "59.1.0"
1980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1981
+ checksum = "5302d4da74d6596a1f11f9928767995b53bca657cbeea1e4e8c5074f8a1157dd"
1982
+ dependencies = [
1983
+ "ahash",
1984
+ "arrow-array",
1985
+ "arrow-buffer",
1986
+ "arrow-data",
1987
+ "arrow-ipc",
1988
+ "arrow-schema",
1989
+ "arrow-select",
1990
+ "base64",
1991
+ "bytes",
1992
+ "chrono",
1993
+ "half",
1994
+ "hashbrown 0.17.1",
1995
+ "num-bigint",
1996
+ "num-integer",
1997
+ "num-traits",
1998
+ "paste",
1999
+ "seq-macro",
2000
+ "snap",
2001
+ "twox-hash",
2002
+ "zstd",
2003
+ ]
2004
+
2005
+ [[package]]
2006
+ name = "paste"
2007
+ version = "1.0.15"
2008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2009
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2010
+
2011
+ [[package]]
2012
+ name = "pastey"
2013
+ version = "0.2.3"
2014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2015
+ checksum = "2ee67f1008b1ba2321834326597b8e186293b049a023cdef258527550b9935b4"
2016
+
2017
+ [[package]]
2018
+ name = "pem-rfc7468"
2019
+ version = "1.0.0"
2020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2021
+ checksum = "a6305423e0e7738146434843d1694d621cce767262b2a86910beab705e4493d9"
2022
+ dependencies = [
2023
+ "base64ct",
2024
+ ]
2025
+
2026
+ [[package]]
2027
+ name = "percent-encoding"
2028
+ version = "2.3.2"
2029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2030
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2031
+
2032
+ [[package]]
2033
+ name = "pin-project-lite"
2034
+ version = "0.2.17"
2035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2036
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
2037
+
2038
+ [[package]]
2039
+ name = "pkg-config"
2040
+ version = "0.3.33"
2041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2042
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
2043
+
2044
+ [[package]]
2045
+ name = "plotters"
2046
+ version = "0.3.7"
2047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2048
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
2049
+ dependencies = [
2050
+ "num-traits",
2051
+ "plotters-backend",
2052
+ "plotters-svg",
2053
+ "wasm-bindgen",
2054
+ "web-sys",
2055
+ ]
2056
+
2057
+ [[package]]
2058
+ name = "plotters-backend"
2059
+ version = "0.3.7"
2060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2061
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
2062
+
2063
+ [[package]]
2064
+ name = "plotters-svg"
2065
+ version = "0.3.7"
2066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2067
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
2068
+ dependencies = [
2069
+ "plotters-backend",
2070
+ ]
2071
+
2072
+ [[package]]
2073
+ name = "portable-atomic"
2074
+ version = "1.13.1"
2075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2076
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2077
+
2078
+ [[package]]
2079
+ name = "portable-atomic-util"
2080
+ version = "0.2.7"
2081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2082
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
2083
+ dependencies = [
2084
+ "portable-atomic",
2085
+ ]
2086
+
2087
+ [[package]]
2088
+ name = "ppv-lite86"
2089
+ version = "0.2.21"
2090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2091
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2092
+ dependencies = [
2093
+ "zerocopy",
2094
+ ]
2095
+
2096
+ [[package]]
2097
+ name = "prettyplease"
2098
+ version = "0.2.37"
2099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2100
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2101
+ dependencies = [
2102
+ "proc-macro2",
2103
+ "syn 2.0.117",
2104
+ ]
2105
+
2106
+ [[package]]
2107
+ name = "primal-check"
2108
+ version = "0.3.4"
2109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2110
+ checksum = "dc0d895b311e3af9902528fbb8f928688abbd95872819320517cc24ca6b2bd08"
2111
+ dependencies = [
2112
+ "num-integer",
2113
+ ]
2114
+
2115
+ [[package]]
2116
+ name = "proc-macro-error-attr2"
2117
+ version = "2.0.0"
2118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2119
+ checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
2120
+ dependencies = [
2121
+ "proc-macro2",
2122
+ "quote",
2123
+ ]
2124
+
2125
+ [[package]]
2126
+ name = "proc-macro-error2"
2127
+ version = "2.0.1"
2128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2129
+ checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
2130
+ dependencies = [
2131
+ "proc-macro-error-attr2",
2132
+ "proc-macro2",
2133
+ "quote",
2134
+ "syn 2.0.117",
2135
+ ]
2136
+
2137
+ [[package]]
2138
+ name = "proc-macro2"
2139
+ version = "1.0.106"
2140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2141
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2142
+ dependencies = [
2143
+ "unicode-ident",
2144
+ ]
2145
+
2146
+ [[package]]
2147
+ name = "prost"
2148
+ version = "0.14.4"
2149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2150
+ checksum = "528ac67416ff8646872a3c02cad9cc4ee5dc9f9540c9b10771855c95cb2e5ae1"
2151
+ dependencies = [
2152
+ "bytes",
2153
+ "prost-derive",
2154
+ ]
2155
+
2156
+ [[package]]
2157
+ name = "prost-derive"
2158
+ version = "0.14.4"
2159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2160
+ checksum = "b570b25f7617e43d59005d0990ccb79e950a423952cea19671b7a876da390adf"
2161
+ dependencies = [
2162
+ "anyhow",
2163
+ "itertools 0.14.0",
2164
+ "proc-macro2",
2165
+ "quote",
2166
+ "syn 2.0.117",
2167
+ ]
2168
+
2169
+ [[package]]
2170
+ name = "pyo3"
2171
+ version = "0.29.0"
2172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2173
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
2174
+ dependencies = [
2175
+ "libc",
2176
+ "once_cell",
2177
+ "portable-atomic",
2178
+ "pyo3-build-config",
2179
+ "pyo3-ffi",
2180
+ "pyo3-macros",
2181
+ ]
2182
+
2183
+ [[package]]
2184
+ name = "pyo3-build-config"
2185
+ version = "0.29.0"
2186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2187
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
2188
+ dependencies = [
2189
+ "target-lexicon",
2190
+ ]
2191
+
2192
+ [[package]]
2193
+ name = "pyo3-ffi"
2194
+ version = "0.29.0"
2195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2196
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
2197
+ dependencies = [
2198
+ "libc",
2199
+ "pyo3-build-config",
2200
+ ]
2201
+
2202
+ [[package]]
2203
+ name = "pyo3-macros"
2204
+ version = "0.29.0"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
2207
+ dependencies = [
2208
+ "proc-macro2",
2209
+ "pyo3-macros-backend",
2210
+ "quote",
2211
+ "syn 2.0.117",
2212
+ ]
2213
+
2214
+ [[package]]
2215
+ name = "pyo3-macros-backend"
2216
+ version = "0.29.0"
2217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2218
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
2219
+ dependencies = [
2220
+ "heck",
2221
+ "proc-macro2",
2222
+ "quote",
2223
+ "syn 2.0.117",
2224
+ ]
2225
+
2226
+ [[package]]
2227
+ name = "quote"
2228
+ version = "1.0.45"
2229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2230
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
2231
+ dependencies = [
2232
+ "proc-macro2",
2233
+ ]
2234
+
2235
+ [[package]]
2236
+ name = "r-efi"
2237
+ version = "5.3.0"
2238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2239
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2240
+
2241
+ [[package]]
2242
+ name = "r-efi"
2243
+ version = "6.0.0"
2244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2245
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2246
+
2247
+ [[package]]
2248
+ name = "rand"
2249
+ version = "0.8.6"
2250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2251
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
2252
+ dependencies = [
2253
+ "libc",
2254
+ "rand_chacha",
2255
+ "rand_core 0.6.4",
2256
+ ]
2257
+
2258
+ [[package]]
2259
+ name = "rand"
2260
+ version = "0.10.2"
2261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2262
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
2263
+ dependencies = [
2264
+ "chacha20",
2265
+ "getrandom 0.4.2",
2266
+ "rand_core 0.10.1",
2267
+ ]
2268
+
2269
+ [[package]]
2270
+ name = "rand_chacha"
2271
+ version = "0.3.1"
2272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2273
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2274
+ dependencies = [
2275
+ "ppv-lite86",
2276
+ "rand_core 0.6.4",
2277
+ ]
2278
+
2279
+ [[package]]
2280
+ name = "rand_core"
2281
+ version = "0.6.4"
2282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2283
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2284
+ dependencies = [
2285
+ "getrandom 0.2.17",
2286
+ ]
2287
+
2288
+ [[package]]
2289
+ name = "rand_core"
2290
+ version = "0.10.1"
2291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2292
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
2293
+
2294
+ [[package]]
2295
+ name = "rand_distr"
2296
+ version = "0.4.3"
2297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2298
+ checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
2299
+ dependencies = [
2300
+ "num-traits",
2301
+ "rand 0.8.6",
2302
+ ]
2303
+
2304
+ [[package]]
2305
+ name = "rand_distr"
2306
+ version = "0.6.0"
2307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2308
+ checksum = "4d431c2703ccf129de4d45253c03f49ebb22b97d6ad79ee3ecfc7e3f4862c1d8"
2309
+ dependencies = [
2310
+ "num-traits",
2311
+ "rand 0.10.2",
2312
+ ]
2313
+
2314
+ [[package]]
2315
+ name = "rawpointer"
2316
+ version = "0.2.1"
2317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2318
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
2319
+
2320
+ [[package]]
2321
+ name = "rayon"
2322
+ version = "1.12.0"
2323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2324
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
2325
+ dependencies = [
2326
+ "either",
2327
+ "rayon-core",
2328
+ ]
2329
+
2330
+ [[package]]
2331
+ name = "rayon-core"
2332
+ version = "1.13.0"
2333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2334
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2335
+ dependencies = [
2336
+ "crossbeam-deque",
2337
+ "crossbeam-utils",
2338
+ ]
2339
+
2340
+ [[package]]
2341
+ name = "redox_syscall"
2342
+ version = "0.5.18"
2343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2344
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2345
+ dependencies = [
2346
+ "bitflags",
2347
+ ]
2348
+
2349
+ [[package]]
2350
+ name = "regex"
2351
+ version = "1.12.4"
2352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2353
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
2354
+ dependencies = [
2355
+ "aho-corasick",
2356
+ "memchr",
2357
+ "regex-automata",
2358
+ "regex-syntax",
2359
+ ]
2360
+
2361
+ [[package]]
2362
+ name = "regex-automata"
2363
+ version = "0.4.14"
2364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2365
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2366
+ dependencies = [
2367
+ "aho-corasick",
2368
+ "memchr",
2369
+ "regex-syntax",
2370
+ ]
2371
+
2372
+ [[package]]
2373
+ name = "regex-syntax"
2374
+ version = "0.8.11"
2375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2376
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
2377
+
2378
+ [[package]]
2379
+ name = "ring"
2380
+ version = "0.17.14"
2381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2382
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2383
+ dependencies = [
2384
+ "cc",
2385
+ "cfg-if",
2386
+ "getrandom 0.2.17",
2387
+ "libc",
2388
+ "untrusted",
2389
+ "windows-sys 0.52.0",
2390
+ ]
2391
+
2392
+ [[package]]
2393
+ name = "rustc-hash"
2394
+ version = "2.1.2"
2395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2396
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
2397
+
2398
+ [[package]]
2399
+ name = "rustc_version"
2400
+ version = "0.4.1"
2401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2402
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2403
+ dependencies = [
2404
+ "semver",
2405
+ ]
2406
+
2407
+ [[package]]
2408
+ name = "rustfft"
2409
+ version = "6.4.1"
2410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2411
+ checksum = "21db5f9893e91f41798c88680037dba611ca6674703c1a18601b01a72c8adb89"
2412
+ dependencies = [
2413
+ "num-complex",
2414
+ "num-integer",
2415
+ "num-traits",
2416
+ "primal-check",
2417
+ "strength_reduce",
2418
+ "transpose",
2419
+ ]
2420
+
2421
+ [[package]]
2422
+ name = "rustix"
2423
+ version = "1.1.4"
2424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2425
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2426
+ dependencies = [
2427
+ "bitflags",
2428
+ "errno",
2429
+ "libc",
2430
+ "linux-raw-sys",
2431
+ "windows-sys 0.61.2",
2432
+ ]
2433
+
2434
+ [[package]]
2435
+ name = "rustls"
2436
+ version = "0.23.41"
2437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2438
+ checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
2439
+ dependencies = [
2440
+ "log",
2441
+ "once_cell",
2442
+ "ring",
2443
+ "rustls-pki-types",
2444
+ "rustls-webpki",
2445
+ "subtle",
2446
+ "zeroize",
2447
+ ]
2448
+
2449
+ [[package]]
2450
+ name = "rustls-pki-types"
2451
+ version = "1.14.1"
2452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2453
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
2454
+ dependencies = [
2455
+ "zeroize",
2456
+ ]
2457
+
2458
+ [[package]]
2459
+ name = "rustls-webpki"
2460
+ version = "0.103.13"
2461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2462
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
2463
+ dependencies = [
2464
+ "ring",
2465
+ "rustls-pki-types",
2466
+ "untrusted",
2467
+ ]
2468
+
2469
+ [[package]]
2470
+ name = "rustversion"
2471
+ version = "1.0.22"
2472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2473
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2474
+
2475
+ [[package]]
2476
+ name = "ryu"
2477
+ version = "1.0.23"
2478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2479
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2480
+
2481
+ [[package]]
2482
+ name = "safetensors"
2483
+ version = "0.8.0"
2484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2485
+ checksum = "79b079b829cb27a1c3c374341345ed2e8b2c0c839034522cee576c140bd7f846"
2486
+ dependencies = [
2487
+ "hashbrown 0.16.1",
2488
+ "libc",
2489
+ "serde",
2490
+ "serde_json",
2491
+ "tempfile",
2492
+ ]
2493
+
2494
+ [[package]]
2495
+ name = "same-file"
2496
+ version = "1.0.6"
2497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2498
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2499
+ dependencies = [
2500
+ "winapi-util",
2501
+ ]
2502
+
2503
+ [[package]]
2504
+ name = "scan_fmt"
2505
+ version = "0.2.6"
2506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2507
+ checksum = "0b53b0a5db882a8e2fdaae0a43f7b39e7e9082389e978398bdf223a55b581248"
2508
+ dependencies = [
2509
+ "regex",
2510
+ ]
2511
+
2512
+ [[package]]
2513
+ name = "schannel"
2514
+ version = "0.1.29"
2515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2516
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
2517
+ dependencies = [
2518
+ "windows-sys 0.61.2",
2519
+ ]
2520
+
2521
+ [[package]]
2522
+ name = "scopeguard"
2523
+ version = "1.2.0"
2524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2525
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2526
+
2527
+ [[package]]
2528
+ name = "security-framework"
2529
+ version = "3.7.0"
2530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2531
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2532
+ dependencies = [
2533
+ "bitflags",
2534
+ "core-foundation",
2535
+ "core-foundation-sys",
2536
+ "libc",
2537
+ "security-framework-sys",
2538
+ ]
2539
+
2540
+ [[package]]
2541
+ name = "security-framework-sys"
2542
+ version = "2.17.0"
2543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2544
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2545
+ dependencies = [
2546
+ "core-foundation-sys",
2547
+ "libc",
2548
+ ]
2549
+
2550
+ [[package]]
2551
+ name = "semver"
2552
+ version = "1.0.28"
2553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2554
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2555
+
2556
+ [[package]]
2557
+ name = "seq-macro"
2558
+ version = "0.3.6"
2559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2560
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
2561
+
2562
+ [[package]]
2563
+ name = "serde"
2564
+ version = "1.0.229"
2565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2566
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
2567
+ dependencies = [
2568
+ "serde_core",
2569
+ "serde_derive",
2570
+ ]
2571
+
2572
+ [[package]]
2573
+ name = "serde_core"
2574
+ version = "1.0.229"
2575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2576
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
2577
+ dependencies = [
2578
+ "serde_derive",
2579
+ ]
2580
+
2581
+ [[package]]
2582
+ name = "serde_derive"
2583
+ version = "1.0.229"
2584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2585
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
2586
+ dependencies = [
2587
+ "proc-macro2",
2588
+ "quote",
2589
+ "syn 3.0.2",
2590
+ ]
2591
+
2592
+ [[package]]
2593
+ name = "serde_json"
2594
+ version = "1.0.151"
2595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2596
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
2597
+ dependencies = [
2598
+ "itoa",
2599
+ "memchr",
2600
+ "serde",
2601
+ "serde_core",
2602
+ "zmij",
2603
+ ]
2604
+
2605
+ [[package]]
2606
+ name = "sha2"
2607
+ version = "0.11.0"
2608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2609
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
2610
+ dependencies = [
2611
+ "cfg-if",
2612
+ "cpufeatures",
2613
+ "digest",
2614
+ ]
2615
+
2616
+ [[package]]
2617
+ name = "sharded-slab"
2618
+ version = "0.1.7"
2619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2620
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2621
+ dependencies = [
2622
+ "lazy_static",
2623
+ ]
2624
+
2625
+ [[package]]
2626
+ name = "shlex"
2627
+ version = "2.0.1"
2628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2629
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
2630
+
2631
+ [[package]]
2632
+ name = "simd-adler32"
2633
+ version = "0.3.9"
2634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2635
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
2636
+
2637
+ [[package]]
2638
+ name = "slab"
2639
+ version = "0.4.12"
2640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2641
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2642
+
2643
+ [[package]]
2644
+ name = "smallvec"
2645
+ version = "1.15.2"
2646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2647
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
2648
+
2649
+ [[package]]
2650
+ name = "snap"
2651
+ version = "1.1.1"
2652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2653
+ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
2654
+
2655
+ [[package]]
2656
+ name = "socks"
2657
+ version = "0.3.4"
2658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2659
+ checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b"
2660
+ dependencies = [
2661
+ "byteorder",
2662
+ "libc",
2663
+ "winapi",
2664
+ ]
2665
+
2666
+ [[package]]
2667
+ name = "sprs"
2668
+ version = "0.11.2"
2669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2670
+ checksum = "704ef26d974e8a452313ed629828cd9d4e4fa34667ca1ad9d6b1fffa43c6e166"
2671
+ dependencies = [
2672
+ "ndarray 0.16.1",
2673
+ "num-complex",
2674
+ "num-traits",
2675
+ "smallvec",
2676
+ ]
2677
+
2678
+ [[package]]
2679
+ name = "strength_reduce"
2680
+ version = "0.2.4"
2681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2682
+ checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
2683
+
2684
+ [[package]]
2685
+ name = "string-interner"
2686
+ version = "0.20.0"
2687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2688
+ checksum = "ad3df9b59e2eded8d825c7c4363ad339a20fb6bc0b9a4778560f518f59910b15"
2689
+ dependencies = [
2690
+ "hashbrown 0.16.1",
2691
+ "serde",
2692
+ ]
2693
+
2694
+ [[package]]
2695
+ name = "strsim"
2696
+ version = "0.11.1"
2697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2698
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2699
+
2700
+ [[package]]
2701
+ name = "subtle"
2702
+ version = "2.6.1"
2703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2704
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2705
+
2706
+ [[package]]
2707
+ name = "syn"
2708
+ version = "2.0.117"
2709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2710
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2711
+ dependencies = [
2712
+ "proc-macro2",
2713
+ "quote",
2714
+ "unicode-ident",
2715
+ ]
2716
+
2717
+ [[package]]
2718
+ name = "syn"
2719
+ version = "3.0.2"
2720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2721
+ checksum = "a207d6d6a2b7fc470b80443726053f18a2481b7e1eee970597051596567987a3"
2722
+ dependencies = [
2723
+ "proc-macro2",
2724
+ "quote",
2725
+ "unicode-ident",
2726
+ ]
2727
+
2728
+ [[package]]
2729
+ name = "tabled"
2730
+ version = "0.21.0"
2731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2732
+ checksum = "b5dc662e6da844ad6e428ad16b57967c9d33c82e16bb1c258326c0c078605dff"
2733
+ dependencies = [
2734
+ "ansi-str",
2735
+ "ansitok",
2736
+ "papergrid",
2737
+ "tabled_derive",
2738
+ "testing_table",
2739
+ ]
2740
+
2741
+ [[package]]
2742
+ name = "tabled_derive"
2743
+ version = "0.11.0"
2744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2745
+ checksum = "0ea5d1b13ca6cff1f9231ffd62f15eefd72543dab5e468735f1a456728a02846"
2746
+ dependencies = [
2747
+ "heck",
2748
+ "proc-macro-error2",
2749
+ "proc-macro2",
2750
+ "quote",
2751
+ "syn 2.0.117",
2752
+ ]
2753
+
2754
+ [[package]]
2755
+ name = "tar"
2756
+ version = "0.4.46"
2757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2758
+ checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840"
2759
+ dependencies = [
2760
+ "filetime",
2761
+ "libc",
2762
+ "xattr",
2763
+ ]
2764
+
2765
+ [[package]]
2766
+ name = "target-lexicon"
2767
+ version = "0.13.5"
2768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2769
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2770
+
2771
+ [[package]]
2772
+ name = "tempfile"
2773
+ version = "3.27.0"
2774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2775
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2776
+ dependencies = [
2777
+ "fastrand",
2778
+ "getrandom 0.4.2",
2779
+ "once_cell",
2780
+ "rustix",
2781
+ "windows-sys 0.61.2",
2782
+ ]
2783
+
2784
+ [[package]]
2785
+ name = "testing_table"
2786
+ version = "0.3.0"
2787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2788
+ checksum = "0f8daae29995a24f65619e19d8d31dea5b389f3d853d8bf297bbf607cd0014cc"
2789
+ dependencies = [
2790
+ "ansitok",
2791
+ "unicode-width",
2792
+ ]
2793
+
2794
+ [[package]]
2795
+ name = "thiserror"
2796
+ version = "1.0.69"
2797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2798
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2799
+ dependencies = [
2800
+ "thiserror-impl 1.0.69",
2801
+ ]
2802
+
2803
+ [[package]]
2804
+ name = "thiserror"
2805
+ version = "2.0.19"
2806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2807
+ checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
2808
+ dependencies = [
2809
+ "thiserror-impl 2.0.19",
2810
+ ]
2811
+
2812
+ [[package]]
2813
+ name = "thiserror-impl"
2814
+ version = "1.0.69"
2815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2816
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2817
+ dependencies = [
2818
+ "proc-macro2",
2819
+ "quote",
2820
+ "syn 2.0.117",
2821
+ ]
2822
+
2823
+ [[package]]
2824
+ name = "thiserror-impl"
2825
+ version = "2.0.19"
2826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2827
+ checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
2828
+ dependencies = [
2829
+ "proc-macro2",
2830
+ "quote",
2831
+ "syn 3.0.2",
2832
+ ]
2833
+
2834
+ [[package]]
2835
+ name = "thread_local"
2836
+ version = "1.1.9"
2837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2838
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2839
+ dependencies = [
2840
+ "cfg-if",
2841
+ ]
2842
+
2843
+ [[package]]
2844
+ name = "tiny-keccak"
2845
+ version = "2.0.2"
2846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2847
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
2848
+ dependencies = [
2849
+ "crunchy",
2850
+ ]
2851
+
2852
+ [[package]]
2853
+ name = "tinytemplate"
2854
+ version = "1.2.1"
2855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2856
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2857
+ dependencies = [
2858
+ "serde",
2859
+ "serde_json",
2860
+ ]
2861
+
2862
+ [[package]]
2863
+ name = "tracing"
2864
+ version = "0.1.44"
2865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2866
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2867
+ dependencies = [
2868
+ "pin-project-lite",
2869
+ "tracing-attributes",
2870
+ "tracing-core",
2871
+ ]
2872
+
2873
+ [[package]]
2874
+ name = "tracing-attributes"
2875
+ version = "0.1.31"
2876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2877
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2878
+ dependencies = [
2879
+ "proc-macro2",
2880
+ "quote",
2881
+ "syn 2.0.117",
2882
+ ]
2883
+
2884
+ [[package]]
2885
+ name = "tracing-core"
2886
+ version = "0.1.36"
2887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2888
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2889
+ dependencies = [
2890
+ "once_cell",
2891
+ "valuable",
2892
+ ]
2893
+
2894
+ [[package]]
2895
+ name = "tracing-log"
2896
+ version = "0.2.0"
2897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2898
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2899
+ dependencies = [
2900
+ "log",
2901
+ "once_cell",
2902
+ "tracing-core",
2903
+ ]
2904
+
2905
+ [[package]]
2906
+ name = "tracing-subscriber"
2907
+ version = "0.3.23"
2908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2909
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
2910
+ dependencies = [
2911
+ "matchers",
2912
+ "nu-ansi-term",
2913
+ "once_cell",
2914
+ "regex-automata",
2915
+ "sharded-slab",
2916
+ "smallvec",
2917
+ "thread_local",
2918
+ "tracing",
2919
+ "tracing-core",
2920
+ "tracing-log",
2921
+ ]
2922
+
2923
+ [[package]]
2924
+ name = "tract-core"
2925
+ version = "0.23.4"
2926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2927
+ checksum = "608e176a669d5da02cccc92bbfe5ee4e57686ed8841022608a9eba014d3b7886"
2928
+ dependencies = [
2929
+ "anyhow",
2930
+ "anymap3",
2931
+ "bit-set",
2932
+ "derive-new",
2933
+ "downcast-rs",
2934
+ "dyn-clone",
2935
+ "dyn-eq",
2936
+ "erased-serde",
2937
+ "inventory",
2938
+ "lazy_static",
2939
+ "log",
2940
+ "maplit",
2941
+ "ndarray 0.17.2",
2942
+ "num-complex",
2943
+ "num-integer",
2944
+ "num-traits",
2945
+ "pastey",
2946
+ "rustfft",
2947
+ "serde",
2948
+ "smallvec",
2949
+ "tract-data",
2950
+ "tract-linalg",
2951
+ ]
2952
+
2953
+ [[package]]
2954
+ name = "tract-data"
2955
+ version = "0.23.4"
2956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2957
+ checksum = "870236dd45aaeb1381023cb709a67ff14ece608ee0b37f99aa166d166db9b0d0"
2958
+ dependencies = [
2959
+ "anyhow",
2960
+ "downcast-rs",
2961
+ "dyn-clone",
2962
+ "dyn-eq",
2963
+ "dyn-hash",
2964
+ "half",
2965
+ "inventory",
2966
+ "itertools 0.14.0",
2967
+ "lazy_static",
2968
+ "libm",
2969
+ "maplit",
2970
+ "ndarray 0.17.2",
2971
+ "nom 8.0.0",
2972
+ "nom-language",
2973
+ "num-integer",
2974
+ "num-traits",
2975
+ "parking_lot",
2976
+ "scan_fmt",
2977
+ "smallvec",
2978
+ "string-interner",
2979
+ ]
2980
+
2981
+ [[package]]
2982
+ name = "tract-extra"
2983
+ version = "0.23.4"
2984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2985
+ checksum = "effcae1ebfce133e8bf6c79ad31298cbee0a9eceb3e4642fe1d14cb54cca78e6"
2986
+ dependencies = [
2987
+ "tract-nnef",
2988
+ "tract-pulse",
2989
+ ]
2990
+
2991
+ [[package]]
2992
+ name = "tract-hir"
2993
+ version = "0.23.4"
2994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2995
+ checksum = "28783b2bb583177685f65016a866b01eb3d383bce4fa7ae1b9692b325b64449d"
2996
+ dependencies = [
2997
+ "derive-new",
2998
+ "log",
2999
+ "tract-core",
3000
+ ]
3001
+
3002
+ [[package]]
3003
+ name = "tract-linalg"
3004
+ version = "0.23.4"
3005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3006
+ checksum = "d3e01491f7360806ef061af4c016a2d0a801d586768896394a0b8a7d6872c2b0"
3007
+ dependencies = [
3008
+ "byteorder",
3009
+ "cc",
3010
+ "derive-new",
3011
+ "downcast-rs",
3012
+ "dyn-clone",
3013
+ "dyn-eq",
3014
+ "dyn-hash",
3015
+ "half",
3016
+ "lazy_static",
3017
+ "log",
3018
+ "minijinja",
3019
+ "num-traits",
3020
+ "pastey",
3021
+ "scan_fmt",
3022
+ "tract-data",
3023
+ "walkdir",
3024
+ ]
3025
+
3026
+ [[package]]
3027
+ name = "tract-nnef"
3028
+ version = "0.23.4"
3029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3030
+ checksum = "00417fabf01aeea7bc56107367862e5bb8da18c9ad850c9061d3823700479ecc"
3031
+ dependencies = [
3032
+ "byteorder",
3033
+ "erased-serde",
3034
+ "flate2",
3035
+ "log",
3036
+ "minijinja",
3037
+ "nom 8.0.0",
3038
+ "nom-language",
3039
+ "safetensors",
3040
+ "serde",
3041
+ "serde_json",
3042
+ "simd-adler32",
3043
+ "tar",
3044
+ "tract-core",
3045
+ "walkdir",
3046
+ ]
3047
+
3048
+ [[package]]
3049
+ name = "tract-onnx"
3050
+ version = "0.23.4"
3051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3052
+ checksum = "a3215dd27bddd2a041a20fee750013b400135186d3485501c9274c755b19ceb0"
3053
+ dependencies = [
3054
+ "bytes",
3055
+ "derive-new",
3056
+ "dyn-eq",
3057
+ "log",
3058
+ "memmap2",
3059
+ "num-integer",
3060
+ "prost",
3061
+ "smallvec",
3062
+ "tract-extra",
3063
+ "tract-hir",
3064
+ "tract-nnef",
3065
+ "tract-onnx-opl",
3066
+ "tract-transformers",
3067
+ ]
3068
+
3069
+ [[package]]
3070
+ name = "tract-onnx-opl"
3071
+ version = "0.23.4"
3072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3073
+ checksum = "44f549ad3f245c1c00ce710c66cc0e086be0b637f35934d37b655ff175e1ab3e"
3074
+ dependencies = [
3075
+ "dyn-eq",
3076
+ "getrandom 0.4.2",
3077
+ "log",
3078
+ "rand 0.10.2",
3079
+ "rand_distr 0.6.0",
3080
+ "rustfft",
3081
+ "tract-extra",
3082
+ "tract-nnef",
3083
+ ]
3084
+
3085
+ [[package]]
3086
+ name = "tract-pulse"
3087
+ version = "0.23.4"
3088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3089
+ checksum = "a164e22e96ab9b5c90458fa270700570d87963e3dec9ccaac1ab18d9fa763ce2"
3090
+ dependencies = [
3091
+ "downcast-rs",
3092
+ "dyn-eq",
3093
+ "erased-serde",
3094
+ "lazy_static",
3095
+ "log",
3096
+ "serde",
3097
+ "tract-pulse-opl",
3098
+ "tract-transformers",
3099
+ ]
3100
+
3101
+ [[package]]
3102
+ name = "tract-pulse-opl"
3103
+ version = "0.23.4"
3104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3105
+ checksum = "65418f9e93e0af0d567f4f2f1bf2309b53930fa2543c635a69fda10c87a04987"
3106
+ dependencies = [
3107
+ "downcast-rs",
3108
+ "dyn-eq",
3109
+ "lazy_static",
3110
+ "tract-nnef",
3111
+ ]
3112
+
3113
+ [[package]]
3114
+ name = "tract-transformers"
3115
+ version = "0.23.4"
3116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3117
+ checksum = "8471ebf7f52d226552283d9130539595540c28ed41b8e032df3830507d3ccdd5"
3118
+ dependencies = [
3119
+ "float-ord",
3120
+ "rayon",
3121
+ "tract-nnef",
3122
+ ]
3123
+
3124
+ [[package]]
3125
+ name = "transpose"
3126
+ version = "0.2.3"
3127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3128
+ checksum = "1ad61aed86bc3faea4300c7aee358b4c6d0c8d6ccc36524c96e4c92ccf26e77e"
3129
+ dependencies = [
3130
+ "num-integer",
3131
+ "strength_reduce",
3132
+ ]
3133
+
3134
+ [[package]]
3135
+ name = "twox-hash"
3136
+ version = "2.1.2"
3137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3138
+ checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
3139
+
3140
+ [[package]]
3141
+ name = "typeid"
3142
+ version = "1.0.3"
3143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3144
+ checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
3145
+
3146
+ [[package]]
3147
+ name = "typenum"
3148
+ version = "1.20.1"
3149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3150
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
3151
+
3152
+ [[package]]
3153
+ name = "unicode-ident"
3154
+ version = "1.0.24"
3155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3156
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
3157
+
3158
+ [[package]]
3159
+ name = "unicode-width"
3160
+ version = "0.2.2"
3161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3162
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
3163
+
3164
+ [[package]]
3165
+ name = "unicode-xid"
3166
+ version = "0.2.6"
3167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3168
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
3169
+
3170
+ [[package]]
3171
+ name = "unit-prefix"
3172
+ version = "0.5.2"
3173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3174
+ checksum = "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3"
3175
+
3176
+ [[package]]
3177
+ name = "untrusted"
3178
+ version = "0.9.0"
3179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3180
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3181
+
3182
+ [[package]]
3183
+ name = "ureq"
3184
+ version = "3.3.0"
3185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3186
+ checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0"
3187
+ dependencies = [
3188
+ "base64",
3189
+ "der",
3190
+ "log",
3191
+ "native-tls",
3192
+ "percent-encoding",
3193
+ "rustls",
3194
+ "rustls-pki-types",
3195
+ "socks",
3196
+ "ureq-proto",
3197
+ "utf8-zero",
3198
+ "webpki-root-certs",
3199
+ "webpki-roots",
3200
+ ]
3201
+
3202
+ [[package]]
3203
+ name = "ureq-proto"
3204
+ version = "0.6.0"
3205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3206
+ checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c"
3207
+ dependencies = [
3208
+ "base64",
3209
+ "http",
3210
+ "httparse",
3211
+ "log",
3212
+ ]
3213
+
3214
+ [[package]]
3215
+ name = "utf8-zero"
3216
+ version = "0.8.1"
3217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3218
+ checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
3219
+
3220
+ [[package]]
3221
+ name = "utf8parse"
3222
+ version = "0.2.2"
3223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3224
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3225
+
3226
+ [[package]]
3227
+ name = "uuid"
3228
+ version = "1.24.0"
3229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3230
+ checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
3231
+ dependencies = [
3232
+ "getrandom 0.4.2",
3233
+ "js-sys",
3234
+ "wasm-bindgen",
3235
+ ]
3236
+
3237
+ [[package]]
3238
+ name = "valuable"
3239
+ version = "0.1.1"
3240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3241
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3242
+
3243
+ [[package]]
3244
+ name = "vcpkg"
3245
+ version = "0.2.15"
3246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3247
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3248
+
3249
+ [[package]]
3250
+ name = "version_check"
3251
+ version = "0.9.5"
3252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3253
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3254
+
3255
+ [[package]]
3256
+ name = "vte"
3257
+ version = "0.14.1"
3258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3259
+ checksum = "231fdcd7ef3037e8330d8e17e61011a2c244126acc0a982f4040ac3f9f0bc077"
3260
+ dependencies = [
3261
+ "arrayvec",
3262
+ "memchr",
3263
+ ]
3264
+
3265
+ [[package]]
3266
+ name = "walkdir"
3267
+ version = "2.5.0"
3268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3269
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3270
+ dependencies = [
3271
+ "same-file",
3272
+ "winapi-util",
3273
+ ]
3274
+
3275
+ [[package]]
3276
+ name = "wasi"
3277
+ version = "0.11.1+wasi-snapshot-preview1"
3278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3279
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3280
+
3281
+ [[package]]
3282
+ name = "wasip2"
3283
+ version = "1.0.4+wasi-0.2.12"
3284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3285
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
3286
+ dependencies = [
3287
+ "wit-bindgen 0.57.1",
3288
+ ]
3289
+
3290
+ [[package]]
3291
+ name = "wasip3"
3292
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
3293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3294
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
3295
+ dependencies = [
3296
+ "wit-bindgen 0.51.0",
3297
+ ]
3298
+
3299
+ [[package]]
3300
+ name = "wasm-bindgen"
3301
+ version = "0.2.125"
3302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3303
+ checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a"
3304
+ dependencies = [
3305
+ "cfg-if",
3306
+ "once_cell",
3307
+ "rustversion",
3308
+ "wasm-bindgen-macro",
3309
+ "wasm-bindgen-shared",
3310
+ ]
3311
+
3312
+ [[package]]
3313
+ name = "wasm-bindgen-macro"
3314
+ version = "0.2.125"
3315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3316
+ checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d"
3317
+ dependencies = [
3318
+ "quote",
3319
+ "wasm-bindgen-macro-support",
3320
+ ]
3321
+
3322
+ [[package]]
3323
+ name = "wasm-bindgen-macro-support"
3324
+ version = "0.2.125"
3325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3326
+ checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd"
3327
+ dependencies = [
3328
+ "bumpalo",
3329
+ "proc-macro2",
3330
+ "quote",
3331
+ "syn 2.0.117",
3332
+ "wasm-bindgen-shared",
3333
+ ]
3334
+
3335
+ [[package]]
3336
+ name = "wasm-bindgen-shared"
3337
+ version = "0.2.125"
3338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3339
+ checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f"
3340
+ dependencies = [
3341
+ "unicode-ident",
3342
+ ]
3343
+
3344
+ [[package]]
3345
+ name = "wasm-encoder"
3346
+ version = "0.244.0"
3347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3348
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
3349
+ dependencies = [
3350
+ "leb128fmt",
3351
+ "wasmparser",
3352
+ ]
3353
+
3354
+ [[package]]
3355
+ name = "wasm-metadata"
3356
+ version = "0.244.0"
3357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3358
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
3359
+ dependencies = [
3360
+ "anyhow",
3361
+ "indexmap",
3362
+ "wasm-encoder",
3363
+ "wasmparser",
3364
+ ]
3365
+
3366
+ [[package]]
3367
+ name = "wasmparser"
3368
+ version = "0.244.0"
3369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3370
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
3371
+ dependencies = [
3372
+ "bitflags",
3373
+ "hashbrown 0.15.5",
3374
+ "indexmap",
3375
+ "semver",
3376
+ ]
3377
+
3378
+ [[package]]
3379
+ name = "web-sys"
3380
+ version = "0.3.102"
3381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3382
+ checksum = "a6430a72df5eb332242960fe84b3002a241163998241eb596d4f739b9757061d"
3383
+ dependencies = [
3384
+ "js-sys",
3385
+ "wasm-bindgen",
3386
+ ]
3387
+
3388
+ [[package]]
3389
+ name = "web-time"
3390
+ version = "1.1.0"
3391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3392
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3393
+ dependencies = [
3394
+ "js-sys",
3395
+ "wasm-bindgen",
3396
+ ]
3397
+
3398
+ [[package]]
3399
+ name = "webpki-root-certs"
3400
+ version = "1.0.7"
3401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3402
+ checksum = "f31141ce3fc3e300ae89b78c0dd67f9708061d1d2eda54b8209346fd6be9a92c"
3403
+ dependencies = [
3404
+ "rustls-pki-types",
3405
+ ]
3406
+
3407
+ [[package]]
3408
+ name = "webpki-roots"
3409
+ version = "1.0.8"
3410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3411
+ checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf"
3412
+ dependencies = [
3413
+ "rustls-pki-types",
3414
+ ]
3415
+
3416
+ [[package]]
3417
+ name = "winapi"
3418
+ version = "0.3.9"
3419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3420
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3421
+ dependencies = [
3422
+ "winapi-i686-pc-windows-gnu",
3423
+ "winapi-x86_64-pc-windows-gnu",
3424
+ ]
3425
+
3426
+ [[package]]
3427
+ name = "winapi-i686-pc-windows-gnu"
3428
+ version = "0.4.0"
3429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3430
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3431
+
3432
+ [[package]]
3433
+ name = "winapi-util"
3434
+ version = "0.1.11"
3435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3436
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3437
+ dependencies = [
3438
+ "windows-sys 0.61.2",
3439
+ ]
3440
+
3441
+ [[package]]
3442
+ name = "winapi-x86_64-pc-windows-gnu"
3443
+ version = "0.4.0"
3444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3445
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3446
+
3447
+ [[package]]
3448
+ name = "windows-core"
3449
+ version = "0.62.2"
3450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3451
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3452
+ dependencies = [
3453
+ "windows-implement",
3454
+ "windows-interface",
3455
+ "windows-link",
3456
+ "windows-result",
3457
+ "windows-strings",
3458
+ ]
3459
+
3460
+ [[package]]
3461
+ name = "windows-implement"
3462
+ version = "0.60.2"
3463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3464
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3465
+ dependencies = [
3466
+ "proc-macro2",
3467
+ "quote",
3468
+ "syn 2.0.117",
3469
+ ]
3470
+
3471
+ [[package]]
3472
+ name = "windows-interface"
3473
+ version = "0.59.3"
3474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3475
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3476
+ dependencies = [
3477
+ "proc-macro2",
3478
+ "quote",
3479
+ "syn 2.0.117",
3480
+ ]
3481
+
3482
+ [[package]]
3483
+ name = "windows-link"
3484
+ version = "0.2.1"
3485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3486
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3487
+
3488
+ [[package]]
3489
+ name = "windows-result"
3490
+ version = "0.4.1"
3491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3492
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3493
+ dependencies = [
3494
+ "windows-link",
3495
+ ]
3496
+
3497
+ [[package]]
3498
+ name = "windows-strings"
3499
+ version = "0.5.1"
3500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3501
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3502
+ dependencies = [
3503
+ "windows-link",
3504
+ ]
3505
+
3506
+ [[package]]
3507
+ name = "windows-sys"
3508
+ version = "0.52.0"
3509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3510
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3511
+ dependencies = [
3512
+ "windows-targets",
3513
+ ]
3514
+
3515
+ [[package]]
3516
+ name = "windows-sys"
3517
+ version = "0.61.2"
3518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3519
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3520
+ dependencies = [
3521
+ "windows-link",
3522
+ ]
3523
+
3524
+ [[package]]
3525
+ name = "windows-targets"
3526
+ version = "0.52.6"
3527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3528
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3529
+ dependencies = [
3530
+ "windows_aarch64_gnullvm",
3531
+ "windows_aarch64_msvc",
3532
+ "windows_i686_gnu",
3533
+ "windows_i686_gnullvm",
3534
+ "windows_i686_msvc",
3535
+ "windows_x86_64_gnu",
3536
+ "windows_x86_64_gnullvm",
3537
+ "windows_x86_64_msvc",
3538
+ ]
3539
+
3540
+ [[package]]
3541
+ name = "windows_aarch64_gnullvm"
3542
+ version = "0.52.6"
3543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3544
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3545
+
3546
+ [[package]]
3547
+ name = "windows_aarch64_msvc"
3548
+ version = "0.52.6"
3549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3550
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3551
+
3552
+ [[package]]
3553
+ name = "windows_i686_gnu"
3554
+ version = "0.52.6"
3555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3556
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3557
+
3558
+ [[package]]
3559
+ name = "windows_i686_gnullvm"
3560
+ version = "0.52.6"
3561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3562
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3563
+
3564
+ [[package]]
3565
+ name = "windows_i686_msvc"
3566
+ version = "0.52.6"
3567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3568
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3569
+
3570
+ [[package]]
3571
+ name = "windows_x86_64_gnu"
3572
+ version = "0.52.6"
3573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3574
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3575
+
3576
+ [[package]]
3577
+ name = "windows_x86_64_gnullvm"
3578
+ version = "0.52.6"
3579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3580
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3581
+
3582
+ [[package]]
3583
+ name = "windows_x86_64_msvc"
3584
+ version = "0.52.6"
3585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3586
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3587
+
3588
+ [[package]]
3589
+ name = "wit-bindgen"
3590
+ version = "0.51.0"
3591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3592
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3593
+ dependencies = [
3594
+ "wit-bindgen-rust-macro",
3595
+ ]
3596
+
3597
+ [[package]]
3598
+ name = "wit-bindgen"
3599
+ version = "0.57.1"
3600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3601
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
3602
+
3603
+ [[package]]
3604
+ name = "wit-bindgen-core"
3605
+ version = "0.51.0"
3606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3607
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
3608
+ dependencies = [
3609
+ "anyhow",
3610
+ "heck",
3611
+ "wit-parser",
3612
+ ]
3613
+
3614
+ [[package]]
3615
+ name = "wit-bindgen-rust"
3616
+ version = "0.51.0"
3617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3618
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
3619
+ dependencies = [
3620
+ "anyhow",
3621
+ "heck",
3622
+ "indexmap",
3623
+ "prettyplease",
3624
+ "syn 2.0.117",
3625
+ "wasm-metadata",
3626
+ "wit-bindgen-core",
3627
+ "wit-component",
3628
+ ]
3629
+
3630
+ [[package]]
3631
+ name = "wit-bindgen-rust-macro"
3632
+ version = "0.51.0"
3633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3634
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3635
+ dependencies = [
3636
+ "anyhow",
3637
+ "prettyplease",
3638
+ "proc-macro2",
3639
+ "quote",
3640
+ "syn 2.0.117",
3641
+ "wit-bindgen-core",
3642
+ "wit-bindgen-rust",
3643
+ ]
3644
+
3645
+ [[package]]
3646
+ name = "wit-component"
3647
+ version = "0.244.0"
3648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3649
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3650
+ dependencies = [
3651
+ "anyhow",
3652
+ "bitflags",
3653
+ "indexmap",
3654
+ "log",
3655
+ "serde",
3656
+ "serde_derive",
3657
+ "serde_json",
3658
+ "wasm-encoder",
3659
+ "wasm-metadata",
3660
+ "wasmparser",
3661
+ "wit-parser",
3662
+ ]
3663
+
3664
+ [[package]]
3665
+ name = "wit-parser"
3666
+ version = "0.244.0"
3667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3668
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
3669
+ dependencies = [
3670
+ "anyhow",
3671
+ "id-arena",
3672
+ "indexmap",
3673
+ "log",
3674
+ "semver",
3675
+ "serde",
3676
+ "serde_derive",
3677
+ "serde_json",
3678
+ "unicode-xid",
3679
+ "wasmparser",
3680
+ ]
3681
+
3682
+ [[package]]
3683
+ name = "xattr"
3684
+ version = "1.6.1"
3685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3686
+ checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
3687
+ dependencies = [
3688
+ "libc",
3689
+ "rustix",
3690
+ ]
3691
+
3692
+ [[package]]
3693
+ name = "zerocopy"
3694
+ version = "0.8.52"
3695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3696
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
3697
+ dependencies = [
3698
+ "zerocopy-derive",
3699
+ ]
3700
+
3701
+ [[package]]
3702
+ name = "zerocopy-derive"
3703
+ version = "0.8.52"
3704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3705
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
3706
+ dependencies = [
3707
+ "proc-macro2",
3708
+ "quote",
3709
+ "syn 2.0.117",
3710
+ ]
3711
+
3712
+ [[package]]
3713
+ name = "zeroize"
3714
+ version = "1.8.2"
3715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3716
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3717
+
3718
+ [[package]]
3719
+ name = "zlib-rs"
3720
+ version = "0.6.3"
3721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3722
+ checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
3723
+
3724
+ [[package]]
3725
+ name = "zmij"
3726
+ version = "1.0.21"
3727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3728
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
3729
+
3730
+ [[package]]
3731
+ name = "zstd"
3732
+ version = "0.13.3"
3733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3734
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
3735
+ dependencies = [
3736
+ "zstd-safe",
3737
+ ]
3738
+
3739
+ [[package]]
3740
+ name = "zstd-safe"
3741
+ version = "7.2.4"
3742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3743
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
3744
+ dependencies = [
3745
+ "zstd-sys",
3746
+ ]
3747
+
3748
+ [[package]]
3749
+ name = "zstd-sys"
3750
+ version = "2.0.16+zstd.1.5.7"
3751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3752
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
3753
+ dependencies = [
3754
+ "cc",
3755
+ "pkg-config",
3756
+ ]