tsalign 0.1.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 (86) hide show
  1. tsalign-0.1.0/Cargo.lock +1448 -0
  2. tsalign-0.1.0/Cargo.toml +16 -0
  3. tsalign-0.1.0/PKG-INFO +25 -0
  4. tsalign-0.1.0/generic_a_star/Cargo.toml +18 -0
  5. tsalign-0.1.0/generic_a_star/src/cost.rs +162 -0
  6. tsalign-0.1.0/generic_a_star/src/lib.rs +581 -0
  7. tsalign-0.1.0/generic_a_star/src/reset.rs +15 -0
  8. tsalign-0.1.0/lib_tsalign/Cargo.toml +33 -0
  9. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/alignment_geometry.rs +74 -0
  10. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/alignment_result/a_star_sequences.rs +41 -0
  11. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/alignment_result/alignment/iter.rs +685 -0
  12. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/alignment_result/alignment.rs +113 -0
  13. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/alignment_result.rs +448 -0
  14. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/configurable_a_star_align.rs +337 -0
  15. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/gap_affine_edit_distance.rs +380 -0
  16. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/template_switch_distance/alignment_type.rs +188 -0
  17. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/template_switch_distance/context.rs +764 -0
  18. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/template_switch_distance/display.rs +162 -0
  19. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/template_switch_distance/identifier.rs +463 -0
  20. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/template_switch_distance/lower_bounds/template_switch.rs +431 -0
  21. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/template_switch_distance/lower_bounds/template_switch_alignment.rs +308 -0
  22. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/template_switch_distance/lower_bounds.rs +2 -0
  23. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/template_switch_distance/strategies/chaining.rs +343 -0
  24. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/template_switch_distance/strategies/node_ord.rs +117 -0
  25. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/template_switch_distance/strategies/primary_match.rs +278 -0
  26. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/template_switch_distance/strategies/primary_range.rs +123 -0
  27. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/template_switch_distance/strategies/secondary_deletion.rs +81 -0
  28. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/template_switch_distance/strategies/shortcut.rs +163 -0
  29. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/template_switch_distance/strategies/template_switch_count.rs +119 -0
  30. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/template_switch_distance/strategies/template_switch_min_length.rs +280 -0
  31. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/template_switch_distance/strategies.rs +301 -0
  32. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/template_switch_distance.rs +802 -0
  33. tsalign-0.1.0/lib_tsalign/src/a_star_aligner/tests.rs +29 -0
  34. tsalign-0.1.0/lib_tsalign/src/a_star_aligner.rs +188 -0
  35. tsalign-0.1.0/lib_tsalign/src/alignment_configuration.rs +34 -0
  36. tsalign-0.1.0/lib_tsalign/src/alignment_matrix/index/iterators.rs +139 -0
  37. tsalign-0.1.0/lib_tsalign/src/alignment_matrix/index.rs +77 -0
  38. tsalign-0.1.0/lib_tsalign/src/alignment_matrix.rs +354 -0
  39. tsalign-0.1.0/lib_tsalign/src/config/io.rs +217 -0
  40. tsalign-0.1.0/lib_tsalign/src/config.rs +126 -0
  41. tsalign-0.1.0/lib_tsalign/src/costs/cost_function/io.rs +158 -0
  42. tsalign-0.1.0/lib_tsalign/src/costs/cost_function.rs +313 -0
  43. tsalign-0.1.0/lib_tsalign/src/costs/gap_affine/io/tests.rs +28 -0
  44. tsalign-0.1.0/lib_tsalign/src/costs/gap_affine/io.rs +361 -0
  45. tsalign-0.1.0/lib_tsalign/src/costs/gap_affine.rs +206 -0
  46. tsalign-0.1.0/lib_tsalign/src/costs.rs +4 -0
  47. tsalign-0.1.0/lib_tsalign/src/error.rs +44 -0
  48. tsalign-0.1.0/lib_tsalign/src/io.rs +62 -0
  49. tsalign-0.1.0/lib_tsalign/src/lib.rs +9 -0
  50. tsalign-0.1.0/lib_tsshow/Cargo.toml +20 -0
  51. tsalign-0.1.0/lib_tsshow/src/error.rs +21 -0
  52. tsalign-0.1.0/lib_tsshow/src/lib.rs +24 -0
  53. tsalign-0.1.0/lib_tsshow/src/plain_text/alignment_stream.rs +229 -0
  54. tsalign-0.1.0/lib_tsshow/src/plain_text/mutlipair_alignment_renderer/tests.rs +105 -0
  55. tsalign-0.1.0/lib_tsshow/src/plain_text/mutlipair_alignment_renderer.rs +979 -0
  56. tsalign-0.1.0/lib_tsshow/src/plain_text/parse_template_switches.rs +201 -0
  57. tsalign-0.1.0/lib_tsshow/src/plain_text.rs +494 -0
  58. tsalign-0.1.0/lib_tsshow/src/svg/arrows.rs +273 -0
  59. tsalign-0.1.0/lib_tsshow/src/svg/font/sans_serif_mono.rs +87 -0
  60. tsalign-0.1.0/lib_tsshow/src/svg/font/typewriter.rs +78 -0
  61. tsalign-0.1.0/lib_tsshow/src/svg/font.rs +125 -0
  62. tsalign-0.1.0/lib_tsshow/src/svg/indexed_str.rs +16 -0
  63. tsalign-0.1.0/lib_tsshow/src/svg/labelled_sequence.rs +111 -0
  64. tsalign-0.1.0/lib_tsshow/src/svg/numbers.rs +128 -0
  65. tsalign-0.1.0/lib_tsshow/src/svg.rs +974 -0
  66. tsalign-0.1.0/lib_tsshow/src/ts_arrangement/character.rs +34 -0
  67. tsalign-0.1.0/lib_tsshow/src/ts_arrangement/complement.rs +274 -0
  68. tsalign-0.1.0/lib_tsshow/src/ts_arrangement/index_types.rs +100 -0
  69. tsalign-0.1.0/lib_tsshow/src/ts_arrangement/inner.rs +434 -0
  70. tsalign-0.1.0/lib_tsshow/src/ts_arrangement/row.rs +24 -0
  71. tsalign-0.1.0/lib_tsshow/src/ts_arrangement/source.rs +696 -0
  72. tsalign-0.1.0/lib_tsshow/src/ts_arrangement/template_switch.rs +47 -0
  73. tsalign-0.1.0/lib_tsshow/src/ts_arrangement.rs +198 -0
  74. tsalign-0.1.0/pyproject.toml +16 -0
  75. tsalign-0.1.0/python_bindings/.gitignore +72 -0
  76. tsalign-0.1.0/python_bindings/Cargo.toml +22 -0
  77. tsalign-0.1.0/python_bindings/README.md +10 -0
  78. tsalign-0.1.0/python_bindings/src/lib.rs +100 -0
  79. tsalign-0.1.0/seed_chain/Cargo.toml +16 -0
  80. tsalign-0.1.0/seed_chain/src/chain/context.rs +102 -0
  81. tsalign-0.1.0/seed_chain/src/chain/display.rs +23 -0
  82. tsalign-0.1.0/seed_chain/src/chain/node/display.rs +32 -0
  83. tsalign-0.1.0/seed_chain/src/chain/node.rs +97 -0
  84. tsalign-0.1.0/seed_chain/src/chain.rs +110 -0
  85. tsalign-0.1.0/seed_chain/src/lib.rs +4 -0
  86. tsalign-0.1.0/seed_chain/src/seed.rs +248 -0
