rars 0.3.1__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 (266) hide show
  1. rars-0.3.1/Cargo.lock +1281 -0
  2. rars-0.3.1/Cargo.toml +46 -0
  3. rars-0.3.1/PKG-INFO +144 -0
  4. rars-0.3.1/README.md +125 -0
  5. rars-0.3.1/crates/rars/Cargo.toml +26 -0
  6. rars-0.3.1/crates/rars/README.md +125 -0
  7. rars-0.3.1/crates/rars/src/lib.rs +4400 -0
  8. rars-0.3.1/crates/rars-codec/Cargo.toml +33 -0
  9. rars-0.3.1/crates/rars-codec/benches/chunk_sizes.rs +157 -0
  10. rars-0.3.1/crates/rars-codec/src/fast.rs +177 -0
  11. rars-0.3.1/crates/rars-codec/src/filters.rs +385 -0
  12. rars-0.3.1/crates/rars-codec/src/huffman.rs +96 -0
  13. rars-0.3.1/crates/rars-codec/src/lib.rs +31 -0
  14. rars-0.3.1/crates/rars-codec/src/ppmd.rs +2071 -0
  15. rars-0.3.1/crates/rars-codec/src/rar13.rs +2534 -0
  16. rars-0.3.1/crates/rars-codec/src/rar20.rs +2477 -0
  17. rars-0.3.1/crates/rars-codec/src/rar29.rs +4049 -0
  18. rars-0.3.1/crates/rars-codec/src/rar50.rs +3782 -0
  19. rars-0.3.1/crates/rars-codec/src/rarvm.rs +1764 -0
  20. rars-0.3.1/crates/rars-crc32/Cargo.toml +25 -0
  21. rars-0.3.1/crates/rars-crc32/src/fast.rs +31 -0
  22. rars-0.3.1/crates/rars-crc32/src/lib.rs +241 -0
  23. rars-0.3.1/crates/rars-crypto/Cargo.toml +31 -0
  24. rars-0.3.1/crates/rars-crypto/src/lib.rs +5 -0
  25. rars-0.3.1/crates/rars-crypto/src/rar13.rs +88 -0
  26. rars-0.3.1/crates/rars-crypto/src/rar15.rs +75 -0
  27. rars-0.3.1/crates/rars-crypto/src/rar20.rs +221 -0
  28. rars-0.3.1/crates/rars-crypto/src/rar30.rs +300 -0
  29. rars-0.3.1/crates/rars-crypto/src/rar50.rs +308 -0
  30. rars-0.3.1/crates/rars-format/Cargo.toml +45 -0
  31. rars-0.3.1/crates/rars-format/benches/parallel.rs +184 -0
  32. rars-0.3.1/crates/rars-format/src/detect.rs +180 -0
  33. rars-0.3.1/crates/rars-format/src/error.rs +570 -0
  34. rars-0.3.1/crates/rars-format/src/fast.rs +93 -0
  35. rars-0.3.1/crates/rars-format/src/features.rs +53 -0
  36. rars-0.3.1/crates/rars-format/src/io_util.rs +29 -0
  37. rars-0.3.1/crates/rars-format/src/lib.rs +72 -0
  38. rars-0.3.1/crates/rars-format/src/parallel.rs +21 -0
  39. rars-0.3.1/crates/rars-format/src/rar13.rs +3030 -0
  40. rars-0.3.1/crates/rars-format/src/rar15_40/extract.rs +1617 -0
  41. rars-0.3.1/crates/rars-format/src/rar15_40/write.rs +2266 -0
  42. rars-0.3.1/crates/rars-format/src/rar15_40.rs +2855 -0
  43. rars-0.3.1/crates/rars-format/src/rar50/blake2sp.rs +266 -0
  44. rars-0.3.1/crates/rars-format/src/rar50/extract.rs +1991 -0
  45. rars-0.3.1/crates/rars-format/src/rar50/write/filter_policy.rs +440 -0
  46. rars-0.3.1/crates/rars-format/src/rar50/write/mod.rs +3178 -0
  47. rars-0.3.1/crates/rars-format/src/rar50/write/volume.rs +651 -0
  48. rars-0.3.1/crates/rars-format/src/rar50.rs +1955 -0
  49. rars-0.3.1/crates/rars-format/src/source.rs +73 -0
  50. rars-0.3.1/crates/rars-format/src/version.rs +80 -0
  51. rars-0.3.1/crates/rars-format/src/volume_extract.rs +157 -0
  52. rars-0.3.1/crates/rars-format/src/x86_filter_scan.rs +314 -0
  53. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/BIG80K.RAR +0 -0
  54. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/CMULTI.TXT +1 -0
  55. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/CMULTIV.R00 +0 -0
  56. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/CMULTIV.R01 +0 -0
  57. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/CMULTIV.R02 +0 -0
  58. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/CMULTIV.R03 +0 -0
  59. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/CMULTIV.R04 +0 -0
  60. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/CMULTIV.R05 +0 -0
  61. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/CMULTIV.R06 +0 -0
  62. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/CMULTIV.RAR +0 -0
  63. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/COMMENT.RAR +0 -0
  64. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/EMPTY.RAR +0 -0
  65. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/FCOMM.RAR +0 -0
  66. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/MULTIFIL.RAR +0 -0
  67. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/MULTIVOL.R00 +0 -0
  68. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/MULTIVOL.R01 +0 -0
  69. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/MULTIVOL.R02 +0 -0
  70. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/MULTIVOL.RAR +0 -0
  71. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/README +49 -0
  72. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/README.RAR +0 -0
  73. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/README_password=password.rar +0 -0
  74. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/README_store.rar +0 -0
  75. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/REPEATB.RAR +0 -0
  76. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/SFXSRC.EXE +0 -0
  77. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/SOLID.RAR +0 -0
  78. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/STOREPWD.RAR +0 -0
  79. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/WITHDIR.RAR +0 -0
  80. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/rar140_av/rar140_av_patched.rar +0 -0
  81. rars-0.3.1/crates/rars-format/tests/fixtures/rar13/rar140_av/rar140_noav_baseline.rar +0 -0
  82. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/encrypted/README.md +16 -0
  83. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/encrypted/header_enc_1234.rar +0 -0
  84. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/encrypted/header_rar300_password.rar +0 -0
  85. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/encrypted/header_rar420_password.rar +0 -0
  86. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/encrypted/per_file_rar300_password.rar +0 -0
  87. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/encrypted/per_file_rar4_libarchive_mixed.rar +0 -0
  88. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/encrypted/rar4_junrar_file_content_encrypted_unicode.rar +0 -0
  89. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/encrypted/rar4_junrar_header_encrypted.rar +0 -0
  90. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/encrypted/rar4_junrar_password.rar +0 -0
  91. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/encrypted/rar4_mixed_visible_names_password.rar +0 -0
  92. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/encrypted/rar4_sharpcompress_files_only.rar +0 -0
  93. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/node_unrar_js/README.md +12 -0
  94. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/node_unrar_js/with_comment.rar +0 -0
  95. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/ppmd/README.md +17 -0
  96. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/ppmd/binary_64k.bin +0 -0
  97. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/ppmd/escape_64k.bin +1338 -0
  98. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/ppmd/farmanager170.rar +0 -0
  99. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/ppmd/lorem_127k.txt +1 -0
  100. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/ppmd/ppmd_escape_rar300.rar +0 -0
  101. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/ppmd/ppmd_lorem_rar300.rar +0 -0
  102. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/ppmd/ppmd_lz_match.txt +257 -0
  103. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/ppmd/ppmd_lz_match_rar300.rar +0 -0
  104. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/ppmd/ppmd_lz_repeat_rar3.cbr +0 -0
  105. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/ppmd/ppmd_mixed_rar300.rar +0 -0
  106. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/ppmd/ppmd_solid_rar300.rar +0 -0
  107. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/ppmd/solid_lorem_a.txt +1 -0
  108. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/ppmd/solid_lorem_b.txt +1 -0
  109. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar154/README.md +17 -0
  110. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar154/audio_dos_names_unpack15.rar +0 -0
  111. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar154/audio_win_names_unpack15.rar +0 -0
  112. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar154/doc_154_best.rar +0 -0
  113. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar154/expected/README.md +65 -0
  114. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar154/random.r00 +0 -0
  115. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar154/random.r01 +0 -0
  116. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar154/random.rar +0 -0
  117. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar154/readme_154_normal.rar +0 -0
  118. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar154/readme_154_password.rar +0 -0
  119. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar154/readme_154_store_solid.rar +0 -0
  120. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar202/README.md +15 -0
  121. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar202/comment_nopsw.rar +0 -0
  122. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar202/comment_psw.rar +0 -0
  123. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar250/AUDIO.RAR +0 -0
  124. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar250/AUTOREJ.RAR +0 -0
  125. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar250/BIGLZ.RAR +0 -0
  126. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar250/README.md +31 -0
  127. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar250/SOLID.RAR +0 -0
  128. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar250/unpack20_audio_text.rar +0 -0
  129. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar250/unpack20_keep_tables.rar +0 -0
  130. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar250/unpack20_multiblock.rar +0 -0
  131. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar250_protect_head_rr1.rar +0 -0
  132. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar250_protect_head_rr5.rar +0 -0
  133. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/README.md +22 -0
  134. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/bigtext_64k.bin +1 -0
  135. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/compressed_multivol_prng_rar300.r00 +0 -0
  136. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/compressed_multivol_prng_rar300.r01 +0 -0
  137. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/compressed_multivol_prng_rar300.r02 +0 -0
  138. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/compressed_multivol_prng_rar300.r03 +0 -0
  139. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/compressed_multivol_prng_rar300.rar +0 -0
  140. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/compressed_text_rar300.rar +0 -0
  141. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/encrypted_multivol_rar300.r00 +0 -0
  142. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/encrypted_multivol_rar300.rar +0 -0
  143. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/encrypted_newnaming_rar300.part01.rar +0 -0
  144. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/encrypted_newnaming_rar300.part02.rar +0 -0
  145. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/header_encrypted_multivol_rar300.r00 +0 -0
  146. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/header_encrypted_multivol_rar300.rar +0 -0
  147. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/header_encrypted_newnaming_rar300.part01.rar +0 -0
  148. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/header_encrypted_newnaming_rar300.part02.rar +0 -0
  149. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/multivol_newnaming_rar300.part01.rar +0 -0
  150. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/multivol_newnaming_rar300.part02.rar +0 -0
  151. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/multivol_oldnaming_rar300.r00 +0 -0
  152. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/multivol_oldnaming_rar300.rar +0 -0
  153. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/rarvm_audio_stereo_rar300.rar +0 -0
  154. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/rarvm_delta_4ch_rar300.rar +0 -0
  155. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/rarvm_itanium_synthetic_rar300.rar +0 -0
  156. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/rarvm_rgb_gradient_rar300.rar +0 -0
  157. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/rarvm_x86_e8_rar300.rar +0 -0
  158. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/rarvm_x86_e8e9_rar300.rar +0 -0
  159. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/rev_newstyle.part1.rar +0 -0
  160. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/rev_newstyle.part1.rev +0 -0
  161. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/rev_newstyle.part2.rar +0 -0
  162. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/rev_newstyle.part2.rev +0 -0
  163. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/rev_newstyle.part3.rar +0 -0
  164. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/rev_newstyle.part4.rar +0 -0
  165. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/rev_oldstyle.part1.rar +0 -0
  166. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/rev_oldstyle.part2.rar +0 -0
  167. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/rev_oldstyle.part3.rar +0 -0
  168. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/rev_oldstyle.part4.rar +0 -0
  169. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/rev_oldstyle.part4_2_1.rev +0 -0
  170. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/rev_oldstyle.part4_2_2.rev +0 -0
  171. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/solid_rar300.rar +0 -0
  172. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/solid_simple_rar300.rar +0 -0
  173. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/stored_multivol_rar300.r00 +0 -0
  174. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/stored_multivol_rar300.r01 +0 -0
  175. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/stored_multivol_rar300.r02 +0 -0
  176. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/stored_multivol_rar300.rar +0 -0
  177. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/with_comment_rar300.rar +0 -0
  178. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/with_compressed_recovery_header_synthetic.rar +0 -0
  179. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/with_compressed_recovery_rar300.rar +0 -0
  180. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar300/with_recovery_rar300.rar +0 -0
  181. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar420/README.md +12 -0
  182. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rar420/ext_time_rar420.rar +0 -0
  183. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rars_generated/README.md +10 -0
  184. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rars_generated/comments.rar +0 -0
  185. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rars_generated/compressed.rar +0 -0
  186. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rars_generated/encrypted.rar +0 -0
  187. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rars_generated/solid.rar +0 -0
  188. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rars_generated/split-encrypted.r00 +0 -0
  189. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rars_generated/split-encrypted.r01 +0 -0
  190. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rars_generated/split-encrypted.rar +0 -0
  191. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rars_generated/split-store.r00 +0 -0
  192. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rars_generated/split-store.r01 +0 -0
  193. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rars_generated/split-store.rar +0 -0
  194. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rars_generated/stored.rar +0 -0
  195. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rarvm/README.md +14 -0
  196. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rarvm/filter_bsdcat_exe.rar +0 -0
  197. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rarvm/generic_delta_padding_mutation.rar +0 -0
  198. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rarvm/ppmd_embedded_vm_filter.rar +0 -0
  199. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rarvm/solid_e8_filter_lead.txt +16 -0
  200. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rarvm/solid_e8_filter_member_offset.rar +0 -0
  201. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rarvm/solid_e8_filter_payload.exe +0 -0
  202. rars-0.3.1/crates/rars-format/tests/fixtures/rar15_40/rarvm/vm_encoded_u32_filter.rar +0 -0
  203. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/ams_archive_name_rar721.rar +0 -0
  204. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/empty_file.rar +0 -0
  205. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/encrypted_multivol.part1.rar +0 -0
  206. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/encrypted_multivol.part2.rar +0 -0
  207. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/encrypted_multivol.part3.rar +0 -0
  208. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/filter_arm.rar +0 -0
  209. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/filter_delta.rar +0 -0
  210. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/filter_e8.rar +0 -0
  211. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/filter_e8e9.rar +0 -0
  212. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/header_encrypted.rar +0 -0
  213. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/header_encrypted_comment.rar +0 -0
  214. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/m1_fastest.rar +0 -0
  215. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/m3_default.rar +0 -0
  216. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/m5_max.rar +0 -0
  217. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/multifile.rar +0 -0
  218. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/multivol.part1.rar +0 -0
  219. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/multivol.part2.rar +0 -0
  220. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/multivol.part3.rar +0 -0
  221. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/multivol_rev.part1.rar +0 -0
  222. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/multivol_rev.part1.rev +0 -0
  223. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/multivol_rev.part2.rar +0 -0
  224. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/multivol_rev.part2.rev +0 -0
  225. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/multivol_rev.part3.rar +0 -0
  226. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/multivol_rev.part4.rar +0 -0
  227. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/multivol_rev.part5.rar +0 -0
  228. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/password_aes.rar +0 -0
  229. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/password_crc32.rar +0 -0
  230. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/solid.rar +0 -0
  231. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/solid_multivol.part01.rar +0 -0
  232. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/solid_multivol.part02.rar +0 -0
  233. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/solid_multivol.part03.rar +0 -0
  234. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/solid_multivol.part04.rar +0 -0
  235. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/solid_multivol.part05.rar +0 -0
  236. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/solid_multivol.part06.rar +0 -0
  237. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/stored.rar +0 -0
  238. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/stored_blake2.rar +0 -0
  239. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/stored_multivol.part1.rar +0 -0
  240. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/stored_multivol.part2.rar +0 -0
  241. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/stored_multivol.part3.rar +0 -0
  242. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/wild/hardlink.rar +0 -0
  243. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/wild/invalid_hash_valid_htime_exfld.rar +0 -0
  244. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/wild/libarchive_loop_bug.rar +0 -0
  245. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/wild/libarchive_multiple_files_solid.rar +0 -0
  246. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/wild/libarchive_solid.rar +0 -0
  247. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/wild/rarfile_hlink.rar +0 -0
  248. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/wild/rarfile_solid.rar +0 -0
  249. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/wild/rarfile_solid_qo.rar +0 -0
  250. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/wild/symlink.rar +0 -0
  251. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/with_all_services.rar +0 -0
  252. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/with_comment.rar +0 -0
  253. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/with_quickopen.rar +0 -0
  254. rars-0.3.1/crates/rars-format/tests/fixtures/rar50/with_recovery.rar +0 -0
  255. rars-0.3.1/crates/rars-format/tests/ppmd_regressions.rs +93 -0
  256. rars-0.3.1/crates/rars-format/tests/rar13_fixtures.rs +682 -0
  257. rars-0.3.1/crates/rars-format/tests/rar15_40_fixtures.rs +6042 -0
  258. rars-0.3.1/crates/rars-format/tests/rar50_fixtures.rs +4613 -0
  259. rars-0.3.1/crates/rars-format/tests/rarvm_regressions.rs +135 -0
  260. rars-0.3.1/crates/rars-python/Cargo.toml +29 -0
  261. rars-0.3.1/crates/rars-python/src/lib.rs +1646 -0
  262. rars-0.3.1/crates/rars-recovery/Cargo.toml +25 -0
  263. rars-0.3.1/crates/rars-recovery/src/lib.rs +8 -0
  264. rars-0.3.1/crates/rars-recovery/src/rar3.rs +389 -0
  265. rars-0.3.1/crates/rars-recovery/src/rar5.rs +1362 -0
  266. rars-0.3.1/pyproject.toml +39 -0
