unfair 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 (437) hide show
  1. unfair-0.1.0/Cargo.lock +2390 -0
  2. unfair-0.1.0/Cargo.toml +89 -0
  3. unfair-0.1.0/PKG-INFO +75 -0
  4. unfair-0.1.0/README.md +61 -0
  5. unfair-0.1.0/crates/codec-abw/Cargo.toml +16 -0
  6. unfair-0.1.0/crates/codec-abw/src/abw.rs +1268 -0
  7. unfair-0.1.0/crates/codec-abw/src/lib.rs +21 -0
  8. unfair-0.1.0/crates/codec-abw/src/psw.rs +958 -0
  9. unfair-0.1.0/crates/codec-abw/tests/abw_codecs.rs +288 -0
  10. unfair-0.1.0/crates/codec-abw/tests/fixtures/roundtrip.abw +17 -0
  11. unfair-0.1.0/crates/codec-abw/tests/fixtures/roundtrip.psw +0 -0
  12. unfair-0.1.0/crates/codec-abw/tests/fixtures/sample.txt +3 -0
  13. unfair-0.1.0/crates/codec-abw/tests/psw_codecs.rs +202 -0
  14. unfair-0.1.0/crates/codec-cdr/Cargo.toml +19 -0
  15. unfair-0.1.0/crates/codec-cdr/src/charset.rs +134 -0
  16. unfair-0.1.0/crates/codec-cdr/src/color.rs +405 -0
  17. unfair-0.1.0/crates/codec-cdr/src/content.rs +910 -0
  18. unfair-0.1.0/crates/codec-cdr/src/cursor.rs +209 -0
  19. unfair-0.1.0/crates/codec-cdr/src/lib.rs +168 -0
  20. unfair-0.1.0/crates/codec-cdr/src/model.rs +333 -0
  21. unfair-0.1.0/crates/codec-cdr/src/parser.rs +541 -0
  22. unfair-0.1.0/crates/codec-cdr/src/path.rs +447 -0
  23. unfair-0.1.0/crates/codec-cdr/src/read.rs +2257 -0
  24. unfair-0.1.0/crates/codec-cdr/src/riff.rs +438 -0
  25. unfair-0.1.0/crates/codec-cdr/src/symbol_map.rs +23 -0
  26. unfair-0.1.0/crates/codec-cdr/src/transform.rs +409 -0
  27. unfair-0.1.0/crates/codec-cdr/tests/cdr_reader.rs +553 -0
  28. unfair-0.1.0/crates/codec-doc/Cargo.toml +18 -0
  29. unfair-0.1.0/crates/codec-doc/src/cfb.rs +560 -0
  30. unfair-0.1.0/crates/codec-doc/src/fib.rs +139 -0
  31. unfair-0.1.0/crates/codec-doc/src/lib.rs +140 -0
  32. unfair-0.1.0/crates/codec-doc/src/writer.rs +316 -0
  33. unfair-0.1.0/crates/codec-doc/tests/doc_codecs.rs +117 -0
  34. unfair-0.1.0/crates/codec-doc/tests/doc_write.rs +468 -0
  35. unfair-0.1.0/crates/codec-doc/tests/gen_fixtures.py +164 -0
  36. unfair-0.1.0/crates/codec-docbook/Cargo.toml +13 -0
  37. unfair-0.1.0/crates/codec-docbook/fixtures/sample-article.xml +35 -0
  38. unfair-0.1.0/crates/codec-docbook/src/dbk.rs +1264 -0
  39. unfair-0.1.0/crates/codec-docbook/src/lib.rs +31 -0
  40. unfair-0.1.0/crates/codec-draw/Cargo.toml +20 -0
  41. unfair-0.1.0/crates/codec-draw/src/cgm.rs +1845 -0
  42. unfair-0.1.0/crates/codec-draw/src/drawing.rs +250 -0
  43. unfair-0.1.0/crates/codec-draw/src/dxf.rs +1132 -0
  44. unfair-0.1.0/crates/codec-draw/src/fh.rs +3109 -0
  45. unfair-0.1.0/crates/codec-draw/src/lib.rs +115 -0
  46. unfair-0.1.0/crates/codec-draw/src/svg.rs +355 -0
  47. unfair-0.1.0/crates/codec-draw/tests/draw_codecs.rs +704 -0
  48. unfair-0.1.0/crates/codec-draw/tests/svg_writer.rs +206 -0
  49. unfair-0.1.0/crates/codec-epub/Cargo.toml +13 -0
  50. unfair-0.1.0/crates/codec-epub/src/lib.rs +579 -0
  51. unfair-0.1.0/crates/codec-epub/src/render.rs +185 -0
  52. unfair-0.1.0/crates/codec-epub/tests/epub_codecs.rs +334 -0
  53. unfair-0.1.0/crates/codec-fb2/Cargo.toml +17 -0
  54. unfair-0.1.0/crates/codec-fb2/src/lib.rs +1406 -0
  55. unfair-0.1.0/crates/codec-fb2/tests/fb2_roundtrip.rs +296 -0
  56. unfair-0.1.0/crates/codec-fb2/tests/fixture_smoke.rs +73 -0
  57. unfair-0.1.0/crates/codec-fb2/tests/fixtures/book_smoke.fb2 +25 -0
  58. unfair-0.1.0/crates/codec-fb2/tests/gen_fixtures.py +52 -0
  59. unfair-0.1.0/crates/codec-hwp/Cargo.toml +18 -0
  60. unfair-0.1.0/crates/codec-hwp/src/cfb.rs +747 -0
  61. unfair-0.1.0/crates/codec-hwp/src/lib.rs +15 -0
  62. unfair-0.1.0/crates/codec-hwp/src/reader.rs +221 -0
  63. unfair-0.1.0/crates/codec-hwp/src/record.rs +133 -0
  64. unfair-0.1.0/crates/codec-hwp/src/writer.rs +650 -0
  65. unfair-0.1.0/crates/codec-hwp/tests/hwp_codecs.rs +416 -0
  66. unfair-0.1.0/crates/codec-image/Cargo.toml +19 -0
  67. unfair-0.1.0/crates/codec-image/src/dib.rs +639 -0
  68. unfair-0.1.0/crates/codec-image/src/emf.rs +235 -0
  69. unfair-0.1.0/crates/codec-image/src/jpeg.rs +232 -0
  70. unfair-0.1.0/crates/codec-image/src/lib.rs +192 -0
  71. unfair-0.1.0/crates/codec-image/src/tiff.rs +369 -0
  72. unfair-0.1.0/crates/codec-image/src/wmf.rs +371 -0
  73. unfair-0.1.0/crates/codec-image/tests/image_codecs.rs +192 -0
  74. unfair-0.1.0/crates/codec-keynote/Cargo.toml +20 -0
  75. unfair-0.1.0/crates/codec-keynote/src/apxl.rs +678 -0
  76. unfair-0.1.0/crates/codec-keynote/src/container.rs +104 -0
  77. unfair-0.1.0/crates/codec-keynote/src/lib.rs +67 -0
  78. unfair-0.1.0/crates/codec-keynote/tests/keynote_readers.rs +473 -0
  79. unfair-0.1.0/crates/codec-legacy/Cargo.toml +17 -0
  80. unfair-0.1.0/crates/codec-legacy/src/cp1252.rs +63 -0
  81. unfair-0.1.0/crates/codec-legacy/src/cp437.rs +50 -0
  82. unfair-0.1.0/crates/codec-legacy/src/docdos.rs +80 -0
  83. unfair-0.1.0/crates/codec-legacy/src/lib.rs +71 -0
  84. unfair-0.1.0/crates/codec-legacy/src/macroman.rs +34 -0
  85. unfair-0.1.0/crates/codec-legacy/src/macwrite.rs +259 -0
  86. unfair-0.1.0/crates/codec-legacy/src/shared.rs +459 -0
  87. unfair-0.1.0/crates/codec-legacy/src/wri.rs +73 -0
  88. unfair-0.1.0/crates/codec-legacy/tests/legacy_write.rs +887 -0
  89. unfair-0.1.0/crates/codec-legacy-text/Cargo.toml +17 -0
  90. unfair-0.1.0/crates/codec-legacy-text/src/cwk.rs +469 -0
  91. unfair-0.1.0/crates/codec-legacy-text/src/lib.rs +83 -0
  92. unfair-0.1.0/crates/codec-legacy-text/src/mariner.rs +413 -0
  93. unfair-0.1.0/crates/codec-legacy-text/src/mizi.rs +566 -0
  94. unfair-0.1.0/crates/codec-legacy-text/tests/cwk_codecs.rs +112 -0
  95. unfair-0.1.0/crates/codec-legacy-text/tests/engine_roundtrips.rs +58 -0
  96. unfair-0.1.0/crates/codec-legacy-text/tests/mariner_codecs.rs +142 -0
  97. unfair-0.1.0/crates/codec-legacy-text/tests/mizi_codecs.rs +131 -0
  98. unfair-0.1.0/crates/codec-lwp/Cargo.toml +16 -0
  99. unfair-0.1.0/crates/codec-lwp/src/container.rs +375 -0
  100. unfair-0.1.0/crates/codec-lwp/src/lib.rs +87 -0
  101. unfair-0.1.0/crates/codec-lwp/src/lwp.rs +1010 -0
  102. unfair-0.1.0/crates/codec-lwp/tests/lwp_codecs.rs +139 -0
  103. unfair-0.1.0/crates/codec-mathml/Cargo.toml +18 -0
  104. unfair-0.1.0/crates/codec-mathml/src/entities.rs +332 -0
  105. unfair-0.1.0/crates/codec-mathml/src/lib.rs +96 -0
  106. unfair-0.1.0/crates/codec-mathml/src/model.rs +139 -0
  107. unfair-0.1.0/crates/codec-mathml/src/parse.rs +329 -0
  108. unfair-0.1.0/crates/codec-mathml/tests/mathml_read.rs +397 -0
  109. unfair-0.1.0/crates/codec-mtef/Cargo.toml +18 -0
  110. unfair-0.1.0/crates/codec-mtef/src/cfb.rs +328 -0
  111. unfair-0.1.0/crates/codec-mtef/src/cursor.rs +112 -0
  112. unfair-0.1.0/crates/codec-mtef/src/lib.rs +165 -0
  113. unfair-0.1.0/crates/codec-mtef/src/mtef.rs +1969 -0
  114. unfair-0.1.0/crates/codec-mtef/tests/fixtures/fraction.mtef +0 -0
  115. unfair-0.1.0/crates/codec-mtef/tests/fixtures/greek_matrix.mtef +0 -0
  116. unfair-0.1.0/crates/codec-mtef/tests/fixtures/quadratic.mtef +0 -0
  117. unfair-0.1.0/crates/codec-mtef/tests/fixtures/simple_equation.mtef +0 -0
  118. unfair-0.1.0/crates/codec-mtef/tests/gen_fixtures.py +113 -0
  119. unfair-0.1.0/crates/codec-mtef/tests/mtef_gen_fixtures.rs +87 -0
  120. unfair-0.1.0/crates/codec-mtef/tests/mtef_read.rs +381 -0
  121. unfair-0.1.0/crates/codec-mtef/tests/support/cfb_build.rs +315 -0
  122. unfair-0.1.0/crates/codec-odf/Cargo.toml +18 -0
  123. unfair-0.1.0/crates/codec-odf/src/common.rs +556 -0
  124. unfair-0.1.0/crates/codec-odf/src/lib.rs +25 -0
  125. unfair-0.1.0/crates/codec-odf/src/odp.rs +471 -0
  126. unfair-0.1.0/crates/codec-odf/src/ods.rs +452 -0
  127. unfair-0.1.0/crates/codec-odf/src/odt.rs +643 -0
  128. unfair-0.1.0/crates/codec-odf/src/styles.rs +314 -0
  129. unfair-0.1.0/crates/codec-odf/src/textmap.rs +253 -0
  130. unfair-0.1.0/crates/codec-odf/tests/fixtures/sample.odp +0 -0
  131. unfair-0.1.0/crates/codec-odf/tests/fixtures/sample.ods +0 -0
  132. unfair-0.1.0/crates/codec-odf/tests/fixtures/sample.odt +0 -0
  133. unfair-0.1.0/crates/codec-odf/tests/gen_fixtures.py +143 -0
  134. unfair-0.1.0/crates/codec-odf/tests/odf_codecs.rs +1025 -0
  135. unfair-0.1.0/crates/codec-ooxml/Cargo.toml +15 -0
  136. unfair-0.1.0/crates/codec-ooxml/src/docx.rs +1144 -0
  137. unfair-0.1.0/crates/codec-ooxml/src/lib.rs +23 -0
  138. unfair-0.1.0/crates/codec-ooxml/tests/docx_codecs.rs +267 -0
  139. unfair-0.1.0/crates/codec-palm/Cargo.toml +17 -0
  140. unfair-0.1.0/crates/codec-palm/src/doc.rs +356 -0
  141. unfair-0.1.0/crates/codec-palm/src/lib.rs +194 -0
  142. unfair-0.1.0/crates/codec-palm/src/plucker.rs +411 -0
  143. unfair-0.1.0/crates/codec-palm/tests/palmdoc.rs +225 -0
  144. unfair-0.1.0/crates/codec-palm/tests/plucker.rs +162 -0
  145. unfair-0.1.0/crates/codec-pdf/Cargo.toml +44 -0
  146. unfair-0.1.0/crates/codec-pdf/assets/DejaVuSans-Bold.ttf +0 -0
  147. unfair-0.1.0/crates/codec-pdf/assets/DejaVuSans.ttf +0 -0
  148. unfair-0.1.0/crates/codec-pdf/assets/LICENSE-DejaVu.txt +187 -0
  149. unfair-0.1.0/crates/codec-pdf/src/compliance.rs +1170 -0
  150. unfair-0.1.0/crates/codec-pdf/src/decode.rs +3220 -0
  151. unfair-0.1.0/crates/codec-pdf/src/encode.rs +100 -0
  152. unfair-0.1.0/crates/codec-pdf/src/lib.rs +270 -0
  153. unfair-0.1.0/crates/codec-pdf/src/parity_tests.rs +579 -0
  154. unfair-0.1.0/crates/codec-pdf/src/render.rs +660 -0
  155. unfair-0.1.0/crates/codec-pdf/src/render_fidelity.rs +695 -0
  156. unfair-0.1.0/crates/codec-pdf/src/render_tagged.rs +441 -0
  157. unfair-0.1.0/crates/codec-pdf/src/security.rs +594 -0
  158. unfair-0.1.0/crates/codec-pdf/src/sfnt.rs +482 -0
  159. unfair-0.1.0/crates/codec-pdf/src/sign.rs +828 -0
  160. unfair-0.1.0/crates/codec-pdf/src/tagged.rs +161 -0
  161. unfair-0.1.0/crates/codec-pdf/src/xmp.rs +313 -0
  162. unfair-0.1.0/crates/codec-pdf/src/zugferd.rs +478 -0
  163. unfair-0.1.0/crates/codec-pdf/tests/compliance.rs +430 -0
  164. unfair-0.1.0/crates/codec-pdf/tests/fixtures/basic.pdf +0 -0
  165. unfair-0.1.0/crates/codec-pdf/tests/fixtures/broken-xref.pdf +0 -0
  166. unfair-0.1.0/crates/codec-pdf/tests/fixtures/cid.pdf +0 -0
  167. unfair-0.1.0/crates/codec-pdf/tests/fixtures/compressed.pdf +0 -0
  168. unfair-0.1.0/crates/codec-pdf/tests/fixtures/corrupt-flate.pdf +0 -0
  169. unfair-0.1.0/crates/codec-pdf/tests/fixtures/empty-pages.pdf +22 -0
  170. unfair-0.1.0/crates/codec-pdf/tests/fixtures/enc-aes128-nometa.pdf +48 -0
  171. unfair-0.1.0/crates/codec-pdf/tests/fixtures/enc-aes128-xrefstream.pdf +0 -0
  172. unfair-0.1.0/crates/codec-pdf/tests/fixtures/enc-aes128.pdf +41 -0
  173. unfair-0.1.0/crates/codec-pdf/tests/fixtures/enc-custom-filter.pdf +38 -0
  174. unfair-0.1.0/crates/codec-pdf/tests/fixtures/enc-rc4-128.pdf +41 -0
  175. unfair-0.1.0/crates/codec-pdf/tests/fixtures/enc-rc4-40.pdf +41 -0
  176. unfair-0.1.0/crates/codec-pdf/tests/fixtures/enc-userpw-r2.pdf +0 -0
  177. unfair-0.1.0/crates/codec-pdf/tests/fixtures/encodings.pdf +0 -0
  178. unfair-0.1.0/crates/codec-pdf/tests/fixtures/encrypted.pdf +0 -0
  179. unfair-0.1.0/crates/codec-pdf/tests/fixtures/filters.pdf +59 -0
  180. unfair-0.1.0/crates/codec-pdf/tests/fixtures/graphics-forms.pdf +0 -0
  181. unfair-0.1.0/crates/codec-pdf/tests/fixtures/notpdf.bin +1 -0
  182. unfair-0.1.0/crates/codec-pdf/tests/fixtures/objstm.pdf +0 -0
  183. unfair-0.1.0/crates/codec-pdf/tests/fixtures/pades_cert.der +0 -0
  184. unfair-0.1.0/crates/codec-pdf/tests/fixtures/pades_cert.pem +20 -0
  185. unfair-0.1.0/crates/codec-pdf/tests/fixtures/pades_key.pem +28 -0
  186. unfair-0.1.0/crates/codec-pdf/tests/fixtures/truncated.pdf +0 -0
  187. unfair-0.1.0/crates/codec-pdf/tests/fixtures/unsupported-filter.pdf +37 -0
  188. unfair-0.1.0/crates/codec-pdf/tests/fixtures/xrefstream.pdf +0 -0
  189. unfair-0.1.0/crates/codec-pdf/tests/gen_encrypted_fixtures.py +354 -0
  190. unfair-0.1.0/crates/codec-pdf/tests/gen_fixtures.py +62 -0
  191. unfair-0.1.0/crates/codec-pdf/tests/gen_reader_fixtures.py +537 -0
  192. unfair-0.1.0/crates/codec-pdf/tests/image_to_pdf.rs +173 -0
  193. unfair-0.1.0/crates/codec-pdf/tests/pdf_codecs.rs +374 -0
  194. unfair-0.1.0/crates/codec-pdf/tests/pdf_encryption.rs +351 -0
  195. unfair-0.1.0/crates/codec-pdf/tests/pdf_reader.rs +507 -0
  196. unfair-0.1.0/crates/codec-pmd/Cargo.toml +18 -0
  197. unfair-0.1.0/crates/codec-pmd/src/lib.rs +65 -0
  198. unfair-0.1.0/crates/codec-pmd/src/pmd.rs +300 -0
  199. unfair-0.1.0/crates/codec-pmd/tests/gen_fixtures.py +68 -0
  200. unfair-0.1.0/crates/codec-pmd/tests/pmd_write.rs +411 -0
  201. unfair-0.1.0/crates/codec-ppt/Cargo.toml +18 -0
  202. unfair-0.1.0/crates/codec-ppt/src/cfb.rs +708 -0
  203. unfair-0.1.0/crates/codec-ppt/src/lib.rs +160 -0
  204. unfair-0.1.0/crates/codec-ppt/src/ppt.rs +683 -0
  205. unfair-0.1.0/crates/codec-ppt/tests/gen_fixtures.py +209 -0
  206. unfair-0.1.0/crates/codec-ppt/tests/ppt_codecs.rs +270 -0
  207. unfair-0.1.0/crates/codec-ppt/tests/ppt_write.rs +317 -0
  208. unfair-0.1.0/crates/codec-ppt3/Cargo.toml +19 -0
  209. unfair-0.1.0/crates/codec-ppt3/src/cfb.rs +441 -0
  210. unfair-0.1.0/crates/codec-ppt3/src/lib.rs +106 -0
  211. unfair-0.1.0/crates/codec-ppt3/src/oldppt.rs +636 -0
  212. unfair-0.1.0/crates/codec-ppt3/tests/gen_fixtures.py +265 -0
  213. unfair-0.1.0/crates/codec-ppt3/tests/ppt3.rs +294 -0
  214. unfair-0.1.0/crates/codec-pub/Cargo.toml +17 -0
  215. unfair-0.1.0/crates/codec-pub/src/cfb.rs +518 -0
  216. unfair-0.1.0/crates/codec-pub/src/contents.rs +710 -0
  217. unfair-0.1.0/crates/codec-pub/src/cursor.rs +109 -0
  218. unfair-0.1.0/crates/codec-pub/src/escher.rs +606 -0
  219. unfair-0.1.0/crates/codec-pub/src/lib.rs +46 -0
  220. unfair-0.1.0/crates/codec-pub/src/model.rs +225 -0
  221. unfair-0.1.0/crates/codec-pub/src/quill.rs +454 -0
  222. unfair-0.1.0/crates/codec-pub/src/reader.rs +79 -0
  223. unfair-0.1.0/crates/codec-pub/tests/cfb_roundtrip.rs +35 -0
  224. unfair-0.1.0/crates/codec-pub/tests/fixtures/pub2002_smoke.pub +0 -0
  225. unfair-0.1.0/crates/codec-pub/tests/fixtures/pub97_smoke.pub +0 -0
  226. unfair-0.1.0/crates/codec-pub/tests/gen_fixtures.py +380 -0
  227. unfair-0.1.0/crates/codec-pub/tests/pub_2k.rs +410 -0
  228. unfair-0.1.0/crates/codec-pub/tests/pub_2k2.rs +603 -0
  229. unfair-0.1.0/crates/codec-pub/tests/support/cfb_build.rs +315 -0
  230. unfair-0.1.0/crates/codec-qpw/Cargo.toml +16 -0
  231. unfair-0.1.0/crates/codec-qpw/src/lib.rs +99 -0
  232. unfair-0.1.0/crates/codec-qpw/src/ole.rs +623 -0
  233. unfair-0.1.0/crates/codec-qpw/src/qpw.rs +353 -0
  234. unfair-0.1.0/crates/codec-qpw/src/stream.rs +199 -0
  235. unfair-0.1.0/crates/codec-qpw/src/wb1.rs +273 -0
  236. unfair-0.1.0/crates/codec-qpw/tests/quattro_readers.rs +438 -0
  237. unfair-0.1.0/crates/codec-qxd/Cargo.toml +18 -0
  238. unfair-0.1.0/crates/codec-qxd/src/lib.rs +64 -0
  239. unfair-0.1.0/crates/codec-qxd/src/qxd.rs +267 -0
  240. unfair-0.1.0/crates/codec-qxd/tests/gen_fixtures.py +64 -0
  241. unfair-0.1.0/crates/codec-qxd/tests/qxd_write.rs +339 -0
  242. unfair-0.1.0/crates/codec-raster/Cargo.toml +16 -0
  243. unfair-0.1.0/crates/codec-raster/examples/gif_debug.rs +20 -0
  244. unfair-0.1.0/crates/codec-raster/examples/gif_dump.rs +12 -0
  245. unfair-0.1.0/crates/codec-raster/examples/raster_check.rs +107 -0
  246. unfair-0.1.0/crates/codec-raster/src/bmp.rs +463 -0
  247. unfair-0.1.0/crates/codec-raster/src/gif.rs +675 -0
  248. unfair-0.1.0/crates/codec-raster/src/lib.rs +113 -0
  249. unfair-0.1.0/crates/codec-raster/src/png.rs +510 -0
  250. unfair-0.1.0/crates/codec-raster/tests/codec.rs +594 -0
  251. unfair-0.1.0/crates/codec-rtf/Cargo.toml +13 -0
  252. unfair-0.1.0/crates/codec-rtf/src/lib.rs +1074 -0
  253. unfair-0.1.0/crates/codec-rtf/tests/rtf_codecs.rs +353 -0
  254. unfair-0.1.0/crates/codec-sda/Cargo.toml +18 -0
  255. unfair-0.1.0/crates/codec-sda/src/cfb.rs +328 -0
  256. unfair-0.1.0/crates/codec-sda/src/lib.rs +215 -0
  257. unfair-0.1.0/crates/codec-sda/src/sda.rs +1363 -0
  258. unfair-0.1.0/crates/codec-sda/tests/fixtures/LWE-Dublin.sda +0 -0
  259. unfair-0.1.0/crates/codec-sda/tests/fixtures/bunterZettel.sdd +0 -0
  260. unfair-0.1.0/crates/codec-sda/tests/fixtures/go-oox-4.sdd +0 -0
  261. unfair-0.1.0/crates/codec-sda/tests/fixtures/go-oox-5.sdd +0 -0
  262. unfair-0.1.0/crates/codec-sda/tests/fixtures/projekt.sdd +0 -0
  263. unfair-0.1.0/crates/codec-sda/tests/fixtures/testField.sda +0 -0
  264. unfair-0.1.0/crates/codec-sda/tests/fixtures/testGraph.sda +0 -0
  265. unfair-0.1.0/crates/codec-sda/tests/fixtures/testSlide.sda +0 -0
  266. unfair-0.1.0/crates/codec-sda/tests/sda_codecs.rs +284 -0
  267. unfair-0.1.0/crates/codec-sheet/Cargo.toml +22 -0
  268. unfair-0.1.0/crates/codec-sheet/src/dbf.rs +1281 -0
  269. unfair-0.1.0/crates/codec-sheet/src/dif.rs +665 -0
  270. unfair-0.1.0/crates/codec-sheet/src/gnumeric.rs +281 -0
  271. unfair-0.1.0/crates/codec-sheet/src/interchange.rs +902 -0
  272. unfair-0.1.0/crates/codec-sheet/src/lib.rs +31 -0
  273. unfair-0.1.0/crates/codec-sheet/src/multiplan.rs +107 -0
  274. unfair-0.1.0/crates/codec-sheet/src/sylk.rs +656 -0
  275. unfair-0.1.0/crates/codec-sheet/src/works_calc.rs +331 -0
  276. unfair-0.1.0/crates/codec-sheet/src/xlsx.rs +1520 -0
  277. unfair-0.1.0/crates/codec-sheet/tests/dbf_codecs.rs +619 -0
  278. unfair-0.1.0/crates/codec-sheet/tests/fixtures/ooo80484-1.slk +11 -0
  279. unfair-0.1.0/crates/codec-sheet/tests/fixtures/openpyxl_sample.xlsx +0 -0
  280. unfair-0.1.0/crates/codec-sheet/tests/gen_fixtures.py +46 -0
  281. unfair-0.1.0/crates/codec-sheet/tests/interchange.rs +218 -0
  282. unfair-0.1.0/crates/codec-sheet/tests/interchange_codecs.rs +673 -0
  283. unfair-0.1.0/crates/codec-sheet/tests/wave6_legacy.rs +294 -0
  284. unfair-0.1.0/crates/codec-sheet/tests/xlsx_codecs.rs +841 -0
  285. unfair-0.1.0/crates/codec-slides/Cargo.toml +18 -0
  286. unfair-0.1.0/crates/codec-slides/src/lib.rs +16 -0
  287. unfair-0.1.0/crates/codec-slides/src/pptx.rs +1361 -0
  288. unfair-0.1.0/crates/codec-slides/tests/fixtures/sample.pptx +0 -0
  289. unfair-0.1.0/crates/codec-slides/tests/gen_fixtures.py +166 -0
  290. unfair-0.1.0/crates/codec-slides/tests/pptx_codecs.rs +750 -0
  291. unfair-0.1.0/crates/codec-t602/Cargo.toml +16 -0
  292. unfair-0.1.0/crates/codec-t602/src/lib.rs +91 -0
  293. unfair-0.1.0/crates/codec-t602/src/t602.rs +545 -0
  294. unfair-0.1.0/crates/codec-t602/src/tables.rs +55 -0
  295. unfair-0.1.0/crates/codec-t602/tests/t602_codecs.rs +207 -0
  296. unfair-0.1.0/crates/codec-text/Cargo.toml +14 -0
  297. unfair-0.1.0/crates/codec-text/src/csv.rs +187 -0
  298. unfair-0.1.0/crates/codec-text/src/html.rs +702 -0
  299. unfair-0.1.0/crates/codec-text/src/lib.rs +61 -0
  300. unfair-0.1.0/crates/codec-text/src/md.rs +1002 -0
  301. unfair-0.1.0/crates/codec-text/src/txt.rs +168 -0
  302. unfair-0.1.0/crates/codec-text/tests/text_codecs.rs +759 -0
  303. unfair-0.1.0/crates/codec-uof/Cargo.toml +16 -0
  304. unfair-0.1.0/crates/codec-uof/src/common.rs +451 -0
  305. unfair-0.1.0/crates/codec-uof/src/lib.rs +63 -0
  306. unfair-0.1.0/crates/codec-uof/src/present.rs +333 -0
  307. unfair-0.1.0/crates/codec-uof/src/sheet.rs +400 -0
  308. unfair-0.1.0/crates/codec-uof/src/text.rs +936 -0
  309. unfair-0.1.0/crates/codec-uof/tests/uof_codecs.rs +606 -0
  310. unfair-0.1.0/crates/codec-visio/Cargo.toml +15 -0
  311. unfair-0.1.0/crates/codec-visio/src/emit.rs +512 -0
  312. unfair-0.1.0/crates/codec-visio/src/lib.rs +143 -0
  313. unfair-0.1.0/crates/codec-visio/src/model.rs +267 -0
  314. unfair-0.1.0/crates/codec-visio/src/parse.rs +1769 -0
  315. unfair-0.1.0/crates/codec-visio/src/reader.rs +228 -0
  316. unfair-0.1.0/crates/codec-visio/tests/data/README.md +29 -0
  317. unfair-0.1.0/crates/codec-visio/tests/data/Visio11FormatLine.vsd +0 -0
  318. unfair-0.1.0/crates/codec-visio/tests/data/Visio11PlanWithDimensions.vsd +0 -0
  319. unfair-0.1.0/crates/codec-visio/tests/data/Visio5PlanWithDimensions.vsd +0 -0
  320. unfair-0.1.0/crates/codec-visio/tests/data/Visio6PlanWithDimensions.vsd +0 -0
  321. unfair-0.1.0/crates/codec-visio/tests/data/Visio6TextFieldsWithUnits.vsd +0 -0
  322. unfair-0.1.0/crates/codec-visio/tests/data/fdo86729-ms1252.vsd +0 -0
  323. unfair-0.1.0/crates/codec-visio/tests/data/tdf76829-numeric-format.vsd +0 -0
  324. unfair-0.1.0/crates/codec-visio/tests/visio_reader.rs +191 -0
  325. unfair-0.1.0/crates/codec-wk1/Cargo.toml +18 -0
  326. unfair-0.1.0/crates/codec-wk1/src/formula.rs +521 -0
  327. unfair-0.1.0/crates/codec-wk1/src/lib.rs +72 -0
  328. unfair-0.1.0/crates/codec-wk1/src/reader.rs +416 -0
  329. unfair-0.1.0/crates/codec-wk1/src/writer.rs +280 -0
  330. unfair-0.1.0/crates/codec-wk1/tests/wk1_codecs.rs +637 -0
  331. unfair-0.1.0/crates/codec-wp/Cargo.toml +16 -0
  332. unfair-0.1.0/crates/codec-wp/src/charset.rs +80 -0
  333. unfair-0.1.0/crates/codec-wp/src/lib.rs +136 -0
  334. unfair-0.1.0/crates/codec-wp/src/protocol.rs +106 -0
  335. unfair-0.1.0/crates/codec-wp/src/wp5.rs +422 -0
  336. unfair-0.1.0/crates/codec-wp/src/wp6.rs +441 -0
  337. unfair-0.1.0/crates/codec-wp/tests/data/real_wp50.doc +0 -0
  338. unfair-0.1.0/crates/codec-wp/tests/data/real_wp51.doc +0 -0
  339. unfair-0.1.0/crates/codec-wp/tests/data/real_wp61.wpd +0 -0
  340. unfair-0.1.0/crates/codec-wp/tests/wp_codecs.rs +325 -0
  341. unfair-0.1.0/crates/codec-wp/tests/wp_write.rs +228 -0
  342. unfair-0.1.0/crates/codec-wps/Cargo.toml +18 -0
  343. unfair-0.1.0/crates/codec-wps/src/cfb.rs +560 -0
  344. unfair-0.1.0/crates/codec-wps/src/lib.rs +43 -0
  345. unfair-0.1.0/crates/codec-wps/src/wps.rs +354 -0
  346. unfair-0.1.0/crates/codec-wps/src/writenow.rs +478 -0
  347. unfair-0.1.0/crates/codec-wps/tests/wps_write.rs +141 -0
  348. unfair-0.1.0/crates/codec-wps/tests/writenow_write.rs +126 -0
  349. unfair-0.1.0/crates/codec-xls/Cargo.toml +16 -0
  350. unfair-0.1.0/crates/codec-xls/src/biff.rs +448 -0
  351. unfair-0.1.0/crates/codec-xls/src/cfb.rs +622 -0
  352. unfair-0.1.0/crates/codec-xls/src/lib.rs +84 -0
  353. unfair-0.1.0/crates/codec-xls/src/writer.rs +546 -0
  354. unfair-0.1.0/crates/codec-xls/tests/gen_fixtures.py +293 -0
  355. unfair-0.1.0/crates/codec-xls/tests/xls_codecs.rs +189 -0
  356. unfair-0.1.0/crates/codec-xls/tests/xls_write.rs +494 -0
  357. unfair-0.1.0/crates/codec-xls/tests/xls_write_more.rs +271 -0
  358. unfair-0.1.0/crates/core/Cargo.toml +19 -0
  359. unfair-0.1.0/crates/core/src/catalog.rs +732 -0
  360. unfair-0.1.0/crates/core/src/detect.rs +802 -0
  361. unfair-0.1.0/crates/core/src/engine.rs +367 -0
  362. unfair-0.1.0/crates/core/src/error.rs +47 -0
  363. unfair-0.1.0/crates/core/src/filters.rs +959 -0
  364. unfair-0.1.0/crates/core/src/formula/eval.rs +999 -0
  365. unfair-0.1.0/crates/core/src/formula/mod.rs +40 -0
  366. unfair-0.1.0/crates/core/src/formula/parser.rs +824 -0
  367. unfair-0.1.0/crates/core/src/json.rs +70 -0
  368. unfair-0.1.0/crates/core/src/lib.rs +22 -0
  369. unfair-0.1.0/crates/core/src/model/mod.rs +108 -0
  370. unfair-0.1.0/crates/core/src/model/raster.rs +69 -0
  371. unfair-0.1.0/crates/core/src/model/sheet.rs +156 -0
  372. unfair-0.1.0/crates/core/src/model/slides.rs +42 -0
  373. unfair-0.1.0/crates/core/src/model/style.rs +34 -0
  374. unfair-0.1.0/crates/core/src/model/text.rs +394 -0
  375. unfair-0.1.0/crates/core/src/progress.rs +220 -0
  376. unfair-0.1.0/crates/core/src/registry.rs +154 -0
  377. unfair-0.1.0/crates/core/src/zipguard.rs +332 -0
  378. unfair-0.1.0/crates/core/tests/core_smoke.rs +208 -0
  379. unfair-0.1.0/crates/ffi/Cargo.toml +16 -0
  380. unfair-0.1.0/crates/ffi/include/unfair_ffi.h +95 -0
  381. unfair-0.1.0/crates/ffi/smoke/smoke.c +66 -0
  382. unfair-0.1.0/crates/ffi/src/lib.rs +522 -0
  383. unfair-0.1.0/crates/ffi/src/tests.rs +444 -0
  384. unfair-0.1.0/crates/ffi-py/.gitignore +8 -0
  385. unfair-0.1.0/crates/ffi-py/Cargo.toml +20 -0
  386. unfair-0.1.0/crates/ffi-py/README.md +61 -0
  387. unfair-0.1.0/crates/ffi-py/src/lib.rs +637 -0
  388. unfair-0.1.0/crates/ffi-py/tests/test_convert_progress.py +108 -0
  389. unfair-0.1.0/crates/ffi-py/tests/test_roundtrip.py +149 -0
  390. unfair-0.1.0/crates/fidelity/Cargo.toml +17 -0
  391. unfair-0.1.0/crates/fidelity/src/cascade.rs +366 -0
  392. unfair-0.1.0/crates/fidelity/src/discover.rs +215 -0
  393. unfair-0.1.0/crates/fidelity/src/fontkey.rs +242 -0
  394. unfair-0.1.0/crates/fidelity/src/lib.rs +35 -0
  395. unfair-0.1.0/crates/fidelity/src/metrics_tests.rs +363 -0
  396. unfair-0.1.0/crates/fidelity/src/page.rs +259 -0
  397. unfair-0.1.0/crates/fidelity/src/paginate.rs +2178 -0
  398. unfair-0.1.0/crates/fidelity/src/policy.rs +192 -0
  399. unfair-0.1.0/crates/fidelity/src/provider.rs +296 -0
  400. unfair-0.1.0/crates/fidelity/src/sheet.rs +1064 -0
  401. unfair-0.1.0/crates/fidelity/src/slides.rs +375 -0
  402. unfair-0.1.0/crates/fidelity/src/ttf.rs +465 -0
  403. unfair-0.1.0/crates/fidelity/src/units.rs +335 -0
  404. unfair-0.1.0/crates/fidelity/tests/fixtures/font_metrics_fixture.ttf +0 -0
  405. unfair-0.1.0/crates/fidelity/tests/fixtures/gen_font_metrics_fixture.py +111 -0
  406. unfair-0.1.0/crates/fidelity/tests/golden/cjk_and_image.golden.json +38 -0
  407. unfair-0.1.0/crates/fidelity/tests/golden/cjk_and_image.json +30 -0
  408. unfair-0.1.0/crates/fidelity/tests/golden/header_footer.golden.json +217 -0
  409. unfair-0.1.0/crates/fidelity/tests/golden/header_footer.json +69 -0
  410. unfair-0.1.0/crates/fidelity/tests/golden/multi_column.golden.json +334 -0
  411. unfair-0.1.0/crates/fidelity/tests/golden/multi_column.json +25 -0
  412. unfair-0.1.0/crates/fidelity/tests/golden/page_break_blank_page.golden.json +56 -0
  413. unfair-0.1.0/crates/fidelity/tests/golden/page_break_blank_page.json +29 -0
  414. unfair-0.1.0/crates/fidelity/tests/golden/reflow_multipage.golden.json +113 -0
  415. unfair-0.1.0/crates/fidelity/tests/golden/reflow_multipage.json +18 -0
  416. unfair-0.1.0/crates/fidelity/tests/golden/sheet_threecells.golden.json +143 -0
  417. unfair-0.1.0/crates/fidelity/tests/golden/sheet_threecells.json +47 -0
  418. unfair-0.1.0/crates/fidelity/tests/golden/sheet_wordwrap.golden.json +440 -0
  419. unfair-0.1.0/crates/fidelity/tests/golden/sheet_wordwrap.json +55 -0
  420. unfair-0.1.0/crates/fidelity/tests/golden/simple_two_paragraphs.golden.json +45 -0
  421. unfair-0.1.0/crates/fidelity/tests/golden/simple_two_paragraphs.json +27 -0
  422. unfair-0.1.0/crates/fidelity/tests/golden/slides_two.golden.json +105 -0
  423. unfair-0.1.0/crates/fidelity/tests/golden/slides_two.json +65 -0
  424. unfair-0.1.0/crates/fidelity/tests/golden/table_two_rows.golden.json +33 -0
  425. unfair-0.1.0/crates/fidelity/tests/golden/table_two_rows.json +58 -0
  426. unfair-0.1.0/crates/fidelity/tests/golden.rs +188 -0
  427. unfair-0.1.0/crates/fidelity/tests/golden_other.rs +191 -0
  428. unfair-0.1.0/crates/fidelity/tests/proptest_invariants.rs +177 -0
  429. unfair-0.1.0/crates/unfair/Cargo.toml +61 -0
  430. unfair-0.1.0/crates/unfair/src/lib.rs +144 -0
  431. unfair-0.1.0/crates/unfair/tests/legacy_e2e.rs +60 -0
  432. unfair-0.1.0/crates/unfair/tests/soffice_api.rs +61 -0
  433. unfair-0.1.0/crates/unfair/tests/wp_e2e.rs +72 -0
  434. unfair-0.1.0/crates/unfair/tests/xls_e2e.rs +153 -0
  435. unfair-0.1.0/crates/unfair/tests/zip_caps_e2e.rs +88 -0
  436. unfair-0.1.0/pyproject.toml +23 -0
  437. unfair-0.1.0/python/unfair/__init__.py +34 -0
