haqumei 0.6.4__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 (235) hide show
  1. haqumei-0.6.4/Cargo.lock +3954 -0
  2. haqumei-0.6.4/Cargo.toml +41 -0
  3. haqumei-0.6.4/PKG-INFO +544 -0
  4. haqumei-0.6.4/README.md +530 -0
  5. haqumei-0.6.4/haqumei/Cargo.lock +459 -0
  6. haqumei-0.6.4/haqumei/Cargo.toml +82 -0
  7. haqumei-0.6.4/haqumei/README.md +530 -0
  8. haqumei-0.6.4/haqumei/build.rs +637 -0
  9. haqumei-0.6.4/haqumei/redirect.c +57 -0
  10. haqumei-0.6.4/haqumei/redirect.h +23 -0
  11. haqumei-0.6.4/haqumei/redirect_cpp.cpp +81 -0
  12. haqumei-0.6.4/haqumei/src/data.rs +10 -0
  13. haqumei-0.6.4/haqumei/src/errors.rs +90 -0
  14. haqumei-0.6.4/haqumei/src/features.rs +188 -0
  15. haqumei-0.6.4/haqumei/src/lib.rs +1153 -0
  16. haqumei-0.6.4/haqumei/src/macros.rs +77 -0
  17. haqumei-0.6.4/haqumei/src/nani_predict.rs +72 -0
  18. haqumei-0.6.4/haqumei/src/open_jtalk/dictionary.rs +484 -0
  19. haqumei-0.6.4/haqumei/src/open_jtalk/jp_common.rs +40 -0
  20. haqumei-0.6.4/haqumei/src/open_jtalk/jp_common_label.rs +649 -0
  21. haqumei-0.6.4/haqumei/src/open_jtalk/mapping.rs +962 -0
  22. haqumei-0.6.4/haqumei/src/open_jtalk/mecab.rs +96 -0
  23. haqumei-0.6.4/haqumei/src/open_jtalk/model.rs +57 -0
  24. haqumei-0.6.4/haqumei/src/open_jtalk/njd.rs +165 -0
  25. haqumei-0.6.4/haqumei/src/open_jtalk/tests.rs +151 -0
  26. haqumei-0.6.4/haqumei/src/open_jtalk.rs +1424 -0
  27. haqumei-0.6.4/haqumei/src/phoneme.rs +188 -0
  28. haqumei-0.6.4/haqumei/src/postprocess/utils.rs +48 -0
  29. haqumei-0.6.4/haqumei/src/postprocess.rs +846 -0
  30. haqumei-0.6.4/haqumei/src/prosody.rs +159 -0
  31. haqumei-0.6.4/haqumei/src/utils.rs +285 -0
  32. haqumei-0.6.4/haqumei/src/word_phoneme.rs +131 -0
  33. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/bin/.cvsignore +9 -0
  34. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/bin/CMakeLists.txt +17 -0
  35. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/bin/Makefile.am +38 -0
  36. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/bin/Makefile.mak +18 -0
  37. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/bin/open_jtalk.c +463 -0
  38. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/jpcommon/.cvsignore +4 -0
  39. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/jpcommon/Makefile.am +21 -0
  40. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/jpcommon/Makefile.mak +19 -0
  41. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/jpcommon/jpcommon.c +190 -0
  42. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/jpcommon/jpcommon.h +202 -0
  43. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/jpcommon/jpcommon_label.c +1327 -0
  44. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/jpcommon/jpcommon_node.c +212 -0
  45. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/jpcommon/jpcommon_rule_ascii_for_euc_jp.h +324 -0
  46. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/jpcommon/jpcommon_rule_ascii_for_shift_jis.h +324 -0
  47. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/jpcommon/jpcommon_rule_ascii_for_utf_8.h +324 -0
  48. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/jpcommon/jpcommon_rule_euc_jp.h +323 -0
  49. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/jpcommon/jpcommon_rule_shift_jis.h +323 -0
  50. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/jpcommon/jpcommon_rule_utf_8.h +323 -0
  51. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/.cvsignore +4 -0
  52. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/COPYING +69 -0
  53. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/Makefile.am +8 -0
  54. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/Makefile.mak +10 -0
  55. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/config.h.in +157 -0
  56. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/.cvsignore +6 -0
  57. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/Makefile.am +72 -0
  58. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/Makefile.mak +26 -0
  59. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/char_property.cpp +279 -0
  60. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/char_property.h +92 -0
  61. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/common.h +199 -0
  62. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/connector.cpp +113 -0
  63. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/connector.h +67 -0
  64. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/context_id.cpp +123 -0
  65. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/context_id.h +50 -0
  66. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/darts.h +518 -0
  67. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/dictionary.cpp +718 -0
  68. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/dictionary.h +99 -0
  69. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/dictionary_compiler.cpp +213 -0
  70. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/dictionary_generator.cpp +297 -0
  71. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/dictionary_rewriter.cpp +274 -0
  72. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/dictionary_rewriter.h +75 -0
  73. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/eval.cpp +317 -0
  74. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/feature_index.cpp +747 -0
  75. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/feature_index.h +115 -0
  76. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/freelist.h +85 -0
  77. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/iconv_utils.cpp +258 -0
  78. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/iconv_utils.h +87 -0
  79. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/lbfgs.cpp +572 -0
  80. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/lbfgs.h +71 -0
  81. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/learner.cpp +320 -0
  82. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/learner_node.h +134 -0
  83. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/learner_tagger.cpp +418 -0
  84. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/learner_tagger.h +80 -0
  85. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/libmecab.cpp +541 -0
  86. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/mecab-dict-index.cpp +11 -0
  87. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/mecab.cpp +309 -0
  88. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/mecab.h +1604 -0
  89. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/mmap.h +216 -0
  90. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/nbest_generator.cpp +52 -0
  91. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/nbest_generator.h +43 -0
  92. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/param.cpp +284 -0
  93. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/param.h +92 -0
  94. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/scoped_ptr.h +95 -0
  95. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/stream_wrapper.h +55 -0
  96. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/string_buffer.cpp +65 -0
  97. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/string_buffer.h +118 -0
  98. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/tagger.cpp +1277 -0
  99. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/thread.h +242 -0
  100. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/tokenizer.cpp +394 -0
  101. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/tokenizer.h +134 -0
  102. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/ucs.h +148 -0
  103. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/ucstable.h +155511 -0
  104. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/utils.cpp +615 -0
  105. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/utils.h +260 -0
  106. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/viterbi.cpp +413 -0
  107. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/viterbi.h +53 -0
  108. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/winmain.h +113 -0
  109. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/writer.cpp +412 -0
  110. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab/src/writer.h +57 -0
  111. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab2njd/.cvsignore +4 -0
  112. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab2njd/Makefile.am +13 -0
  113. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab2njd/Makefile.mak +19 -0
  114. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab2njd/mecab2njd.c +84 -0
  115. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/mecab2njd/mecab2njd.h +58 -0
  116. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd/.cvsignore +4 -0
  117. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd/Makefile.am +14 -0
  118. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd/Makefile.mak +19 -0
  119. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd/njd.c +381 -0
  120. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd/njd.h +140 -0
  121. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd/njd_node.c +728 -0
  122. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd2jpcommon/.cvsignore +4 -0
  123. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd2jpcommon/Makefile.am +19 -0
  124. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd2jpcommon/Makefile.mak +19 -0
  125. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd2jpcommon/njd2jpcommon.c +177 -0
  126. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd2jpcommon/njd2jpcommon.h +58 -0
  127. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd2jpcommon/njd2jpcommon_rule_ascii_for_euc_jp.h +227 -0
  128. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd2jpcommon/njd2jpcommon_rule_ascii_for_shift_jis.h +227 -0
  129. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd2jpcommon/njd2jpcommon_rule_ascii_for_utf_8.h +227 -0
  130. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd2jpcommon/njd2jpcommon_rule_euc_jp.h +227 -0
  131. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd2jpcommon/njd2jpcommon_rule_shift_jis.h +227 -0
  132. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd2jpcommon/njd2jpcommon_rule_utf_8.h +227 -0
  133. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_accent_phrase/.cvsignore +4 -0
  134. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_accent_phrase/Makefile.am +19 -0
  135. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_accent_phrase/Makefile.mak +19 -0
  136. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_accent_phrase/njd_set_accent_phrase.c +285 -0
  137. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_accent_phrase/njd_set_accent_phrase.h +58 -0
  138. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_accent_phrase/njd_set_accent_phrase_rule_ascii_for_euc_jp.h +99 -0
  139. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_accent_phrase/njd_set_accent_phrase_rule_ascii_for_shift_jis.h +99 -0
  140. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_accent_phrase/njd_set_accent_phrase_rule_ascii_for_utf_8.h +99 -0
  141. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_accent_phrase/njd_set_accent_phrase_rule_euc_jp.h +99 -0
  142. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_accent_phrase/njd_set_accent_phrase_rule_shift_jis.h +99 -0
  143. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_accent_phrase/njd_set_accent_phrase_rule_utf_8.h +108 -0
  144. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_accent_type/.cvsignore +4 -0
  145. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_accent_type/Makefile.am +19 -0
  146. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_accent_type/Makefile.mak +19 -0
  147. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_accent_type/njd_set_accent_type.c +312 -0
  148. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_accent_type/njd_set_accent_type.h +58 -0
  149. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_accent_type/njd_set_accent_type_rule_ascii_for_euc_jp.h +76 -0
  150. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_accent_type/njd_set_accent_type_rule_ascii_for_shift_jis.h +76 -0
  151. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_accent_type/njd_set_accent_type_rule_ascii_for_utf_8.h +76 -0
  152. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_accent_type/njd_set_accent_type_rule_euc_jp.h +76 -0
  153. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_accent_type/njd_set_accent_type_rule_shift_jis.h +76 -0
  154. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_accent_type/njd_set_accent_type_rule_utf_8.h +76 -0
  155. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_digit/.cvsignore +4 -0
  156. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_digit/Makefile.am +19 -0
  157. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_digit/Makefile.mak +19 -0
  158. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_digit/njd_set_digit.c +794 -0
  159. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_digit/njd_set_digit.h +58 -0
  160. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_digit/njd_set_digit_rule_ascii_for_euc_jp.h +634 -0
  161. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_digit/njd_set_digit_rule_ascii_for_shift_jis.h +634 -0
  162. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_digit/njd_set_digit_rule_ascii_for_utf_8.h +634 -0
  163. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_digit/njd_set_digit_rule_euc_jp.h +634 -0
  164. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_digit/njd_set_digit_rule_shift_jis.h +634 -0
  165. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_digit/njd_set_digit_rule_utf_8.h +634 -0
  166. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_long_vowel/.cvsignore +4 -0
  167. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_long_vowel/Makefile.am +19 -0
  168. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_long_vowel/Makefile.mak +19 -0
  169. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_long_vowel/njd_set_long_vowel.c +181 -0
  170. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_long_vowel/njd_set_long_vowel.h +58 -0
  171. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_long_vowel/njd_set_long_vowel_rule_ascii_for_euc_jp.h +90 -0
  172. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_long_vowel/njd_set_long_vowel_rule_ascii_for_shift_jis.h +90 -0
  173. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_long_vowel/njd_set_long_vowel_rule_ascii_for_utf_8.h +90 -0
  174. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_long_vowel/njd_set_long_vowel_rule_euc_jp.h +90 -0
  175. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_long_vowel/njd_set_long_vowel_rule_shift_jis.h +90 -0
  176. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_long_vowel/njd_set_long_vowel_rule_utf_8.h +90 -0
  177. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_pronunciation/.cvsignore +4 -0
  178. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_pronunciation/Makefile.am +19 -0
  179. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_pronunciation/Makefile.mak +19 -0
  180. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_pronunciation/njd_set_pronunciation.c +232 -0
  181. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_pronunciation/njd_set_pronunciation.h +58 -0
  182. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_pronunciation/njd_set_pronunciation_rule_ascii_for_euc_jp.h +486 -0
  183. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_pronunciation/njd_set_pronunciation_rule_ascii_for_shift_jis.h +486 -0
  184. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_pronunciation/njd_set_pronunciation_rule_ascii_for_utf_8.h +486 -0
  185. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_pronunciation/njd_set_pronunciation_rule_euc_jp.h +488 -0
  186. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_pronunciation/njd_set_pronunciation_rule_shift_jis.h +488 -0
  187. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_pronunciation/njd_set_pronunciation_rule_utf_8.h +488 -0
  188. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_unvoiced_vowel/.cvsignore +4 -0
  189. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_unvoiced_vowel/Makefile.am +19 -0
  190. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_unvoiced_vowel/Makefile.mak +19 -0
  191. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_unvoiced_vowel/njd_set_unvoiced_vowel.c +366 -0
  192. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_unvoiced_vowel/njd_set_unvoiced_vowel.h +58 -0
  193. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_unvoiced_vowel/njd_set_unvoiced_vowel_rule_ascii_for_euc_jp.h +372 -0
  194. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_unvoiced_vowel/njd_set_unvoiced_vowel_rule_ascii_for_shift_jis.h +372 -0
  195. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_unvoiced_vowel/njd_set_unvoiced_vowel_rule_ascii_for_utf_8.h +372 -0
  196. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_unvoiced_vowel/njd_set_unvoiced_vowel_rule_euc_jp.h +372 -0
  197. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_unvoiced_vowel/njd_set_unvoiced_vowel_rule_shift_jis.h +372 -0
  198. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/njd_set_unvoiced_vowel/njd_set_unvoiced_vowel_rule_utf_8.h +372 -0
  199. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/text2mecab/.cvsignore +4 -0
  200. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/text2mecab/Makefile.am +19 -0
  201. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/text2mecab/Makefile.mak +19 -0
  202. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/text2mecab/text2mecab.c +156 -0
  203. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/text2mecab/text2mecab.h +64 -0
  204. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/text2mecab/text2mecab_rule_ascii_for_euc_jp.h +264 -0
  205. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/text2mecab/text2mecab_rule_ascii_for_shift_jis.h +264 -0
  206. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/text2mecab/text2mecab_rule_ascii_for_utf_8.h +264 -0
  207. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/text2mecab/text2mecab_rule_euc_jp.h +264 -0
  208. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/text2mecab/text2mecab_rule_shift_jis.h +264 -0
  209. haqumei-0.6.4/haqumei/vendor/open_jtalk/src/text2mecab/text2mecab_rule_utf_8.h +264 -0
  210. haqumei-0.6.4/haqumei/wrapper.h +13 -0
  211. haqumei-0.6.4/haqumei/yomi_model/nani_enc.onnx +0 -0
  212. haqumei-0.6.4/haqumei/yomi_model/nani_model.onnx +0 -0
  213. haqumei-0.6.4/haqumei-jlabel/.gitignore +1 -0
  214. haqumei-0.6.4/haqumei-jlabel/Cargo.lock +139 -0
  215. haqumei-0.6.4/haqumei-jlabel/Cargo.toml +24 -0
  216. haqumei-0.6.4/haqumei-jlabel/LICENSE +29 -0
  217. haqumei-0.6.4/haqumei-jlabel/README.md +28 -0
  218. haqumei-0.6.4/haqumei-jlabel/src/fullcontext_label.rs +169 -0
  219. haqumei-0.6.4/haqumei-jlabel/src/lib.rs +66 -0
  220. haqumei-0.6.4/haqumei-jlabel/src/parser.rs +323 -0
  221. haqumei-0.6.4/haqumei-jlabel/src/serializer.rs +322 -0
  222. haqumei-0.6.4/haqumei-jlabel/tests/fixtures.rs +631 -0
  223. haqumei-0.6.4/haqumei-jlabel/tests/parser.rs +11 -0
  224. haqumei-0.6.4/haqumei-jlabel/tests/serializer.rs +10 -0
  225. haqumei-0.6.4/haqumei-macros/Cargo.toml +21 -0
  226. haqumei-0.6.4/haqumei-macros/README.md +7 -0
  227. haqumei-0.6.4/haqumei-macros/src/lib.rs +302 -0
  228. haqumei-0.6.4/haqumei-python/.gitignore +72 -0
  229. haqumei-0.6.4/haqumei-python/Cargo.toml +20 -0
  230. haqumei-0.6.4/haqumei-python/README.md +530 -0
  231. haqumei-0.6.4/haqumei-python/haqumei.pyi +1039 -0
  232. haqumei-0.6.4/haqumei-python/src/lib.rs +977 -0
  233. haqumei-0.6.4/haqumei-python/uv.lock +179 -0
  234. haqumei-0.6.4/haqumei.pyi +1039 -0
  235. haqumei-0.6.4/pyproject.toml +32 -0