rars-0.3.1/Cargo.lock ADDED
@@ -0,0 +1,1281 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aes"
7
+ version = "0.9.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "f1fc76eaeac4c9164506c466d4ffdd8ec9d0c5bf57ee97177c4d8eceb3a0e138"
10
+ dependencies = [
11
+ "cipher",
12
+ "cpubits",
13
+ "cpufeatures",
14
+ "zeroize",
15
+ ]
16
+
17
+ [[package]]
18
+ name = "aho-corasick"
19
+ version = "1.1.4"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
22
+ dependencies = [
23
+ "memchr",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "alloca"
28
+ version = "0.4.0"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
31
+ dependencies = [
32
+ "cc",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anes"
37
+ version = "0.1.6"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
40
+
41
+ [[package]]
42
+ name = "anstream"
43
+ version = "1.0.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
46
+ dependencies = [
47
+ "anstyle",
48
+ "anstyle-parse",
49
+ "anstyle-query",
50
+ "anstyle-wincon",
51
+ "colorchoice",
52
+ "is_terminal_polyfill",
53
+ "utf8parse",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "anstyle"
58
+ version = "1.0.14"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
61
+
62
+ [[package]]
63
+ name = "anstyle-parse"
64
+ version = "1.0.0"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
67
+ dependencies = [
68
+ "utf8parse",
69
+ ]
70
+
71
+ [[package]]
72
+ name = "anstyle-query"
73
+ version = "1.1.5"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
76
+ dependencies = [
77
+ "windows-sys 0.61.2",
78
+ ]
79
+
80
+ [[package]]
81
+ name = "anstyle-wincon"
82
+ version = "3.0.11"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
85
+ dependencies = [
86
+ "anstyle",
87
+ "once_cell_polyfill",
88
+ "windows-sys 0.61.2",
89
+ ]
90
+
91
+ [[package]]
92
+ name = "anyhow"
93
+ version = "1.0.102"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
96
+
97
+ [[package]]
98
+ name = "autocfg"
99
+ version = "1.5.0"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
102
+
103
+ [[package]]
104
+ name = "bitflags"
105
+ version = "2.11.1"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
108
+
109
+ [[package]]
110
+ name = "block-buffer"
111
+ version = "0.12.0"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
114
+ dependencies = [
115
+ "hybrid-array",
116
+ ]
117
+
118
+ [[package]]
119
+ name = "cast"
120
+ version = "0.3.0"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
123
+
124
+ [[package]]
125
+ name = "cc"
126
+ version = "1.2.62"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
129
+ dependencies = [
130
+ "find-msvc-tools",
131
+ "shlex",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "cfg-if"
136
+ version = "1.0.4"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
139
+
140
+ [[package]]
141
+ name = "ciborium"
142
+ version = "0.2.2"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
145
+ dependencies = [
146
+ "ciborium-io",
147
+ "ciborium-ll",
148
+ "serde",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "ciborium-io"
153
+ version = "0.2.2"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
156
+
157
+ [[package]]
158
+ name = "ciborium-ll"
159
+ version = "0.2.2"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
162
+ dependencies = [
163
+ "ciborium-io",
164
+ "half",
165
+ ]
166
+
167
+ [[package]]
168
+ name = "cipher"
169
+ version = "0.5.1"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "e34d8227fe1ba289043aeb13792056ff80fd6de1a9f49137a5f499de8e8c78ea"
172
+ dependencies = [
173
+ "crypto-common",
174
+ "inout",
175
+ ]
176
+
177
+ [[package]]
178
+ name = "clap"
179
+ version = "4.6.1"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
182
+ dependencies = [
183
+ "clap_builder",
184
+ "clap_derive",
185
+ ]
186
+
187
+ [[package]]
188
+ name = "clap_builder"
189
+ version = "4.6.0"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
192
+ dependencies = [
193
+ "anstream",
194
+ "anstyle",
195
+ "clap_lex",
196
+ "strsim",
197
+ "terminal_size",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "clap_derive"
202
+ version = "4.6.1"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
205
+ dependencies = [
206
+ "heck",
207
+ "proc-macro2",
208
+ "quote",
209
+ "syn",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "clap_lex"
214
+ version = "1.1.0"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
217
+
218
+ [[package]]
219
+ name = "cmov"
220
+ version = "0.5.3"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "3f88a43d011fc4a6876cb7344703e297c71dda42494fee094d5f7c76bf13f746"
223
+
224
+ [[package]]
225
+ name = "colorchoice"
226
+ version = "1.0.5"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
229
+
230
+ [[package]]
231
+ name = "const-oid"
232
+ version = "0.10.2"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
235
+
236
+ [[package]]
237
+ name = "cpubits"
238
+ version = "0.1.1"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "15b85f9c39137c3a891689859392b1bd49812121d0d61c9caf00d46ed5ce06ae"
241
+
242
+ [[package]]
243
+ name = "cpufeatures"
244
+ version = "0.3.0"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
247
+ dependencies = [
248
+ "libc",
249
+ ]
250
+
251
+ [[package]]
252
+ name = "criterion"
253
+ version = "0.8.2"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
256
+ dependencies = [
257
+ "alloca",
258
+ "anes",
259
+ "cast",
260
+ "ciborium",
261
+ "clap",
262
+ "criterion-plot",
263
+ "itertools",
264
+ "num-traits",
265
+ "oorandom",
266
+ "page_size",
267
+ "regex",
268
+ "serde",
269
+ "serde_json",
270
+ "tinytemplate",
271
+ "walkdir",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "criterion-plot"
276
+ version = "0.8.2"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
279
+ dependencies = [
280
+ "cast",
281
+ "itertools",
282
+ ]
283
+
284
+ [[package]]
285
+ name = "crossbeam-deque"
286
+ version = "0.8.6"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
289
+ dependencies = [
290
+ "crossbeam-epoch",
291
+ "crossbeam-utils",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "crossbeam-epoch"
296
+ version = "0.9.18"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
299
+ dependencies = [
300
+ "crossbeam-utils",
301
+ ]
302
+
303
+ [[package]]
304
+ name = "crossbeam-utils"
305
+ version = "0.8.21"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
308
+
309
+ [[package]]
310
+ name = "crunchy"
311
+ version = "0.2.4"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
314
+
315
+ [[package]]
316
+ name = "crypto-common"
317
+ version = "0.2.1"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "77727bb15fa921304124b128af125e7e3b968275d1b108b379190264f4423710"
320
+ dependencies = [
321
+ "hybrid-array",
322
+ ]
323
+
324
+ [[package]]
325
+ name = "ctutils"
326
+ version = "0.4.2"
327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
328
+ checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
329
+ dependencies = [
330
+ "cmov",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "digest"
335
+ version = "0.11.3"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
338
+ dependencies = [
339
+ "block-buffer",
340
+ "const-oid",
341
+ "crypto-common",
342
+ "ctutils",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "either"
347
+ version = "1.15.0"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
350
+
351
+ [[package]]
352
+ name = "equivalent"
353
+ version = "1.0.2"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
356
+
357
+ [[package]]
358
+ name = "errno"
359
+ version = "0.3.14"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
362
+ dependencies = [
363
+ "libc",
364
+ "windows-sys 0.61.2",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "find-msvc-tools"
369
+ version = "0.1.9"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
372
+
373
+ [[package]]
374
+ name = "foldhash"
375
+ version = "0.1.5"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
378
+
379
+ [[package]]
380
+ name = "getrandom"
381
+ version = "0.4.2"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
384
+ dependencies = [
385
+ "cfg-if",
386
+ "libc",
387
+ "r-efi",
388
+ "wasip2",
389
+ "wasip3",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "half"
394
+ version = "2.7.1"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
397
+ dependencies = [
398
+ "cfg-if",
399
+ "crunchy",
400
+ "zerocopy",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "hashbrown"
405
+ version = "0.15.5"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
408
+ dependencies = [
409
+ "foldhash",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "hashbrown"
414
+ version = "0.17.1"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
417
+
418
+ [[package]]
419
+ name = "heck"
420
+ version = "0.5.0"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
423
+
424
+ [[package]]
425
+ name = "hmac"
426
+ version = "0.13.0"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
429
+ dependencies = [
430
+ "digest",
431
+ ]
432
+
433
+ [[package]]
434
+ name = "hybrid-array"
435
+ version = "0.4.12"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da"
438
+ dependencies = [
439
+ "typenum",
440
+ ]
441
+
442
+ [[package]]
443
+ name = "id-arena"
444
+ version = "2.3.0"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
447
+
448
+ [[package]]
449
+ name = "indexmap"
450
+ version = "2.14.0"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
453
+ dependencies = [
454
+ "equivalent",
455
+ "hashbrown 0.17.1",
456
+ "serde",
457
+ "serde_core",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "inout"
462
+ version = "0.2.2"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "4250ce6452e92010fdf7268ccc5d14faa80bb12fc741938534c58f16804e03c7"
465
+ dependencies = [
466
+ "hybrid-array",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "is_terminal_polyfill"
471
+ version = "1.70.2"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
474
+
475
+ [[package]]
476
+ name = "itertools"
477
+ version = "0.13.0"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
480
+ dependencies = [
481
+ "either",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "itoa"
486
+ version = "1.0.18"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
489
+
490
+ [[package]]
491
+ name = "leb128fmt"
492
+ version = "0.1.0"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
495
+
496
+ [[package]]
497
+ name = "libc"
498
+ version = "0.2.186"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
501
+
502
+ [[package]]
503
+ name = "linux-raw-sys"
504
+ version = "0.12.1"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
507
+
508
+ [[package]]
509
+ name = "log"
510
+ version = "0.4.29"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
513
+
514
+ [[package]]
515
+ name = "memchr"
516
+ version = "2.8.0"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
519
+
520
+ [[package]]
521
+ name = "num-traits"
522
+ version = "0.2.19"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
525
+ dependencies = [
526
+ "autocfg",
527
+ ]
528
+
529
+ [[package]]
530
+ name = "once_cell"
531
+ version = "1.21.4"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
534
+
535
+ [[package]]
536
+ name = "once_cell_polyfill"
537
+ version = "1.70.2"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
540
+
541
+ [[package]]
542
+ name = "oorandom"
543
+ version = "11.1.5"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
546
+
547
+ [[package]]
548
+ name = "page_size"
549
+ version = "0.6.0"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
552
+ dependencies = [
553
+ "libc",
554
+ "winapi",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "portable-atomic"
559
+ version = "1.13.1"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
562
+
563
+ [[package]]
564
+ name = "prettyplease"
565
+ version = "0.2.37"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
568
+ dependencies = [
569
+ "proc-macro2",
570
+ "syn",
571
+ ]
572
+
573
+ [[package]]
574
+ name = "proc-macro2"
575
+ version = "1.0.106"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
578
+ dependencies = [
579
+ "unicode-ident",
580
+ ]
581
+
582
+ [[package]]
583
+ name = "pyo3"
584
+ version = "0.28.3"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
587
+ dependencies = [
588
+ "libc",
589
+ "once_cell",
590
+ "portable-atomic",
591
+ "pyo3-build-config",
592
+ "pyo3-ffi",
593
+ "pyo3-macros",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "pyo3-build-config"
598
+ version = "0.28.3"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
601
+ dependencies = [
602
+ "target-lexicon",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "pyo3-ffi"
607
+ version = "0.28.3"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
610
+ dependencies = [
611
+ "libc",
612
+ "pyo3-build-config",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "pyo3-macros"
617
+ version = "0.28.3"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
620
+ dependencies = [
621
+ "proc-macro2",
622
+ "pyo3-macros-backend",
623
+ "quote",
624
+ "syn",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "pyo3-macros-backend"
629
+ version = "0.28.3"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
632
+ dependencies = [
633
+ "heck",
634
+ "proc-macro2",
635
+ "pyo3-build-config",
636
+ "quote",
637
+ "syn",
638
+ ]
639
+
640
+ [[package]]
641
+ name = "quote"
642
+ version = "1.0.45"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
645
+ dependencies = [
646
+ "proc-macro2",
647
+ ]
648
+
649
+ [[package]]
650
+ name = "r-efi"
651
+ version = "6.0.0"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
654
+
655
+ [[package]]
656
+ name = "rars"
657
+ version = "0.3.1"
658
+ dependencies = [
659
+ "rars-format",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "rars-cli"
664
+ version = "0.3.1"
665
+ dependencies = [
666
+ "clap",
667
+ "libc",
668
+ "rars",
669
+ "rars-crc32",
670
+ "rayon",
671
+ "rpassword",
672
+ "zeroize",
673
+ ]
674
+
675
+ [[package]]
676
+ name = "rars-codec"
677
+ version = "0.3.1"
678
+ dependencies = [
679
+ "criterion",
680
+ "rars-crc32",
681
+ ]
682
+
683
+ [[package]]
684
+ name = "rars-crc32"
685
+ version = "0.3.1"
686
+
687
+ [[package]]
688
+ name = "rars-crypto"
689
+ version = "0.3.1"
690
+ dependencies = [
691
+ "aes",
692
+ "hmac",
693
+ "rars-crc32",
694
+ "sha1",
695
+ "sha2",
696
+ "zeroize",
697
+ ]
698
+
699
+ [[package]]
700
+ name = "rars-format"
701
+ version = "0.3.1"
702
+ dependencies = [
703
+ "aho-corasick",
704
+ "criterion",
705
+ "getrandom",
706
+ "rars-codec",
707
+ "rars-crc32",
708
+ "rars-crypto",
709
+ "rars-recovery",
710
+ "rayon",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "rars-python"
715
+ version = "0.3.1"
716
+ dependencies = [
717
+ "libc",
718
+ "pyo3",
719
+ "rars",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "rars-recovery"
724
+ version = "0.3.1"
725
+
726
+ [[package]]
727
+ name = "rayon"
728
+ version = "1.12.0"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
731
+ dependencies = [
732
+ "either",
733
+ "rayon-core",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "rayon-core"
738
+ version = "1.13.0"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
741
+ dependencies = [
742
+ "crossbeam-deque",
743
+ "crossbeam-utils",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "regex"
748
+ version = "1.12.3"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
751
+ dependencies = [
752
+ "aho-corasick",
753
+ "memchr",
754
+ "regex-automata",
755
+ "regex-syntax",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "regex-automata"
760
+ version = "0.4.14"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
763
+ dependencies = [
764
+ "aho-corasick",
765
+ "memchr",
766
+ "regex-syntax",
767
+ ]
768
+
769
+ [[package]]
770
+ name = "regex-syntax"
771
+ version = "0.8.10"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
774
+
775
+ [[package]]
776
+ name = "rpassword"
777
+ version = "7.5.4"
778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
779
+ checksum = "2da316a15f47e3d053de9cb2c439650bd8fa4aaeb9365f2e5f27f492ff73c196"
780
+ dependencies = [
781
+ "libc",
782
+ "rtoolbox",
783
+ "windows-sys 0.61.2",
784
+ ]
785
+
786
+ [[package]]
787
+ name = "rtoolbox"
788
+ version = "0.0.5"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "50a0e551c1e27e1731aba276dbeaeac73f53c7cd34d1bda485d02bd1e0f36844"
791
+ dependencies = [
792
+ "libc",
793
+ "windows-sys 0.59.0",
794
+ ]
795
+
796
+ [[package]]
797
+ name = "rustix"
798
+ version = "1.1.4"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
801
+ dependencies = [
802
+ "bitflags",
803
+ "errno",
804
+ "libc",
805
+ "linux-raw-sys",
806
+ "windows-sys 0.61.2",
807
+ ]
808
+
809
+ [[package]]
810
+ name = "same-file"
811
+ version = "1.0.6"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
814
+ dependencies = [
815
+ "winapi-util",
816
+ ]
817
+
818
+ [[package]]
819
+ name = "semver"
820
+ version = "1.0.28"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
823
+
824
+ [[package]]
825
+ name = "serde"
826
+ version = "1.0.228"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
829
+ dependencies = [
830
+ "serde_core",
831
+ "serde_derive",
832
+ ]
833
+
834
+ [[package]]
835
+ name = "serde_core"
836
+ version = "1.0.228"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
839
+ dependencies = [
840
+ "serde_derive",
841
+ ]
842
+
843
+ [[package]]
844
+ name = "serde_derive"
845
+ version = "1.0.228"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
848
+ dependencies = [
849
+ "proc-macro2",
850
+ "quote",
851
+ "syn",
852
+ ]
853
+
854
+ [[package]]
855
+ name = "serde_json"
856
+ version = "1.0.149"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
859
+ dependencies = [
860
+ "itoa",
861
+ "memchr",
862
+ "serde",
863
+ "serde_core",
864
+ "zmij",
865
+ ]
866
+
867
+ [[package]]
868
+ name = "sha1"
869
+ version = "0.11.0"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214"
872
+ dependencies = [
873
+ "cfg-if",
874
+ "cpufeatures",
875
+ "digest",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "sha2"
880
+ version = "0.11.0"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
883
+ dependencies = [
884
+ "cfg-if",
885
+ "cpufeatures",
886
+ "digest",
887
+ ]
888
+
889
+ [[package]]
890
+ name = "shlex"
891
+ version = "1.3.0"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
894
+
895
+ [[package]]
896
+ name = "strsim"
897
+ version = "0.11.1"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
900
+
901
+ [[package]]
902
+ name = "syn"
903
+ version = "2.0.117"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
906
+ dependencies = [
907
+ "proc-macro2",
908
+ "quote",
909
+ "unicode-ident",
910
+ ]
911
+
912
+ [[package]]
913
+ name = "target-lexicon"
914
+ version = "0.13.5"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
917
+
918
+ [[package]]
919
+ name = "terminal_size"
920
+ version = "0.4.4"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874"
923
+ dependencies = [
924
+ "rustix",
925
+ "windows-sys 0.61.2",
926
+ ]
927
+
928
+ [[package]]
929
+ name = "tinytemplate"
930
+ version = "1.2.1"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
933
+ dependencies = [
934
+ "serde",
935
+ "serde_json",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "typenum"
940
+ version = "1.20.0"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
943
+
944
+ [[package]]
945
+ name = "unicode-ident"
946
+ version = "1.0.24"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
949
+
950
+ [[package]]
951
+ name = "unicode-xid"
952
+ version = "0.2.6"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
955
+
956
+ [[package]]
957
+ name = "utf8parse"
958
+ version = "0.2.2"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
961
+
962
+ [[package]]
963
+ name = "walkdir"
964
+ version = "2.5.0"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
967
+ dependencies = [
968
+ "same-file",
969
+ "winapi-util",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "wasip2"
974
+ version = "1.0.3+wasi-0.2.9"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
977
+ dependencies = [
978
+ "wit-bindgen 0.57.1",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "wasip3"
983
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
986
+ dependencies = [
987
+ "wit-bindgen 0.51.0",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "wasm-encoder"
992
+ version = "0.244.0"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
995
+ dependencies = [
996
+ "leb128fmt",
997
+ "wasmparser",
998
+ ]
999
+
1000
+ [[package]]
1001
+ name = "wasm-metadata"
1002
+ version = "0.244.0"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1005
+ dependencies = [
1006
+ "anyhow",
1007
+ "indexmap",
1008
+ "wasm-encoder",
1009
+ "wasmparser",
1010
+ ]
1011
+
1012
+ [[package]]
1013
+ name = "wasmparser"
1014
+ version = "0.244.0"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1017
+ dependencies = [
1018
+ "bitflags",
1019
+ "hashbrown 0.15.5",
1020
+ "indexmap",
1021
+ "semver",
1022
+ ]
1023
+
1024
+ [[package]]
1025
+ name = "winapi"
1026
+ version = "0.3.9"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1029
+ dependencies = [
1030
+ "winapi-i686-pc-windows-gnu",
1031
+ "winapi-x86_64-pc-windows-gnu",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "winapi-i686-pc-windows-gnu"
1036
+ version = "0.4.0"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1039
+
1040
+ [[package]]
1041
+ name = "winapi-util"
1042
+ version = "0.1.11"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1045
+ dependencies = [
1046
+ "windows-sys 0.61.2",
1047
+ ]
1048
+
1049
+ [[package]]
1050
+ name = "winapi-x86_64-pc-windows-gnu"
1051
+ version = "0.4.0"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1054
+
1055
+ [[package]]
1056
+ name = "windows-link"
1057
+ version = "0.2.1"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1060
+
1061
+ [[package]]
1062
+ name = "windows-sys"
1063
+ version = "0.59.0"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1066
+ dependencies = [
1067
+ "windows-targets",
1068
+ ]
1069
+
1070
+ [[package]]
1071
+ name = "windows-sys"
1072
+ version = "0.61.2"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1075
+ dependencies = [
1076
+ "windows-link",
1077
+ ]
1078
+
1079
+ [[package]]
1080
+ name = "windows-targets"
1081
+ version = "0.52.6"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1084
+ dependencies = [
1085
+ "windows_aarch64_gnullvm",
1086
+ "windows_aarch64_msvc",
1087
+ "windows_i686_gnu",
1088
+ "windows_i686_gnullvm",
1089
+ "windows_i686_msvc",
1090
+ "windows_x86_64_gnu",
1091
+ "windows_x86_64_gnullvm",
1092
+ "windows_x86_64_msvc",
1093
+ ]
1094
+
1095
+ [[package]]
1096
+ name = "windows_aarch64_gnullvm"
1097
+ version = "0.52.6"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1100
+
1101
+ [[package]]
1102
+ name = "windows_aarch64_msvc"
1103
+ version = "0.52.6"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1106
+
1107
+ [[package]]
1108
+ name = "windows_i686_gnu"
1109
+ version = "0.52.6"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1112
+
1113
+ [[package]]
1114
+ name = "windows_i686_gnullvm"
1115
+ version = "0.52.6"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1118
+
1119
+ [[package]]
1120
+ name = "windows_i686_msvc"
1121
+ version = "0.52.6"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1124
+
1125
+ [[package]]
1126
+ name = "windows_x86_64_gnu"
1127
+ version = "0.52.6"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1130
+
1131
+ [[package]]
1132
+ name = "windows_x86_64_gnullvm"
1133
+ version = "0.52.6"
1134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1135
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1136
+
1137
+ [[package]]
1138
+ name = "windows_x86_64_msvc"
1139
+ version = "0.52.6"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1142
+
1143
+ [[package]]
1144
+ name = "wit-bindgen"
1145
+ version = "0.51.0"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1148
+ dependencies = [
1149
+ "wit-bindgen-rust-macro",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "wit-bindgen"
1154
+ version = "0.57.1"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1157
+
1158
+ [[package]]
1159
+ name = "wit-bindgen-core"
1160
+ version = "0.51.0"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1163
+ dependencies = [
1164
+ "anyhow",
1165
+ "heck",
1166
+ "wit-parser",
1167
+ ]
1168
+
1169
+ [[package]]
1170
+ name = "wit-bindgen-rust"
1171
+ version = "0.51.0"
1172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1173
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1174
+ dependencies = [
1175
+ "anyhow",
1176
+ "heck",
1177
+ "indexmap",
1178
+ "prettyplease",
1179
+ "syn",
1180
+ "wasm-metadata",
1181
+ "wit-bindgen-core",
1182
+ "wit-component",
1183
+ ]
1184
+
1185
+ [[package]]
1186
+ name = "wit-bindgen-rust-macro"
1187
+ version = "0.51.0"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1190
+ dependencies = [
1191
+ "anyhow",
1192
+ "prettyplease",
1193
+ "proc-macro2",
1194
+ "quote",
1195
+ "syn",
1196
+ "wit-bindgen-core",
1197
+ "wit-bindgen-rust",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "wit-component"
1202
+ version = "0.244.0"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1205
+ dependencies = [
1206
+ "anyhow",
1207
+ "bitflags",
1208
+ "indexmap",
1209
+ "log",
1210
+ "serde",
1211
+ "serde_derive",
1212
+ "serde_json",
1213
+ "wasm-encoder",
1214
+ "wasm-metadata",
1215
+ "wasmparser",
1216
+ "wit-parser",
1217
+ ]
1218
+
1219
+ [[package]]
1220
+ name = "wit-parser"
1221
+ version = "0.244.0"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1224
+ dependencies = [
1225
+ "anyhow",
1226
+ "id-arena",
1227
+ "indexmap",
1228
+ "log",
1229
+ "semver",
1230
+ "serde",
1231
+ "serde_derive",
1232
+ "serde_json",
1233
+ "unicode-xid",
1234
+ "wasmparser",
1235
+ ]
1236
+
1237
+ [[package]]
1238
+ name = "zerocopy"
1239
+ version = "0.8.48"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
1242
+ dependencies = [
1243
+ "zerocopy-derive",
1244
+ ]
1245
+
1246
+ [[package]]
1247
+ name = "zerocopy-derive"
1248
+ version = "0.8.48"
1249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
1251
+ dependencies = [
1252
+ "proc-macro2",
1253
+ "quote",
1254
+ "syn",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "zeroize"
1259
+ version = "1.8.2"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
1262
+ dependencies = [
1263
+ "zeroize_derive",
1264
+ ]
1265
+
1266
+ [[package]]
1267
+ name = "zeroize_derive"
1268
+ version = "1.4.3"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
1271
+ dependencies = [
1272
+ "proc-macro2",
1273
+ "quote",
1274
+ "syn",
1275
+ ]
1276
+
1277
+ [[package]]
1278
+ name = "zmij"
1279
+ version = "1.0.21"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"