fqxv 0.4.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (113) hide show
  1. fqxv-0.4.0/Cargo.lock +1621 -0
  2. fqxv-0.4.0/Cargo.toml +104 -0
  3. fqxv-0.4.0/PKG-INFO +55 -0
  4. fqxv-0.4.0/README.md +39 -0
  5. fqxv-0.4.0/crates/fqxv/Cargo.toml +35 -0
  6. fqxv-0.4.0/crates/fqxv/README.md +28 -0
  7. fqxv-0.4.0/crates/fqxv/examples/indel_probe.rs +144 -0
  8. fqxv-0.4.0/crates/fqxv/examples/lroverlap_refcodec_ab.rs +158 -0
  9. fqxv-0.4.0/crates/fqxv/examples/lzma_probe.rs +47 -0
  10. fqxv-0.4.0/crates/fqxv/examples/op_mix.rs +173 -0
  11. fqxv-0.4.0/crates/fqxv/examples/op_mix_global.rs +400 -0
  12. fqxv-0.4.0/crates/fqxv/examples/ordersweep.rs +36 -0
  13. fqxv-0.4.0/crates/fqxv/examples/qsweep.rs +257 -0
  14. fqxv-0.4.0/crates/fqxv/examples/refcodec_ab.rs +150 -0
  15. fqxv-0.4.0/crates/fqxv/examples/scaling.rs +89 -0
  16. fqxv-0.4.0/crates/fqxv/examples/stream_split.rs +186 -0
  17. fqxv-0.4.0/crates/fqxv/src/container/block.rs +1042 -0
  18. fqxv-0.4.0/crates/fqxv/src/container/compress.rs +992 -0
  19. fqxv-0.4.0/crates/fqxv/src/container/decompress.rs +421 -0
  20. fqxv-0.4.0/crates/fqxv/src/container/estimate.rs +220 -0
  21. fqxv-0.4.0/crates/fqxv/src/container/format.rs +800 -0
  22. fqxv-0.4.0/crates/fqxv/src/container/inspect.rs +774 -0
  23. fqxv-0.4.0/crates/fqxv/src/container/mod.rs +176 -0
  24. fqxv-0.4.0/crates/fqxv/src/container/parse.rs +296 -0
  25. fqxv-0.4.0/crates/fqxv/src/container/random_access.rs +297 -0
  26. fqxv-0.4.0/crates/fqxv/src/container/records.rs +444 -0
  27. fqxv-0.4.0/crates/fqxv/src/container/reorder.rs +1198 -0
  28. fqxv-0.4.0/crates/fqxv/src/container/select.rs +74 -0
  29. fqxv-0.4.0/crates/fqxv/src/container/tests.rs +2780 -0
  30. fqxv-0.4.0/crates/fqxv/src/container/verify.rs +467 -0
  31. fqxv-0.4.0/crates/fqxv/src/crc.rs +262 -0
  32. fqxv-0.4.0/crates/fqxv/src/lib.rs +182 -0
  33. fqxv-0.4.0/crates/fqxv/tests/corruption.rs +151 -0
  34. fqxv-0.4.0/crates/fqxv-bytes/Cargo.toml +19 -0
  35. fqxv-0.4.0/crates/fqxv-bytes/README.md +21 -0
  36. fqxv-0.4.0/crates/fqxv-bytes/src/lib.rs +411 -0
  37. fqxv-0.4.0/crates/fqxv-dna/Cargo.toml +19 -0
  38. fqxv-0.4.0/crates/fqxv-dna/README.md +22 -0
  39. fqxv-0.4.0/crates/fqxv-dna/src/lib.rs +210 -0
  40. fqxv-0.4.0/crates/fqxv-fqzcomp/Cargo.toml +29 -0
  41. fqxv-0.4.0/crates/fqxv-fqzcomp/README.md +21 -0
  42. fqxv-0.4.0/crates/fqxv-fqzcomp/benches/fqzcomp.rs +60 -0
  43. fqxv-0.4.0/crates/fqxv-fqzcomp/examples/ctx_probe.rs +164 -0
  44. fqxv-0.4.0/crates/fqxv-fqzcomp/examples/qual.rs +43 -0
  45. fqxv-0.4.0/crates/fqxv-fqzcomp/examples/qual_bench.rs +86 -0
  46. fqxv-0.4.0/crates/fqxv-fqzcomp/src/binmix.rs +430 -0
  47. fqxv-0.4.0/crates/fqxv-fqzcomp/src/lib.rs +1111 -0
  48. fqxv-0.4.0/crates/fqxv-lroverlap/Cargo.toml +32 -0
  49. fqxv-0.4.0/crates/fqxv-lroverlap/README.md +28 -0
  50. fqxv-0.4.0/crates/fqxv-lroverlap/examples/encode.rs +550 -0
  51. fqxv-0.4.0/crates/fqxv-lroverlap/examples/overlaps.rs +142 -0
  52. fqxv-0.4.0/crates/fqxv-lroverlap/examples/tile_sweep.rs +118 -0
  53. fqxv-0.4.0/crates/fqxv-lroverlap/examples/wfa_bench.rs +200 -0
  54. fqxv-0.4.0/crates/fqxv-lroverlap/proptest-regressions/minimizer.txt +7 -0
  55. fqxv-0.4.0/crates/fqxv-lroverlap/src/align.rs +872 -0
  56. fqxv-0.4.0/crates/fqxv-lroverlap/src/chain.rs +467 -0
  57. fqxv-0.4.0/crates/fqxv-lroverlap/src/codec.rs +1415 -0
  58. fqxv-0.4.0/crates/fqxv-lroverlap/src/consensus.rs +1050 -0
  59. fqxv-0.4.0/crates/fqxv-lroverlap/src/index.rs +479 -0
  60. fqxv-0.4.0/crates/fqxv-lroverlap/src/layout.rs +593 -0
  61. fqxv-0.4.0/crates/fqxv-lroverlap/src/lib.rs +260 -0
  62. fqxv-0.4.0/crates/fqxv-lroverlap/src/minimizer.rs +481 -0
  63. fqxv-0.4.0/crates/fqxv-lroverlap/src/overlap.rs +435 -0
  64. fqxv-0.4.0/crates/fqxv-lroverlap/src/refine.rs +460 -0
  65. fqxv-0.4.0/crates/fqxv-lroverlap/src/script.rs +377 -0
  66. fqxv-0.4.0/crates/fqxv-lroverlap/src/tile.rs +1078 -0
  67. fqxv-0.4.0/crates/fqxv-lroverlap/src/wfa.rs +433 -0
  68. fqxv-0.4.0/crates/fqxv-python/Cargo.toml +28 -0
  69. fqxv-0.4.0/crates/fqxv-python/README.md +39 -0
  70. fqxv-0.4.0/crates/fqxv-python/src/lib.rs +535 -0
  71. fqxv-0.4.0/crates/fqxv-python/tests/test_smoke.py +116 -0
  72. fqxv-0.4.0/crates/fqxv-range/Cargo.toml +22 -0
  73. fqxv-0.4.0/crates/fqxv-range/README.md +24 -0
  74. fqxv-0.4.0/crates/fqxv-range/src/lib.rs +336 -0
  75. fqxv-0.4.0/crates/fqxv-rans/Cargo.toml +32 -0
  76. fqxv-0.4.0/crates/fqxv-rans/README.md +27 -0
  77. fqxv-0.4.0/crates/fqxv-rans/benches/rans.rs +91 -0
  78. fqxv-0.4.0/crates/fqxv-rans/examples/entropy.rs +39 -0
  79. fqxv-0.4.0/crates/fqxv-rans/proptest-regressions/lib.txt +7 -0
  80. fqxv-0.4.0/crates/fqxv-rans/src/avx2.rs +399 -0
  81. fqxv-0.4.0/crates/fqxv-rans/src/avx512.rs +291 -0
  82. fqxv-0.4.0/crates/fqxv-rans/src/lib.rs +578 -0
  83. fqxv-0.4.0/crates/fqxv-rans/src/model.rs +393 -0
  84. fqxv-0.4.0/crates/fqxv-rans/src/scalar.rs +277 -0
  85. fqxv-0.4.0/crates/fqxv-reorder/Cargo.toml +33 -0
  86. fqxv-0.4.0/crates/fqxv-reorder/README.md +23 -0
  87. fqxv-0.4.0/crates/fqxv-reorder/benches/reorder.rs +60 -0
  88. fqxv-0.4.0/crates/fqxv-reorder/examples/delta.rs +136 -0
  89. fqxv-0.4.0/crates/fqxv-reorder/examples/gain.rs +68 -0
  90. fqxv-0.4.0/crates/fqxv-reorder/examples/keystats.rs +222 -0
  91. fqxv-0.4.0/crates/fqxv-reorder/proptest-regressions/lib.txt +7 -0
  92. fqxv-0.4.0/crates/fqxv-reorder/proptest-regressions/reflzma.txt +8 -0
  93. fqxv-0.4.0/crates/fqxv-reorder/proptest-regressions/refpack.txt +8 -0
  94. fqxv-0.4.0/crates/fqxv-reorder/src/clustered.rs +342 -0
  95. fqxv-0.4.0/crates/fqxv-reorder/src/column.rs +117 -0
  96. fqxv-0.4.0/crates/fqxv-reorder/src/global.rs +561 -0
  97. fqxv-0.4.0/crates/fqxv-reorder/src/lib.rs +721 -0
  98. fqxv-0.4.0/crates/fqxv-reorder/src/merge.rs +372 -0
  99. fqxv-0.4.0/crates/fqxv-reorder/src/plan.rs +141 -0
  100. fqxv-0.4.0/crates/fqxv-reorder/src/refpack.rs +280 -0
  101. fqxv-0.4.0/crates/fqxv-reorder/src/rescue.rs +597 -0
  102. fqxv-0.4.0/crates/fqxv-seq/Cargo.toml +30 -0
  103. fqxv-0.4.0/crates/fqxv-seq/README.md +19 -0
  104. fqxv-0.4.0/crates/fqxv-seq/benches/seq.rs +54 -0
  105. fqxv-0.4.0/crates/fqxv-seq/examples/seq.rs +40 -0
  106. fqxv-0.4.0/crates/fqxv-seq/src/lib.rs +892 -0
  107. fqxv-0.4.0/crates/fqxv-seq/src/lzma.rs +1017 -0
  108. fqxv-0.4.0/crates/fqxv-tokenizer/Cargo.toml +29 -0
  109. fqxv-0.4.0/crates/fqxv-tokenizer/README.md +22 -0
  110. fqxv-0.4.0/crates/fqxv-tokenizer/benches/tokenizer.rs +54 -0
  111. fqxv-0.4.0/crates/fqxv-tokenizer/examples/names.rs +36 -0
  112. fqxv-0.4.0/crates/fqxv-tokenizer/src/lib.rs +1040 -0
  113. fqxv-0.4.0/pyproject.toml +28 -0