@@ -0,0 +1,2390 @@
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 = "aes"
13
+ version = "0.8.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "cipher",
19
+ "cpufeatures",
20
+ ]
21
+
22
+ [[package]]
23
+ name = "ahash"
24
+ version = "0.8.12"
25
+ source = "registry+https://github.com/rust-lang/crates.io-index"
26
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
27
+ dependencies = [
28
+ "cfg-if",
29
+ "const-random",
30
+ "getrandom 0.3.4",
31
+ "once_cell",
32
+ "version_check",
33
+ "zerocopy",
34
+ ]
35
+
36
+ [[package]]
37
+ name = "aho-corasick"
38
+ version = "1.1.5"
39
+ source = "registry+https://github.com/rust-lang/crates.io-index"
40
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
41
+ dependencies = [
42
+ "memchr",
43
+ ]
44
+
45
+ [[package]]
46
+ name = "android_system_properties"
47
+ version = "0.1.6"
48
+ source = "registry+https://github.com/rust-lang/crates.io-index"
49
+ checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
50
+ dependencies = [
51
+ "libc",
52
+ ]
53
+
54
+ [[package]]
55
+ name = "anstream"
56
+ version = "1.0.0"
57
+ source = "registry+https://github.com/rust-lang/crates.io-index"
58
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
59
+ dependencies = [
60
+ "anstyle",
61
+ "anstyle-parse",
62
+ "anstyle-query",
63
+ "anstyle-wincon",
64
+ "colorchoice",
65
+ "is_terminal_polyfill",
66
+ "utf8parse",
67
+ ]
68
+
69
+ [[package]]
70
+ name = "anstyle"
71
+ version = "1.0.14"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
74
+
75
+ [[package]]
76
+ name = "anstyle-parse"
77
+ version = "1.0.0"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
80
+ dependencies = [
81
+ "utf8parse",
82
+ ]
83
+
84
+ [[package]]
85
+ name = "anstyle-query"
86
+ version = "1.1.5"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
89
+ dependencies = [
90
+ "windows-sys 0.61.2",
91
+ ]
92
+
93
+ [[package]]
94
+ name = "anstyle-wincon"
95
+ version = "3.0.11"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
98
+ dependencies = [
99
+ "anstyle",
100
+ "once_cell_polyfill",
101
+ "windows-sys 0.61.2",
102
+ ]
103
+
104
+ [[package]]
105
+ name = "arbitrary"
106
+ version = "1.4.2"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
109
+ dependencies = [
110
+ "derive_arbitrary",
111
+ ]
112
+
113
+ [[package]]
114
+ name = "autocfg"
115
+ version = "1.5.1"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
118
+
119
+ [[package]]
120
+ name = "base64"
121
+ version = "0.22.1"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
124
+
125
+ [[package]]
126
+ name = "base64ct"
127
+ version = "1.8.3"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
130
+
131
+ [[package]]
132
+ name = "bitflags"
133
+ version = "2.13.1"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
136
+
137
+ [[package]]
138
+ name = "block-buffer"
139
+ version = "0.10.4"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
142
+ dependencies = [
143
+ "generic-array",
144
+ ]
145
+
146
+ [[package]]
147
+ name = "block-padding"
148
+ version = "0.3.3"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
151
+ dependencies = [
152
+ "generic-array",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "bumpalo"
157
+ version = "3.20.3"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
160
+
161
+ [[package]]
162
+ name = "bytes"
163
+ version = "1.12.1"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
166
+
167
+ [[package]]
168
+ name = "cbc"
169
+ version = "0.1.2"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
172
+ dependencies = [
173
+ "cipher",
174
+ ]
175
+
176
+ [[package]]
177
+ name = "cc"
178
+ version = "1.4.4"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "0ad534f4357a5264cce5019c989cf66a4f0dc4e0d1b1d15f8aacec0ff7360273"
181
+ dependencies = [
182
+ "find-msvc-tools",
183
+ "shlex",
184
+ ]
185
+
186
+ [[package]]
187
+ name = "cesu8"
188
+ version = "1.1.0"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
191
+
192
+ [[package]]
193
+ name = "cfg-if"
194
+ version = "1.0.4"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
197
+
198
+ [[package]]
199
+ name = "chrono"
200
+ version = "0.4.45"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
203
+ dependencies = [
204
+ "iana-time-zone",
205
+ "num-traits",
206
+ "windows-link",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "cipher"
211
+ version = "0.4.4"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
214
+ dependencies = [
215
+ "crypto-common",
216
+ "inout",
217
+ ]
218
+
219
+ [[package]]
220
+ name = "clap"
221
+ version = "4.6.6"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
224
+ dependencies = [
225
+ "clap_builder",
226
+ "clap_derive",
227
+ ]
228
+
229
+ [[package]]
230
+ name = "clap_builder"
231
+ version = "4.6.6"
232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
233
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
234
+ dependencies = [
235
+ "anstream",
236
+ "anstyle",
237
+ "clap_lex",
238
+ "strsim",
239
+ ]
240
+
241
+ [[package]]
242
+ name = "clap_derive"
243
+ version = "4.6.4"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
246
+ dependencies = [
247
+ "heck",
248
+ "proc-macro2",
249
+ "quote",
250
+ "syn 3.0.4",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "clap_lex"
255
+ version = "1.1.0"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
258
+
259
+ [[package]]
260
+ name = "colorchoice"
261
+ version = "1.0.5"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
264
+
265
+ [[package]]
266
+ name = "combine"
267
+ version = "4.6.8"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "cfc320937d09e6de266b31b9afb480f197d7a861be86be7cb2ea7e5d1bfffc5e"
270
+ dependencies = [
271
+ "bytes",
272
+ "memchr",
273
+ ]
274
+
275
+ [[package]]
276
+ name = "const-oid"
277
+ version = "0.9.6"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
280
+
281
+ [[package]]
282
+ name = "const-random"
283
+ version = "0.1.18"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
286
+ dependencies = [
287
+ "const-random-macro",
288
+ ]
289
+
290
+ [[package]]
291
+ name = "const-random-macro"
292
+ version = "0.1.16"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
295
+ dependencies = [
296
+ "getrandom 0.2.17",
297
+ "once_cell",
298
+ "tiny-keccak",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "constant_time_eq"
303
+ version = "0.4.2"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
306
+
307
+ [[package]]
308
+ name = "convert_case"
309
+ version = "0.6.0"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
312
+ dependencies = [
313
+ "unicode-segmentation",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "core-foundation-sys"
318
+ version = "0.8.7"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
321
+
322
+ [[package]]
323
+ name = "cpufeatures"
324
+ version = "0.2.17"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
327
+ dependencies = [
328
+ "libc",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "crc32fast"
333
+ version = "1.5.1"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "8498c871161e1742aaa9d52551b2d6ebdd4c3d45a3be423e3728f33b955be550"
336
+ dependencies = [
337
+ "cfg-if",
338
+ ]
339
+
340
+ [[package]]
341
+ name = "crossbeam-deque"
342
+ version = "0.8.7"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
345
+ dependencies = [
346
+ "crossbeam-epoch",
347
+ "crossbeam-utils",
348
+ ]
349
+
350
+ [[package]]
351
+ name = "crossbeam-epoch"
352
+ version = "0.9.20"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
355
+ dependencies = [
356
+ "crossbeam-utils",
357
+ ]
358
+
359
+ [[package]]
360
+ name = "crossbeam-utils"
361
+ version = "0.8.22"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
364
+
365
+ [[package]]
366
+ name = "crunchy"
367
+ version = "0.2.4"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
370
+
371
+ [[package]]
372
+ name = "crypto-common"
373
+ version = "0.1.7"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
376
+ dependencies = [
377
+ "generic-array",
378
+ "typenum",
379
+ ]
380
+
381
+ [[package]]
382
+ name = "ctor"
383
+ version = "0.2.9"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
386
+ dependencies = [
387
+ "quote",
388
+ "syn 2.0.119",
389
+ ]
390
+
391
+ [[package]]
392
+ name = "der"
393
+ version = "0.7.10"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
396
+ dependencies = [
397
+ "const-oid",
398
+ "pem-rfc7468",
399
+ "zeroize",
400
+ ]
401
+
402
+ [[package]]
403
+ name = "deranged"
404
+ version = "0.5.8"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
407
+
408
+ [[package]]
409
+ name = "derive_arbitrary"
410
+ version = "1.4.2"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
413
+ dependencies = [
414
+ "proc-macro2",
415
+ "quote",
416
+ "syn 2.0.119",
417
+ ]
418
+
419
+ [[package]]
420
+ name = "digest"
421
+ version = "0.10.7"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
424
+ dependencies = [
425
+ "block-buffer",
426
+ "const-oid",
427
+ "crypto-common",
428
+ ]
429
+
430
+ [[package]]
431
+ name = "displaydoc"
432
+ version = "0.2.7"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
435
+ dependencies = [
436
+ "proc-macro2",
437
+ "quote",
438
+ "syn 3.0.4",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "either"
443
+ version = "1.18.0"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
446
+
447
+ [[package]]
448
+ name = "encoding_rs"
449
+ version = "0.8.35"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
452
+ dependencies = [
453
+ "cfg-if",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "equivalent"
458
+ version = "1.0.2"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
461
+
462
+ [[package]]
463
+ name = "errno"
464
+ version = "0.3.14"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
467
+ dependencies = [
468
+ "libc",
469
+ "windows-sys 0.61.2",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "fastrand"
474
+ version = "2.5.0"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
477
+
478
+ [[package]]
479
+ name = "find-msvc-tools"
480
+ version = "0.1.11"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
483
+
484
+ [[package]]
485
+ name = "flate2"
486
+ version = "1.1.9"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
489
+ dependencies = [
490
+ "crc32fast",
491
+ "miniz_oxide",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "futures-core"
496
+ version = "0.3.34"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
499
+
500
+ [[package]]
501
+ name = "futures-task"
502
+ version = "0.3.34"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
505
+
506
+ [[package]]
507
+ name = "futures-util"
508
+ version = "0.3.34"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
511
+ dependencies = [
512
+ "futures-core",
513
+ "futures-task",
514
+ "pin-project-lite",
515
+ "slab",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "generic-array"
520
+ version = "0.14.7"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
523
+ dependencies = [
524
+ "typenum",
525
+ "version_check",
526
+ ]
527
+
528
+ [[package]]
529
+ name = "getrandom"
530
+ version = "0.2.17"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
533
+ dependencies = [
534
+ "cfg-if",
535
+ "js-sys",
536
+ "libc",
537
+ "wasi",
538
+ "wasm-bindgen",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "getrandom"
543
+ version = "0.3.4"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
546
+ dependencies = [
547
+ "cfg-if",
548
+ "libc",
549
+ "r-efi",
550
+ "wasip2",
551
+ ]
552
+
553
+ [[package]]
554
+ name = "half"
555
+ version = "2.7.1"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
558
+ dependencies = [
559
+ "cfg-if",
560
+ "crunchy",
561
+ "num-traits",
562
+ "zerocopy",
563
+ ]
564
+
565
+ [[package]]
566
+ name = "hashbrown"
567
+ version = "0.17.1"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
570
+
571
+ [[package]]
572
+ name = "heck"
573
+ version = "0.5.0"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
576
+
577
+ [[package]]
578
+ name = "iana-time-zone"
579
+ version = "0.1.65"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
582
+ dependencies = [
583
+ "android_system_properties",
584
+ "core-foundation-sys",
585
+ "iana-time-zone-haiku",
586
+ "js-sys",
587
+ "log",
588
+ "wasm-bindgen",
589
+ "windows-core",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "iana-time-zone-haiku"
594
+ version = "0.1.2"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
597
+ dependencies = [
598
+ "cc",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "indexmap"
603
+ version = "2.14.0"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
606
+ dependencies = [
607
+ "equivalent",
608
+ "hashbrown",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "indoc"
613
+ version = "2.0.7"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
616
+ dependencies = [
617
+ "rustversion",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "inout"
622
+ version = "0.1.4"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
625
+ dependencies = [
626
+ "block-padding",
627
+ "generic-array",
628
+ ]
629
+
630
+ [[package]]
631
+ name = "is_terminal_polyfill"
632
+ version = "1.70.2"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
635
+
636
+ [[package]]
637
+ name = "itoa"
638
+ version = "1.0.18"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
641
+
642
+ [[package]]
643
+ name = "jni"
644
+ version = "0.21.1"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
647
+ dependencies = [
648
+ "cesu8",
649
+ "cfg-if",
650
+ "combine",
651
+ "jni-sys 0.3.1",
652
+ "log",
653
+ "thiserror 1.0.69",
654
+ "walkdir",
655
+ "windows-sys 0.45.0",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "jni-sys"
660
+ version = "0.3.1"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
663
+ dependencies = [
664
+ "jni-sys 0.4.1",
665
+ ]
666
+
667
+ [[package]]
668
+ name = "jni-sys"
669
+ version = "0.4.1"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
672
+ dependencies = [
673
+ "jni-sys-macros",
674
+ ]
675
+
676
+ [[package]]
677
+ name = "jni-sys-macros"
678
+ version = "0.4.1"
679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
680
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
681
+ dependencies = [
682
+ "quote",
683
+ "syn 2.0.119",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "jpeg-decoder"
688
+ version = "0.3.2"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "00810f1d8b74be64b13dbf3db89ac67740615d6c891f0e7b6179326533011a07"
691
+ dependencies = [
692
+ "rayon",
693
+ ]
694
+
695
+ [[package]]
696
+ name = "jpeg-encoder"
697
+ version = "0.6.1"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "b454d911ac55068f53495488d8ccd0646eaa540c033a28ee15b07838afafb01f"
700
+
701
+ [[package]]
702
+ name = "js-sys"
703
+ version = "0.3.104"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
706
+ dependencies = [
707
+ "cfg-if",
708
+ "futures-util",
709
+ "wasm-bindgen",
710
+ ]
711
+
712
+ [[package]]
713
+ name = "lazy_static"
714
+ version = "1.5.0"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
717
+ dependencies = [
718
+ "spin",
719
+ ]
720
+
721
+ [[package]]
722
+ name = "libc"
723
+ version = "0.2.189"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
726
+
727
+ [[package]]
728
+ name = "libloading"
729
+ version = "0.8.9"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
732
+ dependencies = [
733
+ "cfg-if",
734
+ "windows-link",
735
+ ]
736
+
737
+ [[package]]
738
+ name = "libm"
739
+ version = "0.2.16"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
742
+
743
+ [[package]]
744
+ name = "linux-raw-sys"
745
+ version = "0.12.1"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
748
+
749
+ [[package]]
750
+ name = "log"
751
+ version = "0.4.34"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
754
+
755
+ [[package]]
756
+ name = "md-5"
757
+ version = "0.10.6"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
760
+ dependencies = [
761
+ "cfg-if",
762
+ "digest",
763
+ ]
764
+
765
+ [[package]]
766
+ name = "memchr"
767
+ version = "2.8.3"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
770
+
771
+ [[package]]
772
+ name = "memoffset"
773
+ version = "0.9.1"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
776
+ dependencies = [
777
+ "autocfg",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "miniz_oxide"
782
+ version = "0.8.9"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
785
+ dependencies = [
786
+ "adler2",
787
+ "simd-adler32",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "napi"
792
+ version = "2.16.17"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
795
+ dependencies = [
796
+ "bitflags",
797
+ "ctor",
798
+ "napi-derive",
799
+ "napi-sys",
800
+ "once_cell",
801
+ ]
802
+
803
+ [[package]]
804
+ name = "napi-build"
805
+ version = "2.4.1"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "60fdf9b392c50e7c4170fa633bd909490ed7835cea4c046776d1a4dd8d2ae0ab"
808
+
809
+ [[package]]
810
+ name = "napi-derive"
811
+ version = "2.16.13"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
814
+ dependencies = [
815
+ "cfg-if",
816
+ "convert_case",
817
+ "napi-derive-backend",
818
+ "proc-macro2",
819
+ "quote",
820
+ "syn 2.0.119",
821
+ ]
822
+
823
+ [[package]]
824
+ name = "napi-derive-backend"
825
+ version = "1.0.75"
826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
828
+ dependencies = [
829
+ "convert_case",
830
+ "once_cell",
831
+ "proc-macro2",
832
+ "quote",
833
+ "regex",
834
+ "semver",
835
+ "syn 2.0.119",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "napi-sys"
840
+ version = "2.4.0"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
843
+ dependencies = [
844
+ "libloading",
845
+ ]
846
+
847
+ [[package]]
848
+ name = "num-bigint"
849
+ version = "0.5.1"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "93e7820bc0a80a0238e650327316f929ba18d5be054b647490a3a6a339f3e7c0"
852
+ dependencies = [
853
+ "num-integer",
854
+ "num-traits",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "num-bigint-dig"
859
+ version = "0.8.6"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
862
+ dependencies = [
863
+ "lazy_static",
864
+ "libm",
865
+ "num-integer",
866
+ "num-iter",
867
+ "num-traits",
868
+ "rand",
869
+ "smallvec",
870
+ "zeroize",
871
+ ]
872
+
873
+ [[package]]
874
+ name = "num-conv"
875
+ version = "0.2.2"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
878
+
879
+ [[package]]
880
+ name = "num-integer"
881
+ version = "0.1.47"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
884
+ dependencies = [
885
+ "num-traits",
886
+ ]
887
+
888
+ [[package]]
889
+ name = "num-iter"
890
+ version = "0.1.46"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b"
893
+ dependencies = [
894
+ "num-integer",
895
+ "num-traits",
896
+ ]
897
+
898
+ [[package]]
899
+ name = "num-traits"
900
+ version = "0.2.19"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
903
+ dependencies = [
904
+ "autocfg",
905
+ "libm",
906
+ ]
907
+
908
+ [[package]]
909
+ name = "once_cell"
910
+ version = "1.21.4"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
913
+
914
+ [[package]]
915
+ name = "once_cell_polyfill"
916
+ version = "1.70.2"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
919
+
920
+ [[package]]
921
+ name = "parquet"
922
+ version = "59.2.0"
923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
924
+ checksum = "7065842956a20c2a536924ce8e4d9955f7422451511b9eb7500d7bfe5077e59c"
925
+ dependencies = [
926
+ "ahash",
927
+ "bytes",
928
+ "chrono",
929
+ "flate2",
930
+ "half",
931
+ "hashbrown",
932
+ "num-bigint",
933
+ "num-integer",
934
+ "num-traits",
935
+ "seq-macro",
936
+ "snap",
937
+ "twox-hash",
938
+ ]
939
+
940
+ [[package]]
941
+ name = "pem-rfc7468"
942
+ version = "0.7.0"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
945
+ dependencies = [
946
+ "base64ct",
947
+ ]
948
+
949
+ [[package]]
950
+ name = "pin-project-lite"
951
+ version = "0.2.17"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
954
+
955
+ [[package]]
956
+ name = "pkcs1"
957
+ version = "0.7.5"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
960
+ dependencies = [
961
+ "der",
962
+ "pkcs8",
963
+ "spki",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "pkcs8"
968
+ version = "0.10.2"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
971
+ dependencies = [
972
+ "der",
973
+ "spki",
974
+ ]
975
+
976
+ [[package]]
977
+ name = "portable-atomic"
978
+ version = "1.15.0"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
981
+
982
+ [[package]]
983
+ name = "powerfmt"
984
+ version = "0.2.0"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
987
+
988
+ [[package]]
989
+ name = "ppv-lite86"
990
+ version = "0.2.21"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
993
+ dependencies = [
994
+ "zerocopy",
995
+ ]
996
+
997
+ [[package]]
998
+ name = "proc-macro2"
999
+ version = "1.0.107"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
1002
+ dependencies = [
1003
+ "unicode-ident",
1004
+ ]
1005
+
1006
+ [[package]]
1007
+ name = "pyo3"
1008
+ version = "0.24.2"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
1011
+ dependencies = [
1012
+ "cfg-if",
1013
+ "indoc",
1014
+ "libc",
1015
+ "memoffset",
1016
+ "once_cell",
1017
+ "portable-atomic",
1018
+ "pyo3-build-config",
1019
+ "pyo3-ffi",
1020
+ "pyo3-macros",
1021
+ "unindent",
1022
+ ]
1023
+
1024
+ [[package]]
1025
+ name = "pyo3-build-config"
1026
+ version = "0.24.2"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
1029
+ dependencies = [
1030
+ "once_cell",
1031
+ "target-lexicon",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "pyo3-ffi"
1036
+ version = "0.24.2"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
1039
+ dependencies = [
1040
+ "libc",
1041
+ "pyo3-build-config",
1042
+ ]
1043
+
1044
+ [[package]]
1045
+ name = "pyo3-macros"
1046
+ version = "0.24.2"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
1049
+ dependencies = [
1050
+ "proc-macro2",
1051
+ "pyo3-macros-backend",
1052
+ "quote",
1053
+ "syn 2.0.119",
1054
+ ]
1055
+
1056
+ [[package]]
1057
+ name = "pyo3-macros-backend"
1058
+ version = "0.24.2"
1059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1060
+ checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
1061
+ dependencies = [
1062
+ "heck",
1063
+ "proc-macro2",
1064
+ "pyo3-build-config",
1065
+ "quote",
1066
+ "syn 2.0.119",
1067
+ ]
1068
+
1069
+ [[package]]
1070
+ name = "quick-xml"
1071
+ version = "0.41.0"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "e660451e55124f798a69a5af3f49ccfbefbd41910eefd25caf2393e1f3473ec1"
1074
+ dependencies = [
1075
+ "memchr",
1076
+ ]
1077
+
1078
+ [[package]]
1079
+ name = "quote"
1080
+ version = "1.0.47"
1081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1082
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
1083
+ dependencies = [
1084
+ "proc-macro2",
1085
+ ]
1086
+
1087
+ [[package]]
1088
+ name = "r-efi"
1089
+ version = "5.3.0"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1092
+
1093
+ [[package]]
1094
+ name = "rand"
1095
+ version = "0.8.8"
1096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1097
+ checksum = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c"
1098
+ dependencies = [
1099
+ "rand_chacha",
1100
+ "rand_core",
1101
+ ]
1102
+
1103
+ [[package]]
1104
+ name = "rand_chacha"
1105
+ version = "0.3.1"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1108
+ dependencies = [
1109
+ "ppv-lite86",
1110
+ "rand_core",
1111
+ ]
1112
+
1113
+ [[package]]
1114
+ name = "rand_core"
1115
+ version = "0.6.4"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1118
+ dependencies = [
1119
+ "getrandom 0.2.17",
1120
+ ]
1121
+
1122
+ [[package]]
1123
+ name = "rayon"
1124
+ version = "1.12.0"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1127
+ dependencies = [
1128
+ "either",
1129
+ "rayon-core",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "rayon-core"
1134
+ version = "1.13.0"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1137
+ dependencies = [
1138
+ "crossbeam-deque",
1139
+ "crossbeam-utils",
1140
+ ]
1141
+
1142
+ [[package]]
1143
+ name = "regex"
1144
+ version = "1.13.1"
1145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1146
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
1147
+ dependencies = [
1148
+ "aho-corasick",
1149
+ "memchr",
1150
+ "regex-automata",
1151
+ "regex-syntax",
1152
+ ]
1153
+
1154
+ [[package]]
1155
+ name = "regex-automata"
1156
+ version = "0.4.18"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
1159
+ dependencies = [
1160
+ "aho-corasick",
1161
+ "memchr",
1162
+ "regex-syntax",
1163
+ ]
1164
+
1165
+ [[package]]
1166
+ name = "regex-syntax"
1167
+ version = "0.8.11"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1170
+
1171
+ [[package]]
1172
+ name = "rsa"
1173
+ version = "0.9.10"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
1176
+ dependencies = [
1177
+ "const-oid",
1178
+ "digest",
1179
+ "num-bigint-dig",
1180
+ "num-integer",
1181
+ "num-traits",
1182
+ "pkcs1",
1183
+ "pkcs8",
1184
+ "rand_core",
1185
+ "sha2",
1186
+ "signature",
1187
+ "spki",
1188
+ "subtle",
1189
+ "zeroize",
1190
+ ]
1191
+
1192
+ [[package]]
1193
+ name = "rustix"
1194
+ version = "1.1.4"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1197
+ dependencies = [
1198
+ "bitflags",
1199
+ "errno",
1200
+ "libc",
1201
+ "linux-raw-sys",
1202
+ "windows-sys 0.61.2",
1203
+ ]
1204
+
1205
+ [[package]]
1206
+ name = "rustversion"
1207
+ version = "1.0.23"
1208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1209
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1210
+
1211
+ [[package]]
1212
+ name = "same-file"
1213
+ version = "1.0.6"
1214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1216
+ dependencies = [
1217
+ "winapi-util",
1218
+ ]
1219
+
1220
+ [[package]]
1221
+ name = "semver"
1222
+ version = "1.0.28"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1225
+
1226
+ [[package]]
1227
+ name = "seq-macro"
1228
+ version = "0.3.6"
1229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1230
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
1231
+
1232
+ [[package]]
1233
+ name = "serde"
1234
+ version = "1.0.229"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1237
+ dependencies = [
1238
+ "serde_core",
1239
+ "serde_derive",
1240
+ ]
1241
+
1242
+ [[package]]
1243
+ name = "serde_core"
1244
+ version = "1.0.229"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1247
+ dependencies = [
1248
+ "serde_derive",
1249
+ ]
1250
+
1251
+ [[package]]
1252
+ name = "serde_derive"
1253
+ version = "1.0.229"
1254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1255
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1256
+ dependencies = [
1257
+ "proc-macro2",
1258
+ "quote",
1259
+ "syn 3.0.4",
1260
+ ]
1261
+
1262
+ [[package]]
1263
+ name = "serde_json"
1264
+ version = "1.0.151"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
1267
+ dependencies = [
1268
+ "itoa",
1269
+ "memchr",
1270
+ "serde",
1271
+ "serde_core",
1272
+ "zmij",
1273
+ ]
1274
+
1275
+ [[package]]
1276
+ name = "sha1"
1277
+ version = "0.10.7"
1278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1279
+ checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
1280
+ dependencies = [
1281
+ "cfg-if",
1282
+ "cpufeatures",
1283
+ "digest",
1284
+ ]
1285
+
1286
+ [[package]]
1287
+ name = "sha2"
1288
+ version = "0.10.9"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1291
+ dependencies = [
1292
+ "cfg-if",
1293
+ "cpufeatures",
1294
+ "digest",
1295
+ ]
1296
+
1297
+ [[package]]
1298
+ name = "shlex"
1299
+ version = "2.0.1"
1300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1302
+
1303
+ [[package]]
1304
+ name = "signature"
1305
+ version = "2.2.0"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
1308
+ dependencies = [
1309
+ "digest",
1310
+ "rand_core",
1311
+ ]
1312
+
1313
+ [[package]]
1314
+ name = "simd-adler32"
1315
+ version = "0.3.10"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
1318
+
1319
+ [[package]]
1320
+ name = "slab"
1321
+ version = "0.4.12"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1324
+
1325
+ [[package]]
1326
+ name = "smallvec"
1327
+ version = "1.15.2"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1330
+
1331
+ [[package]]
1332
+ name = "snap"
1333
+ version = "1.1.2"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "199905e6153d6405f9728fe44daace35f8f837bbf830bb6e85fbd5828709a886"
1336
+
1337
+ [[package]]
1338
+ name = "spin"
1339
+ version = "0.9.9"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e"
1342
+
1343
+ [[package]]
1344
+ name = "spki"
1345
+ version = "0.7.3"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
1348
+ dependencies = [
1349
+ "base64ct",
1350
+ "der",
1351
+ ]
1352
+
1353
+ [[package]]
1354
+ name = "strsim"
1355
+ version = "0.11.1"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1358
+
1359
+ [[package]]
1360
+ name = "subtle"
1361
+ version = "2.6.1"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1364
+
1365
+ [[package]]
1366
+ name = "syn"
1367
+ version = "2.0.119"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1370
+ dependencies = [
1371
+ "proc-macro2",
1372
+ "quote",
1373
+ "unicode-ident",
1374
+ ]
1375
+
1376
+ [[package]]
1377
+ name = "syn"
1378
+ version = "3.0.4"
1379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1380
+ checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"
1381
+ dependencies = [
1382
+ "proc-macro2",
1383
+ "quote",
1384
+ "unicode-ident",
1385
+ ]
1386
+
1387
+ [[package]]
1388
+ name = "target-lexicon"
1389
+ version = "0.13.5"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1392
+
1393
+ [[package]]
1394
+ name = "tempfile"
1395
+ version = "3.27.0"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1398
+ dependencies = [
1399
+ "fastrand",
1400
+ "getrandom 0.3.4",
1401
+ "once_cell",
1402
+ "rustix",
1403
+ "windows-sys 0.61.2",
1404
+ ]
1405
+
1406
+ [[package]]
1407
+ name = "thiserror"
1408
+ version = "1.0.69"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1411
+ dependencies = [
1412
+ "thiserror-impl 1.0.69",
1413
+ ]
1414
+
1415
+ [[package]]
1416
+ name = "thiserror"
1417
+ version = "2.0.20"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
1420
+ dependencies = [
1421
+ "thiserror-impl 2.0.20",
1422
+ ]
1423
+
1424
+ [[package]]
1425
+ name = "thiserror-impl"
1426
+ version = "1.0.69"
1427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1428
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1429
+ dependencies = [
1430
+ "proc-macro2",
1431
+ "quote",
1432
+ "syn 2.0.119",
1433
+ ]
1434
+
1435
+ [[package]]
1436
+ name = "thiserror-impl"
1437
+ version = "2.0.20"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
1440
+ dependencies = [
1441
+ "proc-macro2",
1442
+ "quote",
1443
+ "syn 3.0.4",
1444
+ ]
1445
+
1446
+ [[package]]
1447
+ name = "tiff"
1448
+ version = "0.9.1"
1449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1450
+ checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e"
1451
+ dependencies = [
1452
+ "flate2",
1453
+ "jpeg-decoder",
1454
+ "weezl",
1455
+ ]
1456
+
1457
+ [[package]]
1458
+ name = "time"
1459
+ version = "0.3.55"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134"
1462
+ dependencies = [
1463
+ "deranged",
1464
+ "num-conv",
1465
+ "powerfmt",
1466
+ "serde_core",
1467
+ "time-core",
1468
+ "time-macros",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "time-core"
1473
+ version = "0.1.9"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
1476
+
1477
+ [[package]]
1478
+ name = "time-macros"
1479
+ version = "0.2.32"
1480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1481
+ checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85"
1482
+ dependencies = [
1483
+ "num-conv",
1484
+ "time-core",
1485
+ ]
1486
+
1487
+ [[package]]
1488
+ name = "tiny-keccak"
1489
+ version = "2.0.2"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
1492
+ dependencies = [
1493
+ "crunchy",
1494
+ ]
1495
+
1496
+ [[package]]
1497
+ name = "twox-hash"
1498
+ version = "2.1.4"
1499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1500
+ checksum = "5283634e518fe9e82c7b20520bb4bc209009fd16c82077c802f8111ecbb0117a"
1501
+
1502
+ [[package]]
1503
+ name = "typenum"
1504
+ version = "1.20.1"
1505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
1507
+
1508
+ [[package]]
1509
+ name = "unfair"
1510
+ version = "0.1.0"
1511
+ dependencies = [
1512
+ "serde_json",
1513
+ "unfair-codec-abw",
1514
+ "unfair-codec-cdr",
1515
+ "unfair-codec-doc",
1516
+ "unfair-codec-docbook",
1517
+ "unfair-codec-draw",
1518
+ "unfair-codec-epub",
1519
+ "unfair-codec-fb2",
1520
+ "unfair-codec-hwp",
1521
+ "unfair-codec-image",
1522
+ "unfair-codec-keynote",
1523
+ "unfair-codec-legacy",
1524
+ "unfair-codec-legacy-text",
1525
+ "unfair-codec-lwp",
1526
+ "unfair-codec-mathml",
1527
+ "unfair-codec-mtef",
1528
+ "unfair-codec-odf",
1529
+ "unfair-codec-ooxml",
1530
+ "unfair-codec-palm",
1531
+ "unfair-codec-pdf",
1532
+ "unfair-codec-pmd",
1533
+ "unfair-codec-ppt",
1534
+ "unfair-codec-ppt3",
1535
+ "unfair-codec-pub",
1536
+ "unfair-codec-qpw",
1537
+ "unfair-codec-qxd",
1538
+ "unfair-codec-raster",
1539
+ "unfair-codec-rtf",
1540
+ "unfair-codec-sda",
1541
+ "unfair-codec-sheet",
1542
+ "unfair-codec-slides",
1543
+ "unfair-codec-t602",
1544
+ "unfair-codec-text",
1545
+ "unfair-codec-uof",
1546
+ "unfair-codec-visio",
1547
+ "unfair-codec-wk1",
1548
+ "unfair-codec-wp",
1549
+ "unfair-codec-wps",
1550
+ "unfair-codec-xls",
1551
+ "unfair-core",
1552
+ "zip",
1553
+ ]
1554
+
1555
+ [[package]]
1556
+ name = "unfair-cli"
1557
+ version = "0.1.0"
1558
+ dependencies = [
1559
+ "clap",
1560
+ "serde_json",
1561
+ "unfair",
1562
+ "unfair-core",
1563
+ ]
1564
+
1565
+ [[package]]
1566
+ name = "unfair-codec-abw"
1567
+ version = "0.1.0"
1568
+ dependencies = [
1569
+ "quick-xml",
1570
+ "unfair-codec-text",
1571
+ "unfair-core",
1572
+ ]
1573
+
1574
+ [[package]]
1575
+ name = "unfair-codec-cdr"
1576
+ version = "0.1.0"
1577
+ dependencies = [
1578
+ "encoding_rs",
1579
+ "flate2",
1580
+ "serde_json",
1581
+ "unfair",
1582
+ "unfair-core",
1583
+ ]
1584
+
1585
+ [[package]]
1586
+ name = "unfair-codec-doc"
1587
+ version = "0.1.0"
1588
+ dependencies = [
1589
+ "encoding_rs",
1590
+ "unfair",
1591
+ "unfair-codec-text",
1592
+ "unfair-core",
1593
+ "zip",
1594
+ ]
1595
+
1596
+ [[package]]
1597
+ name = "unfair-codec-docbook"
1598
+ version = "0.1.0"
1599
+ dependencies = [
1600
+ "quick-xml",
1601
+ "unfair-core",
1602
+ ]
1603
+
1604
+ [[package]]
1605
+ name = "unfair-codec-draw"
1606
+ version = "0.1.0"
1607
+ dependencies = [
1608
+ "encoding_rs",
1609
+ "flate2",
1610
+ "serde",
1611
+ "serde_json",
1612
+ "unfair",
1613
+ "unfair-codec-legacy",
1614
+ "unfair-core",
1615
+ ]
1616
+
1617
+ [[package]]
1618
+ name = "unfair-codec-epub"
1619
+ version = "0.1.0"
1620
+ dependencies = [
1621
+ "unfair-core",
1622
+ "zip",
1623
+ ]
1624
+
1625
+ [[package]]
1626
+ name = "unfair-codec-fb2"
1627
+ version = "0.1.0"
1628
+ dependencies = [
1629
+ "quick-xml",
1630
+ "serde_json",
1631
+ "unfair",
1632
+ "unfair-core",
1633
+ ]
1634
+
1635
+ [[package]]
1636
+ name = "unfair-codec-hwp"
1637
+ version = "0.1.0"
1638
+ dependencies = [
1639
+ "flate2",
1640
+ "unfair",
1641
+ "unfair-codec-text",
1642
+ "unfair-core",
1643
+ ]
1644
+
1645
+ [[package]]
1646
+ name = "unfair-codec-image"
1647
+ version = "0.1.0"
1648
+ dependencies = [
1649
+ "jpeg-decoder",
1650
+ "jpeg-encoder",
1651
+ "serde_json",
1652
+ "tiff",
1653
+ "unfair",
1654
+ "unfair-core",
1655
+ ]
1656
+
1657
+ [[package]]
1658
+ name = "unfair-codec-keynote"
1659
+ version = "0.1.0"
1660
+ dependencies = [
1661
+ "flate2",
1662
+ "quick-xml",
1663
+ "serde_json",
1664
+ "unfair",
1665
+ "unfair-codec-text",
1666
+ "unfair-core",
1667
+ "zip",
1668
+ ]
1669
+
1670
+ [[package]]
1671
+ name = "unfair-codec-legacy"
1672
+ version = "0.1.0"
1673
+ dependencies = [
1674
+ "encoding_rs",
1675
+ "unfair",
1676
+ "unfair-codec-text",
1677
+ "unfair-core",
1678
+ ]
1679
+
1680
+ [[package]]
1681
+ name = "unfair-codec-legacy-text"
1682
+ version = "0.1.0"
1683
+ dependencies = [
1684
+ "flate2",
1685
+ "serde_json",
1686
+ "unfair-codec-text",
1687
+ "unfair-core",
1688
+ ]
1689
+
1690
+ [[package]]
1691
+ name = "unfair-codec-lwp"
1692
+ version = "0.1.0"
1693
+ dependencies = [
1694
+ "serde_json",
1695
+ "unfair-codec-text",
1696
+ "unfair-core",
1697
+ ]
1698
+
1699
+ [[package]]
1700
+ name = "unfair-codec-mathml"
1701
+ version = "0.1.0"
1702
+ dependencies = [
1703
+ "quick-xml",
1704
+ "serde",
1705
+ "serde_json",
1706
+ "unfair",
1707
+ "unfair-core",
1708
+ ]
1709
+
1710
+ [[package]]
1711
+ name = "unfair-codec-mtef"
1712
+ version = "0.1.0"
1713
+ dependencies = [
1714
+ "serde",
1715
+ "serde_json",
1716
+ "unfair",
1717
+ "unfair-core",
1718
+ ]
1719
+
1720
+ [[package]]
1721
+ name = "unfair-codec-odf"
1722
+ version = "0.1.0"
1723
+ dependencies = [
1724
+ "quick-xml",
1725
+ "serde_json",
1726
+ "unfair-codec-text",
1727
+ "unfair-core",
1728
+ "zip",
1729
+ ]
1730
+
1731
+ [[package]]
1732
+ name = "unfair-codec-ooxml"
1733
+ version = "0.1.0"
1734
+ dependencies = [
1735
+ "encoding_rs",
1736
+ "quick-xml",
1737
+ "unfair-core",
1738
+ "zip",
1739
+ ]
1740
+
1741
+ [[package]]
1742
+ name = "unfair-codec-palm"
1743
+ version = "0.1.0"
1744
+ dependencies = [
1745
+ "flate2",
1746
+ "serde_json",
1747
+ "unfair",
1748
+ "unfair-core",
1749
+ ]
1750
+
1751
+ [[package]]
1752
+ name = "unfair-codec-pdf"
1753
+ version = "0.1.0"
1754
+ dependencies = [
1755
+ "aes",
1756
+ "base64",
1757
+ "cbc",
1758
+ "digest",
1759
+ "flate2",
1760
+ "md-5",
1761
+ "quick-xml",
1762
+ "rsa",
1763
+ "serde_json",
1764
+ "sha2",
1765
+ "unfair-codec-image",
1766
+ "unfair-codec-raster",
1767
+ "unfair-codec-text",
1768
+ "unfair-core",
1769
+ "unfair-fidelity",
1770
+ ]
1771
+
1772
+ [[package]]
1773
+ name = "unfair-codec-pmd"
1774
+ version = "0.1.0"
1775
+ dependencies = [
1776
+ "encoding_rs",
1777
+ "serde_json",
1778
+ "unfair",
1779
+ "unfair-codec-text",
1780
+ "unfair-core",
1781
+ ]
1782
+
1783
+ [[package]]
1784
+ name = "unfair-codec-ppt"
1785
+ version = "0.1.0"
1786
+ dependencies = [
1787
+ "encoding_rs",
1788
+ "serde_json",
1789
+ "unfair-codec-slides",
1790
+ "unfair-codec-text",
1791
+ "unfair-core",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "unfair-codec-ppt3"
1796
+ version = "0.1.0"
1797
+ dependencies = [
1798
+ "encoding_rs",
1799
+ "serde_json",
1800
+ "unfair",
1801
+ "unfair-codec-ppt",
1802
+ "unfair-codec-text",
1803
+ "unfair-core",
1804
+ ]
1805
+
1806
+ [[package]]
1807
+ name = "unfair-codec-pub"
1808
+ version = "0.1.0"
1809
+ dependencies = [
1810
+ "flate2",
1811
+ "serde_json",
1812
+ "unfair",
1813
+ "unfair-core",
1814
+ ]
1815
+
1816
+ [[package]]
1817
+ name = "unfair-codec-qpw"
1818
+ version = "0.1.0"
1819
+ dependencies = [
1820
+ "encoding_rs",
1821
+ "unfair-codec-text",
1822
+ "unfair-core",
1823
+ ]
1824
+
1825
+ [[package]]
1826
+ name = "unfair-codec-qxd"
1827
+ version = "0.1.0"
1828
+ dependencies = [
1829
+ "encoding_rs",
1830
+ "serde_json",
1831
+ "unfair",
1832
+ "unfair-codec-text",
1833
+ "unfair-core",
1834
+ ]
1835
+
1836
+ [[package]]
1837
+ name = "unfair-codec-raster"
1838
+ version = "0.1.0"
1839
+ dependencies = [
1840
+ "flate2",
1841
+ "unfair",
1842
+ "unfair-core",
1843
+ ]
1844
+
1845
+ [[package]]
1846
+ name = "unfair-codec-rtf"
1847
+ version = "0.1.0"
1848
+ dependencies = [
1849
+ "encoding_rs",
1850
+ "unfair-core",
1851
+ ]
1852
+
1853
+ [[package]]
1854
+ name = "unfair-codec-sda"
1855
+ version = "0.1.0"
1856
+ dependencies = [
1857
+ "encoding_rs",
1858
+ "serde_json",
1859
+ "unfair",
1860
+ "unfair-core",
1861
+ ]
1862
+
1863
+ [[package]]
1864
+ name = "unfair-codec-sheet"
1865
+ version = "0.1.0"
1866
+ dependencies = [
1867
+ "bytes",
1868
+ "encoding_rs",
1869
+ "flate2",
1870
+ "parquet",
1871
+ "quick-xml",
1872
+ "serde_json",
1873
+ "unfair-codec-text",
1874
+ "unfair-core",
1875
+ "zip",
1876
+ ]
1877
+
1878
+ [[package]]
1879
+ name = "unfair-codec-slides"
1880
+ version = "0.1.0"
1881
+ dependencies = [
1882
+ "quick-xml",
1883
+ "serde_json",
1884
+ "unfair-codec-text",
1885
+ "unfair-core",
1886
+ "zip",
1887
+ ]
1888
+
1889
+ [[package]]
1890
+ name = "unfair-codec-t602"
1891
+ version = "0.1.0"
1892
+ dependencies = [
1893
+ "serde_json",
1894
+ "unfair-codec-text",
1895
+ "unfair-core",
1896
+ ]
1897
+
1898
+ [[package]]
1899
+ name = "unfair-codec-text"
1900
+ version = "0.1.0"
1901
+ dependencies = [
1902
+ "encoding_rs",
1903
+ "unfair-core",
1904
+ "unicode_categories",
1905
+ ]
1906
+
1907
+ [[package]]
1908
+ name = "unfair-codec-uof"
1909
+ version = "0.1.0"
1910
+ dependencies = [
1911
+ "quick-xml",
1912
+ "unfair-codec-text",
1913
+ "unfair-core",
1914
+ ]
1915
+
1916
+ [[package]]
1917
+ name = "unfair-codec-visio"
1918
+ version = "0.1.0"
1919
+ dependencies = [
1920
+ "encoding_rs",
1921
+ "serde_json",
1922
+ "unfair-codec-doc",
1923
+ "unfair-core",
1924
+ ]
1925
+
1926
+ [[package]]
1927
+ name = "unfair-codec-wk1"
1928
+ version = "0.1.0"
1929
+ dependencies = [
1930
+ "serde_json",
1931
+ "unfair",
1932
+ "unfair-codec-legacy",
1933
+ "unfair-codec-text",
1934
+ "unfair-core",
1935
+ ]
1936
+
1937
+ [[package]]
1938
+ name = "unfair-codec-wp"
1939
+ version = "0.1.0"
1940
+ dependencies = [
1941
+ "serde_json",
1942
+ "unfair-codec-text",
1943
+ "unfair-core",
1944
+ ]
1945
+
1946
+ [[package]]
1947
+ name = "unfair-codec-wps"
1948
+ version = "0.1.0"
1949
+ dependencies = [
1950
+ "encoding_rs",
1951
+ "serde_json",
1952
+ "unfair",
1953
+ "unfair-codec-text",
1954
+ "unfair-core",
1955
+ ]
1956
+
1957
+ [[package]]
1958
+ name = "unfair-codec-xls"
1959
+ version = "0.1.0"
1960
+ dependencies = [
1961
+ "unfair-codec-odf",
1962
+ "unfair-codec-text",
1963
+ "unfair-core",
1964
+ ]
1965
+
1966
+ [[package]]
1967
+ name = "unfair-core"
1968
+ version = "0.1.0"
1969
+ dependencies = [
1970
+ "encoding_rs",
1971
+ "flate2",
1972
+ "serde",
1973
+ "serde_json",
1974
+ "thiserror 2.0.20",
1975
+ "zip",
1976
+ ]
1977
+
1978
+ [[package]]
1979
+ name = "unfair-docintel"
1980
+ version = "0.1.0"
1981
+ dependencies = [
1982
+ "serde",
1983
+ "serde_json",
1984
+ "unfair",
1985
+ "unfair-core",
1986
+ ]
1987
+
1988
+ [[package]]
1989
+ name = "unfair-ffi"
1990
+ version = "0.1.0"
1991
+ dependencies = [
1992
+ "unfair",
1993
+ ]
1994
+
1995
+ [[package]]
1996
+ name = "unfair-ffi-py"
1997
+ version = "0.1.0"
1998
+ dependencies = [
1999
+ "pyo3",
2000
+ "unfair-ffi",
2001
+ ]
2002
+
2003
+ [[package]]
2004
+ name = "unfair-ffi-wasm"
2005
+ version = "0.1.0"
2006
+ dependencies = [
2007
+ "getrandom 0.2.17",
2008
+ "js-sys",
2009
+ "unfair",
2010
+ "wasm-bindgen",
2011
+ ]
2012
+
2013
+ [[package]]
2014
+ name = "unfair-fidelity"
2015
+ version = "0.1.0"
2016
+ dependencies = [
2017
+ "serde",
2018
+ "serde_json",
2019
+ "unfair-core",
2020
+ ]
2021
+
2022
+ [[package]]
2023
+ name = "unfair-java"
2024
+ version = "0.1.0"
2025
+ dependencies = [
2026
+ "jni",
2027
+ "serde_json",
2028
+ "unfair",
2029
+ ]
2030
+
2031
+ [[package]]
2032
+ name = "unfair-migration"
2033
+ version = "0.1.0"
2034
+ dependencies = [
2035
+ "clap",
2036
+ "serde",
2037
+ "serde_json",
2038
+ "tempfile",
2039
+ "time",
2040
+ "unfair",
2041
+ "unfair-core",
2042
+ ]
2043
+
2044
+ [[package]]
2045
+ name = "unfair-node"
2046
+ version = "0.1.0"
2047
+ dependencies = [
2048
+ "napi",
2049
+ "napi-build",
2050
+ "napi-derive",
2051
+ "serde_json",
2052
+ "unfair",
2053
+ ]
2054
+
2055
+ [[package]]
2056
+ name = "unfair-server"
2057
+ version = "0.1.0"
2058
+ dependencies = [
2059
+ "clap",
2060
+ "constant_time_eq",
2061
+ "serde",
2062
+ "serde_json",
2063
+ "sha1",
2064
+ "sha2",
2065
+ "unfair",
2066
+ "unfair-core",
2067
+ "zip",
2068
+ ]
2069
+
2070
+ [[package]]
2071
+ name = "unicode-ident"
2072
+ version = "1.0.24"
2073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2074
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2075
+
2076
+ [[package]]
2077
+ name = "unicode-segmentation"
2078
+ version = "1.13.3"
2079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2080
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
2081
+
2082
+ [[package]]
2083
+ name = "unicode_categories"
2084
+ version = "0.1.1"
2085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2086
+ checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
2087
+
2088
+ [[package]]
2089
+ name = "unindent"
2090
+ version = "0.2.4"
2091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2092
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2093
+
2094
+ [[package]]
2095
+ name = "utf8parse"
2096
+ version = "0.2.2"
2097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2098
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2099
+
2100
+ [[package]]
2101
+ name = "version_check"
2102
+ version = "0.9.5"
2103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2104
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2105
+
2106
+ [[package]]
2107
+ name = "walkdir"
2108
+ version = "2.5.0"
2109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2110
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2111
+ dependencies = [
2112
+ "same-file",
2113
+ "winapi-util",
2114
+ ]
2115
+
2116
+ [[package]]
2117
+ name = "wasi"
2118
+ version = "0.11.1+wasi-snapshot-preview1"
2119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2120
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2121
+
2122
+ [[package]]
2123
+ name = "wasip2"
2124
+ version = "1.0.4+wasi-0.2.12"
2125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2126
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
2127
+ dependencies = [
2128
+ "wit-bindgen",
2129
+ ]
2130
+
2131
+ [[package]]
2132
+ name = "wasm-bindgen"
2133
+ version = "0.2.127"
2134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2135
+ checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
2136
+ dependencies = [
2137
+ "cfg-if",
2138
+ "once_cell",
2139
+ "rustversion",
2140
+ "wasm-bindgen-macro",
2141
+ "wasm-bindgen-shared",
2142
+ ]
2143
+
2144
+ [[package]]
2145
+ name = "wasm-bindgen-macro"
2146
+ version = "0.2.127"
2147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2148
+ checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
2149
+ dependencies = [
2150
+ "quote",
2151
+ "wasm-bindgen-macro-support",
2152
+ ]
2153
+
2154
+ [[package]]
2155
+ name = "wasm-bindgen-macro-support"
2156
+ version = "0.2.127"
2157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2158
+ checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
2159
+ dependencies = [
2160
+ "bumpalo",
2161
+ "proc-macro2",
2162
+ "quote",
2163
+ "syn 2.0.119",
2164
+ "wasm-bindgen-shared",
2165
+ ]
2166
+
2167
+ [[package]]
2168
+ name = "wasm-bindgen-shared"
2169
+ version = "0.2.127"
2170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2171
+ checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
2172
+ dependencies = [
2173
+ "unicode-ident",
2174
+ ]
2175
+
2176
+ [[package]]
2177
+ name = "weezl"
2178
+ version = "0.1.12"
2179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2180
+ checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
2181
+
2182
+ [[package]]
2183
+ name = "winapi-util"
2184
+ version = "0.1.11"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2187
+ dependencies = [
2188
+ "windows-sys 0.61.2",
2189
+ ]
2190
+
2191
+ [[package]]
2192
+ name = "windows-core"
2193
+ version = "0.62.2"
2194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2195
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2196
+ dependencies = [
2197
+ "windows-implement",
2198
+ "windows-interface",
2199
+ "windows-link",
2200
+ "windows-result",
2201
+ "windows-strings",
2202
+ ]
2203
+
2204
+ [[package]]
2205
+ name = "windows-implement"
2206
+ version = "0.60.2"
2207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2208
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2209
+ dependencies = [
2210
+ "proc-macro2",
2211
+ "quote",
2212
+ "syn 2.0.119",
2213
+ ]
2214
+
2215
+ [[package]]
2216
+ name = "windows-interface"
2217
+ version = "0.59.3"
2218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2219
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2220
+ dependencies = [
2221
+ "proc-macro2",
2222
+ "quote",
2223
+ "syn 2.0.119",
2224
+ ]
2225
+
2226
+ [[package]]
2227
+ name = "windows-link"
2228
+ version = "0.2.1"
2229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2230
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2231
+
2232
+ [[package]]
2233
+ name = "windows-result"
2234
+ version = "0.4.1"
2235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2236
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2237
+ dependencies = [
2238
+ "windows-link",
2239
+ ]
2240
+
2241
+ [[package]]
2242
+ name = "windows-strings"
2243
+ version = "0.5.1"
2244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2245
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2246
+ dependencies = [
2247
+ "windows-link",
2248
+ ]
2249
+
2250
+ [[package]]
2251
+ name = "windows-sys"
2252
+ version = "0.45.0"
2253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2254
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
2255
+ dependencies = [
2256
+ "windows-targets",
2257
+ ]
2258
+
2259
+ [[package]]
2260
+ name = "windows-sys"
2261
+ version = "0.61.2"
2262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2263
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2264
+ dependencies = [
2265
+ "windows-link",
2266
+ ]
2267
+
2268
+ [[package]]
2269
+ name = "windows-targets"
2270
+ version = "0.42.2"
2271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2272
+ checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
2273
+ dependencies = [
2274
+ "windows_aarch64_gnullvm",
2275
+ "windows_aarch64_msvc",
2276
+ "windows_i686_gnu",
2277
+ "windows_i686_msvc",
2278
+ "windows_x86_64_gnu",
2279
+ "windows_x86_64_gnullvm",
2280
+ "windows_x86_64_msvc",
2281
+ ]
2282
+
2283
+ [[package]]
2284
+ name = "windows_aarch64_gnullvm"
2285
+ version = "0.42.2"
2286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2287
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2288
+
2289
+ [[package]]
2290
+ name = "windows_aarch64_msvc"
2291
+ version = "0.42.2"
2292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2293
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2294
+
2295
+ [[package]]
2296
+ name = "windows_i686_gnu"
2297
+ version = "0.42.2"
2298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2299
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2300
+
2301
+ [[package]]
2302
+ name = "windows_i686_msvc"
2303
+ version = "0.42.2"
2304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2305
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2306
+
2307
+ [[package]]
2308
+ name = "windows_x86_64_gnu"
2309
+ version = "0.42.2"
2310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2311
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2312
+
2313
+ [[package]]
2314
+ name = "windows_x86_64_gnullvm"
2315
+ version = "0.42.2"
2316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2317
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2318
+
2319
+ [[package]]
2320
+ name = "windows_x86_64_msvc"
2321
+ version = "0.42.2"
2322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2323
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2324
+
2325
+ [[package]]
2326
+ name = "wit-bindgen"
2327
+ version = "0.57.1"
2328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2329
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2330
+
2331
+ [[package]]
2332
+ name = "zerocopy"
2333
+ version = "0.8.56"
2334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2335
+ checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
2336
+ dependencies = [
2337
+ "zerocopy-derive",
2338
+ ]
2339
+
2340
+ [[package]]
2341
+ name = "zerocopy-derive"
2342
+ version = "0.8.56"
2343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2344
+ checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
2345
+ dependencies = [
2346
+ "proc-macro2",
2347
+ "quote",
2348
+ "syn 2.0.119",
2349
+ ]
2350
+
2351
+ [[package]]
2352
+ name = "zeroize"
2353
+ version = "1.9.0"
2354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2355
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
2356
+
2357
+ [[package]]
2358
+ name = "zip"
2359
+ version = "2.4.2"
2360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2361
+ checksum = "fabe6324e908f85a1c52063ce7aa26b68dcb7eb6dbc83a2d148403c9bc3eba50"
2362
+ dependencies = [
2363
+ "arbitrary",
2364
+ "crc32fast",
2365
+ "crossbeam-utils",
2366
+ "displaydoc",
2367
+ "flate2",
2368
+ "indexmap",
2369
+ "memchr",
2370
+ "thiserror 2.0.20",
2371
+ "zopfli",
2372
+ ]
2373
+
2374
+ [[package]]
2375
+ name = "zmij"
2376
+ version = "1.0.23"
2377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2378
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
2379
+
2380
+ [[package]]
2381
+ name = "zopfli"
2382
+ version = "0.8.3"
2383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2384
+ checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
2385
+ dependencies = [
2386
+ "bumpalo",
2387
+ "crc32fast",
2388
+ "log",
2389
+ "simd-adler32",
2390
+ ]