@@ -0,0 +1,1448 @@
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.0"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
10
+
11
+ [[package]]
12
+ name = "anstream"
13
+ version = "0.6.18"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
16
+ dependencies = [
17
+ "anstyle",
18
+ "anstyle-parse",
19
+ "anstyle-query",
20
+ "anstyle-wincon",
21
+ "colorchoice",
22
+ "is_terminal_polyfill",
23
+ "utf8parse",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "anstyle"
28
+ version = "1.0.10"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
31
+
32
+ [[package]]
33
+ name = "anstyle-parse"
34
+ version = "0.2.6"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
37
+ dependencies = [
38
+ "utf8parse",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "anstyle-query"
43
+ version = "1.1.2"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
46
+ dependencies = [
47
+ "windows-sys",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle-wincon"
52
+ version = "3.0.7"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
55
+ dependencies = [
56
+ "anstyle",
57
+ "once_cell",
58
+ "windows-sys",
59
+ ]
60
+
61
+ [[package]]
62
+ name = "anyhow"
63
+ version = "1.0.98"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
66
+
67
+ [[package]]
68
+ name = "arc-swap"
69
+ version = "1.7.1"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
72
+
73
+ [[package]]
74
+ name = "arrayref"
75
+ version = "0.3.9"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
78
+
79
+ [[package]]
80
+ name = "arrayvec"
81
+ version = "0.7.6"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
84
+
85
+ [[package]]
86
+ name = "autocfg"
87
+ version = "1.4.0"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
90
+
91
+ [[package]]
92
+ name = "base64"
93
+ version = "0.22.1"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
96
+
97
+ [[package]]
98
+ name = "binary-heap-plus"
99
+ version = "0.5.0"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "e4551d8382e911ecc0d0f0ffb602777988669be09447d536ff4388d1def11296"
102
+ dependencies = [
103
+ "compare",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "bitflags"
108
+ version = "1.3.2"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
111
+
112
+ [[package]]
113
+ name = "bitflags"
114
+ version = "2.9.0"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
117
+
118
+ [[package]]
119
+ name = "bitvec"
120
+ version = "1.0.1"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
123
+ dependencies = [
124
+ "funty",
125
+ "radium",
126
+ "tap",
127
+ "wyz",
128
+ ]
129
+
130
+ [[package]]
131
+ name = "bytemuck"
132
+ version = "1.23.0"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "9134a6ef01ce4b366b50689c94f82c14bc72bc5d0386829828a2e2752ef7958c"
135
+
136
+ [[package]]
137
+ name = "byteorder-lite"
138
+ version = "0.1.0"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
141
+
142
+ [[package]]
143
+ name = "cfg-if"
144
+ version = "1.0.0"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
147
+
148
+ [[package]]
149
+ name = "clap"
150
+ version = "4.5.37"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "eccb054f56cbd38340b380d4a8e69ef1f02f1af43db2f0cc817a4774d80ae071"
153
+ dependencies = [
154
+ "clap_builder",
155
+ "clap_derive",
156
+ ]
157
+
158
+ [[package]]
159
+ name = "clap_builder"
160
+ version = "4.5.37"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "efd9466fac8543255d3b1fcad4762c5e116ffe808c8a3043d4263cd4fd4862a2"
163
+ dependencies = [
164
+ "anstream",
165
+ "anstyle",
166
+ "clap_lex",
167
+ "strsim",
168
+ ]
169
+
170
+ [[package]]
171
+ name = "clap_derive"
172
+ version = "4.5.32"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
175
+ dependencies = [
176
+ "heck",
177
+ "proc-macro2",
178
+ "quote",
179
+ "syn",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "clap_lex"
184
+ version = "0.7.4"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
187
+
188
+ [[package]]
189
+ name = "color_quant"
190
+ version = "1.1.0"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
193
+
194
+ [[package]]
195
+ name = "colorchoice"
196
+ version = "1.0.3"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
199
+
200
+ [[package]]
201
+ name = "compact-genome"
202
+ version = "12.3.0"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "503cda65a29118e687d71d64d7a3c1e4d21f235a3aa55b22cd2902a99d04d9ff"
205
+ dependencies = [
206
+ "bitvec",
207
+ "enum-iterator",
208
+ "flate2",
209
+ "itertools",
210
+ "lazy_static",
211
+ "ref-cast",
212
+ "thiserror",
213
+ "traitsequence",
214
+ ]
215
+
216
+ [[package]]
217
+ name = "compare"
218
+ version = "0.1.0"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "120133d4db2ec47efe2e26502ee984747630c67f51974fca0b6c1340cf2368d3"
221
+
222
+ [[package]]
223
+ name = "core_maths"
224
+ version = "0.1.1"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "77745e017f5edba1a9c1d854f6f3a52dac8a12dd5af5d2f54aecf61e43d80d30"
227
+ dependencies = [
228
+ "libm",
229
+ ]
230
+
231
+ [[package]]
232
+ name = "crc32fast"
233
+ version = "1.4.2"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
236
+ dependencies = [
237
+ "cfg-if",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "data-url"
242
+ version = "0.3.1"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "5c297a1c74b71ae29df00c3e22dd9534821d60eb9af5a0192823fa2acea70c2a"
245
+
246
+ [[package]]
247
+ name = "deranged"
248
+ version = "0.4.0"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
251
+ dependencies = [
252
+ "powerfmt",
253
+ ]
254
+
255
+ [[package]]
256
+ name = "deterministic_default_hasher"
257
+ version = "0.14.2"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "ae65f7e8e3580cb22a297790831a22567a52ddcf8a5367e70991512ec1d01716"
260
+
261
+ [[package]]
262
+ name = "either"
263
+ version = "1.15.0"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
266
+
267
+ [[package]]
268
+ name = "ena"
269
+ version = "0.14.3"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "3d248bdd43ce613d87415282f69b9bb99d947d290b10962dd6c56233312c2ad5"
272
+ dependencies = [
273
+ "log",
274
+ ]
275
+
276
+ [[package]]
277
+ name = "enum-iterator"
278
+ version = "2.1.0"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "c280b9e6b3ae19e152d8e31cf47f18389781e119d4013a2a2bb0180e5facc635"
281
+ dependencies = [
282
+ "enum-iterator-derive",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "enum-iterator-derive"
287
+ version = "1.4.0"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "a1ab991c1362ac86c61ab6f556cff143daa22e5a15e4e189df818b2fd19fe65b"
290
+ dependencies = [
291
+ "proc-macro2",
292
+ "quote",
293
+ "syn",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "equivalent"
298
+ version = "1.0.2"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
301
+
302
+ [[package]]
303
+ name = "extend_map"
304
+ version = "0.14.4"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "4498b32ba502fde3cf5a0eea38dced8d8e69404501e7692014371fa6c49c8bd9"
307
+
308
+ [[package]]
309
+ name = "fdeflate"
310
+ version = "0.3.7"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
313
+ dependencies = [
314
+ "simd-adler32",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "flate2"
319
+ version = "1.1.1"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
322
+ dependencies = [
323
+ "crc32fast",
324
+ "miniz_oxide",
325
+ ]
326
+
327
+ [[package]]
328
+ name = "float-cmp"
329
+ version = "0.9.0"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
332
+
333
+ [[package]]
334
+ name = "fontconfig-parser"
335
+ version = "0.5.7"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "c1fcfcd44ca6e90c921fee9fa665d530b21ef1327a4c1a6c5250ea44b776ada7"
338
+ dependencies = [
339
+ "roxmltree",
340
+ ]
341
+
342
+ [[package]]
343
+ name = "fontdb"
344
+ version = "0.23.0"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "457e789b3d1202543297a350643cf459f836cade38934e7a4cf6a39e7cde2905"
347
+ dependencies = [
348
+ "fontconfig-parser",
349
+ "log",
350
+ "memmap2",
351
+ "slotmap",
352
+ "tinyvec",
353
+ "ttf-parser",
354
+ ]
355
+
356
+ [[package]]
357
+ name = "funty"
358
+ version = "2.0.0"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
361
+
362
+ [[package]]
363
+ name = "generic_a_star"
364
+ version = "0.15.0"
365
+ dependencies = [
366
+ "binary-heap-plus",
367
+ "deterministic_default_hasher",
368
+ "extend_map",
369
+ "num-traits",
370
+ "serde",
371
+ ]
372
+
373
+ [[package]]
374
+ name = "gif"
375
+ version = "0.13.1"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "3fb2d69b19215e18bb912fa30f7ce15846e301408695e44e0ef719f1da9e19f2"
378
+ dependencies = [
379
+ "color_quant",
380
+ "weezl",
381
+ ]
382
+
383
+ [[package]]
384
+ name = "hashbrown"
385
+ version = "0.15.3"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
388
+
389
+ [[package]]
390
+ name = "heck"
391
+ version = "0.5.0"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
394
+
395
+ [[package]]
396
+ name = "image-webp"
397
+ version = "0.2.1"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "b77d01e822461baa8409e156015a1d91735549f0f2c17691bd2d996bef238f7f"
400
+ dependencies = [
401
+ "byteorder-lite",
402
+ "quick-error",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "imagesize"
407
+ version = "0.13.0"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "edcd27d72f2f071c64249075f42e205ff93c9a4c5f6c6da53e79ed9f9832c285"
410
+
411
+ [[package]]
412
+ name = "indexmap"
413
+ version = "2.9.0"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
416
+ dependencies = [
417
+ "equivalent",
418
+ "hashbrown",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "indoc"
423
+ version = "2.0.6"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
426
+
427
+ [[package]]
428
+ name = "is_terminal_polyfill"
429
+ version = "1.70.1"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
432
+
433
+ [[package]]
434
+ name = "itertools"
435
+ version = "0.14.0"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
438
+ dependencies = [
439
+ "either",
440
+ ]
441
+
442
+ [[package]]
443
+ name = "itoa"
444
+ version = "1.0.15"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
447
+
448
+ [[package]]
449
+ name = "kurbo"
450
+ version = "0.11.2"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "1077d333efea6170d9ccb96d3c3026f300ca0773da4938cc4c811daa6df68b0c"
453
+ dependencies = [
454
+ "arrayvec",
455
+ "smallvec",
456
+ ]
457
+
458
+ [[package]]
459
+ name = "lazy_static"
460
+ version = "1.5.0"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
463
+
464
+ [[package]]
465
+ name = "lib_tsalign"
466
+ version = "0.15.0"
467
+ dependencies = [
468
+ "binary-heap-plus",
469
+ "compact-genome",
470
+ "deterministic_default_hasher",
471
+ "extend_map",
472
+ "generic_a_star",
473
+ "log",
474
+ "ndarray",
475
+ "noisy_float",
476
+ "nom",
477
+ "num-traits",
478
+ "seed_chain",
479
+ "serde",
480
+ "thiserror",
481
+ "traitsequence",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "lib_tsshow"
486
+ version = "0.15.0"
487
+ dependencies = [
488
+ "ena",
489
+ "itertools",
490
+ "lib_tsalign",
491
+ "log",
492
+ "resvg",
493
+ "strong-type",
494
+ "svg",
495
+ "tagged-vec",
496
+ "thiserror",
497
+ ]
498
+
499
+ [[package]]
500
+ name = "libc"
501
+ version = "0.2.172"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
504
+
505
+ [[package]]
506
+ name = "libm"
507
+ version = "0.2.15"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
510
+
511
+ [[package]]
512
+ name = "log"
513
+ version = "0.4.27"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
516
+
517
+ [[package]]
518
+ name = "matrixmultiply"
519
+ version = "0.3.9"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "9380b911e3e96d10c1f415da0876389aaf1b56759054eeb0de7df940c456ba1a"
522
+ dependencies = [
523
+ "autocfg",
524
+ "rawpointer",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "memchr"
529
+ version = "2.7.4"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
532
+
533
+ [[package]]
534
+ name = "memmap2"
535
+ version = "0.9.5"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
538
+ dependencies = [
539
+ "libc",
540
+ ]
541
+
542
+ [[package]]
543
+ name = "memoffset"
544
+ version = "0.9.1"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
547
+ dependencies = [
548
+ "autocfg",
549
+ ]
550
+
551
+ [[package]]
552
+ name = "miniz_oxide"
553
+ version = "0.8.8"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
556
+ dependencies = [
557
+ "adler2",
558
+ "simd-adler32",
559
+ ]
560
+
561
+ [[package]]
562
+ name = "ndarray"
563
+ version = "0.16.1"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
566
+ dependencies = [
567
+ "matrixmultiply",
568
+ "num-complex",
569
+ "num-integer",
570
+ "num-traits",
571
+ "portable-atomic",
572
+ "portable-atomic-util",
573
+ "rawpointer",
574
+ "serde",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "noisy_float"
579
+ version = "0.2.0"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "978fe6e6ebc0bf53de533cd456ca2d9de13de13856eda1518a285d7705a213af"
582
+ dependencies = [
583
+ "num-traits",
584
+ "serde",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "nom"
589
+ version = "8.0.0"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
592
+ dependencies = [
593
+ "memchr",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "num-complex"
598
+ version = "0.4.6"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
601
+ dependencies = [
602
+ "num-traits",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "num-conv"
607
+ version = "0.1.0"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
610
+
611
+ [[package]]
612
+ name = "num-integer"
613
+ version = "0.1.46"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
616
+ dependencies = [
617
+ "num-traits",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "num-traits"
622
+ version = "0.2.19"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
625
+ dependencies = [
626
+ "autocfg",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "num_threads"
631
+ version = "0.1.7"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
634
+ dependencies = [
635
+ "libc",
636
+ ]
637
+
638
+ [[package]]
639
+ name = "once_cell"
640
+ version = "1.21.3"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
643
+
644
+ [[package]]
645
+ name = "pico-args"
646
+ version = "0.5.0"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
649
+
650
+ [[package]]
651
+ name = "png"
652
+ version = "0.17.16"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
655
+ dependencies = [
656
+ "bitflags 1.3.2",
657
+ "crc32fast",
658
+ "fdeflate",
659
+ "flate2",
660
+ "miniz_oxide",
661
+ ]
662
+
663
+ [[package]]
664
+ name = "portable-atomic"
665
+ version = "1.11.0"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
668
+
669
+ [[package]]
670
+ name = "portable-atomic-util"
671
+ version = "0.2.4"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
674
+ dependencies = [
675
+ "portable-atomic",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "powerfmt"
680
+ version = "0.2.0"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
683
+
684
+ [[package]]
685
+ name = "proc-macro2"
686
+ version = "1.0.95"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
689
+ dependencies = [
690
+ "unicode-ident",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "py_lib_tsalign"
695
+ version = "0.1.0"
696
+ dependencies = [
697
+ "lib_tsalign",
698
+ "lib_tsshow",
699
+ "pyo3",
700
+ "pyo3-log",
701
+ "pythonize",
702
+ "serde",
703
+ ]
704
+
705
+ [[package]]
706
+ name = "pyo3"
707
+ version = "0.24.2"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
710
+ dependencies = [
711
+ "cfg-if",
712
+ "indoc",
713
+ "libc",
714
+ "memoffset",
715
+ "once_cell",
716
+ "portable-atomic",
717
+ "pyo3-build-config",
718
+ "pyo3-ffi",
719
+ "pyo3-macros",
720
+ "unindent",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "pyo3-build-config"
725
+ version = "0.24.2"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
728
+ dependencies = [
729
+ "once_cell",
730
+ "target-lexicon",
731
+ ]
732
+
733
+ [[package]]
734
+ name = "pyo3-ffi"
735
+ version = "0.24.2"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
738
+ dependencies = [
739
+ "libc",
740
+ "pyo3-build-config",
741
+ ]
742
+
743
+ [[package]]
744
+ name = "pyo3-log"
745
+ version = "0.12.3"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "7079e412e909af5d6be7c04a7f29f6a2837a080410e1c529c9dee2c367383db4"
748
+ dependencies = [
749
+ "arc-swap",
750
+ "log",
751
+ "pyo3",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "pyo3-macros"
756
+ version = "0.24.2"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
759
+ dependencies = [
760
+ "proc-macro2",
761
+ "pyo3-macros-backend",
762
+ "quote",
763
+ "syn",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "pyo3-macros-backend"
768
+ version = "0.24.2"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
771
+ dependencies = [
772
+ "heck",
773
+ "proc-macro2",
774
+ "pyo3-build-config",
775
+ "quote",
776
+ "syn",
777
+ ]
778
+
779
+ [[package]]
780
+ name = "pythonize"
781
+ version = "0.24.0"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "d5bcac0d0b71821f0d69e42654f1e15e5c94b85196446c4de9588951a2117e7b"
784
+ dependencies = [
785
+ "pyo3",
786
+ "serde",
787
+ ]
788
+
789
+ [[package]]
790
+ name = "quick-error"
791
+ version = "2.0.1"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
794
+
795
+ [[package]]
796
+ name = "quote"
797
+ version = "1.0.40"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
800
+ dependencies = [
801
+ "proc-macro2",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "radium"
806
+ version = "0.7.0"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
809
+
810
+ [[package]]
811
+ name = "rawpointer"
812
+ version = "0.2.1"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
815
+
816
+ [[package]]
817
+ name = "ref-cast"
818
+ version = "1.0.24"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf"
821
+ dependencies = [
822
+ "ref-cast-impl",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "ref-cast-impl"
827
+ version = "1.0.24"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
830
+ dependencies = [
831
+ "proc-macro2",
832
+ "quote",
833
+ "syn",
834
+ ]
835
+
836
+ [[package]]
837
+ name = "resvg"
838
+ version = "0.45.1"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "a8928798c0a55e03c9ca6c4c6846f76377427d2c1e1f7e6de3c06ae57942df43"
841
+ dependencies = [
842
+ "gif",
843
+ "image-webp",
844
+ "log",
845
+ "pico-args",
846
+ "rgb",
847
+ "svgtypes",
848
+ "tiny-skia",
849
+ "usvg",
850
+ "zune-jpeg",
851
+ ]
852
+
853
+ [[package]]
854
+ name = "rgb"
855
+ version = "0.8.50"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a"
858
+ dependencies = [
859
+ "bytemuck",
860
+ ]
861
+
862
+ [[package]]
863
+ name = "roxmltree"
864
+ version = "0.20.0"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
867
+
868
+ [[package]]
869
+ name = "rustybuzz"
870
+ version = "0.20.1"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "fd3c7c96f8a08ee34eff8857b11b49b07d71d1c3f4e88f8a88d4c9e9f90b1702"
873
+ dependencies = [
874
+ "bitflags 2.9.0",
875
+ "bytemuck",
876
+ "core_maths",
877
+ "log",
878
+ "smallvec",
879
+ "ttf-parser",
880
+ "unicode-bidi-mirroring",
881
+ "unicode-ccc",
882
+ "unicode-properties",
883
+ "unicode-script",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "seed_chain"
888
+ version = "0.15.0"
889
+ dependencies = [
890
+ "compact-genome",
891
+ "generic_a_star",
892
+ "log",
893
+ "num-traits",
894
+ ]
895
+
896
+ [[package]]
897
+ name = "serde"
898
+ version = "1.0.219"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
901
+ dependencies = [
902
+ "serde_derive",
903
+ ]
904
+
905
+ [[package]]
906
+ name = "serde_derive"
907
+ version = "1.0.219"
908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
909
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
910
+ dependencies = [
911
+ "proc-macro2",
912
+ "quote",
913
+ "syn",
914
+ ]
915
+
916
+ [[package]]
917
+ name = "serde_spanned"
918
+ version = "0.6.8"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
921
+ dependencies = [
922
+ "serde",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "simd-adler32"
927
+ version = "0.3.7"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
930
+
931
+ [[package]]
932
+ name = "simplecss"
933
+ version = "0.2.2"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "7a9c6883ca9c3c7c90e888de77b7a5c849c779d25d74a1269b0218b14e8b136c"
936
+ dependencies = [
937
+ "log",
938
+ ]
939
+
940
+ [[package]]
941
+ name = "simplelog"
942
+ version = "0.12.2"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "16257adbfaef1ee58b1363bdc0664c9b8e1e30aed86049635fb5f147d065a9c0"
945
+ dependencies = [
946
+ "log",
947
+ "termcolor",
948
+ "time",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "siphasher"
953
+ version = "1.0.1"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
956
+
957
+ [[package]]
958
+ name = "slotmap"
959
+ version = "1.0.7"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
962
+ dependencies = [
963
+ "version_check",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "smallvec"
968
+ version = "1.15.0"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
971
+
972
+ [[package]]
973
+ name = "strict-num"
974
+ version = "0.1.1"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
977
+ dependencies = [
978
+ "float-cmp",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "strong-type"
983
+ version = "0.12.2"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "ed7d7139f5f4d5ceae0e71b68cb12ddf1e9a33fc621e14cc8c8e77c091e91649"
986
+ dependencies = [
987
+ "strong-type-derive",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "strong-type-derive"
992
+ version = "0.12.2"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "c4905d64a6277be7989ce451864b65de38c665e465f519278a89d3ae867cf018"
995
+ dependencies = [
996
+ "proc-macro2",
997
+ "quote",
998
+ "syn",
999
+ ]
1000
+
1001
+ [[package]]
1002
+ name = "strsim"
1003
+ version = "0.11.1"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1006
+
1007
+ [[package]]
1008
+ name = "svg"
1009
+ version = "0.18.0"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "94afda9cd163c04f6bee8b4bf2501c91548deae308373c436f36aeff3cf3c4a3"
1012
+
1013
+ [[package]]
1014
+ name = "svgtypes"
1015
+ version = "0.15.3"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "68c7541fff44b35860c1a7a47a7cadf3e4a304c457b58f9870d9706ece028afc"
1018
+ dependencies = [
1019
+ "kurbo",
1020
+ "siphasher",
1021
+ ]
1022
+
1023
+ [[package]]
1024
+ name = "syn"
1025
+ version = "2.0.101"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
1028
+ dependencies = [
1029
+ "proc-macro2",
1030
+ "quote",
1031
+ "unicode-ident",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "tagged-vec"
1036
+ version = "0.3.5"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "6fb7bd02ad12c637c3770aa844ea9e3529ee7b23c1f8138e9df7782beab289ee"
1039
+
1040
+ [[package]]
1041
+ name = "tap"
1042
+ version = "1.0.1"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
1045
+
1046
+ [[package]]
1047
+ name = "target-lexicon"
1048
+ version = "0.13.2"
1049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1050
+ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
1051
+
1052
+ [[package]]
1053
+ name = "termcolor"
1054
+ version = "1.4.1"
1055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1056
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
1057
+ dependencies = [
1058
+ "winapi-util",
1059
+ ]
1060
+
1061
+ [[package]]
1062
+ name = "thiserror"
1063
+ version = "2.0.12"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
1066
+ dependencies = [
1067
+ "thiserror-impl",
1068
+ ]
1069
+
1070
+ [[package]]
1071
+ name = "thiserror-impl"
1072
+ version = "2.0.12"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
1075
+ dependencies = [
1076
+ "proc-macro2",
1077
+ "quote",
1078
+ "syn",
1079
+ ]
1080
+
1081
+ [[package]]
1082
+ name = "time"
1083
+ version = "0.3.41"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
1086
+ dependencies = [
1087
+ "deranged",
1088
+ "itoa",
1089
+ "libc",
1090
+ "num-conv",
1091
+ "num_threads",
1092
+ "powerfmt",
1093
+ "serde",
1094
+ "time-core",
1095
+ "time-macros",
1096
+ ]
1097
+
1098
+ [[package]]
1099
+ name = "time-core"
1100
+ version = "0.1.4"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
1103
+
1104
+ [[package]]
1105
+ name = "time-macros"
1106
+ version = "0.2.22"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
1109
+ dependencies = [
1110
+ "num-conv",
1111
+ "time-core",
1112
+ ]
1113
+
1114
+ [[package]]
1115
+ name = "tiny-skia"
1116
+ version = "0.11.4"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab"
1119
+ dependencies = [
1120
+ "arrayref",
1121
+ "arrayvec",
1122
+ "bytemuck",
1123
+ "cfg-if",
1124
+ "log",
1125
+ "png",
1126
+ "tiny-skia-path",
1127
+ ]
1128
+
1129
+ [[package]]
1130
+ name = "tiny-skia-path"
1131
+ version = "0.11.4"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93"
1134
+ dependencies = [
1135
+ "arrayref",
1136
+ "bytemuck",
1137
+ "strict-num",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "tinyvec"
1142
+ version = "1.9.0"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
1145
+ dependencies = [
1146
+ "tinyvec_macros",
1147
+ ]
1148
+
1149
+ [[package]]
1150
+ name = "tinyvec_macros"
1151
+ version = "0.1.1"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1154
+
1155
+ [[package]]
1156
+ name = "toml"
1157
+ version = "0.8.22"
1158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1159
+ checksum = "05ae329d1f08c4d17a59bed7ff5b5a769d062e64a62d34a3261b219e62cd5aae"
1160
+ dependencies = [
1161
+ "serde",
1162
+ "serde_spanned",
1163
+ "toml_datetime",
1164
+ "toml_edit",
1165
+ ]
1166
+
1167
+ [[package]]
1168
+ name = "toml_datetime"
1169
+ version = "0.6.9"
1170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1171
+ checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
1172
+ dependencies = [
1173
+ "serde",
1174
+ ]
1175
+
1176
+ [[package]]
1177
+ name = "toml_edit"
1178
+ version = "0.22.26"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e"
1181
+ dependencies = [
1182
+ "indexmap",
1183
+ "serde",
1184
+ "serde_spanned",
1185
+ "toml_datetime",
1186
+ "toml_write",
1187
+ "winnow",
1188
+ ]
1189
+
1190
+ [[package]]
1191
+ name = "toml_write"
1192
+ version = "0.1.1"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "bfb942dfe1d8e29a7ee7fcbde5bd2b9a25fb89aa70caea2eba3bee836ff41076"
1195
+
1196
+ [[package]]
1197
+ name = "traitsequence"
1198
+ version = "8.1.2"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "2b939c825d0c4295ac520f7b479927c1e5b458c9107a9d6f5ba65bc867bb93a5"
1201
+
1202
+ [[package]]
1203
+ name = "tsalign"
1204
+ version = "0.15.0"
1205
+ dependencies = [
1206
+ "anyhow",
1207
+ "clap",
1208
+ "compact-genome",
1209
+ "lib_tsalign",
1210
+ "lib_tsshow",
1211
+ "log",
1212
+ "serde",
1213
+ "simplelog",
1214
+ "toml",
1215
+ "traitsequence",
1216
+ ]
1217
+
1218
+ [[package]]
1219
+ name = "tsalign-tests"
1220
+ version = "0.2.0"
1221
+ dependencies = [
1222
+ "anyhow",
1223
+ "clap",
1224
+ "tsalign",
1225
+ ]
1226
+
1227
+ [[package]]
1228
+ name = "ttf-parser"
1229
+ version = "0.25.1"
1230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1231
+ checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
1232
+ dependencies = [
1233
+ "core_maths",
1234
+ ]
1235
+
1236
+ [[package]]
1237
+ name = "unicode-bidi"
1238
+ version = "0.3.18"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
1241
+
1242
+ [[package]]
1243
+ name = "unicode-bidi-mirroring"
1244
+ version = "0.4.0"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "5dfa6e8c60bb66d49db113e0125ee8711b7647b5579dc7f5f19c42357ed039fe"
1247
+
1248
+ [[package]]
1249
+ name = "unicode-ccc"
1250
+ version = "0.4.0"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "ce61d488bcdc9bc8b5d1772c404828b17fc481c0a582b5581e95fb233aef503e"
1253
+
1254
+ [[package]]
1255
+ name = "unicode-ident"
1256
+ version = "1.0.18"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
1259
+
1260
+ [[package]]
1261
+ name = "unicode-properties"
1262
+ version = "0.1.3"
1263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1264
+ checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0"
1265
+
1266
+ [[package]]
1267
+ name = "unicode-script"
1268
+ version = "0.5.7"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "9fb421b350c9aff471779e262955939f565ec18b86c15364e6bdf0d662ca7c1f"
1271
+
1272
+ [[package]]
1273
+ name = "unicode-vo"
1274
+ version = "0.1.0"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94"
1277
+
1278
+ [[package]]
1279
+ name = "unindent"
1280
+ version = "0.2.4"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1283
+
1284
+ [[package]]
1285
+ name = "usvg"
1286
+ version = "0.45.1"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "80be9b06fbae3b8b303400ab20778c80bbaf338f563afe567cf3c9eea17b47ef"
1289
+ dependencies = [
1290
+ "base64",
1291
+ "data-url",
1292
+ "flate2",
1293
+ "fontdb",
1294
+ "imagesize",
1295
+ "kurbo",
1296
+ "log",
1297
+ "pico-args",
1298
+ "roxmltree",
1299
+ "rustybuzz",
1300
+ "simplecss",
1301
+ "siphasher",
1302
+ "strict-num",
1303
+ "svgtypes",
1304
+ "tiny-skia-path",
1305
+ "unicode-bidi",
1306
+ "unicode-script",
1307
+ "unicode-vo",
1308
+ "xmlwriter",
1309
+ ]
1310
+
1311
+ [[package]]
1312
+ name = "utf8parse"
1313
+ version = "0.2.2"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1316
+
1317
+ [[package]]
1318
+ name = "version_check"
1319
+ version = "0.9.5"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1322
+
1323
+ [[package]]
1324
+ name = "weezl"
1325
+ version = "0.1.8"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082"
1328
+
1329
+ [[package]]
1330
+ name = "winapi-util"
1331
+ version = "0.1.9"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
1334
+ dependencies = [
1335
+ "windows-sys",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "windows-sys"
1340
+ version = "0.59.0"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1343
+ dependencies = [
1344
+ "windows-targets",
1345
+ ]
1346
+
1347
+ [[package]]
1348
+ name = "windows-targets"
1349
+ version = "0.52.6"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1352
+ dependencies = [
1353
+ "windows_aarch64_gnullvm",
1354
+ "windows_aarch64_msvc",
1355
+ "windows_i686_gnu",
1356
+ "windows_i686_gnullvm",
1357
+ "windows_i686_msvc",
1358
+ "windows_x86_64_gnu",
1359
+ "windows_x86_64_gnullvm",
1360
+ "windows_x86_64_msvc",
1361
+ ]
1362
+
1363
+ [[package]]
1364
+ name = "windows_aarch64_gnullvm"
1365
+ version = "0.52.6"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1368
+
1369
+ [[package]]
1370
+ name = "windows_aarch64_msvc"
1371
+ version = "0.52.6"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1374
+
1375
+ [[package]]
1376
+ name = "windows_i686_gnu"
1377
+ version = "0.52.6"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1380
+
1381
+ [[package]]
1382
+ name = "windows_i686_gnullvm"
1383
+ version = "0.52.6"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1386
+
1387
+ [[package]]
1388
+ name = "windows_i686_msvc"
1389
+ version = "0.52.6"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1392
+
1393
+ [[package]]
1394
+ name = "windows_x86_64_gnu"
1395
+ version = "0.52.6"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1398
+
1399
+ [[package]]
1400
+ name = "windows_x86_64_gnullvm"
1401
+ version = "0.52.6"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1404
+
1405
+ [[package]]
1406
+ name = "windows_x86_64_msvc"
1407
+ version = "0.52.6"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1410
+
1411
+ [[package]]
1412
+ name = "winnow"
1413
+ version = "0.7.10"
1414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1415
+ checksum = "c06928c8748d81b05c9be96aad92e1b6ff01833332f281e8cfca3be4b35fc9ec"
1416
+ dependencies = [
1417
+ "memchr",
1418
+ ]
1419
+
1420
+ [[package]]
1421
+ name = "wyz"
1422
+ version = "0.5.1"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
1425
+ dependencies = [
1426
+ "tap",
1427
+ ]
1428
+
1429
+ [[package]]
1430
+ name = "xmlwriter"
1431
+ version = "0.1.0"
1432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1433
+ checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"
1434
+
1435
+ [[package]]
1436
+ name = "zune-core"
1437
+ version = "0.4.12"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
1440
+
1441
+ [[package]]
1442
+ name = "zune-jpeg"
1443
+ version = "0.4.14"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "99a5bab8d7dedf81405c4bb1f2b83ea057643d9cb28778cea9eecddeedd2e028"
1446
+ dependencies = [
1447
+ "zune-core",
1448
+ ]