@@ -0,0 +1,3954 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "alloca"
16
+ version = "0.4.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
19
+ dependencies = [
20
+ "cc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "allocator-api2"
25
+ version = "0.2.21"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
28
+
29
+ [[package]]
30
+ name = "android_system_properties"
31
+ version = "0.1.5"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
34
+ dependencies = [
35
+ "libc",
36
+ ]
37
+
38
+ [[package]]
39
+ name = "anes"
40
+ version = "0.1.6"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
43
+
44
+ [[package]]
45
+ name = "anstream"
46
+ version = "1.0.0"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
49
+ dependencies = [
50
+ "anstyle",
51
+ "anstyle-parse",
52
+ "anstyle-query",
53
+ "anstyle-wincon",
54
+ "colorchoice",
55
+ "is_terminal_polyfill",
56
+ "utf8parse",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle"
61
+ version = "1.0.13"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
64
+
65
+ [[package]]
66
+ name = "anstyle-parse"
67
+ version = "1.0.0"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
70
+ dependencies = [
71
+ "utf8parse",
72
+ ]
73
+
74
+ [[package]]
75
+ name = "anstyle-query"
76
+ version = "1.1.5"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
79
+ dependencies = [
80
+ "windows-sys 0.61.2",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "anstyle-wincon"
85
+ version = "3.0.11"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
88
+ dependencies = [
89
+ "anstyle",
90
+ "once_cell_polyfill",
91
+ "windows-sys 0.61.2",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "anyhow"
96
+ version = "1.0.102"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
99
+
100
+ [[package]]
101
+ name = "arc-swap"
102
+ version = "1.9.1"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207"
105
+ dependencies = [
106
+ "rustversion",
107
+ ]
108
+
109
+ [[package]]
110
+ name = "argmin"
111
+ version = "0.11.0"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "e7ab7ca97779074715a402e5e8045fae27e7191acaec9b4c5653276316e9e404"
114
+ dependencies = [
115
+ "anyhow",
116
+ "argmin-math",
117
+ "num-traits",
118
+ "paste",
119
+ "rand",
120
+ "rand_xoshiro",
121
+ "thiserror 2.0.18",
122
+ "web-time",
123
+ ]
124
+
125
+ [[package]]
126
+ name = "argmin-math"
127
+ version = "0.5.1"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "ba6958a87117ff5e1d0d7716856a4303752518012ec4a67a68446b6631a1a54d"
130
+ dependencies = [
131
+ "anyhow",
132
+ "cfg-if",
133
+ "num-complex",
134
+ "num-integer",
135
+ "num-traits",
136
+ "rand",
137
+ "thiserror 2.0.18",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "argmin-observer-slog"
142
+ version = "0.2.0"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "0b520dbfd3ae35ee2e1d2e456e48c595abaea98c2e5af244a831f62e733c8469"
145
+ dependencies = [
146
+ "anyhow",
147
+ "argmin",
148
+ "slog",
149
+ "slog-async",
150
+ "slog-term",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "atomic-waker"
155
+ version = "1.1.2"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
158
+
159
+ [[package]]
160
+ name = "autocfg"
161
+ version = "1.5.0"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
164
+
165
+ [[package]]
166
+ name = "aws-lc-rs"
167
+ version = "1.16.1"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "94bffc006df10ac2a68c83692d734a465f8ee6c5b384d8545a636f81d858f4bf"
170
+ dependencies = [
171
+ "aws-lc-sys",
172
+ "zeroize",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "aws-lc-sys"
177
+ version = "0.38.0"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "4321e568ed89bb5a7d291a7f37997c2c0df89809d7b6d12062c81ddb54aa782e"
180
+ dependencies = [
181
+ "cc",
182
+ "cmake",
183
+ "dunce",
184
+ "fs_extra",
185
+ ]
186
+
187
+ [[package]]
188
+ name = "base64"
189
+ version = "0.22.1"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
192
+
193
+ [[package]]
194
+ name = "base64ct"
195
+ version = "1.8.3"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
198
+
199
+ [[package]]
200
+ name = "bindgen"
201
+ version = "0.72.1"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
204
+ dependencies = [
205
+ "bitflags",
206
+ "cexpr",
207
+ "clang-sys",
208
+ "itertools",
209
+ "log",
210
+ "prettyplease",
211
+ "proc-macro2",
212
+ "quote",
213
+ "regex",
214
+ "rustc-hash",
215
+ "shlex",
216
+ "syn",
217
+ ]
218
+
219
+ [[package]]
220
+ name = "bitflags"
221
+ version = "2.11.0"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
224
+
225
+ [[package]]
226
+ name = "block-buffer"
227
+ version = "0.12.0"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
230
+ dependencies = [
231
+ "hybrid-array",
232
+ ]
233
+
234
+ [[package]]
235
+ name = "bstr"
236
+ version = "1.12.1"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
239
+ dependencies = [
240
+ "memchr",
241
+ "serde",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "bumpalo"
246
+ version = "3.20.2"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
249
+
250
+ [[package]]
251
+ name = "bytecheck"
252
+ version = "0.8.2"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "0caa33a2c0edca0419d15ac723dff03f1956f7978329b1e3b5fdaaaed9d3ca8b"
255
+ dependencies = [
256
+ "bytecheck_derive",
257
+ "ptr_meta",
258
+ "rancor",
259
+ "simdutf8",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "bytecheck_derive"
264
+ version = "0.8.2"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "89385e82b5d1821d2219e0b095efa2cc1f246cbf99080f3be46a1a85c0d392d9"
267
+ dependencies = [
268
+ "proc-macro2",
269
+ "quote",
270
+ "syn",
271
+ ]
272
+
273
+ [[package]]
274
+ name = "byteorder"
275
+ version = "1.5.0"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
278
+
279
+ [[package]]
280
+ name = "bytes"
281
+ version = "1.11.1"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
284
+
285
+ [[package]]
286
+ name = "cast"
287
+ version = "0.3.0"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
290
+
291
+ [[package]]
292
+ name = "cc"
293
+ version = "1.2.62"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
296
+ dependencies = [
297
+ "find-msvc-tools",
298
+ "jobserver",
299
+ "libc",
300
+ "shlex",
301
+ ]
302
+
303
+ [[package]]
304
+ name = "cesu8"
305
+ version = "1.1.0"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
308
+
309
+ [[package]]
310
+ name = "cexpr"
311
+ version = "0.6.0"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
314
+ dependencies = [
315
+ "nom",
316
+ ]
317
+
318
+ [[package]]
319
+ name = "cfg-if"
320
+ version = "1.0.4"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
323
+
324
+ [[package]]
325
+ name = "cfg_aliases"
326
+ version = "0.2.1"
327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
328
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
329
+
330
+ [[package]]
331
+ name = "chrono"
332
+ version = "0.4.44"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
335
+ dependencies = [
336
+ "iana-time-zone",
337
+ "js-sys",
338
+ "num-traits",
339
+ "wasm-bindgen",
340
+ "windows-link",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "ciborium"
345
+ version = "0.2.2"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
348
+ dependencies = [
349
+ "ciborium-io",
350
+ "ciborium-ll",
351
+ "serde",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "ciborium-io"
356
+ version = "0.2.2"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
359
+
360
+ [[package]]
361
+ name = "ciborium-ll"
362
+ version = "0.2.2"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
365
+ dependencies = [
366
+ "ciborium-io",
367
+ "half",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "clang-sys"
372
+ version = "1.8.1"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
375
+ dependencies = [
376
+ "glob",
377
+ "libc",
378
+ "libloading",
379
+ ]
380
+
381
+ [[package]]
382
+ name = "clap"
383
+ version = "4.6.1"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
386
+ dependencies = [
387
+ "clap_builder",
388
+ "clap_derive",
389
+ ]
390
+
391
+ [[package]]
392
+ name = "clap_builder"
393
+ version = "4.6.0"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
396
+ dependencies = [
397
+ "anstream",
398
+ "anstyle",
399
+ "clap_lex",
400
+ "strsim",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "clap_derive"
405
+ version = "4.6.1"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
408
+ dependencies = [
409
+ "heck",
410
+ "proc-macro2",
411
+ "quote",
412
+ "syn",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "clap_lex"
417
+ version = "1.0.0"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
420
+
421
+ [[package]]
422
+ name = "cmake"
423
+ version = "0.1.57"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
426
+ dependencies = [
427
+ "cc",
428
+ ]
429
+
430
+ [[package]]
431
+ name = "colorchoice"
432
+ version = "1.0.5"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
435
+
436
+ [[package]]
437
+ name = "combine"
438
+ version = "4.6.7"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
441
+ dependencies = [
442
+ "bytes",
443
+ "memchr",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "const-oid"
448
+ version = "0.10.2"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
451
+
452
+ [[package]]
453
+ name = "core-foundation"
454
+ version = "0.9.4"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
457
+ dependencies = [
458
+ "core-foundation-sys",
459
+ "libc",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "core-foundation"
464
+ version = "0.10.1"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
467
+ dependencies = [
468
+ "core-foundation-sys",
469
+ "libc",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "core-foundation-sys"
474
+ version = "0.8.7"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
477
+
478
+ [[package]]
479
+ name = "cpufeatures"
480
+ version = "0.3.0"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
483
+ dependencies = [
484
+ "libc",
485
+ ]
486
+
487
+ [[package]]
488
+ name = "crawdad-rkyv"
489
+ version = "0.4.0-rkyv.2"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "320b8e73b919dc92070dc4abc789a8ae043d27a5b00ed39d6bea8d9c66857f68"
492
+ dependencies = [
493
+ "rkyv",
494
+ ]
495
+
496
+ [[package]]
497
+ name = "criterion"
498
+ version = "0.8.2"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
501
+ dependencies = [
502
+ "alloca",
503
+ "anes",
504
+ "cast",
505
+ "ciborium",
506
+ "clap",
507
+ "criterion-plot",
508
+ "itertools",
509
+ "num-traits",
510
+ "oorandom",
511
+ "page_size",
512
+ "plotters",
513
+ "rayon",
514
+ "regex",
515
+ "serde",
516
+ "serde_json",
517
+ "tinytemplate",
518
+ "walkdir",
519
+ ]
520
+
521
+ [[package]]
522
+ name = "criterion-plot"
523
+ version = "0.8.2"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
526
+ dependencies = [
527
+ "cast",
528
+ "itertools",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "crossbeam-channel"
533
+ version = "0.5.15"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
536
+ dependencies = [
537
+ "crossbeam-utils",
538
+ ]
539
+
540
+ [[package]]
541
+ name = "crossbeam-deque"
542
+ version = "0.8.6"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
545
+ dependencies = [
546
+ "crossbeam-epoch",
547
+ "crossbeam-utils",
548
+ ]
549
+
550
+ [[package]]
551
+ name = "crossbeam-epoch"
552
+ version = "0.9.18"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
555
+ dependencies = [
556
+ "crossbeam-utils",
557
+ ]
558
+
559
+ [[package]]
560
+ name = "crossbeam-utils"
561
+ version = "0.8.21"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
564
+
565
+ [[package]]
566
+ name = "crunchy"
567
+ version = "0.2.4"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
570
+
571
+ [[package]]
572
+ name = "crypto-common"
573
+ version = "0.2.1"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "77727bb15fa921304124b128af125e7e3b968275d1b108b379190264f4423710"
576
+ dependencies = [
577
+ "hybrid-array",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "csv"
582
+ version = "1.4.0"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
585
+ dependencies = [
586
+ "csv-core",
587
+ "itoa",
588
+ "ryu",
589
+ "serde_core",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "csv-core"
594
+ version = "0.1.13"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
597
+ dependencies = [
598
+ "memchr",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "der"
603
+ version = "0.8.0"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "71fd89660b2dc699704064e59e9dba0147b903e85319429e131620d022be411b"
606
+ dependencies = [
607
+ "pem-rfc7468",
608
+ "zeroize",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "deranged"
613
+ version = "0.5.8"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
616
+ dependencies = [
617
+ "powerfmt",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "digest"
622
+ version = "0.11.2"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "4850db49bf08e663084f7fb5c87d202ef91a3907271aff24a94eb97ff039153c"
625
+ dependencies = [
626
+ "block-buffer",
627
+ "const-oid",
628
+ "crypto-common",
629
+ ]
630
+
631
+ [[package]]
632
+ name = "digest-io"
633
+ version = "0.1.0"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "2de63d600bc7fab91180bc17385f29b342468dc8ef2af09dceba450a293de3da"
636
+ dependencies = [
637
+ "digest",
638
+ ]
639
+
640
+ [[package]]
641
+ name = "dirs"
642
+ version = "6.0.0"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
645
+ dependencies = [
646
+ "dirs-sys",
647
+ ]
648
+
649
+ [[package]]
650
+ name = "dirs-sys"
651
+ version = "0.5.0"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
654
+ dependencies = [
655
+ "libc",
656
+ "option-ext",
657
+ "redox_users",
658
+ "windows-sys 0.61.2",
659
+ ]
660
+
661
+ [[package]]
662
+ name = "displaydoc"
663
+ version = "0.2.5"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
666
+ dependencies = [
667
+ "proc-macro2",
668
+ "quote",
669
+ "syn",
670
+ ]
671
+
672
+ [[package]]
673
+ name = "dunce"
674
+ version = "1.0.5"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
677
+
678
+ [[package]]
679
+ name = "either"
680
+ version = "1.15.0"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
683
+
684
+ [[package]]
685
+ name = "encoding_rs"
686
+ version = "0.8.35"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
689
+ dependencies = [
690
+ "cfg-if",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "env_filter"
695
+ version = "1.0.1"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "32e90c2accc4b07a8456ea0debdc2e7587bdd890680d71173a15d4ae604f6eef"
698
+ dependencies = [
699
+ "log",
700
+ "regex",
701
+ ]
702
+
703
+ [[package]]
704
+ name = "env_logger"
705
+ version = "0.11.10"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "0621c04f2196ac3f488dd583365b9c09be011a4ab8b9f37248ffcc8f6198b56a"
708
+ dependencies = [
709
+ "anstream",
710
+ "anstyle",
711
+ "env_filter",
712
+ "jiff",
713
+ "log",
714
+ ]
715
+
716
+ [[package]]
717
+ name = "equivalent"
718
+ version = "1.0.2"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
721
+
722
+ [[package]]
723
+ name = "erased-serde"
724
+ version = "0.3.31"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "6c138974f9d5e7fe373eb04df7cae98833802ae4b11c24ac7039a21d5af4b26c"
727
+ dependencies = [
728
+ "serde",
729
+ ]
730
+
731
+ [[package]]
732
+ name = "errno"
733
+ version = "0.3.14"
734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
735
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
736
+ dependencies = [
737
+ "libc",
738
+ "windows-sys 0.61.2",
739
+ ]
740
+
741
+ [[package]]
742
+ name = "fastrand"
743
+ version = "2.3.0"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
746
+
747
+ [[package]]
748
+ name = "filetime"
749
+ version = "0.2.27"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
752
+ dependencies = [
753
+ "cfg-if",
754
+ "libc",
755
+ "libredox",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "find-msvc-tools"
760
+ version = "0.1.9"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
763
+
764
+ [[package]]
765
+ name = "fnv"
766
+ version = "1.0.7"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
769
+
770
+ [[package]]
771
+ name = "foldhash"
772
+ version = "0.1.5"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
775
+
776
+ [[package]]
777
+ name = "foldhash"
778
+ version = "0.2.0"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
781
+
782
+ [[package]]
783
+ name = "foreign-types"
784
+ version = "0.3.2"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
787
+ dependencies = [
788
+ "foreign-types-shared",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "foreign-types-shared"
793
+ version = "0.1.1"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
796
+
797
+ [[package]]
798
+ name = "form_urlencoded"
799
+ version = "1.2.2"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
802
+ dependencies = [
803
+ "percent-encoding",
804
+ ]
805
+
806
+ [[package]]
807
+ name = "fs4"
808
+ version = "1.1.0"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "7e72ed92b67c146290f88e9c89d60ca163ea417a446f61ffd7b72df3e7f1dfd5"
811
+ dependencies = [
812
+ "rustix",
813
+ "windows-sys 0.61.2",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "fs_extra"
818
+ version = "1.3.0"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
821
+
822
+ [[package]]
823
+ name = "futures-channel"
824
+ version = "0.3.32"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
827
+ dependencies = [
828
+ "futures-core",
829
+ "futures-sink",
830
+ ]
831
+
832
+ [[package]]
833
+ name = "futures-core"
834
+ version = "0.3.32"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
837
+
838
+ [[package]]
839
+ name = "futures-io"
840
+ version = "0.3.32"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
843
+
844
+ [[package]]
845
+ name = "futures-sink"
846
+ version = "0.3.32"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
849
+
850
+ [[package]]
851
+ name = "futures-task"
852
+ version = "0.3.32"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
855
+
856
+ [[package]]
857
+ name = "futures-util"
858
+ version = "0.3.32"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
861
+ dependencies = [
862
+ "futures-core",
863
+ "futures-io",
864
+ "futures-sink",
865
+ "futures-task",
866
+ "memchr",
867
+ "pin-project-lite",
868
+ "slab",
869
+ ]
870
+
871
+ [[package]]
872
+ name = "getrandom"
873
+ version = "0.2.17"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
876
+ dependencies = [
877
+ "cfg-if",
878
+ "js-sys",
879
+ "libc",
880
+ "wasi",
881
+ "wasm-bindgen",
882
+ ]
883
+
884
+ [[package]]
885
+ name = "getrandom"
886
+ version = "0.3.4"
887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
888
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
889
+ dependencies = [
890
+ "cfg-if",
891
+ "js-sys",
892
+ "libc",
893
+ "r-efi 5.3.0",
894
+ "wasip2",
895
+ "wasm-bindgen",
896
+ ]
897
+
898
+ [[package]]
899
+ name = "getrandom"
900
+ version = "0.4.2"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
903
+ dependencies = [
904
+ "cfg-if",
905
+ "libc",
906
+ "r-efi 6.0.0",
907
+ "wasip2",
908
+ "wasip3",
909
+ ]
910
+
911
+ [[package]]
912
+ name = "glob"
913
+ version = "0.3.3"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
916
+
917
+ [[package]]
918
+ name = "h2"
919
+ version = "0.4.13"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
922
+ dependencies = [
923
+ "atomic-waker",
924
+ "bytes",
925
+ "fnv",
926
+ "futures-core",
927
+ "futures-sink",
928
+ "http",
929
+ "indexmap",
930
+ "slab",
931
+ "tokio",
932
+ "tokio-util",
933
+ "tracing",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "half"
938
+ version = "2.7.1"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
941
+ dependencies = [
942
+ "cfg-if",
943
+ "crunchy",
944
+ "zerocopy",
945
+ ]
946
+
947
+ [[package]]
948
+ name = "haqumei"
949
+ version = "0.6.4"
950
+ dependencies = [
951
+ "arc-swap",
952
+ "bindgen",
953
+ "cc",
954
+ "crossbeam-channel",
955
+ "digest-io",
956
+ "dirs",
957
+ "fs4",
958
+ "glob",
959
+ "haqumei-jlabel",
960
+ "haqumei-macros",
961
+ "hex",
962
+ "libc",
963
+ "log",
964
+ "moka",
965
+ "ndarray",
966
+ "ort",
967
+ "phf",
968
+ "rayon",
969
+ "reqwest",
970
+ "serde",
971
+ "sha2",
972
+ "tar",
973
+ "tempfile",
974
+ "thiserror 2.0.18",
975
+ "unicode-normalization",
976
+ "vibrato-rkyv",
977
+ "walkdir",
978
+ "zstd",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "haqumei-bench"
983
+ version = "0.1.0"
984
+ dependencies = [
985
+ "criterion",
986
+ "haqumei",
987
+ ]
988
+
989
+ [[package]]
990
+ name = "haqumei-cli"
991
+ version = "0.1.6"
992
+ dependencies = [
993
+ "anyhow",
994
+ "clap",
995
+ "env_logger",
996
+ "haqumei",
997
+ "log",
998
+ "serde",
999
+ "serde_json",
1000
+ ]
1001
+
1002
+ [[package]]
1003
+ name = "haqumei-dict-tool"
1004
+ version = "0.1.0"
1005
+ dependencies = [
1006
+ "csv",
1007
+ "glob",
1008
+ "haqumei",
1009
+ "thiserror 2.0.18",
1010
+ ]
1011
+
1012
+ [[package]]
1013
+ name = "haqumei-eval"
1014
+ version = "0.1.0"
1015
+ dependencies = [
1016
+ "csv",
1017
+ "digest-io",
1018
+ "haqumei",
1019
+ "hex",
1020
+ "rayon",
1021
+ "regex",
1022
+ "reqwest",
1023
+ "sha2",
1024
+ "similar",
1025
+ "tempfile",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "haqumei-jlabel"
1030
+ version = "0.1.0"
1031
+ dependencies = [
1032
+ "serde",
1033
+ "thiserror 2.0.18",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "haqumei-macros"
1038
+ version = "0.1.1"
1039
+ dependencies = [
1040
+ "proc-macro2",
1041
+ "quote",
1042
+ "serde",
1043
+ "syn",
1044
+ ]
1045
+
1046
+ [[package]]
1047
+ name = "haqumei-python"
1048
+ version = "0.6.4"
1049
+ dependencies = [
1050
+ "haqumei",
1051
+ "openssl",
1052
+ "pyo3",
1053
+ ]
1054
+
1055
+ [[package]]
1056
+ name = "hashbrown"
1057
+ version = "0.15.5"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1060
+ dependencies = [
1061
+ "foldhash 0.1.5",
1062
+ ]
1063
+
1064
+ [[package]]
1065
+ name = "hashbrown"
1066
+ version = "0.16.1"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1069
+ dependencies = [
1070
+ "allocator-api2",
1071
+ "equivalent",
1072
+ "foldhash 0.2.0",
1073
+ ]
1074
+
1075
+ [[package]]
1076
+ name = "hashbrown"
1077
+ version = "0.17.0"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
1080
+ dependencies = [
1081
+ "allocator-api2",
1082
+ "equivalent",
1083
+ "foldhash 0.2.0",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "heck"
1088
+ version = "0.5.0"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1091
+
1092
+ [[package]]
1093
+ name = "hermit-abi"
1094
+ version = "0.5.2"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1097
+
1098
+ [[package]]
1099
+ name = "hex"
1100
+ version = "0.4.3"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1103
+
1104
+ [[package]]
1105
+ name = "hmac-sha256"
1106
+ version = "1.1.14"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "ec9d92d097f4749b64e8cc33d924d9f40a2d4eb91402b458014b781f5733d60f"
1109
+
1110
+ [[package]]
1111
+ name = "http"
1112
+ version = "1.4.0"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1115
+ dependencies = [
1116
+ "bytes",
1117
+ "itoa",
1118
+ ]
1119
+
1120
+ [[package]]
1121
+ name = "http-body"
1122
+ version = "1.0.1"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1125
+ dependencies = [
1126
+ "bytes",
1127
+ "http",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "http-body-util"
1132
+ version = "0.1.3"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1135
+ dependencies = [
1136
+ "bytes",
1137
+ "futures-core",
1138
+ "http",
1139
+ "http-body",
1140
+ "pin-project-lite",
1141
+ ]
1142
+
1143
+ [[package]]
1144
+ name = "httparse"
1145
+ version = "1.10.1"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1148
+
1149
+ [[package]]
1150
+ name = "hybrid-array"
1151
+ version = "0.4.10"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "3944cf8cf766b40e2a1a333ee5e9b563f854d5fa49d6a8ca2764e97c6eddb214"
1154
+ dependencies = [
1155
+ "typenum",
1156
+ ]
1157
+
1158
+ [[package]]
1159
+ name = "hyper"
1160
+ version = "1.8.1"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1163
+ dependencies = [
1164
+ "atomic-waker",
1165
+ "bytes",
1166
+ "futures-channel",
1167
+ "futures-core",
1168
+ "h2",
1169
+ "http",
1170
+ "http-body",
1171
+ "httparse",
1172
+ "itoa",
1173
+ "pin-project-lite",
1174
+ "pin-utils",
1175
+ "smallvec",
1176
+ "tokio",
1177
+ "want",
1178
+ ]
1179
+
1180
+ [[package]]
1181
+ name = "hyper-rustls"
1182
+ version = "0.27.7"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1185
+ dependencies = [
1186
+ "http",
1187
+ "hyper",
1188
+ "hyper-util",
1189
+ "rustls",
1190
+ "rustls-pki-types",
1191
+ "tokio",
1192
+ "tokio-rustls",
1193
+ "tower-service",
1194
+ ]
1195
+
1196
+ [[package]]
1197
+ name = "hyper-util"
1198
+ version = "0.1.20"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1201
+ dependencies = [
1202
+ "base64",
1203
+ "bytes",
1204
+ "futures-channel",
1205
+ "futures-util",
1206
+ "http",
1207
+ "http-body",
1208
+ "hyper",
1209
+ "ipnet",
1210
+ "libc",
1211
+ "percent-encoding",
1212
+ "pin-project-lite",
1213
+ "socket2",
1214
+ "system-configuration",
1215
+ "tokio",
1216
+ "tower-service",
1217
+ "tracing",
1218
+ "windows-registry",
1219
+ ]
1220
+
1221
+ [[package]]
1222
+ name = "iana-time-zone"
1223
+ version = "0.1.65"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1226
+ dependencies = [
1227
+ "android_system_properties",
1228
+ "core-foundation-sys",
1229
+ "iana-time-zone-haiku",
1230
+ "js-sys",
1231
+ "log",
1232
+ "wasm-bindgen",
1233
+ "windows-core",
1234
+ ]
1235
+
1236
+ [[package]]
1237
+ name = "iana-time-zone-haiku"
1238
+ version = "0.1.2"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1241
+ dependencies = [
1242
+ "cc",
1243
+ ]
1244
+
1245
+ [[package]]
1246
+ name = "icu_collections"
1247
+ version = "2.1.1"
1248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1249
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1250
+ dependencies = [
1251
+ "displaydoc",
1252
+ "potential_utf",
1253
+ "yoke",
1254
+ "zerofrom",
1255
+ "zerovec",
1256
+ ]
1257
+
1258
+ [[package]]
1259
+ name = "icu_locale_core"
1260
+ version = "2.1.1"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1263
+ dependencies = [
1264
+ "displaydoc",
1265
+ "litemap",
1266
+ "tinystr",
1267
+ "writeable",
1268
+ "zerovec",
1269
+ ]
1270
+
1271
+ [[package]]
1272
+ name = "icu_normalizer"
1273
+ version = "2.1.1"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1276
+ dependencies = [
1277
+ "icu_collections",
1278
+ "icu_normalizer_data",
1279
+ "icu_properties",
1280
+ "icu_provider",
1281
+ "smallvec",
1282
+ "zerovec",
1283
+ ]
1284
+
1285
+ [[package]]
1286
+ name = "icu_normalizer_data"
1287
+ version = "2.1.1"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1290
+
1291
+ [[package]]
1292
+ name = "icu_properties"
1293
+ version = "2.1.2"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1296
+ dependencies = [
1297
+ "icu_collections",
1298
+ "icu_locale_core",
1299
+ "icu_properties_data",
1300
+ "icu_provider",
1301
+ "zerotrie",
1302
+ "zerovec",
1303
+ ]
1304
+
1305
+ [[package]]
1306
+ name = "icu_properties_data"
1307
+ version = "2.1.2"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1310
+
1311
+ [[package]]
1312
+ name = "icu_provider"
1313
+ version = "2.1.1"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1316
+ dependencies = [
1317
+ "displaydoc",
1318
+ "icu_locale_core",
1319
+ "writeable",
1320
+ "yoke",
1321
+ "zerofrom",
1322
+ "zerotrie",
1323
+ "zerovec",
1324
+ ]
1325
+
1326
+ [[package]]
1327
+ name = "id-arena"
1328
+ version = "2.3.0"
1329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1330
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1331
+
1332
+ [[package]]
1333
+ name = "idna"
1334
+ version = "1.1.0"
1335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1336
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1337
+ dependencies = [
1338
+ "idna_adapter",
1339
+ "smallvec",
1340
+ "utf8_iter",
1341
+ ]
1342
+
1343
+ [[package]]
1344
+ name = "idna_adapter"
1345
+ version = "1.2.1"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1348
+ dependencies = [
1349
+ "icu_normalizer",
1350
+ "icu_properties",
1351
+ ]
1352
+
1353
+ [[package]]
1354
+ name = "indexmap"
1355
+ version = "2.13.0"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1358
+ dependencies = [
1359
+ "equivalent",
1360
+ "hashbrown 0.16.1",
1361
+ "serde",
1362
+ "serde_core",
1363
+ ]
1364
+
1365
+ [[package]]
1366
+ name = "ipnet"
1367
+ version = "2.12.0"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1370
+
1371
+ [[package]]
1372
+ name = "iri-string"
1373
+ version = "0.7.10"
1374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
1376
+ dependencies = [
1377
+ "memchr",
1378
+ "serde",
1379
+ ]
1380
+
1381
+ [[package]]
1382
+ name = "is-terminal"
1383
+ version = "0.4.17"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1386
+ dependencies = [
1387
+ "hermit-abi",
1388
+ "libc",
1389
+ "windows-sys 0.61.2",
1390
+ ]
1391
+
1392
+ [[package]]
1393
+ name = "is_terminal_polyfill"
1394
+ version = "1.70.2"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1397
+
1398
+ [[package]]
1399
+ name = "itertools"
1400
+ version = "0.13.0"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1403
+ dependencies = [
1404
+ "either",
1405
+ ]
1406
+
1407
+ [[package]]
1408
+ name = "itoa"
1409
+ version = "1.0.17"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1412
+
1413
+ [[package]]
1414
+ name = "jiff"
1415
+ version = "0.2.23"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "1a3546dc96b6d42c5f24902af9e2538e82e39ad350b0c766eb3fbf2d8f3d8359"
1418
+ dependencies = [
1419
+ "jiff-static",
1420
+ "log",
1421
+ "portable-atomic",
1422
+ "portable-atomic-util",
1423
+ "serde_core",
1424
+ ]
1425
+
1426
+ [[package]]
1427
+ name = "jiff-static"
1428
+ version = "0.2.23"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "2a8c8b344124222efd714b73bb41f8b5120b27a7cc1c75593a6ff768d9d05aa4"
1431
+ dependencies = [
1432
+ "proc-macro2",
1433
+ "quote",
1434
+ "syn",
1435
+ ]
1436
+
1437
+ [[package]]
1438
+ name = "jni"
1439
+ version = "0.21.1"
1440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1441
+ checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
1442
+ dependencies = [
1443
+ "cesu8",
1444
+ "cfg-if",
1445
+ "combine",
1446
+ "jni-sys",
1447
+ "log",
1448
+ "thiserror 1.0.69",
1449
+ "walkdir",
1450
+ "windows-sys 0.45.0",
1451
+ ]
1452
+
1453
+ [[package]]
1454
+ name = "jni-sys"
1455
+ version = "0.3.0"
1456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1457
+ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
1458
+
1459
+ [[package]]
1460
+ name = "jobserver"
1461
+ version = "0.1.34"
1462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1463
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1464
+ dependencies = [
1465
+ "getrandom 0.3.4",
1466
+ "libc",
1467
+ ]
1468
+
1469
+ [[package]]
1470
+ name = "js-sys"
1471
+ version = "0.3.91"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
1474
+ dependencies = [
1475
+ "once_cell",
1476
+ "wasm-bindgen",
1477
+ ]
1478
+
1479
+ [[package]]
1480
+ name = "leb128fmt"
1481
+ version = "0.1.0"
1482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1483
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1484
+
1485
+ [[package]]
1486
+ name = "libc"
1487
+ version = "0.2.186"
1488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1489
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1490
+
1491
+ [[package]]
1492
+ name = "libloading"
1493
+ version = "0.8.9"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1496
+ dependencies = [
1497
+ "cfg-if",
1498
+ "windows-link",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "libredox"
1503
+ version = "0.1.14"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "1744e39d1d6a9948f4f388969627434e31128196de472883b39f148769bfe30a"
1506
+ dependencies = [
1507
+ "bitflags",
1508
+ "libc",
1509
+ "plain",
1510
+ "redox_syscall 0.7.3",
1511
+ ]
1512
+
1513
+ [[package]]
1514
+ name = "linux-raw-sys"
1515
+ version = "0.12.1"
1516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1517
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1518
+
1519
+ [[package]]
1520
+ name = "litemap"
1521
+ version = "0.8.1"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1524
+
1525
+ [[package]]
1526
+ name = "lock_api"
1527
+ version = "0.4.14"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1530
+ dependencies = [
1531
+ "scopeguard",
1532
+ ]
1533
+
1534
+ [[package]]
1535
+ name = "log"
1536
+ version = "0.4.29"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1539
+
1540
+ [[package]]
1541
+ name = "lru-slab"
1542
+ version = "0.1.2"
1543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1544
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1545
+
1546
+ [[package]]
1547
+ name = "lzma-rust2"
1548
+ version = "0.15.7"
1549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1550
+ checksum = "1670343e58806300d87950e3401e820b519b9384281bbabfb15e3636689ffd69"
1551
+
1552
+ [[package]]
1553
+ name = "lzma-sys"
1554
+ version = "0.1.20"
1555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1556
+ checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
1557
+ dependencies = [
1558
+ "cc",
1559
+ "libc",
1560
+ "pkg-config",
1561
+ ]
1562
+
1563
+ [[package]]
1564
+ name = "matrixmultiply"
1565
+ version = "0.3.10"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
1568
+ dependencies = [
1569
+ "autocfg",
1570
+ "rawpointer",
1571
+ ]
1572
+
1573
+ [[package]]
1574
+ name = "memchr"
1575
+ version = "2.8.0"
1576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1577
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1578
+
1579
+ [[package]]
1580
+ name = "memmap2"
1581
+ version = "0.9.10"
1582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1583
+ checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
1584
+ dependencies = [
1585
+ "libc",
1586
+ ]
1587
+
1588
+ [[package]]
1589
+ name = "mime"
1590
+ version = "0.3.17"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1593
+
1594
+ [[package]]
1595
+ name = "minimal-lexical"
1596
+ version = "0.2.1"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1599
+
1600
+ [[package]]
1601
+ name = "mio"
1602
+ version = "1.1.1"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1605
+ dependencies = [
1606
+ "libc",
1607
+ "wasi",
1608
+ "windows-sys 0.61.2",
1609
+ ]
1610
+
1611
+ [[package]]
1612
+ name = "moka"
1613
+ version = "0.12.15"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "957228ad12042ee839f93c8f257b62b4c0ab5eaae1d4fa60de53b27c9d7c5046"
1616
+ dependencies = [
1617
+ "crossbeam-channel",
1618
+ "crossbeam-epoch",
1619
+ "crossbeam-utils",
1620
+ "equivalent",
1621
+ "parking_lot",
1622
+ "portable-atomic",
1623
+ "smallvec",
1624
+ "tagptr",
1625
+ "uuid",
1626
+ ]
1627
+
1628
+ [[package]]
1629
+ name = "munge"
1630
+ version = "0.4.7"
1631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1632
+ checksum = "5e17401f259eba956ca16491461b6e8f72913a0a114e39736ce404410f915a0c"
1633
+ dependencies = [
1634
+ "munge_macro",
1635
+ ]
1636
+
1637
+ [[package]]
1638
+ name = "munge_macro"
1639
+ version = "0.4.7"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "4568f25ccbd45ab5d5603dc34318c1ec56b117531781260002151b8530a9f931"
1642
+ dependencies = [
1643
+ "proc-macro2",
1644
+ "quote",
1645
+ "syn",
1646
+ ]
1647
+
1648
+ [[package]]
1649
+ name = "native-tls"
1650
+ version = "0.2.18"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
1653
+ dependencies = [
1654
+ "libc",
1655
+ "log",
1656
+ "openssl",
1657
+ "openssl-probe",
1658
+ "openssl-sys",
1659
+ "schannel",
1660
+ "security-framework",
1661
+ "security-framework-sys",
1662
+ "tempfile",
1663
+ ]
1664
+
1665
+ [[package]]
1666
+ name = "ndarray"
1667
+ version = "0.17.2"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
1670
+ dependencies = [
1671
+ "matrixmultiply",
1672
+ "num-complex",
1673
+ "num-integer",
1674
+ "num-traits",
1675
+ "portable-atomic",
1676
+ "portable-atomic-util",
1677
+ "rawpointer",
1678
+ ]
1679
+
1680
+ [[package]]
1681
+ name = "nom"
1682
+ version = "7.1.3"
1683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1685
+ dependencies = [
1686
+ "memchr",
1687
+ "minimal-lexical",
1688
+ ]
1689
+
1690
+ [[package]]
1691
+ name = "num-complex"
1692
+ version = "0.4.6"
1693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1694
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1695
+ dependencies = [
1696
+ "num-traits",
1697
+ ]
1698
+
1699
+ [[package]]
1700
+ name = "num-conv"
1701
+ version = "0.2.0"
1702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1703
+ checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
1704
+
1705
+ [[package]]
1706
+ name = "num-integer"
1707
+ version = "0.1.46"
1708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1709
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1710
+ dependencies = [
1711
+ "num-traits",
1712
+ ]
1713
+
1714
+ [[package]]
1715
+ name = "num-traits"
1716
+ version = "0.2.19"
1717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1718
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1719
+ dependencies = [
1720
+ "autocfg",
1721
+ ]
1722
+
1723
+ [[package]]
1724
+ name = "once_cell"
1725
+ version = "1.21.3"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1728
+
1729
+ [[package]]
1730
+ name = "once_cell_polyfill"
1731
+ version = "1.70.2"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1734
+
1735
+ [[package]]
1736
+ name = "oorandom"
1737
+ version = "11.1.5"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1740
+
1741
+ [[package]]
1742
+ name = "openssl"
1743
+ version = "0.10.80"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "a45fa2aa886c42762255da344f0a0d313e254066c46aad76f300c3d3da62d967"
1746
+ dependencies = [
1747
+ "bitflags",
1748
+ "cfg-if",
1749
+ "foreign-types",
1750
+ "libc",
1751
+ "openssl-macros",
1752
+ "openssl-sys",
1753
+ ]
1754
+
1755
+ [[package]]
1756
+ name = "openssl-macros"
1757
+ version = "0.1.1"
1758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1759
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1760
+ dependencies = [
1761
+ "proc-macro2",
1762
+ "quote",
1763
+ "syn",
1764
+ ]
1765
+
1766
+ [[package]]
1767
+ name = "openssl-probe"
1768
+ version = "0.2.1"
1769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1770
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1771
+
1772
+ [[package]]
1773
+ name = "openssl-src"
1774
+ version = "300.6.0+3.6.2"
1775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1776
+ checksum = "a8e8cbfd3a4a8c8f089147fd7aaa33cf8c7450c4d09f8f80698a0cf093abeff4"
1777
+ dependencies = [
1778
+ "cc",
1779
+ ]
1780
+
1781
+ [[package]]
1782
+ name = "openssl-sys"
1783
+ version = "0.9.116"
1784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1785
+ checksum = "f28a22dc7140cda5f096e5e7724a6962ca81a7f8bfd2979f9b18c11af56318c4"
1786
+ dependencies = [
1787
+ "cc",
1788
+ "libc",
1789
+ "openssl-src",
1790
+ "pkg-config",
1791
+ "vcpkg",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "option-ext"
1796
+ version = "0.2.0"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1799
+
1800
+ [[package]]
1801
+ name = "ort"
1802
+ version = "2.0.0-rc.11"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "4a5df903c0d2c07b56950f1058104ab0c8557159f2741782223704de9be73c3c"
1805
+ dependencies = [
1806
+ "ndarray",
1807
+ "ort-sys",
1808
+ "smallvec",
1809
+ "tracing",
1810
+ "ureq",
1811
+ ]
1812
+
1813
+ [[package]]
1814
+ name = "ort-sys"
1815
+ version = "2.0.0-rc.11"
1816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1817
+ checksum = "06503bb33f294c5f1ba484011e053bfa6ae227074bdb841e9863492dc5960d4b"
1818
+ dependencies = [
1819
+ "hmac-sha256",
1820
+ "lzma-rust2",
1821
+ "ureq",
1822
+ ]
1823
+
1824
+ [[package]]
1825
+ name = "page_size"
1826
+ version = "0.6.0"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
1829
+ dependencies = [
1830
+ "libc",
1831
+ "winapi",
1832
+ ]
1833
+
1834
+ [[package]]
1835
+ name = "parking_lot"
1836
+ version = "0.12.5"
1837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1838
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1839
+ dependencies = [
1840
+ "lock_api",
1841
+ "parking_lot_core",
1842
+ ]
1843
+
1844
+ [[package]]
1845
+ name = "parking_lot_core"
1846
+ version = "0.9.12"
1847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1848
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1849
+ dependencies = [
1850
+ "cfg-if",
1851
+ "libc",
1852
+ "redox_syscall 0.5.18",
1853
+ "smallvec",
1854
+ "windows-link",
1855
+ ]
1856
+
1857
+ [[package]]
1858
+ name = "paste"
1859
+ version = "1.0.15"
1860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1861
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1862
+
1863
+ [[package]]
1864
+ name = "pem-rfc7468"
1865
+ version = "1.0.0"
1866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1867
+ checksum = "a6305423e0e7738146434843d1694d621cce767262b2a86910beab705e4493d9"
1868
+ dependencies = [
1869
+ "base64ct",
1870
+ ]
1871
+
1872
+ [[package]]
1873
+ name = "percent-encoding"
1874
+ version = "2.3.2"
1875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1876
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1877
+
1878
+ [[package]]
1879
+ name = "phf"
1880
+ version = "0.13.1"
1881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1882
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
1883
+ dependencies = [
1884
+ "phf_macros",
1885
+ "phf_shared",
1886
+ "serde",
1887
+ ]
1888
+
1889
+ [[package]]
1890
+ name = "phf_generator"
1891
+ version = "0.13.1"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
1894
+ dependencies = [
1895
+ "fastrand",
1896
+ "phf_shared",
1897
+ ]
1898
+
1899
+ [[package]]
1900
+ name = "phf_macros"
1901
+ version = "0.13.1"
1902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1903
+ checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
1904
+ dependencies = [
1905
+ "phf_generator",
1906
+ "phf_shared",
1907
+ "proc-macro2",
1908
+ "quote",
1909
+ "syn",
1910
+ ]
1911
+
1912
+ [[package]]
1913
+ name = "phf_shared"
1914
+ version = "0.13.1"
1915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1916
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
1917
+ dependencies = [
1918
+ "siphasher",
1919
+ ]
1920
+
1921
+ [[package]]
1922
+ name = "pin-project-lite"
1923
+ version = "0.2.17"
1924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1925
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1926
+
1927
+ [[package]]
1928
+ name = "pin-utils"
1929
+ version = "0.1.0"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1932
+
1933
+ [[package]]
1934
+ name = "pkg-config"
1935
+ version = "0.3.32"
1936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1937
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1938
+
1939
+ [[package]]
1940
+ name = "plain"
1941
+ version = "0.2.3"
1942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1943
+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
1944
+
1945
+ [[package]]
1946
+ name = "plotters"
1947
+ version = "0.3.7"
1948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1949
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1950
+ dependencies = [
1951
+ "num-traits",
1952
+ "plotters-backend",
1953
+ "plotters-svg",
1954
+ "wasm-bindgen",
1955
+ "web-sys",
1956
+ ]
1957
+
1958
+ [[package]]
1959
+ name = "plotters-backend"
1960
+ version = "0.3.7"
1961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1962
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1963
+
1964
+ [[package]]
1965
+ name = "plotters-svg"
1966
+ version = "0.3.7"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1969
+ dependencies = [
1970
+ "plotters-backend",
1971
+ ]
1972
+
1973
+ [[package]]
1974
+ name = "portable-atomic"
1975
+ version = "1.13.1"
1976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1977
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1978
+
1979
+ [[package]]
1980
+ name = "portable-atomic-util"
1981
+ version = "0.2.5"
1982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1983
+ checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5"
1984
+ dependencies = [
1985
+ "portable-atomic",
1986
+ ]
1987
+
1988
+ [[package]]
1989
+ name = "potential_utf"
1990
+ version = "0.1.4"
1991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1992
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1993
+ dependencies = [
1994
+ "zerovec",
1995
+ ]
1996
+
1997
+ [[package]]
1998
+ name = "powerfmt"
1999
+ version = "0.2.0"
2000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2001
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2002
+
2003
+ [[package]]
2004
+ name = "ppv-lite86"
2005
+ version = "0.2.21"
2006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2007
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2008
+ dependencies = [
2009
+ "zerocopy",
2010
+ ]
2011
+
2012
+ [[package]]
2013
+ name = "prettyplease"
2014
+ version = "0.2.37"
2015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2016
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2017
+ dependencies = [
2018
+ "proc-macro2",
2019
+ "syn",
2020
+ ]
2021
+
2022
+ [[package]]
2023
+ name = "proc-macro2"
2024
+ version = "1.0.106"
2025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2026
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2027
+ dependencies = [
2028
+ "unicode-ident",
2029
+ ]
2030
+
2031
+ [[package]]
2032
+ name = "ptr_meta"
2033
+ version = "0.3.1"
2034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2035
+ checksum = "0b9a0cf95a1196af61d4f1cbdab967179516d9a4a4312af1f31948f8f6224a79"
2036
+ dependencies = [
2037
+ "ptr_meta_derive",
2038
+ ]
2039
+
2040
+ [[package]]
2041
+ name = "ptr_meta_derive"
2042
+ version = "0.3.1"
2043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2044
+ checksum = "7347867d0a7e1208d93b46767be83e2b8f978c3dad35f775ac8d8847551d6fe1"
2045
+ dependencies = [
2046
+ "proc-macro2",
2047
+ "quote",
2048
+ "syn",
2049
+ ]
2050
+
2051
+ [[package]]
2052
+ name = "pyo3"
2053
+ version = "0.28.3"
2054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2055
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
2056
+ dependencies = [
2057
+ "libc",
2058
+ "once_cell",
2059
+ "portable-atomic",
2060
+ "pyo3-build-config",
2061
+ "pyo3-ffi",
2062
+ "pyo3-macros",
2063
+ ]
2064
+
2065
+ [[package]]
2066
+ name = "pyo3-build-config"
2067
+ version = "0.28.3"
2068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2069
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
2070
+ dependencies = [
2071
+ "target-lexicon",
2072
+ ]
2073
+
2074
+ [[package]]
2075
+ name = "pyo3-ffi"
2076
+ version = "0.28.3"
2077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2078
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
2079
+ dependencies = [
2080
+ "libc",
2081
+ "pyo3-build-config",
2082
+ ]
2083
+
2084
+ [[package]]
2085
+ name = "pyo3-macros"
2086
+ version = "0.28.3"
2087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2088
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
2089
+ dependencies = [
2090
+ "proc-macro2",
2091
+ "pyo3-macros-backend",
2092
+ "quote",
2093
+ "syn",
2094
+ ]
2095
+
2096
+ [[package]]
2097
+ name = "pyo3-macros-backend"
2098
+ version = "0.28.3"
2099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2100
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
2101
+ dependencies = [
2102
+ "heck",
2103
+ "proc-macro2",
2104
+ "pyo3-build-config",
2105
+ "quote",
2106
+ "syn",
2107
+ ]
2108
+
2109
+ [[package]]
2110
+ name = "quinn"
2111
+ version = "0.11.9"
2112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2113
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2114
+ dependencies = [
2115
+ "bytes",
2116
+ "cfg_aliases",
2117
+ "pin-project-lite",
2118
+ "quinn-proto",
2119
+ "quinn-udp",
2120
+ "rustc-hash",
2121
+ "rustls",
2122
+ "socket2",
2123
+ "thiserror 2.0.18",
2124
+ "tokio",
2125
+ "tracing",
2126
+ "web-time",
2127
+ ]
2128
+
2129
+ [[package]]
2130
+ name = "quinn-proto"
2131
+ version = "0.11.13"
2132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2133
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
2134
+ dependencies = [
2135
+ "aws-lc-rs",
2136
+ "bytes",
2137
+ "getrandom 0.3.4",
2138
+ "lru-slab",
2139
+ "rand",
2140
+ "ring",
2141
+ "rustc-hash",
2142
+ "rustls",
2143
+ "rustls-pki-types",
2144
+ "slab",
2145
+ "thiserror 2.0.18",
2146
+ "tinyvec",
2147
+ "tracing",
2148
+ "web-time",
2149
+ ]
2150
+
2151
+ [[package]]
2152
+ name = "quinn-udp"
2153
+ version = "0.5.14"
2154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2155
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2156
+ dependencies = [
2157
+ "cfg_aliases",
2158
+ "libc",
2159
+ "once_cell",
2160
+ "socket2",
2161
+ "tracing",
2162
+ "windows-sys 0.60.2",
2163
+ ]
2164
+
2165
+ [[package]]
2166
+ name = "quote"
2167
+ version = "1.0.45"
2168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2169
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
2170
+ dependencies = [
2171
+ "proc-macro2",
2172
+ ]
2173
+
2174
+ [[package]]
2175
+ name = "r-efi"
2176
+ version = "5.3.0"
2177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2178
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2179
+
2180
+ [[package]]
2181
+ name = "r-efi"
2182
+ version = "6.0.0"
2183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2184
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2185
+
2186
+ [[package]]
2187
+ name = "rancor"
2188
+ version = "0.1.1"
2189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2190
+ checksum = "a063ea72381527c2a0561da9c80000ef822bdd7c3241b1cc1b12100e3df081ee"
2191
+ dependencies = [
2192
+ "ptr_meta",
2193
+ ]
2194
+
2195
+ [[package]]
2196
+ name = "rand"
2197
+ version = "0.9.2"
2198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2199
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2200
+ dependencies = [
2201
+ "rand_chacha",
2202
+ "rand_core",
2203
+ ]
2204
+
2205
+ [[package]]
2206
+ name = "rand_chacha"
2207
+ version = "0.9.0"
2208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2209
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2210
+ dependencies = [
2211
+ "ppv-lite86",
2212
+ "rand_core",
2213
+ ]
2214
+
2215
+ [[package]]
2216
+ name = "rand_core"
2217
+ version = "0.9.5"
2218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2219
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2220
+ dependencies = [
2221
+ "getrandom 0.3.4",
2222
+ ]
2223
+
2224
+ [[package]]
2225
+ name = "rand_xoshiro"
2226
+ version = "0.7.0"
2227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2228
+ checksum = "f703f4665700daf5512dcca5f43afa6af89f09db47fb56be587f80636bda2d41"
2229
+ dependencies = [
2230
+ "rand_core",
2231
+ ]
2232
+
2233
+ [[package]]
2234
+ name = "rawpointer"
2235
+ version = "0.2.1"
2236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2237
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
2238
+
2239
+ [[package]]
2240
+ name = "rayon"
2241
+ version = "1.12.0"
2242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2243
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
2244
+ dependencies = [
2245
+ "either",
2246
+ "rayon-core",
2247
+ ]
2248
+
2249
+ [[package]]
2250
+ name = "rayon-core"
2251
+ version = "1.13.0"
2252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2253
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2254
+ dependencies = [
2255
+ "crossbeam-deque",
2256
+ "crossbeam-utils",
2257
+ ]
2258
+
2259
+ [[package]]
2260
+ name = "redox_syscall"
2261
+ version = "0.5.18"
2262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2263
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2264
+ dependencies = [
2265
+ "bitflags",
2266
+ ]
2267
+
2268
+ [[package]]
2269
+ name = "redox_syscall"
2270
+ version = "0.7.3"
2271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2272
+ checksum = "6ce70a74e890531977d37e532c34d45e9055d2409ed08ddba14529471ed0be16"
2273
+ dependencies = [
2274
+ "bitflags",
2275
+ ]
2276
+
2277
+ [[package]]
2278
+ name = "redox_users"
2279
+ version = "0.5.2"
2280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2281
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
2282
+ dependencies = [
2283
+ "getrandom 0.2.17",
2284
+ "libredox",
2285
+ "thiserror 2.0.18",
2286
+ ]
2287
+
2288
+ [[package]]
2289
+ name = "regex"
2290
+ version = "1.12.3"
2291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2292
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2293
+ dependencies = [
2294
+ "aho-corasick",
2295
+ "memchr",
2296
+ "regex-automata",
2297
+ "regex-syntax",
2298
+ ]
2299
+
2300
+ [[package]]
2301
+ name = "regex-automata"
2302
+ version = "0.4.14"
2303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2304
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2305
+ dependencies = [
2306
+ "aho-corasick",
2307
+ "memchr",
2308
+ "regex-syntax",
2309
+ ]
2310
+
2311
+ [[package]]
2312
+ name = "regex-syntax"
2313
+ version = "0.8.10"
2314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2315
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
2316
+
2317
+ [[package]]
2318
+ name = "rend"
2319
+ version = "0.5.3"
2320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2321
+ checksum = "cadadef317c2f20755a64d7fdc48f9e7178ee6b0e1f7fce33fa60f1d68a276e6"
2322
+ dependencies = [
2323
+ "bytecheck",
2324
+ ]
2325
+
2326
+ [[package]]
2327
+ name = "reqwest"
2328
+ version = "0.13.3"
2329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2330
+ checksum = "62e0021ea2c22aed41653bc7e1419abb2c97e038ff2c33d0e1309e49a97deec0"
2331
+ dependencies = [
2332
+ "base64",
2333
+ "bytes",
2334
+ "encoding_rs",
2335
+ "futures-channel",
2336
+ "futures-core",
2337
+ "futures-util",
2338
+ "h2",
2339
+ "http",
2340
+ "http-body",
2341
+ "http-body-util",
2342
+ "hyper",
2343
+ "hyper-rustls",
2344
+ "hyper-util",
2345
+ "js-sys",
2346
+ "log",
2347
+ "mime",
2348
+ "percent-encoding",
2349
+ "pin-project-lite",
2350
+ "quinn",
2351
+ "rustls",
2352
+ "rustls-pki-types",
2353
+ "rustls-platform-verifier",
2354
+ "sync_wrapper",
2355
+ "tokio",
2356
+ "tokio-rustls",
2357
+ "tower",
2358
+ "tower-http",
2359
+ "tower-service",
2360
+ "url",
2361
+ "wasm-bindgen",
2362
+ "wasm-bindgen-futures",
2363
+ "web-sys",
2364
+ ]
2365
+
2366
+ [[package]]
2367
+ name = "ring"
2368
+ version = "0.17.14"
2369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2370
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2371
+ dependencies = [
2372
+ "cc",
2373
+ "cfg-if",
2374
+ "getrandom 0.2.17",
2375
+ "libc",
2376
+ "untrusted",
2377
+ "windows-sys 0.52.0",
2378
+ ]
2379
+
2380
+ [[package]]
2381
+ name = "rkyv"
2382
+ version = "0.8.16"
2383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2384
+ checksum = "73389e0c99e664f919275ab5b5b0471391fe9a8de61e1dff9b1eaf56a90f16e3"
2385
+ dependencies = [
2386
+ "bytecheck",
2387
+ "bytes",
2388
+ "hashbrown 0.16.1",
2389
+ "hashbrown 0.17.0",
2390
+ "indexmap",
2391
+ "munge",
2392
+ "ptr_meta",
2393
+ "rancor",
2394
+ "rend",
2395
+ "rkyv_derive",
2396
+ "tinyvec",
2397
+ "uuid",
2398
+ ]
2399
+
2400
+ [[package]]
2401
+ name = "rkyv_derive"
2402
+ version = "0.8.16"
2403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2404
+ checksum = "5d2ed0b54125315fb36bd021e82d314d1c126548f871634b483f46b31d13cac6"
2405
+ dependencies = [
2406
+ "proc-macro2",
2407
+ "quote",
2408
+ "syn",
2409
+ ]
2410
+
2411
+ [[package]]
2412
+ name = "rucrf-rkyv"
2413
+ version = "0.3.3-rkyv.2"
2414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2415
+ checksum = "6baee03e5fd41176ddcf95bbc4effabea36839df955226fe77e520bd9b1646a0"
2416
+ dependencies = [
2417
+ "argmin",
2418
+ "argmin-math",
2419
+ "argmin-observer-slog",
2420
+ "crossbeam-channel",
2421
+ "hashbrown 0.16.1",
2422
+ "rkyv",
2423
+ ]
2424
+
2425
+ [[package]]
2426
+ name = "rustc-hash"
2427
+ version = "2.1.1"
2428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2429
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2430
+
2431
+ [[package]]
2432
+ name = "rustix"
2433
+ version = "1.1.4"
2434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2435
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2436
+ dependencies = [
2437
+ "bitflags",
2438
+ "errno",
2439
+ "libc",
2440
+ "linux-raw-sys",
2441
+ "windows-sys 0.61.2",
2442
+ ]
2443
+
2444
+ [[package]]
2445
+ name = "rustls"
2446
+ version = "0.23.37"
2447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2448
+ checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
2449
+ dependencies = [
2450
+ "aws-lc-rs",
2451
+ "once_cell",
2452
+ "rustls-pki-types",
2453
+ "rustls-webpki",
2454
+ "subtle",
2455
+ "zeroize",
2456
+ ]
2457
+
2458
+ [[package]]
2459
+ name = "rustls-native-certs"
2460
+ version = "0.8.3"
2461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2462
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
2463
+ dependencies = [
2464
+ "openssl-probe",
2465
+ "rustls-pki-types",
2466
+ "schannel",
2467
+ "security-framework",
2468
+ ]
2469
+
2470
+ [[package]]
2471
+ name = "rustls-pki-types"
2472
+ version = "1.14.0"
2473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2474
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
2475
+ dependencies = [
2476
+ "web-time",
2477
+ "zeroize",
2478
+ ]
2479
+
2480
+ [[package]]
2481
+ name = "rustls-platform-verifier"
2482
+ version = "0.6.2"
2483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2484
+ checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
2485
+ dependencies = [
2486
+ "core-foundation 0.10.1",
2487
+ "core-foundation-sys",
2488
+ "jni",
2489
+ "log",
2490
+ "once_cell",
2491
+ "rustls",
2492
+ "rustls-native-certs",
2493
+ "rustls-platform-verifier-android",
2494
+ "rustls-webpki",
2495
+ "security-framework",
2496
+ "security-framework-sys",
2497
+ "webpki-root-certs",
2498
+ "windows-sys 0.61.2",
2499
+ ]
2500
+
2501
+ [[package]]
2502
+ name = "rustls-platform-verifier-android"
2503
+ version = "0.1.1"
2504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2505
+ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
2506
+
2507
+ [[package]]
2508
+ name = "rustls-webpki"
2509
+ version = "0.103.9"
2510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2511
+ checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
2512
+ dependencies = [
2513
+ "aws-lc-rs",
2514
+ "ring",
2515
+ "rustls-pki-types",
2516
+ "untrusted",
2517
+ ]
2518
+
2519
+ [[package]]
2520
+ name = "rustversion"
2521
+ version = "1.0.22"
2522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2523
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2524
+
2525
+ [[package]]
2526
+ name = "ryu"
2527
+ version = "1.0.23"
2528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2529
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2530
+
2531
+ [[package]]
2532
+ name = "same-file"
2533
+ version = "1.0.6"
2534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2535
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2536
+ dependencies = [
2537
+ "winapi-util",
2538
+ ]
2539
+
2540
+ [[package]]
2541
+ name = "schannel"
2542
+ version = "0.1.28"
2543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2544
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
2545
+ dependencies = [
2546
+ "windows-sys 0.61.2",
2547
+ ]
2548
+
2549
+ [[package]]
2550
+ name = "scopeguard"
2551
+ version = "1.2.0"
2552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2553
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2554
+
2555
+ [[package]]
2556
+ name = "security-framework"
2557
+ version = "3.7.0"
2558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2559
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2560
+ dependencies = [
2561
+ "bitflags",
2562
+ "core-foundation 0.10.1",
2563
+ "core-foundation-sys",
2564
+ "libc",
2565
+ "security-framework-sys",
2566
+ ]
2567
+
2568
+ [[package]]
2569
+ name = "security-framework-sys"
2570
+ version = "2.17.0"
2571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2572
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2573
+ dependencies = [
2574
+ "core-foundation-sys",
2575
+ "libc",
2576
+ ]
2577
+
2578
+ [[package]]
2579
+ name = "semver"
2580
+ version = "1.0.27"
2581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2582
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
2583
+
2584
+ [[package]]
2585
+ name = "serde"
2586
+ version = "1.0.228"
2587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2588
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2589
+ dependencies = [
2590
+ "serde_core",
2591
+ "serde_derive",
2592
+ ]
2593
+
2594
+ [[package]]
2595
+ name = "serde_core"
2596
+ version = "1.0.228"
2597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2598
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2599
+ dependencies = [
2600
+ "serde_derive",
2601
+ ]
2602
+
2603
+ [[package]]
2604
+ name = "serde_derive"
2605
+ version = "1.0.228"
2606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2607
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2608
+ dependencies = [
2609
+ "proc-macro2",
2610
+ "quote",
2611
+ "syn",
2612
+ ]
2613
+
2614
+ [[package]]
2615
+ name = "serde_json"
2616
+ version = "1.0.149"
2617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2618
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2619
+ dependencies = [
2620
+ "itoa",
2621
+ "memchr",
2622
+ "serde",
2623
+ "serde_core",
2624
+ "zmij",
2625
+ ]
2626
+
2627
+ [[package]]
2628
+ name = "sha2"
2629
+ version = "0.11.0"
2630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2631
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
2632
+ dependencies = [
2633
+ "cfg-if",
2634
+ "cpufeatures",
2635
+ "digest",
2636
+ ]
2637
+
2638
+ [[package]]
2639
+ name = "shlex"
2640
+ version = "1.3.0"
2641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2642
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2643
+
2644
+ [[package]]
2645
+ name = "simdutf8"
2646
+ version = "0.1.5"
2647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2648
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
2649
+
2650
+ [[package]]
2651
+ name = "similar"
2652
+ version = "3.0.0"
2653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2654
+ checksum = "26d0b06eba54f0ca0770f970a3e89823e766ca638dd940f8469fa0fa50c75396"
2655
+ dependencies = [
2656
+ "bstr",
2657
+ ]
2658
+
2659
+ [[package]]
2660
+ name = "siphasher"
2661
+ version = "1.0.2"
2662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2663
+ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
2664
+
2665
+ [[package]]
2666
+ name = "slab"
2667
+ version = "0.4.12"
2668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2669
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2670
+
2671
+ [[package]]
2672
+ name = "slog"
2673
+ version = "2.8.2"
2674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2675
+ checksum = "9b3b8565691b22d2bdfc066426ed48f837fc0c5f2c8cad8d9718f7f99d6995c1"
2676
+ dependencies = [
2677
+ "anyhow",
2678
+ "erased-serde",
2679
+ "rustversion",
2680
+ "serde_core",
2681
+ ]
2682
+
2683
+ [[package]]
2684
+ name = "slog-async"
2685
+ version = "2.8.0"
2686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2687
+ checksum = "72c8038f898a2c79507940990f05386455b3a317d8f18d4caea7cbc3d5096b84"
2688
+ dependencies = [
2689
+ "crossbeam-channel",
2690
+ "slog",
2691
+ "take_mut",
2692
+ "thread_local",
2693
+ ]
2694
+
2695
+ [[package]]
2696
+ name = "slog-term"
2697
+ version = "2.9.2"
2698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2699
+ checksum = "5cb1fc680b38eed6fad4c02b3871c09d2c81db8c96aa4e9c0a34904c830f09b5"
2700
+ dependencies = [
2701
+ "chrono",
2702
+ "is-terminal",
2703
+ "slog",
2704
+ "term",
2705
+ "thread_local",
2706
+ "time",
2707
+ ]
2708
+
2709
+ [[package]]
2710
+ name = "smallvec"
2711
+ version = "1.15.1"
2712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2713
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2714
+
2715
+ [[package]]
2716
+ name = "socket2"
2717
+ version = "0.6.2"
2718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2719
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
2720
+ dependencies = [
2721
+ "libc",
2722
+ "windows-sys 0.60.2",
2723
+ ]
2724
+
2725
+ [[package]]
2726
+ name = "socks"
2727
+ version = "0.3.4"
2728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2729
+ checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b"
2730
+ dependencies = [
2731
+ "byteorder",
2732
+ "libc",
2733
+ "winapi",
2734
+ ]
2735
+
2736
+ [[package]]
2737
+ name = "stable_deref_trait"
2738
+ version = "1.2.1"
2739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2740
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2741
+
2742
+ [[package]]
2743
+ name = "strsim"
2744
+ version = "0.11.1"
2745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2746
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2747
+
2748
+ [[package]]
2749
+ name = "subtle"
2750
+ version = "2.6.1"
2751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2752
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2753
+
2754
+ [[package]]
2755
+ name = "syn"
2756
+ version = "2.0.117"
2757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2758
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2759
+ dependencies = [
2760
+ "proc-macro2",
2761
+ "quote",
2762
+ "unicode-ident",
2763
+ ]
2764
+
2765
+ [[package]]
2766
+ name = "sync_wrapper"
2767
+ version = "1.0.2"
2768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2769
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2770
+ dependencies = [
2771
+ "futures-core",
2772
+ ]
2773
+
2774
+ [[package]]
2775
+ name = "synstructure"
2776
+ version = "0.13.2"
2777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2778
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2779
+ dependencies = [
2780
+ "proc-macro2",
2781
+ "quote",
2782
+ "syn",
2783
+ ]
2784
+
2785
+ [[package]]
2786
+ name = "system-configuration"
2787
+ version = "0.7.0"
2788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2789
+ checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
2790
+ dependencies = [
2791
+ "bitflags",
2792
+ "core-foundation 0.9.4",
2793
+ "system-configuration-sys",
2794
+ ]
2795
+
2796
+ [[package]]
2797
+ name = "system-configuration-sys"
2798
+ version = "0.6.0"
2799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2800
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2801
+ dependencies = [
2802
+ "core-foundation-sys",
2803
+ "libc",
2804
+ ]
2805
+
2806
+ [[package]]
2807
+ name = "tagptr"
2808
+ version = "0.2.0"
2809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2810
+ checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
2811
+
2812
+ [[package]]
2813
+ name = "take_mut"
2814
+ version = "0.2.2"
2815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2816
+ checksum = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60"
2817
+
2818
+ [[package]]
2819
+ name = "tar"
2820
+ version = "0.4.46"
2821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2822
+ checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840"
2823
+ dependencies = [
2824
+ "filetime",
2825
+ "libc",
2826
+ "xattr",
2827
+ ]
2828
+
2829
+ [[package]]
2830
+ name = "target-lexicon"
2831
+ version = "0.13.5"
2832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2833
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2834
+
2835
+ [[package]]
2836
+ name = "tempfile"
2837
+ version = "3.27.0"
2838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2839
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2840
+ dependencies = [
2841
+ "fastrand",
2842
+ "getrandom 0.4.2",
2843
+ "once_cell",
2844
+ "rustix",
2845
+ "windows-sys 0.61.2",
2846
+ ]
2847
+
2848
+ [[package]]
2849
+ name = "term"
2850
+ version = "1.2.1"
2851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2852
+ checksum = "d8c27177b12a6399ffc08b98f76f7c9a1f4fe9fc967c784c5a071fa8d93cf7e1"
2853
+ dependencies = [
2854
+ "windows-sys 0.61.2",
2855
+ ]
2856
+
2857
+ [[package]]
2858
+ name = "thiserror"
2859
+ version = "1.0.69"
2860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2861
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2862
+ dependencies = [
2863
+ "thiserror-impl 1.0.69",
2864
+ ]
2865
+
2866
+ [[package]]
2867
+ name = "thiserror"
2868
+ version = "2.0.18"
2869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2870
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2871
+ dependencies = [
2872
+ "thiserror-impl 2.0.18",
2873
+ ]
2874
+
2875
+ [[package]]
2876
+ name = "thiserror-impl"
2877
+ version = "1.0.69"
2878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2879
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2880
+ dependencies = [
2881
+ "proc-macro2",
2882
+ "quote",
2883
+ "syn",
2884
+ ]
2885
+
2886
+ [[package]]
2887
+ name = "thiserror-impl"
2888
+ version = "2.0.18"
2889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2890
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2891
+ dependencies = [
2892
+ "proc-macro2",
2893
+ "quote",
2894
+ "syn",
2895
+ ]
2896
+
2897
+ [[package]]
2898
+ name = "thread_local"
2899
+ version = "1.1.9"
2900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2901
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2902
+ dependencies = [
2903
+ "cfg-if",
2904
+ ]
2905
+
2906
+ [[package]]
2907
+ name = "time"
2908
+ version = "0.3.47"
2909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2910
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
2911
+ dependencies = [
2912
+ "deranged",
2913
+ "itoa",
2914
+ "num-conv",
2915
+ "powerfmt",
2916
+ "serde_core",
2917
+ "time-core",
2918
+ "time-macros",
2919
+ ]
2920
+
2921
+ [[package]]
2922
+ name = "time-core"
2923
+ version = "0.1.8"
2924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2925
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
2926
+
2927
+ [[package]]
2928
+ name = "time-macros"
2929
+ version = "0.2.27"
2930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2931
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
2932
+ dependencies = [
2933
+ "num-conv",
2934
+ "time-core",
2935
+ ]
2936
+
2937
+ [[package]]
2938
+ name = "tinystr"
2939
+ version = "0.8.2"
2940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2941
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2942
+ dependencies = [
2943
+ "displaydoc",
2944
+ "zerovec",
2945
+ ]
2946
+
2947
+ [[package]]
2948
+ name = "tinytemplate"
2949
+ version = "1.2.1"
2950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2951
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2952
+ dependencies = [
2953
+ "serde",
2954
+ "serde_json",
2955
+ ]
2956
+
2957
+ [[package]]
2958
+ name = "tinyvec"
2959
+ version = "1.10.0"
2960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2961
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
2962
+ dependencies = [
2963
+ "tinyvec_macros",
2964
+ ]
2965
+
2966
+ [[package]]
2967
+ name = "tinyvec_macros"
2968
+ version = "0.1.1"
2969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2970
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2971
+
2972
+ [[package]]
2973
+ name = "tokio"
2974
+ version = "1.50.0"
2975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2976
+ checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
2977
+ dependencies = [
2978
+ "bytes",
2979
+ "libc",
2980
+ "mio",
2981
+ "pin-project-lite",
2982
+ "socket2",
2983
+ "windows-sys 0.61.2",
2984
+ ]
2985
+
2986
+ [[package]]
2987
+ name = "tokio-rustls"
2988
+ version = "0.26.4"
2989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2990
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2991
+ dependencies = [
2992
+ "rustls",
2993
+ "tokio",
2994
+ ]
2995
+
2996
+ [[package]]
2997
+ name = "tokio-util"
2998
+ version = "0.7.18"
2999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3000
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
3001
+ dependencies = [
3002
+ "bytes",
3003
+ "futures-core",
3004
+ "futures-sink",
3005
+ "pin-project-lite",
3006
+ "tokio",
3007
+ ]
3008
+
3009
+ [[package]]
3010
+ name = "tower"
3011
+ version = "0.5.3"
3012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3013
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3014
+ dependencies = [
3015
+ "futures-core",
3016
+ "futures-util",
3017
+ "pin-project-lite",
3018
+ "sync_wrapper",
3019
+ "tokio",
3020
+ "tower-layer",
3021
+ "tower-service",
3022
+ ]
3023
+
3024
+ [[package]]
3025
+ name = "tower-http"
3026
+ version = "0.6.8"
3027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3028
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
3029
+ dependencies = [
3030
+ "bitflags",
3031
+ "bytes",
3032
+ "futures-util",
3033
+ "http",
3034
+ "http-body",
3035
+ "iri-string",
3036
+ "pin-project-lite",
3037
+ "tower",
3038
+ "tower-layer",
3039
+ "tower-service",
3040
+ ]
3041
+
3042
+ [[package]]
3043
+ name = "tower-layer"
3044
+ version = "0.3.3"
3045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3046
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3047
+
3048
+ [[package]]
3049
+ name = "tower-service"
3050
+ version = "0.3.3"
3051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3052
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3053
+
3054
+ [[package]]
3055
+ name = "tracing"
3056
+ version = "0.1.44"
3057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3058
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3059
+ dependencies = [
3060
+ "pin-project-lite",
3061
+ "tracing-core",
3062
+ ]
3063
+
3064
+ [[package]]
3065
+ name = "tracing-core"
3066
+ version = "0.1.36"
3067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3068
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3069
+ dependencies = [
3070
+ "once_cell",
3071
+ ]
3072
+
3073
+ [[package]]
3074
+ name = "try-lock"
3075
+ version = "0.2.5"
3076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3077
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3078
+
3079
+ [[package]]
3080
+ name = "typenum"
3081
+ version = "1.19.0"
3082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3083
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
3084
+
3085
+ [[package]]
3086
+ name = "unicode-ident"
3087
+ version = "1.0.24"
3088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3089
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
3090
+
3091
+ [[package]]
3092
+ name = "unicode-normalization"
3093
+ version = "0.1.25"
3094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3095
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
3096
+ dependencies = [
3097
+ "tinyvec",
3098
+ ]
3099
+
3100
+ [[package]]
3101
+ name = "unicode-xid"
3102
+ version = "0.2.6"
3103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3104
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
3105
+
3106
+ [[package]]
3107
+ name = "untrusted"
3108
+ version = "0.9.0"
3109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3110
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3111
+
3112
+ [[package]]
3113
+ name = "ureq"
3114
+ version = "3.3.0"
3115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3116
+ checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0"
3117
+ dependencies = [
3118
+ "base64",
3119
+ "der",
3120
+ "log",
3121
+ "native-tls",
3122
+ "percent-encoding",
3123
+ "rustls-pki-types",
3124
+ "socks",
3125
+ "ureq-proto",
3126
+ "utf8-zero",
3127
+ "webpki-root-certs",
3128
+ ]
3129
+
3130
+ [[package]]
3131
+ name = "ureq-proto"
3132
+ version = "0.6.0"
3133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3134
+ checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c"
3135
+ dependencies = [
3136
+ "base64",
3137
+ "http",
3138
+ "httparse",
3139
+ "log",
3140
+ ]
3141
+
3142
+ [[package]]
3143
+ name = "url"
3144
+ version = "2.5.8"
3145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3146
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3147
+ dependencies = [
3148
+ "form_urlencoded",
3149
+ "idna",
3150
+ "percent-encoding",
3151
+ "serde",
3152
+ ]
3153
+
3154
+ [[package]]
3155
+ name = "utf8-zero"
3156
+ version = "0.8.1"
3157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3158
+ checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
3159
+
3160
+ [[package]]
3161
+ name = "utf8_iter"
3162
+ version = "1.0.4"
3163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3164
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3165
+
3166
+ [[package]]
3167
+ name = "utf8parse"
3168
+ version = "0.2.2"
3169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3170
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3171
+
3172
+ [[package]]
3173
+ name = "uuid"
3174
+ version = "1.21.0"
3175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3176
+ checksum = "b672338555252d43fd2240c714dc444b8c6fb0a5c5335e65a07bba7742735ddb"
3177
+ dependencies = [
3178
+ "getrandom 0.4.2",
3179
+ "js-sys",
3180
+ "wasm-bindgen",
3181
+ ]
3182
+
3183
+ [[package]]
3184
+ name = "vcpkg"
3185
+ version = "0.2.15"
3186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3187
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3188
+
3189
+ [[package]]
3190
+ name = "vibrato-rkyv"
3191
+ version = "0.7.8"
3192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3193
+ checksum = "55826c7ab91e64944a7412a356d1ccacd39bf8cada88a3eb3e018ab468b1733e"
3194
+ dependencies = [
3195
+ "bumpalo",
3196
+ "crawdad-rkyv",
3197
+ "csv-core",
3198
+ "digest-io",
3199
+ "dirs",
3200
+ "fs4",
3201
+ "hashbrown 0.17.0",
3202
+ "hex",
3203
+ "log",
3204
+ "memmap2",
3205
+ "regex",
3206
+ "reqwest",
3207
+ "rkyv",
3208
+ "rucrf-rkyv",
3209
+ "sha2",
3210
+ "tar",
3211
+ "tempfile",
3212
+ "thiserror 2.0.18",
3213
+ "walkdir",
3214
+ "xz2",
3215
+ "zstd",
3216
+ ]
3217
+
3218
+ [[package]]
3219
+ name = "walkdir"
3220
+ version = "2.5.0"
3221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3222
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3223
+ dependencies = [
3224
+ "same-file",
3225
+ "winapi-util",
3226
+ ]
3227
+
3228
+ [[package]]
3229
+ name = "want"
3230
+ version = "0.3.1"
3231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3232
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3233
+ dependencies = [
3234
+ "try-lock",
3235
+ ]
3236
+
3237
+ [[package]]
3238
+ name = "wasi"
3239
+ version = "0.11.1+wasi-snapshot-preview1"
3240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3241
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3242
+
3243
+ [[package]]
3244
+ name = "wasip2"
3245
+ version = "1.0.2+wasi-0.2.9"
3246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3247
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
3248
+ dependencies = [
3249
+ "wit-bindgen",
3250
+ ]
3251
+
3252
+ [[package]]
3253
+ name = "wasip3"
3254
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
3255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3256
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
3257
+ dependencies = [
3258
+ "wit-bindgen",
3259
+ ]
3260
+
3261
+ [[package]]
3262
+ name = "wasm-bindgen"
3263
+ version = "0.2.114"
3264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3265
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
3266
+ dependencies = [
3267
+ "cfg-if",
3268
+ "once_cell",
3269
+ "rustversion",
3270
+ "wasm-bindgen-macro",
3271
+ "wasm-bindgen-shared",
3272
+ ]
3273
+
3274
+ [[package]]
3275
+ name = "wasm-bindgen-futures"
3276
+ version = "0.4.64"
3277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3278
+ checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
3279
+ dependencies = [
3280
+ "cfg-if",
3281
+ "futures-util",
3282
+ "js-sys",
3283
+ "once_cell",
3284
+ "wasm-bindgen",
3285
+ "web-sys",
3286
+ ]
3287
+
3288
+ [[package]]
3289
+ name = "wasm-bindgen-macro"
3290
+ version = "0.2.114"
3291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3292
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
3293
+ dependencies = [
3294
+ "quote",
3295
+ "wasm-bindgen-macro-support",
3296
+ ]
3297
+
3298
+ [[package]]
3299
+ name = "wasm-bindgen-macro-support"
3300
+ version = "0.2.114"
3301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3302
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
3303
+ dependencies = [
3304
+ "bumpalo",
3305
+ "proc-macro2",
3306
+ "quote",
3307
+ "syn",
3308
+ "wasm-bindgen-shared",
3309
+ ]
3310
+
3311
+ [[package]]
3312
+ name = "wasm-bindgen-shared"
3313
+ version = "0.2.114"
3314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3315
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
3316
+ dependencies = [
3317
+ "unicode-ident",
3318
+ ]
3319
+
3320
+ [[package]]
3321
+ name = "wasm-encoder"
3322
+ version = "0.244.0"
3323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3324
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
3325
+ dependencies = [
3326
+ "leb128fmt",
3327
+ "wasmparser",
3328
+ ]
3329
+
3330
+ [[package]]
3331
+ name = "wasm-metadata"
3332
+ version = "0.244.0"
3333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3334
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
3335
+ dependencies = [
3336
+ "anyhow",
3337
+ "indexmap",
3338
+ "wasm-encoder",
3339
+ "wasmparser",
3340
+ ]
3341
+
3342
+ [[package]]
3343
+ name = "wasmparser"
3344
+ version = "0.244.0"
3345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3346
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
3347
+ dependencies = [
3348
+ "bitflags",
3349
+ "hashbrown 0.15.5",
3350
+ "indexmap",
3351
+ "semver",
3352
+ ]
3353
+
3354
+ [[package]]
3355
+ name = "web-sys"
3356
+ version = "0.3.91"
3357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3358
+ checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
3359
+ dependencies = [
3360
+ "js-sys",
3361
+ "wasm-bindgen",
3362
+ ]
3363
+
3364
+ [[package]]
3365
+ name = "web-time"
3366
+ version = "1.1.0"
3367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3368
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3369
+ dependencies = [
3370
+ "js-sys",
3371
+ "wasm-bindgen",
3372
+ ]
3373
+
3374
+ [[package]]
3375
+ name = "webpki-root-certs"
3376
+ version = "1.0.6"
3377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3378
+ checksum = "804f18a4ac2676ffb4e8b5b5fa9ae38af06df08162314f96a68d2a363e21a8ca"
3379
+ dependencies = [
3380
+ "rustls-pki-types",
3381
+ ]
3382
+
3383
+ [[package]]
3384
+ name = "winapi"
3385
+ version = "0.3.9"
3386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3387
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3388
+ dependencies = [
3389
+ "winapi-i686-pc-windows-gnu",
3390
+ "winapi-x86_64-pc-windows-gnu",
3391
+ ]
3392
+
3393
+ [[package]]
3394
+ name = "winapi-i686-pc-windows-gnu"
3395
+ version = "0.4.0"
3396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3397
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3398
+
3399
+ [[package]]
3400
+ name = "winapi-util"
3401
+ version = "0.1.11"
3402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3403
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3404
+ dependencies = [
3405
+ "windows-sys 0.61.2",
3406
+ ]
3407
+
3408
+ [[package]]
3409
+ name = "winapi-x86_64-pc-windows-gnu"
3410
+ version = "0.4.0"
3411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3412
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3413
+
3414
+ [[package]]
3415
+ name = "windows-core"
3416
+ version = "0.62.2"
3417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3418
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3419
+ dependencies = [
3420
+ "windows-implement",
3421
+ "windows-interface",
3422
+ "windows-link",
3423
+ "windows-result",
3424
+ "windows-strings",
3425
+ ]
3426
+
3427
+ [[package]]
3428
+ name = "windows-implement"
3429
+ version = "0.60.2"
3430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3431
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3432
+ dependencies = [
3433
+ "proc-macro2",
3434
+ "quote",
3435
+ "syn",
3436
+ ]
3437
+
3438
+ [[package]]
3439
+ name = "windows-interface"
3440
+ version = "0.59.3"
3441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3442
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3443
+ dependencies = [
3444
+ "proc-macro2",
3445
+ "quote",
3446
+ "syn",
3447
+ ]
3448
+
3449
+ [[package]]
3450
+ name = "windows-link"
3451
+ version = "0.2.1"
3452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3453
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3454
+
3455
+ [[package]]
3456
+ name = "windows-registry"
3457
+ version = "0.6.1"
3458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3459
+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
3460
+ dependencies = [
3461
+ "windows-link",
3462
+ "windows-result",
3463
+ "windows-strings",
3464
+ ]
3465
+
3466
+ [[package]]
3467
+ name = "windows-result"
3468
+ version = "0.4.1"
3469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3470
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3471
+ dependencies = [
3472
+ "windows-link",
3473
+ ]
3474
+
3475
+ [[package]]
3476
+ name = "windows-strings"
3477
+ version = "0.5.1"
3478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3479
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3480
+ dependencies = [
3481
+ "windows-link",
3482
+ ]
3483
+
3484
+ [[package]]
3485
+ name = "windows-sys"
3486
+ version = "0.45.0"
3487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3488
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
3489
+ dependencies = [
3490
+ "windows-targets 0.42.2",
3491
+ ]
3492
+
3493
+ [[package]]
3494
+ name = "windows-sys"
3495
+ version = "0.52.0"
3496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3497
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3498
+ dependencies = [
3499
+ "windows-targets 0.52.6",
3500
+ ]
3501
+
3502
+ [[package]]
3503
+ name = "windows-sys"
3504
+ version = "0.60.2"
3505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3506
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3507
+ dependencies = [
3508
+ "windows-targets 0.53.5",
3509
+ ]
3510
+
3511
+ [[package]]
3512
+ name = "windows-sys"
3513
+ version = "0.61.2"
3514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3515
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3516
+ dependencies = [
3517
+ "windows-link",
3518
+ ]
3519
+
3520
+ [[package]]
3521
+ name = "windows-targets"
3522
+ version = "0.42.2"
3523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3524
+ checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
3525
+ dependencies = [
3526
+ "windows_aarch64_gnullvm 0.42.2",
3527
+ "windows_aarch64_msvc 0.42.2",
3528
+ "windows_i686_gnu 0.42.2",
3529
+ "windows_i686_msvc 0.42.2",
3530
+ "windows_x86_64_gnu 0.42.2",
3531
+ "windows_x86_64_gnullvm 0.42.2",
3532
+ "windows_x86_64_msvc 0.42.2",
3533
+ ]
3534
+
3535
+ [[package]]
3536
+ name = "windows-targets"
3537
+ version = "0.52.6"
3538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3539
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3540
+ dependencies = [
3541
+ "windows_aarch64_gnullvm 0.52.6",
3542
+ "windows_aarch64_msvc 0.52.6",
3543
+ "windows_i686_gnu 0.52.6",
3544
+ "windows_i686_gnullvm 0.52.6",
3545
+ "windows_i686_msvc 0.52.6",
3546
+ "windows_x86_64_gnu 0.52.6",
3547
+ "windows_x86_64_gnullvm 0.52.6",
3548
+ "windows_x86_64_msvc 0.52.6",
3549
+ ]
3550
+
3551
+ [[package]]
3552
+ name = "windows-targets"
3553
+ version = "0.53.5"
3554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3555
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3556
+ dependencies = [
3557
+ "windows-link",
3558
+ "windows_aarch64_gnullvm 0.53.1",
3559
+ "windows_aarch64_msvc 0.53.1",
3560
+ "windows_i686_gnu 0.53.1",
3561
+ "windows_i686_gnullvm 0.53.1",
3562
+ "windows_i686_msvc 0.53.1",
3563
+ "windows_x86_64_gnu 0.53.1",
3564
+ "windows_x86_64_gnullvm 0.53.1",
3565
+ "windows_x86_64_msvc 0.53.1",
3566
+ ]
3567
+
3568
+ [[package]]
3569
+ name = "windows_aarch64_gnullvm"
3570
+ version = "0.42.2"
3571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3572
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
3573
+
3574
+ [[package]]
3575
+ name = "windows_aarch64_gnullvm"
3576
+ version = "0.52.6"
3577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3578
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3579
+
3580
+ [[package]]
3581
+ name = "windows_aarch64_gnullvm"
3582
+ version = "0.53.1"
3583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3584
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3585
+
3586
+ [[package]]
3587
+ name = "windows_aarch64_msvc"
3588
+ version = "0.42.2"
3589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3590
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
3591
+
3592
+ [[package]]
3593
+ name = "windows_aarch64_msvc"
3594
+ version = "0.52.6"
3595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3596
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3597
+
3598
+ [[package]]
3599
+ name = "windows_aarch64_msvc"
3600
+ version = "0.53.1"
3601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3602
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3603
+
3604
+ [[package]]
3605
+ name = "windows_i686_gnu"
3606
+ version = "0.42.2"
3607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3608
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
3609
+
3610
+ [[package]]
3611
+ name = "windows_i686_gnu"
3612
+ version = "0.52.6"
3613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3614
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3615
+
3616
+ [[package]]
3617
+ name = "windows_i686_gnu"
3618
+ version = "0.53.1"
3619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3620
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3621
+
3622
+ [[package]]
3623
+ name = "windows_i686_gnullvm"
3624
+ version = "0.52.6"
3625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3626
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3627
+
3628
+ [[package]]
3629
+ name = "windows_i686_gnullvm"
3630
+ version = "0.53.1"
3631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3632
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3633
+
3634
+ [[package]]
3635
+ name = "windows_i686_msvc"
3636
+ version = "0.42.2"
3637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3638
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
3639
+
3640
+ [[package]]
3641
+ name = "windows_i686_msvc"
3642
+ version = "0.52.6"
3643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3644
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3645
+
3646
+ [[package]]
3647
+ name = "windows_i686_msvc"
3648
+ version = "0.53.1"
3649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3650
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3651
+
3652
+ [[package]]
3653
+ name = "windows_x86_64_gnu"
3654
+ version = "0.42.2"
3655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3656
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
3657
+
3658
+ [[package]]
3659
+ name = "windows_x86_64_gnu"
3660
+ version = "0.52.6"
3661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3662
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3663
+
3664
+ [[package]]
3665
+ name = "windows_x86_64_gnu"
3666
+ version = "0.53.1"
3667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3668
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3669
+
3670
+ [[package]]
3671
+ name = "windows_x86_64_gnullvm"
3672
+ version = "0.42.2"
3673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3674
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
3675
+
3676
+ [[package]]
3677
+ name = "windows_x86_64_gnullvm"
3678
+ version = "0.52.6"
3679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3680
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3681
+
3682
+ [[package]]
3683
+ name = "windows_x86_64_gnullvm"
3684
+ version = "0.53.1"
3685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3686
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3687
+
3688
+ [[package]]
3689
+ name = "windows_x86_64_msvc"
3690
+ version = "0.42.2"
3691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3692
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
3693
+
3694
+ [[package]]
3695
+ name = "windows_x86_64_msvc"
3696
+ version = "0.52.6"
3697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3698
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3699
+
3700
+ [[package]]
3701
+ name = "windows_x86_64_msvc"
3702
+ version = "0.53.1"
3703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3704
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3705
+
3706
+ [[package]]
3707
+ name = "wit-bindgen"
3708
+ version = "0.51.0"
3709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3710
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3711
+ dependencies = [
3712
+ "wit-bindgen-rust-macro",
3713
+ ]
3714
+
3715
+ [[package]]
3716
+ name = "wit-bindgen-core"
3717
+ version = "0.51.0"
3718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3719
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
3720
+ dependencies = [
3721
+ "anyhow",
3722
+ "heck",
3723
+ "wit-parser",
3724
+ ]
3725
+
3726
+ [[package]]
3727
+ name = "wit-bindgen-rust"
3728
+ version = "0.51.0"
3729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3730
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
3731
+ dependencies = [
3732
+ "anyhow",
3733
+ "heck",
3734
+ "indexmap",
3735
+ "prettyplease",
3736
+ "syn",
3737
+ "wasm-metadata",
3738
+ "wit-bindgen-core",
3739
+ "wit-component",
3740
+ ]
3741
+
3742
+ [[package]]
3743
+ name = "wit-bindgen-rust-macro"
3744
+ version = "0.51.0"
3745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3746
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3747
+ dependencies = [
3748
+ "anyhow",
3749
+ "prettyplease",
3750
+ "proc-macro2",
3751
+ "quote",
3752
+ "syn",
3753
+ "wit-bindgen-core",
3754
+ "wit-bindgen-rust",
3755
+ ]
3756
+
3757
+ [[package]]
3758
+ name = "wit-component"
3759
+ version = "0.244.0"
3760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3761
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3762
+ dependencies = [
3763
+ "anyhow",
3764
+ "bitflags",
3765
+ "indexmap",
3766
+ "log",
3767
+ "serde",
3768
+ "serde_derive",
3769
+ "serde_json",
3770
+ "wasm-encoder",
3771
+ "wasm-metadata",
3772
+ "wasmparser",
3773
+ "wit-parser",
3774
+ ]
3775
+
3776
+ [[package]]
3777
+ name = "wit-parser"
3778
+ version = "0.244.0"
3779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3780
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
3781
+ dependencies = [
3782
+ "anyhow",
3783
+ "id-arena",
3784
+ "indexmap",
3785
+ "log",
3786
+ "semver",
3787
+ "serde",
3788
+ "serde_derive",
3789
+ "serde_json",
3790
+ "unicode-xid",
3791
+ "wasmparser",
3792
+ ]
3793
+
3794
+ [[package]]
3795
+ name = "writeable"
3796
+ version = "0.6.2"
3797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3798
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
3799
+
3800
+ [[package]]
3801
+ name = "xattr"
3802
+ version = "1.6.1"
3803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3804
+ checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
3805
+ dependencies = [
3806
+ "libc",
3807
+ "rustix",
3808
+ ]
3809
+
3810
+ [[package]]
3811
+ name = "xz2"
3812
+ version = "0.1.7"
3813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3814
+ checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
3815
+ dependencies = [
3816
+ "lzma-sys",
3817
+ ]
3818
+
3819
+ [[package]]
3820
+ name = "yoke"
3821
+ version = "0.8.1"
3822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3823
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
3824
+ dependencies = [
3825
+ "stable_deref_trait",
3826
+ "yoke-derive",
3827
+ "zerofrom",
3828
+ ]
3829
+
3830
+ [[package]]
3831
+ name = "yoke-derive"
3832
+ version = "0.8.1"
3833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3834
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
3835
+ dependencies = [
3836
+ "proc-macro2",
3837
+ "quote",
3838
+ "syn",
3839
+ "synstructure",
3840
+ ]
3841
+
3842
+ [[package]]
3843
+ name = "zerocopy"
3844
+ version = "0.8.40"
3845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3846
+ checksum = "a789c6e490b576db9f7e6b6d661bcc9799f7c0ac8352f56ea20193b2681532e5"
3847
+ dependencies = [
3848
+ "zerocopy-derive",
3849
+ ]
3850
+
3851
+ [[package]]
3852
+ name = "zerocopy-derive"
3853
+ version = "0.8.40"
3854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3855
+ checksum = "f65c489a7071a749c849713807783f70672b28094011623e200cb86dcb835953"
3856
+ dependencies = [
3857
+ "proc-macro2",
3858
+ "quote",
3859
+ "syn",
3860
+ ]
3861
+
3862
+ [[package]]
3863
+ name = "zerofrom"
3864
+ version = "0.1.6"
3865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3866
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3867
+ dependencies = [
3868
+ "zerofrom-derive",
3869
+ ]
3870
+
3871
+ [[package]]
3872
+ name = "zerofrom-derive"
3873
+ version = "0.1.6"
3874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3875
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3876
+ dependencies = [
3877
+ "proc-macro2",
3878
+ "quote",
3879
+ "syn",
3880
+ "synstructure",
3881
+ ]
3882
+
3883
+ [[package]]
3884
+ name = "zeroize"
3885
+ version = "1.8.2"
3886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3887
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3888
+
3889
+ [[package]]
3890
+ name = "zerotrie"
3891
+ version = "0.2.3"
3892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3893
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
3894
+ dependencies = [
3895
+ "displaydoc",
3896
+ "yoke",
3897
+ "zerofrom",
3898
+ ]
3899
+
3900
+ [[package]]
3901
+ name = "zerovec"
3902
+ version = "0.11.5"
3903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3904
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
3905
+ dependencies = [
3906
+ "yoke",
3907
+ "zerofrom",
3908
+ "zerovec-derive",
3909
+ ]
3910
+
3911
+ [[package]]
3912
+ name = "zerovec-derive"
3913
+ version = "0.11.2"
3914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3915
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3916
+ dependencies = [
3917
+ "proc-macro2",
3918
+ "quote",
3919
+ "syn",
3920
+ ]
3921
+
3922
+ [[package]]
3923
+ name = "zmij"
3924
+ version = "1.0.21"
3925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3926
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
3927
+
3928
+ [[package]]
3929
+ name = "zstd"
3930
+ version = "0.13.3"
3931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3932
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
3933
+ dependencies = [
3934
+ "zstd-safe",
3935
+ ]
3936
+
3937
+ [[package]]
3938
+ name = "zstd-safe"
3939
+ version = "7.2.4"
3940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3941
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
3942
+ dependencies = [
3943
+ "zstd-sys",
3944
+ ]
3945
+
3946
+ [[package]]
3947
+ name = "zstd-sys"
3948
+ version = "2.0.16+zstd.1.5.7"
3949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3950
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
3951
+ dependencies = [
3952
+ "cc",
3953
+ "pkg-config",
3954
+ ]