fqxv-0.4.0/Cargo.lock ADDED
@@ -0,0 +1,1621 @@
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 = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "alloca"
22
+ version = "0.4.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
25
+ dependencies = [
26
+ "cc",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anes"
31
+ version = "0.1.6"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
34
+
35
+ [[package]]
36
+ name = "anstream"
37
+ version = "1.0.0"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
40
+ dependencies = [
41
+ "anstyle",
42
+ "anstyle-parse",
43
+ "anstyle-query",
44
+ "anstyle-wincon",
45
+ "colorchoice",
46
+ "is_terminal_polyfill",
47
+ "utf8parse",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle"
52
+ version = "1.0.14"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
55
+
56
+ [[package]]
57
+ name = "anstyle-parse"
58
+ version = "1.0.0"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
61
+ dependencies = [
62
+ "utf8parse",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "anstyle-query"
67
+ version = "1.1.5"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
70
+ dependencies = [
71
+ "windows-sys",
72
+ ]
73
+
74
+ [[package]]
75
+ name = "anstyle-wincon"
76
+ version = "3.0.11"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
79
+ dependencies = [
80
+ "anstyle",
81
+ "once_cell_polyfill",
82
+ "windows-sys",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "anyhow"
87
+ version = "1.0.104"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
90
+
91
+ [[package]]
92
+ name = "autocfg"
93
+ version = "1.5.1"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
96
+
97
+ [[package]]
98
+ name = "bit-set"
99
+ version = "0.8.0"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
102
+ dependencies = [
103
+ "bit-vec",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "bit-vec"
108
+ version = "0.8.0"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
111
+
112
+ [[package]]
113
+ name = "bitflags"
114
+ version = "2.13.0"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
117
+
118
+ [[package]]
119
+ name = "block2"
120
+ version = "0.6.2"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
123
+ dependencies = [
124
+ "objc2",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "bstr"
129
+ version = "1.12.3"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "5cee35f73844aa3014bb606320a6c1f010249dbdf43342fe54b5a4f6a8ed4b79"
132
+ dependencies = [
133
+ "memchr",
134
+ "serde_core",
135
+ ]
136
+
137
+ [[package]]
138
+ name = "bumpalo"
139
+ version = "3.20.3"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
142
+
143
+ [[package]]
144
+ name = "bytecount"
145
+ version = "0.6.9"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
148
+
149
+ [[package]]
150
+ name = "bytes"
151
+ version = "1.12.1"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
154
+
155
+ [[package]]
156
+ name = "cast"
157
+ version = "0.3.0"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
160
+
161
+ [[package]]
162
+ name = "cc"
163
+ version = "1.2.67"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
166
+ dependencies = [
167
+ "find-msvc-tools",
168
+ "shlex",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "cfg-if"
173
+ version = "1.0.4"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
176
+
177
+ [[package]]
178
+ name = "cfg_aliases"
179
+ version = "0.2.2"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
182
+
183
+ [[package]]
184
+ name = "ciborium"
185
+ version = "0.2.2"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
188
+ dependencies = [
189
+ "ciborium-io",
190
+ "ciborium-ll",
191
+ "serde",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "ciborium-io"
196
+ version = "0.2.2"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
199
+
200
+ [[package]]
201
+ name = "ciborium-ll"
202
+ version = "0.2.2"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
205
+ dependencies = [
206
+ "ciborium-io",
207
+ "half",
208
+ ]
209
+
210
+ [[package]]
211
+ name = "clap"
212
+ version = "4.6.2"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "dd059f9da4f5c36b3787f65d38ccaab1cc315f07b01f89abc8359ee6a8205011"
215
+ dependencies = [
216
+ "clap_builder",
217
+ "clap_derive",
218
+ ]
219
+
220
+ [[package]]
221
+ name = "clap_builder"
222
+ version = "4.6.2"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
225
+ dependencies = [
226
+ "anstream",
227
+ "anstyle",
228
+ "clap_lex",
229
+ "strsim",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "clap_derive"
234
+ version = "4.6.1"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
237
+ dependencies = [
238
+ "heck",
239
+ "proc-macro2",
240
+ "quote",
241
+ "syn 2.0.118",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "clap_lex"
246
+ version = "1.1.0"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
249
+
250
+ [[package]]
251
+ name = "colorchoice"
252
+ version = "1.0.5"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
255
+
256
+ [[package]]
257
+ name = "console"
258
+ version = "0.16.4"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "4fe5f465a4f6fee88fad41b85d990f84c835335e85b5d9e6e63e0d06d28cba7c"
261
+ dependencies = [
262
+ "encode_unicode",
263
+ "libc",
264
+ "unicode-width",
265
+ "windows-sys",
266
+ ]
267
+
268
+ [[package]]
269
+ name = "crc32fast"
270
+ version = "1.5.0"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
273
+ dependencies = [
274
+ "cfg-if",
275
+ ]
276
+
277
+ [[package]]
278
+ name = "criterion"
279
+ version = "0.8.2"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
282
+ dependencies = [
283
+ "alloca",
284
+ "anes",
285
+ "cast",
286
+ "ciborium",
287
+ "clap",
288
+ "criterion-plot",
289
+ "itertools",
290
+ "num-traits",
291
+ "oorandom",
292
+ "page_size",
293
+ "plotters",
294
+ "rayon",
295
+ "regex",
296
+ "serde",
297
+ "serde_json",
298
+ "tinytemplate",
299
+ "walkdir",
300
+ ]
301
+
302
+ [[package]]
303
+ name = "criterion-plot"
304
+ version = "0.8.2"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
307
+ dependencies = [
308
+ "cast",
309
+ "itertools",
310
+ ]
311
+
312
+ [[package]]
313
+ name = "crossbeam-channel"
314
+ version = "0.5.16"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
317
+ dependencies = [
318
+ "crossbeam-utils",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "crossbeam-deque"
323
+ version = "0.8.7"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
326
+ dependencies = [
327
+ "crossbeam-epoch",
328
+ "crossbeam-utils",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "crossbeam-epoch"
333
+ version = "0.9.20"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
336
+ dependencies = [
337
+ "crossbeam-utils",
338
+ ]
339
+
340
+ [[package]]
341
+ name = "crossbeam-utils"
342
+ version = "0.8.22"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
345
+
346
+ [[package]]
347
+ name = "crunchy"
348
+ version = "0.2.4"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
351
+
352
+ [[package]]
353
+ name = "ctrlc"
354
+ version = "3.5.2"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "e0b1fab2ae45819af2d0731d60f2afe17227ebb1a1538a236da84c93e9a60162"
357
+ dependencies = [
358
+ "dispatch2",
359
+ "nix",
360
+ "windows-sys",
361
+ ]
362
+
363
+ [[package]]
364
+ name = "dispatch2"
365
+ version = "0.3.1"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
368
+ dependencies = [
369
+ "bitflags",
370
+ "block2",
371
+ "libc",
372
+ "objc2",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "either"
377
+ version = "1.16.0"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
380
+
381
+ [[package]]
382
+ name = "encode_unicode"
383
+ version = "1.0.0"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
386
+
387
+ [[package]]
388
+ name = "errno"
389
+ version = "0.3.14"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
392
+ dependencies = [
393
+ "libc",
394
+ "windows-sys",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "fastrand"
399
+ version = "2.4.1"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
402
+
403
+ [[package]]
404
+ name = "find-msvc-tools"
405
+ version = "0.1.9"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
408
+
409
+ [[package]]
410
+ name = "flate2"
411
+ version = "1.1.9"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
414
+ dependencies = [
415
+ "crc32fast",
416
+ "miniz_oxide",
417
+ ]
418
+
419
+ [[package]]
420
+ name = "fnv"
421
+ version = "1.0.7"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
424
+
425
+ [[package]]
426
+ name = "fqxv"
427
+ version = "0.4.0"
428
+ dependencies = [
429
+ "fqxv-bytes",
430
+ "fqxv-fqzcomp",
431
+ "fqxv-lroverlap",
432
+ "fqxv-range",
433
+ "fqxv-rans",
434
+ "fqxv-reorder",
435
+ "fqxv-seq",
436
+ "fqxv-tokenizer",
437
+ "memchr",
438
+ "noodles-fastq",
439
+ "proptest",
440
+ "rayon",
441
+ "thiserror",
442
+ "tracing",
443
+ "xxhash-rust",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "fqxv-bytes"
448
+ version = "0.4.0"
449
+ dependencies = [
450
+ "proptest",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "fqxv-cli"
455
+ version = "0.4.0"
456
+ dependencies = [
457
+ "anyhow",
458
+ "clap",
459
+ "ctrlc",
460
+ "flate2",
461
+ "fqxv",
462
+ "indicatif",
463
+ "noodles-bgzf",
464
+ "owo-colors",
465
+ "rayon",
466
+ "serde",
467
+ "serde_json",
468
+ "tabled",
469
+ "tracing",
470
+ "tracing-subscriber",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "fqxv-dna"
475
+ version = "0.4.0"
476
+ dependencies = [
477
+ "proptest",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "fqxv-fqzcomp"
482
+ version = "0.4.0"
483
+ dependencies = [
484
+ "criterion",
485
+ "fqxv-bytes",
486
+ "fqxv-range",
487
+ "proptest",
488
+ "thiserror",
489
+ ]
490
+
491
+ [[package]]
492
+ name = "fqxv-lroverlap"
493
+ version = "0.4.0"
494
+ dependencies = [
495
+ "fqxv-bytes",
496
+ "fqxv-dna",
497
+ "fqxv-range",
498
+ "fqxv-rans",
499
+ "fqxv-seq",
500
+ "proptest",
501
+ "rayon",
502
+ "thiserror",
503
+ ]
504
+
505
+ [[package]]
506
+ name = "fqxv-python"
507
+ version = "0.4.0"
508
+ dependencies = [
509
+ "fqxv",
510
+ "pyo3",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "fqxv-range"
515
+ version = "0.4.0"
516
+ dependencies = [
517
+ "proptest",
518
+ "thiserror",
519
+ ]
520
+
521
+ [[package]]
522
+ name = "fqxv-rans"
523
+ version = "0.4.0"
524
+ dependencies = [
525
+ "criterion",
526
+ "proptest",
527
+ "thiserror",
528
+ ]
529
+
530
+ [[package]]
531
+ name = "fqxv-reorder"
532
+ version = "0.4.0"
533
+ dependencies = [
534
+ "criterion",
535
+ "fqxv-bytes",
536
+ "fqxv-dna",
537
+ "fqxv-range",
538
+ "fqxv-rans",
539
+ "fqxv-seq",
540
+ "proptest",
541
+ "rayon",
542
+ "thiserror",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "fqxv-seq"
547
+ version = "0.4.0"
548
+ dependencies = [
549
+ "criterion",
550
+ "fqxv-bytes",
551
+ "fqxv-dna",
552
+ "fqxv-range",
553
+ "proptest",
554
+ "thiserror",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "fqxv-tokenizer"
559
+ version = "0.4.0"
560
+ dependencies = [
561
+ "criterion",
562
+ "fqxv-bytes",
563
+ "fqxv-rans",
564
+ "proptest",
565
+ "thiserror",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "futures-core"
570
+ version = "0.3.32"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
573
+
574
+ [[package]]
575
+ name = "futures-task"
576
+ version = "0.3.32"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
579
+
580
+ [[package]]
581
+ name = "futures-util"
582
+ version = "0.3.32"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
585
+ dependencies = [
586
+ "futures-core",
587
+ "futures-task",
588
+ "pin-project-lite",
589
+ "slab",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "getrandom"
594
+ version = "0.3.4"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
597
+ dependencies = [
598
+ "cfg-if",
599
+ "libc",
600
+ "r-efi 5.3.0",
601
+ "wasip2",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "getrandom"
606
+ version = "0.4.3"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
609
+ dependencies = [
610
+ "cfg-if",
611
+ "libc",
612
+ "r-efi 6.0.0",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "half"
617
+ version = "2.7.1"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
620
+ dependencies = [
621
+ "cfg-if",
622
+ "crunchy",
623
+ "zerocopy",
624
+ ]
625
+
626
+ [[package]]
627
+ name = "heck"
628
+ version = "0.5.0"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
631
+
632
+ [[package]]
633
+ name = "indicatif"
634
+ version = "0.18.6"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "9433806cd6b4ec1aba79c021c7e4c58fb4c3b9977c085062e611ac929998fb0c"
637
+ dependencies = [
638
+ "console",
639
+ "portable-atomic",
640
+ "unicode-width",
641
+ "unit-prefix",
642
+ "web-time",
643
+ ]
644
+
645
+ [[package]]
646
+ name = "is_terminal_polyfill"
647
+ version = "1.70.2"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
650
+
651
+ [[package]]
652
+ name = "itertools"
653
+ version = "0.13.0"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
656
+ dependencies = [
657
+ "either",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "itoa"
662
+ version = "1.0.18"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
665
+
666
+ [[package]]
667
+ name = "js-sys"
668
+ version = "0.3.103"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
671
+ dependencies = [
672
+ "cfg-if",
673
+ "futures-util",
674
+ "wasm-bindgen",
675
+ ]
676
+
677
+ [[package]]
678
+ name = "lazy_static"
679
+ version = "1.5.0"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
682
+
683
+ [[package]]
684
+ name = "libc"
685
+ version = "0.2.186"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
688
+
689
+ [[package]]
690
+ name = "linux-raw-sys"
691
+ version = "0.12.1"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
694
+
695
+ [[package]]
696
+ name = "log"
697
+ version = "0.4.33"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
700
+
701
+ [[package]]
702
+ name = "matchers"
703
+ version = "0.2.0"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
706
+ dependencies = [
707
+ "regex-automata",
708
+ ]
709
+
710
+ [[package]]
711
+ name = "memchr"
712
+ version = "2.8.3"
713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
714
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
715
+
716
+ [[package]]
717
+ name = "miniz_oxide"
718
+ version = "0.8.9"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
721
+ dependencies = [
722
+ "adler2",
723
+ "simd-adler32",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "nix"
728
+ version = "0.31.3"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
731
+ dependencies = [
732
+ "bitflags",
733
+ "cfg-if",
734
+ "cfg_aliases",
735
+ "libc",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "noodles-bgzf"
740
+ version = "0.48.0"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "da1dbf501b46281ca402b458211653bc8c510ea605400a1192d272a35360aa54"
743
+ dependencies = [
744
+ "bytes",
745
+ "crossbeam-channel",
746
+ "rayon",
747
+ "zlib-rs",
748
+ ]
749
+
750
+ [[package]]
751
+ name = "noodles-fastq"
752
+ version = "0.23.0"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "f1bd7ca5f1595f089e7373da29fbcda325e05f02ca130424b09e9a877f9de9f9"
755
+ dependencies = [
756
+ "bstr",
757
+ "memchr",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "nu-ansi-term"
762
+ version = "0.50.3"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
765
+ dependencies = [
766
+ "windows-sys",
767
+ ]
768
+
769
+ [[package]]
770
+ name = "num-traits"
771
+ version = "0.2.19"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
774
+ dependencies = [
775
+ "autocfg",
776
+ ]
777
+
778
+ [[package]]
779
+ name = "objc2"
780
+ version = "0.6.4"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
783
+ dependencies = [
784
+ "objc2-encode",
785
+ ]
786
+
787
+ [[package]]
788
+ name = "objc2-encode"
789
+ version = "4.1.0"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
792
+
793
+ [[package]]
794
+ name = "once_cell"
795
+ version = "1.21.4"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
798
+
799
+ [[package]]
800
+ name = "once_cell_polyfill"
801
+ version = "1.70.2"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
804
+
805
+ [[package]]
806
+ name = "oorandom"
807
+ version = "11.1.5"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
810
+
811
+ [[package]]
812
+ name = "owo-colors"
813
+ version = "4.3.0"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "d211803b9b6b570f68772237e415a029d5a50c65d382910b879fb19d3271f94d"
816
+
817
+ [[package]]
818
+ name = "page_size"
819
+ version = "0.6.0"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
822
+ dependencies = [
823
+ "libc",
824
+ "winapi",
825
+ ]
826
+
827
+ [[package]]
828
+ name = "papergrid"
829
+ version = "0.18.0"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "d0984e668274d34691bc2b262ef0d115de5fa9973bcdee7ae32213f93099153e"
832
+ dependencies = [
833
+ "bytecount",
834
+ "fnv",
835
+ "unicode-width",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "pin-project-lite"
840
+ version = "0.2.17"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
843
+
844
+ [[package]]
845
+ name = "plotters"
846
+ version = "0.3.7"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
849
+ dependencies = [
850
+ "num-traits",
851
+ "plotters-backend",
852
+ "plotters-svg",
853
+ "wasm-bindgen",
854
+ "web-sys",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "plotters-backend"
859
+ version = "0.3.7"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
862
+
863
+ [[package]]
864
+ name = "plotters-svg"
865
+ version = "0.3.7"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
868
+ dependencies = [
869
+ "plotters-backend",
870
+ ]
871
+
872
+ [[package]]
873
+ name = "portable-atomic"
874
+ version = "1.13.1"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
877
+
878
+ [[package]]
879
+ name = "ppv-lite86"
880
+ version = "0.2.21"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
883
+ dependencies = [
884
+ "zerocopy",
885
+ ]
886
+
887
+ [[package]]
888
+ name = "proc-macro-error-attr2"
889
+ version = "2.0.0"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
892
+ dependencies = [
893
+ "proc-macro2",
894
+ "quote",
895
+ ]
896
+
897
+ [[package]]
898
+ name = "proc-macro-error2"
899
+ version = "2.0.1"
900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
901
+ checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
902
+ dependencies = [
903
+ "proc-macro-error-attr2",
904
+ "proc-macro2",
905
+ "quote",
906
+ "syn 2.0.118",
907
+ ]
908
+
909
+ [[package]]
910
+ name = "proc-macro2"
911
+ version = "1.0.106"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
914
+ dependencies = [
915
+ "unicode-ident",
916
+ ]
917
+
918
+ [[package]]
919
+ name = "proptest"
920
+ version = "1.11.0"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
923
+ dependencies = [
924
+ "bit-set",
925
+ "bit-vec",
926
+ "bitflags",
927
+ "num-traits",
928
+ "rand",
929
+ "rand_chacha",
930
+ "rand_xorshift",
931
+ "regex-syntax",
932
+ "rusty-fork",
933
+ "tempfile",
934
+ "unarray",
935
+ ]
936
+
937
+ [[package]]
938
+ name = "pyo3"
939
+ version = "0.29.0"
940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
941
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
942
+ dependencies = [
943
+ "libc",
944
+ "once_cell",
945
+ "portable-atomic",
946
+ "pyo3-build-config",
947
+ "pyo3-ffi",
948
+ "pyo3-macros",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "pyo3-build-config"
953
+ version = "0.29.0"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
956
+ dependencies = [
957
+ "target-lexicon",
958
+ ]
959
+
960
+ [[package]]
961
+ name = "pyo3-ffi"
962
+ version = "0.29.0"
963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
964
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
965
+ dependencies = [
966
+ "libc",
967
+ "pyo3-build-config",
968
+ ]
969
+
970
+ [[package]]
971
+ name = "pyo3-macros"
972
+ version = "0.29.0"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
975
+ dependencies = [
976
+ "proc-macro2",
977
+ "pyo3-macros-backend",
978
+ "quote",
979
+ "syn 2.0.118",
980
+ ]
981
+
982
+ [[package]]
983
+ name = "pyo3-macros-backend"
984
+ version = "0.29.0"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
987
+ dependencies = [
988
+ "heck",
989
+ "proc-macro2",
990
+ "quote",
991
+ "syn 2.0.118",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "quick-error"
996
+ version = "1.2.3"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
999
+
1000
+ [[package]]
1001
+ name = "quote"
1002
+ version = "1.0.46"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
1005
+ dependencies = [
1006
+ "proc-macro2",
1007
+ ]
1008
+
1009
+ [[package]]
1010
+ name = "r-efi"
1011
+ version = "5.3.0"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1014
+
1015
+ [[package]]
1016
+ name = "r-efi"
1017
+ version = "6.0.0"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1020
+
1021
+ [[package]]
1022
+ name = "rand"
1023
+ version = "0.9.5"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
1026
+ dependencies = [
1027
+ "rand_chacha",
1028
+ "rand_core",
1029
+ ]
1030
+
1031
+ [[package]]
1032
+ name = "rand_chacha"
1033
+ version = "0.9.0"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1036
+ dependencies = [
1037
+ "ppv-lite86",
1038
+ "rand_core",
1039
+ ]
1040
+
1041
+ [[package]]
1042
+ name = "rand_core"
1043
+ version = "0.9.5"
1044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1045
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1046
+ dependencies = [
1047
+ "getrandom 0.3.4",
1048
+ ]
1049
+
1050
+ [[package]]
1051
+ name = "rand_xorshift"
1052
+ version = "0.4.0"
1053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1054
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1055
+ dependencies = [
1056
+ "rand_core",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "rayon"
1061
+ version = "1.12.0"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1064
+ dependencies = [
1065
+ "either",
1066
+ "rayon-core",
1067
+ ]
1068
+
1069
+ [[package]]
1070
+ name = "rayon-core"
1071
+ version = "1.13.0"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1074
+ dependencies = [
1075
+ "crossbeam-deque",
1076
+ "crossbeam-utils",
1077
+ ]
1078
+
1079
+ [[package]]
1080
+ name = "regex"
1081
+ version = "1.13.0"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "2a0e75113e14dc5acb068cd0786884f214f1312650a3d36d269f5c4f3cdee8a2"
1084
+ dependencies = [
1085
+ "aho-corasick",
1086
+ "memchr",
1087
+ "regex-automata",
1088
+ "regex-syntax",
1089
+ ]
1090
+
1091
+ [[package]]
1092
+ name = "regex-automata"
1093
+ version = "0.4.15"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "1f388202e4b80542a0921078cc23b6333bcf1409c1e3f86404cae4766a6131db"
1096
+ dependencies = [
1097
+ "aho-corasick",
1098
+ "memchr",
1099
+ "regex-syntax",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "regex-syntax"
1104
+ version = "0.8.11"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1107
+
1108
+ [[package]]
1109
+ name = "rustix"
1110
+ version = "1.1.4"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1113
+ dependencies = [
1114
+ "bitflags",
1115
+ "errno",
1116
+ "libc",
1117
+ "linux-raw-sys",
1118
+ "windows-sys",
1119
+ ]
1120
+
1121
+ [[package]]
1122
+ name = "rustversion"
1123
+ version = "1.0.23"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1126
+
1127
+ [[package]]
1128
+ name = "rusty-fork"
1129
+ version = "0.3.1"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1132
+ dependencies = [
1133
+ "fnv",
1134
+ "quick-error",
1135
+ "tempfile",
1136
+ "wait-timeout",
1137
+ ]
1138
+
1139
+ [[package]]
1140
+ name = "same-file"
1141
+ version = "1.0.6"
1142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1144
+ dependencies = [
1145
+ "winapi-util",
1146
+ ]
1147
+
1148
+ [[package]]
1149
+ name = "serde"
1150
+ version = "1.0.229"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1153
+ dependencies = [
1154
+ "serde_core",
1155
+ "serde_derive",
1156
+ ]
1157
+
1158
+ [[package]]
1159
+ name = "serde_core"
1160
+ version = "1.0.229"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1163
+ dependencies = [
1164
+ "serde_derive",
1165
+ ]
1166
+
1167
+ [[package]]
1168
+ name = "serde_derive"
1169
+ version = "1.0.229"
1170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1171
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1172
+ dependencies = [
1173
+ "proc-macro2",
1174
+ "quote",
1175
+ "syn 3.0.0",
1176
+ ]
1177
+
1178
+ [[package]]
1179
+ name = "serde_json"
1180
+ version = "1.0.150"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1183
+ dependencies = [
1184
+ "itoa",
1185
+ "memchr",
1186
+ "serde",
1187
+ "serde_core",
1188
+ "zmij",
1189
+ ]
1190
+
1191
+ [[package]]
1192
+ name = "sharded-slab"
1193
+ version = "0.1.7"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1196
+ dependencies = [
1197
+ "lazy_static",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "shlex"
1202
+ version = "2.0.1"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1205
+
1206
+ [[package]]
1207
+ name = "simd-adler32"
1208
+ version = "0.3.9"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1211
+
1212
+ [[package]]
1213
+ name = "slab"
1214
+ version = "0.4.12"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1217
+
1218
+ [[package]]
1219
+ name = "smallvec"
1220
+ version = "1.15.2"
1221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1223
+
1224
+ [[package]]
1225
+ name = "strsim"
1226
+ version = "0.11.1"
1227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1228
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1229
+
1230
+ [[package]]
1231
+ name = "syn"
1232
+ version = "2.0.118"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
1235
+ dependencies = [
1236
+ "proc-macro2",
1237
+ "quote",
1238
+ "unicode-ident",
1239
+ ]
1240
+
1241
+ [[package]]
1242
+ name = "syn"
1243
+ version = "3.0.0"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "f2fac314a64dc9a36e61a9eb4261a5e9bbfbc922b27e518af97bc32b926cf967"
1246
+ dependencies = [
1247
+ "proc-macro2",
1248
+ "quote",
1249
+ "unicode-ident",
1250
+ ]
1251
+
1252
+ [[package]]
1253
+ name = "tabled"
1254
+ version = "0.21.0"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "b5dc662e6da844ad6e428ad16b57967c9d33c82e16bb1c258326c0c078605dff"
1257
+ dependencies = [
1258
+ "papergrid",
1259
+ "tabled_derive",
1260
+ "testing_table",
1261
+ ]
1262
+
1263
+ [[package]]
1264
+ name = "tabled_derive"
1265
+ version = "0.11.0"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "0ea5d1b13ca6cff1f9231ffd62f15eefd72543dab5e468735f1a456728a02846"
1268
+ dependencies = [
1269
+ "heck",
1270
+ "proc-macro-error2",
1271
+ "proc-macro2",
1272
+ "quote",
1273
+ "syn 2.0.118",
1274
+ ]
1275
+
1276
+ [[package]]
1277
+ name = "target-lexicon"
1278
+ version = "0.13.5"
1279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1280
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1281
+
1282
+ [[package]]
1283
+ name = "tempfile"
1284
+ version = "3.27.0"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1287
+ dependencies = [
1288
+ "fastrand",
1289
+ "getrandom 0.4.3",
1290
+ "once_cell",
1291
+ "rustix",
1292
+ "windows-sys",
1293
+ ]
1294
+
1295
+ [[package]]
1296
+ name = "testing_table"
1297
+ version = "0.3.0"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "0f8daae29995a24f65619e19d8d31dea5b389f3d853d8bf297bbf607cd0014cc"
1300
+ dependencies = [
1301
+ "unicode-width",
1302
+ ]
1303
+
1304
+ [[package]]
1305
+ name = "thiserror"
1306
+ version = "2.0.19"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
1309
+ dependencies = [
1310
+ "thiserror-impl",
1311
+ ]
1312
+
1313
+ [[package]]
1314
+ name = "thiserror-impl"
1315
+ version = "2.0.19"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
1318
+ dependencies = [
1319
+ "proc-macro2",
1320
+ "quote",
1321
+ "syn 3.0.0",
1322
+ ]
1323
+
1324
+ [[package]]
1325
+ name = "thread_local"
1326
+ version = "1.1.10"
1327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1328
+ checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
1329
+ dependencies = [
1330
+ "cfg-if",
1331
+ ]
1332
+
1333
+ [[package]]
1334
+ name = "tinytemplate"
1335
+ version = "1.2.1"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1338
+ dependencies = [
1339
+ "serde",
1340
+ "serde_json",
1341
+ ]
1342
+
1343
+ [[package]]
1344
+ name = "tracing"
1345
+ version = "0.1.44"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1348
+ dependencies = [
1349
+ "pin-project-lite",
1350
+ "tracing-attributes",
1351
+ "tracing-core",
1352
+ ]
1353
+
1354
+ [[package]]
1355
+ name = "tracing-attributes"
1356
+ version = "0.1.31"
1357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1358
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1359
+ dependencies = [
1360
+ "proc-macro2",
1361
+ "quote",
1362
+ "syn 2.0.118",
1363
+ ]
1364
+
1365
+ [[package]]
1366
+ name = "tracing-core"
1367
+ version = "0.1.36"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1370
+ dependencies = [
1371
+ "once_cell",
1372
+ "valuable",
1373
+ ]
1374
+
1375
+ [[package]]
1376
+ name = "tracing-log"
1377
+ version = "0.2.0"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1380
+ dependencies = [
1381
+ "log",
1382
+ "once_cell",
1383
+ "tracing-core",
1384
+ ]
1385
+
1386
+ [[package]]
1387
+ name = "tracing-subscriber"
1388
+ version = "0.3.23"
1389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1390
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
1391
+ dependencies = [
1392
+ "matchers",
1393
+ "nu-ansi-term",
1394
+ "once_cell",
1395
+ "regex-automata",
1396
+ "sharded-slab",
1397
+ "smallvec",
1398
+ "thread_local",
1399
+ "tracing",
1400
+ "tracing-core",
1401
+ "tracing-log",
1402
+ ]
1403
+
1404
+ [[package]]
1405
+ name = "unarray"
1406
+ version = "0.1.4"
1407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1408
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1409
+
1410
+ [[package]]
1411
+ name = "unicode-ident"
1412
+ version = "1.0.24"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1415
+
1416
+ [[package]]
1417
+ name = "unicode-width"
1418
+ version = "0.2.2"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1421
+
1422
+ [[package]]
1423
+ name = "unit-prefix"
1424
+ version = "0.5.2"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3"
1427
+
1428
+ [[package]]
1429
+ name = "utf8parse"
1430
+ version = "0.2.2"
1431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1432
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1433
+
1434
+ [[package]]
1435
+ name = "valuable"
1436
+ version = "0.1.1"
1437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1438
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
1439
+
1440
+ [[package]]
1441
+ name = "wait-timeout"
1442
+ version = "0.2.1"
1443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1444
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1445
+ dependencies = [
1446
+ "libc",
1447
+ ]
1448
+
1449
+ [[package]]
1450
+ name = "walkdir"
1451
+ version = "2.5.0"
1452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1454
+ dependencies = [
1455
+ "same-file",
1456
+ "winapi-util",
1457
+ ]
1458
+
1459
+ [[package]]
1460
+ name = "wasip2"
1461
+ version = "1.0.4+wasi-0.2.12"
1462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1463
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
1464
+ dependencies = [
1465
+ "wit-bindgen",
1466
+ ]
1467
+
1468
+ [[package]]
1469
+ name = "wasm-bindgen"
1470
+ version = "0.2.126"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
1473
+ dependencies = [
1474
+ "cfg-if",
1475
+ "once_cell",
1476
+ "rustversion",
1477
+ "wasm-bindgen-macro",
1478
+ "wasm-bindgen-shared",
1479
+ ]
1480
+
1481
+ [[package]]
1482
+ name = "wasm-bindgen-macro"
1483
+ version = "0.2.126"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
1486
+ dependencies = [
1487
+ "quote",
1488
+ "wasm-bindgen-macro-support",
1489
+ ]
1490
+
1491
+ [[package]]
1492
+ name = "wasm-bindgen-macro-support"
1493
+ version = "0.2.126"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
1496
+ dependencies = [
1497
+ "bumpalo",
1498
+ "proc-macro2",
1499
+ "quote",
1500
+ "syn 2.0.118",
1501
+ "wasm-bindgen-shared",
1502
+ ]
1503
+
1504
+ [[package]]
1505
+ name = "wasm-bindgen-shared"
1506
+ version = "0.2.126"
1507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1508
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
1509
+ dependencies = [
1510
+ "unicode-ident",
1511
+ ]
1512
+
1513
+ [[package]]
1514
+ name = "web-sys"
1515
+ version = "0.3.103"
1516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1517
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
1518
+ dependencies = [
1519
+ "js-sys",
1520
+ "wasm-bindgen",
1521
+ ]
1522
+
1523
+ [[package]]
1524
+ name = "web-time"
1525
+ version = "1.1.0"
1526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1527
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
1528
+ dependencies = [
1529
+ "js-sys",
1530
+ "wasm-bindgen",
1531
+ ]
1532
+
1533
+ [[package]]
1534
+ name = "winapi"
1535
+ version = "0.3.9"
1536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1537
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1538
+ dependencies = [
1539
+ "winapi-i686-pc-windows-gnu",
1540
+ "winapi-x86_64-pc-windows-gnu",
1541
+ ]
1542
+
1543
+ [[package]]
1544
+ name = "winapi-i686-pc-windows-gnu"
1545
+ version = "0.4.0"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1548
+
1549
+ [[package]]
1550
+ name = "winapi-util"
1551
+ version = "0.1.11"
1552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1553
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1554
+ dependencies = [
1555
+ "windows-sys",
1556
+ ]
1557
+
1558
+ [[package]]
1559
+ name = "winapi-x86_64-pc-windows-gnu"
1560
+ version = "0.4.0"
1561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1562
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1563
+
1564
+ [[package]]
1565
+ name = "windows-link"
1566
+ version = "0.2.1"
1567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1568
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1569
+
1570
+ [[package]]
1571
+ name = "windows-sys"
1572
+ version = "0.61.2"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1575
+ dependencies = [
1576
+ "windows-link",
1577
+ ]
1578
+
1579
+ [[package]]
1580
+ name = "wit-bindgen"
1581
+ version = "0.57.1"
1582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1583
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1584
+
1585
+ [[package]]
1586
+ name = "xxhash-rust"
1587
+ version = "0.8.17"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "985eec839aaf2a1270af8f4ebcf63cf9401cfd90f0902f97c28d9f104ffbde72"
1590
+
1591
+ [[package]]
1592
+ name = "zerocopy"
1593
+ version = "0.8.54"
1594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+ checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
1596
+ dependencies = [
1597
+ "zerocopy-derive",
1598
+ ]
1599
+
1600
+ [[package]]
1601
+ name = "zerocopy-derive"
1602
+ version = "0.8.54"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
1605
+ dependencies = [
1606
+ "proc-macro2",
1607
+ "quote",
1608
+ "syn 2.0.118",
1609
+ ]
1610
+
1611
+ [[package]]
1612
+ name = "zlib-rs"
1613
+ version = "0.6.6"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "b142a20ec14a91d5bc708c1dc21b080c550113d8aa77afa29635673a65dd02c5"
1616
+
1617
+ [[package]]
1618
+ name = "zmij"
1619
+ version = "1.0.21"
1620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1621
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"