jpreprocess 0.1.4__tar.gz → 0.1.6__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 (148) hide show
  1. jpreprocess-0.1.6/Cargo.lock +3242 -0
  2. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/Cargo.toml +36 -24
  3. jpreprocess-0.1.6/PKG-INFO +17 -0
  4. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/bindings/python/Cargo.toml +8 -6
  5. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/bindings/python/README.md +1 -1
  6. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/bindings/python/pytests/test_simple.py +5 -1
  7. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/bindings/python/src/binding.rs +30 -18
  8. jpreprocess-0.1.6/bindings/python/src/dictionary.rs +55 -0
  9. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/bindings/python/src/structs.rs +23 -17
  10. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess/Cargo.toml +17 -11
  11. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess/README.md +3 -6
  12. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess/src/bin/jpreprocess.rs +17 -10
  13. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess/src/dictionary/kind.rs +2 -2
  14. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess/src/dictionary/mod.rs +3 -8
  15. jpreprocess-0.1.6/crates/jpreprocess/src/lib.rs +307 -0
  16. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/Cargo.toml +13 -2
  17. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/README.md +1 -1
  18. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/accent_rule.rs +14 -2
  19. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/error.rs +3 -4
  20. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/lib.rs +5 -0
  21. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/pronunciation/mod.rs +170 -62
  22. jpreprocess-0.1.6/crates/jpreprocess-core/src/token.rs +62 -0
  23. jpreprocess-0.1.6/crates/jpreprocess-core/src/word_details.rs +137 -0
  24. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/word_entry.rs +88 -54
  25. jpreprocess-0.1.6/crates/jpreprocess-core/src/word_line.rs +116 -0
  26. jpreprocess-0.1.6/crates/jpreprocess-dictionary/Cargo.toml +48 -0
  27. jpreprocess-0.1.6/crates/jpreprocess-dictionary/NOTICE.txt +33 -0
  28. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-dictionary/README.md +3 -3
  29. jpreprocess-0.1.6/crates/jpreprocess-dictionary/src/bin/dict_tools/dict_query.rs +65 -0
  30. jpreprocess-0.1.6/crates/jpreprocess-dictionary/src/bin/dict_tools/main.rs +170 -0
  31. jpreprocess-0.1.6/crates/jpreprocess-dictionary/src/dictionary/mod.rs +2 -0
  32. jpreprocess-0.1.6/crates/jpreprocess-dictionary/src/dictionary/to_dict/mod.rs +359 -0
  33. jpreprocess-0.1.6/crates/jpreprocess-dictionary/src/dictionary/to_dict/prefix_dictionary/details.rs +66 -0
  34. jpreprocess-0.1.6/crates/jpreprocess-dictionary/src/dictionary/to_dict/prefix_dictionary/mod.rs +240 -0
  35. jpreprocess-0.1.6/crates/jpreprocess-dictionary/src/dictionary/to_dict/prefix_dictionary/parser.rs +264 -0
  36. jpreprocess-0.1.6/crates/jpreprocess-dictionary/src/dictionary/to_dict/prefix_dictionary/word_entry.rs +105 -0
  37. jpreprocess-0.1.6/crates/jpreprocess-dictionary/src/dictionary/word_encoding.rs +41 -0
  38. jpreprocess-0.1.6/crates/jpreprocess-dictionary/src/lib.rs +5 -0
  39. jpreprocess-0.1.6/crates/jpreprocess-dictionary/src/tokenizer/default.rs +109 -0
  40. jpreprocess-0.1.6/crates/jpreprocess-dictionary/src/tokenizer/identify_dictionary.rs +26 -0
  41. jpreprocess-0.1.6/crates/jpreprocess-dictionary/src/tokenizer/jpreprocess.rs +92 -0
  42. jpreprocess-0.1.6/crates/jpreprocess-dictionary/src/tokenizer/mod.rs +3 -0
  43. jpreprocess-0.1.6/crates/jpreprocess-dictionary/src/word_data.rs +28 -0
  44. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-jpcommon/Cargo.toml +5 -0
  45. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-jpcommon/README.md +1 -1
  46. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-jpcommon/src/label/utterance.rs +0 -6
  47. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-jpcommon/src/lib.rs +2 -0
  48. jpreprocess-0.1.6/crates/jpreprocess-naist-jdic/Cargo.toml +55 -0
  49. jpreprocess-0.1.6/crates/jpreprocess-naist-jdic/NOTICE.txt +152 -0
  50. {jpreprocess-0.1.4/crates/jpreprocess-dictionary-builder → jpreprocess-0.1.6/crates/jpreprocess-naist-jdic}/README.md +8 -6
  51. jpreprocess-0.1.6/crates/jpreprocess-naist-jdic/build.json +45 -0
  52. jpreprocess-0.1.6/crates/jpreprocess-naist-jdic/build.rs +177 -0
  53. jpreprocess-0.1.6/crates/jpreprocess-naist-jdic/src/lib.rs +4 -0
  54. jpreprocess-0.1.6/crates/jpreprocess-naist-jdic/src/lindera.rs +36 -0
  55. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-njd/Cargo.toml +5 -3
  56. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-njd/README.md +1 -1
  57. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-njd/src/lib.rs +27 -13
  58. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-njd/src/node.rs +2 -2
  59. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-njd/src/open_jtalk/accent_type.rs +24 -0
  60. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-njd/src/open_jtalk/digit_sequence/mod.rs +39 -1
  61. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-njd/src/open_jtalk/pronunciation.rs +53 -16
  62. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-njd/src/open_jtalk/unvoiced_vowel.rs +79 -4
  63. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-window/Cargo.toml +5 -0
  64. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-window/README.md +1 -1
  65. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-window/src/lib.rs +2 -0
  66. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/pyproject.toml +1 -1
  67. jpreprocess-0.1.4/Cargo.lock +0 -1592
  68. jpreprocess-0.1.4/PKG-INFO +0 -81
  69. jpreprocess-0.1.4/bindings/python/src/dictionary.rs +0 -43
  70. jpreprocess-0.1.4/crates/jpreprocess/src/bin/dict_tools/dict_query.rs +0 -41
  71. jpreprocess-0.1.4/crates/jpreprocess/src/bin/dict_tools/main.rs +0 -191
  72. jpreprocess-0.1.4/crates/jpreprocess/src/lib.rs +0 -252
  73. jpreprocess-0.1.4/crates/jpreprocess-core/src/word_details.rs +0 -82
  74. jpreprocess-0.1.4/crates/jpreprocess-dictionary/Cargo.toml +0 -27
  75. jpreprocess-0.1.4/crates/jpreprocess-dictionary/src/default.rs +0 -97
  76. jpreprocess-0.1.4/crates/jpreprocess-dictionary/src/lib.rs +0 -96
  77. jpreprocess-0.1.4/crates/jpreprocess-dictionary/src/serializer/jpreprocess/current.rs +0 -93
  78. jpreprocess-0.1.4/crates/jpreprocess-dictionary/src/serializer/jpreprocess/mod.rs +0 -3
  79. jpreprocess-0.1.4/crates/jpreprocess-dictionary/src/serializer/lindera.rs +0 -38
  80. jpreprocess-0.1.4/crates/jpreprocess-dictionary/src/serializer/mod.rs +0 -2
  81. jpreprocess-0.1.4/crates/jpreprocess-dictionary/src/store.rs +0 -50
  82. jpreprocess-0.1.4/crates/jpreprocess-dictionary-builder/Cargo.toml +0 -29
  83. jpreprocess-0.1.4/crates/jpreprocess-dictionary-builder/NOTICE.txt +0 -71
  84. jpreprocess-0.1.4/crates/jpreprocess-dictionary-builder/src/build_dict.rs +0 -186
  85. jpreprocess-0.1.4/crates/jpreprocess-dictionary-builder/src/ipadic_builder.rs +0 -355
  86. jpreprocess-0.1.4/crates/jpreprocess-dictionary-builder/src/lib.rs +0 -3
  87. jpreprocess-0.1.4/crates/jpreprocess-dictionary-builder/src/to_csv/da.rs +0 -92
  88. jpreprocess-0.1.4/crates/jpreprocess-dictionary-builder/src/to_csv/mod.rs +0 -129
  89. jpreprocess-0.1.4/jpreprocess/__init__.py +0 -33
  90. jpreprocess-0.1.4/jpreprocess/dictionary.py +0 -51
  91. jpreprocess-0.1.4/jpreprocess/jpreprocess.pyi +0 -94
  92. jpreprocess-0.1.4/jpreprocess/py.typed +0 -0
  93. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/bindings/python/.gitignore +0 -0
  94. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/bindings/python/src/lib.rs +0 -0
  95. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess/src/normalize_text.rs +0 -0
  96. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/cform.rs +0 -0
  97. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/ctype/five.rs +0 -0
  98. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/ctype/four.rs +0 -0
  99. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/ctype/ka_irregular.rs +0 -0
  100. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/ctype/keiyoushi.rs +0 -0
  101. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/ctype/lower_two.rs +0 -0
  102. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/ctype/mod.rs +0 -0
  103. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/ctype/old.rs +0 -0
  104. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/ctype/one.rs +0 -0
  105. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/ctype/sa_irregular.rs +0 -0
  106. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/ctype/special.rs +0 -0
  107. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/ctype/upper_two.rs +0 -0
  108. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/pos/doushi.rs +0 -0
  109. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/pos/fukushi.rs +0 -0
  110. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/pos/joshi.rs +0 -0
  111. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/pos/keiyoushi.rs +0 -0
  112. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/pos/kigou.rs +0 -0
  113. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/pos/meishi.rs +0 -0
  114. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/pos/mod.rs +0 -0
  115. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/pos/settoushi.rs +0 -0
  116. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/pronunciation/mora.rs +0 -0
  117. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/pronunciation/mora_dict.rs +0 -0
  118. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/pronunciation/mora_enum.rs +0 -0
  119. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-core/src/pronunciation/phoneme.rs +0 -0
  120. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-jpcommon/src/feature/builder.rs +0 -0
  121. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-jpcommon/src/feature/limit.rs +0 -0
  122. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-jpcommon/src/feature/mod.rs +0 -0
  123. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-jpcommon/src/label/accent_phrase.rs +0 -0
  124. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-jpcommon/src/label/breath_group.rs +0 -0
  125. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-jpcommon/src/label/mod.rs +0 -0
  126. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-jpcommon/src/label/word.rs +0 -0
  127. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-jpcommon/src/word_attr/cform.rs +0 -0
  128. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-jpcommon/src/word_attr/ctype.rs +0 -0
  129. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-jpcommon/src/word_attr/mod.rs +0 -0
  130. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-jpcommon/src/word_attr/pos.rs +0 -0
  131. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-njd/src/contrib/currency.rs +0 -0
  132. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-njd/src/contrib/mod.rs +0 -0
  133. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-njd/src/open_jtalk/accent_phrase.rs +0 -0
  134. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-njd/src/open_jtalk/digit/lut/class1.rs +0 -0
  135. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-njd/src/open_jtalk/digit/lut/class2.rs +0 -0
  136. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-njd/src/open_jtalk/digit/lut/class3.rs +0 -0
  137. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-njd/src/open_jtalk/digit/lut/mod.rs +0 -0
  138. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-njd/src/open_jtalk/digit/lut/numeral.rs +0 -0
  139. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-njd/src/open_jtalk/digit/lut/others.rs +0 -0
  140. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-njd/src/open_jtalk/digit/mod.rs +0 -0
  141. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-njd/src/open_jtalk/digit_sequence/builder.rs +0 -0
  142. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-njd/src/open_jtalk/digit_sequence/score.rs +0 -0
  143. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-njd/src/open_jtalk/mod.rs +0 -0
  144. {jpreprocess-0.1.4 → jpreprocess-0.1.6}/crates/jpreprocess-window/src/structures.rs +0 -0
  145. {jpreprocess-0.1.4/bindings/python → jpreprocess-0.1.6}/jpreprocess/__init__.py +0 -0
  146. {jpreprocess-0.1.4/bindings/python → jpreprocess-0.1.6}/jpreprocess/dictionary.py +0 -0
  147. {jpreprocess-0.1.4/bindings/python → jpreprocess-0.1.6}/jpreprocess/jpreprocess.pyi +0 -0
  148. {jpreprocess-0.1.4/bindings/python → jpreprocess-0.1.6}/jpreprocess/py.typed +0 -0
@@ -0,0 +1,3242 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.7.8"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
16
+ dependencies = [
17
+ "getrandom 0.2.17",
18
+ "once_cell",
19
+ "version_check",
20
+ ]
21
+
22
+ [[package]]
23
+ name = "aho-corasick"
24
+ version = "1.1.4"
25
+ source = "registry+https://github.com/rust-lang/crates.io-index"
26
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
27
+ dependencies = [
28
+ "memchr",
29
+ ]
30
+
31
+ [[package]]
32
+ name = "allocator-api2"
33
+ version = "0.2.21"
34
+ source = "registry+https://github.com/rust-lang/crates.io-index"
35
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
36
+
37
+ [[package]]
38
+ name = "android_system_properties"
39
+ version = "0.1.5"
40
+ source = "registry+https://github.com/rust-lang/crates.io-index"
41
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
42
+ dependencies = [
43
+ "libc",
44
+ ]
45
+
46
+ [[package]]
47
+ name = "anstream"
48
+ version = "1.0.0"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
51
+ dependencies = [
52
+ "anstyle",
53
+ "anstyle-parse",
54
+ "anstyle-query",
55
+ "anstyle-wincon",
56
+ "colorchoice",
57
+ "is_terminal_polyfill",
58
+ "utf8parse",
59
+ ]
60
+
61
+ [[package]]
62
+ name = "anstyle"
63
+ version = "1.0.14"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
66
+
67
+ [[package]]
68
+ name = "anstyle-parse"
69
+ version = "1.0.0"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
72
+ dependencies = [
73
+ "utf8parse",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "anstyle-query"
78
+ version = "1.1.5"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
81
+ dependencies = [
82
+ "windows-sys 0.61.2",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "anstyle-wincon"
87
+ version = "3.0.11"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
90
+ dependencies = [
91
+ "anstyle",
92
+ "once_cell_polyfill",
93
+ "windows-sys 0.61.2",
94
+ ]
95
+
96
+ [[package]]
97
+ name = "anyhow"
98
+ version = "1.0.102"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
101
+
102
+ [[package]]
103
+ name = "argmin"
104
+ version = "0.10.0"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "760a49d596b18b881d2fe6e9e6da4608fa64d4a7653ef5cd43bfaa4da018d596"
107
+ dependencies = [
108
+ "anyhow",
109
+ "argmin-math",
110
+ "instant",
111
+ "num-traits",
112
+ "paste",
113
+ "rand 0.8.6",
114
+ "rand_xoshiro",
115
+ "thiserror 1.0.69",
116
+ ]
117
+
118
+ [[package]]
119
+ name = "argmin-math"
120
+ version = "0.4.0"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "d93a0d0269b60bd1cd674de70314e3f0da97406cf8c1936ce760d2a46e0f13fe"
123
+ dependencies = [
124
+ "anyhow",
125
+ "cfg-if",
126
+ "num-complex",
127
+ "num-integer",
128
+ "num-traits",
129
+ "rand 0.8.6",
130
+ "thiserror 1.0.69",
131
+ ]
132
+
133
+ [[package]]
134
+ name = "argmin-observer-slog"
135
+ version = "0.1.0"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "83d798c8ab61e6a55d161775f2ae8c42e56c15b746398878c36234575e6839aa"
138
+ dependencies = [
139
+ "anyhow",
140
+ "argmin",
141
+ "slog",
142
+ "slog-async",
143
+ "slog-term",
144
+ ]
145
+
146
+ [[package]]
147
+ name = "atomic-waker"
148
+ version = "1.1.2"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
151
+
152
+ [[package]]
153
+ name = "autocfg"
154
+ version = "1.5.1"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
157
+
158
+ [[package]]
159
+ name = "aws-lc-rs"
160
+ version = "1.17.0"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "5ec2f1fc3ec205783a5da9a7e6c1509cc69dedf09a1949e412c1e18469326d00"
163
+ dependencies = [
164
+ "aws-lc-sys",
165
+ "zeroize",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "aws-lc-sys"
170
+ version = "0.41.0"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "1a2f9779ce85b93ab6170dd940ad0169b5766ff848247aff13bb788b832fe3f4"
173
+ dependencies = [
174
+ "cc",
175
+ "cmake",
176
+ "dunce",
177
+ "fs_extra",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "base64"
182
+ version = "0.22.1"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
185
+
186
+ [[package]]
187
+ name = "bincode"
188
+ version = "2.0.1"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
191
+ dependencies = [
192
+ "bincode_derive",
193
+ "serde",
194
+ "unty",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "bincode_derive"
199
+ version = "2.0.1"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
202
+ dependencies = [
203
+ "virtue",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "bitflags"
208
+ version = "1.3.2"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
211
+
212
+ [[package]]
213
+ name = "bitflags"
214
+ version = "2.13.0"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
217
+
218
+ [[package]]
219
+ name = "bumpalo"
220
+ version = "3.20.3"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
223
+
224
+ [[package]]
225
+ name = "bytecheck"
226
+ version = "0.8.2"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "0caa33a2c0edca0419d15ac723dff03f1956f7978329b1e3b5fdaaaed9d3ca8b"
229
+ dependencies = [
230
+ "bytecheck_derive",
231
+ "ptr_meta",
232
+ "rancor",
233
+ "simdutf8",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "bytecheck_derive"
238
+ version = "0.8.2"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "89385e82b5d1821d2219e0b095efa2cc1f246cbf99080f3be46a1a85c0d392d9"
241
+ dependencies = [
242
+ "proc-macro2",
243
+ "quote",
244
+ "syn",
245
+ ]
246
+
247
+ [[package]]
248
+ name = "byteorder"
249
+ version = "1.5.0"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
252
+
253
+ [[package]]
254
+ name = "bytes"
255
+ version = "1.11.1"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
258
+
259
+ [[package]]
260
+ name = "cc"
261
+ version = "1.2.63"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
264
+ dependencies = [
265
+ "find-msvc-tools",
266
+ "jobserver",
267
+ "libc",
268
+ "shlex",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "cfg-if"
273
+ version = "1.0.4"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
276
+
277
+ [[package]]
278
+ name = "cfg_aliases"
279
+ version = "0.2.1"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
282
+
283
+ [[package]]
284
+ name = "chrono"
285
+ version = "0.4.45"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
288
+ dependencies = [
289
+ "iana-time-zone",
290
+ "js-sys",
291
+ "num-traits",
292
+ "wasm-bindgen",
293
+ "windows-link",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "clap"
298
+ version = "4.6.1"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
301
+ dependencies = [
302
+ "clap_builder",
303
+ "clap_derive",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "clap_builder"
308
+ version = "4.6.0"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
311
+ dependencies = [
312
+ "anstream",
313
+ "anstyle",
314
+ "clap_lex",
315
+ "strsim",
316
+ ]
317
+
318
+ [[package]]
319
+ name = "clap_derive"
320
+ version = "4.6.1"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
323
+ dependencies = [
324
+ "heck",
325
+ "proc-macro2",
326
+ "quote",
327
+ "syn",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "clap_lex"
332
+ version = "1.1.0"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
335
+
336
+ [[package]]
337
+ name = "cmake"
338
+ version = "0.1.58"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
341
+ dependencies = [
342
+ "cc",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "colorchoice"
347
+ version = "1.0.5"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
350
+
351
+ [[package]]
352
+ name = "combine"
353
+ version = "4.6.7"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
356
+ dependencies = [
357
+ "bytes",
358
+ "memchr",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "core-foundation"
363
+ version = "0.9.4"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
366
+ dependencies = [
367
+ "core-foundation-sys",
368
+ "libc",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "core-foundation"
373
+ version = "0.10.1"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
376
+ dependencies = [
377
+ "core-foundation-sys",
378
+ "libc",
379
+ ]
380
+
381
+ [[package]]
382
+ name = "core-foundation-sys"
383
+ version = "0.8.7"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
386
+
387
+ [[package]]
388
+ name = "crawdad"
389
+ version = "0.3.0"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "87fbd1ecd2ed790e11c8fbe034f9b3e7687404818d1bdfd8218d26ec645ec7c5"
392
+
393
+ [[package]]
394
+ name = "crc32fast"
395
+ version = "1.5.0"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
398
+ dependencies = [
399
+ "cfg-if",
400
+ ]
401
+
402
+ [[package]]
403
+ name = "crossbeam-channel"
404
+ version = "0.5.15"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
407
+ dependencies = [
408
+ "crossbeam-utils",
409
+ ]
410
+
411
+ [[package]]
412
+ name = "crossbeam-utils"
413
+ version = "0.8.21"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
416
+
417
+ [[package]]
418
+ name = "csv"
419
+ version = "1.4.0"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
422
+ dependencies = [
423
+ "csv-core",
424
+ "itoa",
425
+ "ryu",
426
+ "serde_core",
427
+ ]
428
+
429
+ [[package]]
430
+ name = "csv-core"
431
+ version = "0.1.13"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
434
+ dependencies = [
435
+ "memchr",
436
+ ]
437
+
438
+ [[package]]
439
+ name = "daachorse"
440
+ version = "2.1.1"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "db756b5eb7d81d31f31f660f4132f8cf5698de52fca144c143d0ae0cbb5f2e06"
443
+
444
+ [[package]]
445
+ name = "darling"
446
+ version = "0.20.11"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
449
+ dependencies = [
450
+ "darling_core",
451
+ "darling_macro",
452
+ ]
453
+
454
+ [[package]]
455
+ name = "darling_core"
456
+ version = "0.20.11"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
459
+ dependencies = [
460
+ "fnv",
461
+ "ident_case",
462
+ "proc-macro2",
463
+ "quote",
464
+ "strsim",
465
+ "syn",
466
+ ]
467
+
468
+ [[package]]
469
+ name = "darling_macro"
470
+ version = "0.20.11"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
473
+ dependencies = [
474
+ "darling_core",
475
+ "quote",
476
+ "syn",
477
+ ]
478
+
479
+ [[package]]
480
+ name = "deranged"
481
+ version = "0.5.8"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
484
+ dependencies = [
485
+ "powerfmt",
486
+ ]
487
+
488
+ [[package]]
489
+ name = "derive_builder"
490
+ version = "0.20.2"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
493
+ dependencies = [
494
+ "derive_builder_macro",
495
+ ]
496
+
497
+ [[package]]
498
+ name = "derive_builder_core"
499
+ version = "0.20.2"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
502
+ dependencies = [
503
+ "darling",
504
+ "proc-macro2",
505
+ "quote",
506
+ "syn",
507
+ ]
508
+
509
+ [[package]]
510
+ name = "derive_builder_macro"
511
+ version = "0.20.2"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
514
+ dependencies = [
515
+ "derive_builder_core",
516
+ "syn",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "displaydoc"
521
+ version = "0.2.6"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
524
+ dependencies = [
525
+ "proc-macro2",
526
+ "quote",
527
+ "syn",
528
+ ]
529
+
530
+ [[package]]
531
+ name = "dunce"
532
+ version = "1.0.5"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
535
+
536
+ [[package]]
537
+ name = "encoding_rs"
538
+ version = "0.8.35"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
541
+ dependencies = [
542
+ "cfg-if",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "encoding_rs_io"
547
+ version = "0.1.7"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "1cc3c5651fb62ab8aa3103998dade57efdd028544bd300516baa31840c252a83"
550
+ dependencies = [
551
+ "encoding_rs",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "equivalent"
556
+ version = "1.0.2"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
559
+
560
+ [[package]]
561
+ name = "erased-serde"
562
+ version = "0.3.31"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "6c138974f9d5e7fe373eb04df7cae98833802ae4b11c24ac7039a21d5af4b26c"
565
+ dependencies = [
566
+ "serde",
567
+ ]
568
+
569
+ [[package]]
570
+ name = "errno"
571
+ version = "0.3.14"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
574
+ dependencies = [
575
+ "libc",
576
+ "windows-sys 0.61.2",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "example-lru"
581
+ version = "0.15.0"
582
+ dependencies = [
583
+ "jpreprocess",
584
+ "jpreprocess-core",
585
+ "jpreprocess-dictionary",
586
+ "lindera",
587
+ "lindera-dictionary",
588
+ "lru",
589
+ ]
590
+
591
+ [[package]]
592
+ name = "example-simple"
593
+ version = "0.15.0"
594
+ dependencies = [
595
+ "jpreprocess",
596
+ ]
597
+
598
+ [[package]]
599
+ name = "example-vibrato"
600
+ version = "0.15.0"
601
+ dependencies = [
602
+ "jpreprocess",
603
+ "jpreprocess-core",
604
+ "vibrato",
605
+ ]
606
+
607
+ [[package]]
608
+ name = "example-wasm"
609
+ version = "0.15.0"
610
+ dependencies = [
611
+ "bincode",
612
+ "jpreprocess",
613
+ "js-sys",
614
+ "lindera",
615
+ "lindera-dictionary",
616
+ "serde",
617
+ "serde-wasm-bindgen",
618
+ "wasm-bindgen",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "fastrand"
623
+ version = "2.4.1"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
626
+
627
+ [[package]]
628
+ name = "filetime"
629
+ version = "0.2.29"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
632
+ dependencies = [
633
+ "cfg-if",
634
+ "libc",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "find-msvc-tools"
639
+ version = "0.1.9"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
642
+
643
+ [[package]]
644
+ name = "flate2"
645
+ version = "1.1.9"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
648
+ dependencies = [
649
+ "crc32fast",
650
+ "miniz_oxide",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "fnv"
655
+ version = "1.0.7"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
658
+
659
+ [[package]]
660
+ name = "foldhash"
661
+ version = "0.1.5"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
664
+
665
+ [[package]]
666
+ name = "form_urlencoded"
667
+ version = "1.2.2"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
670
+ dependencies = [
671
+ "percent-encoding",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "fs_extra"
676
+ version = "1.3.0"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
679
+
680
+ [[package]]
681
+ name = "futures-channel"
682
+ version = "0.3.32"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
685
+ dependencies = [
686
+ "futures-core",
687
+ ]
688
+
689
+ [[package]]
690
+ name = "futures-core"
691
+ version = "0.3.32"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
694
+
695
+ [[package]]
696
+ name = "futures-sink"
697
+ version = "0.3.32"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
700
+
701
+ [[package]]
702
+ name = "futures-task"
703
+ version = "0.3.32"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
706
+
707
+ [[package]]
708
+ name = "futures-util"
709
+ version = "0.3.32"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
712
+ dependencies = [
713
+ "futures-core",
714
+ "futures-task",
715
+ "pin-project-lite",
716
+ "slab",
717
+ ]
718
+
719
+ [[package]]
720
+ name = "getrandom"
721
+ version = "0.2.17"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
724
+ dependencies = [
725
+ "cfg-if",
726
+ "js-sys",
727
+ "libc",
728
+ "wasi",
729
+ "wasm-bindgen",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "getrandom"
734
+ version = "0.3.4"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
737
+ dependencies = [
738
+ "cfg-if",
739
+ "js-sys",
740
+ "libc",
741
+ "r-efi",
742
+ "wasip2",
743
+ "wasm-bindgen",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "glob"
748
+ version = "0.3.3"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
751
+
752
+ [[package]]
753
+ name = "h2"
754
+ version = "0.4.14"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733"
757
+ dependencies = [
758
+ "atomic-waker",
759
+ "bytes",
760
+ "fnv",
761
+ "futures-core",
762
+ "futures-sink",
763
+ "http",
764
+ "indexmap",
765
+ "slab",
766
+ "tokio",
767
+ "tokio-util",
768
+ "tracing",
769
+ ]
770
+
771
+ [[package]]
772
+ name = "hashbrown"
773
+ version = "0.12.3"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
776
+ dependencies = [
777
+ "ahash",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "hashbrown"
782
+ version = "0.15.5"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
785
+ dependencies = [
786
+ "allocator-api2",
787
+ "equivalent",
788
+ "foldhash",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "hashbrown"
793
+ version = "0.17.1"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
796
+
797
+ [[package]]
798
+ name = "heck"
799
+ version = "0.5.0"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
802
+
803
+ [[package]]
804
+ name = "hermit-abi"
805
+ version = "0.5.2"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
808
+
809
+ [[package]]
810
+ name = "http"
811
+ version = "1.4.1"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
814
+ dependencies = [
815
+ "bytes",
816
+ "itoa",
817
+ ]
818
+
819
+ [[package]]
820
+ name = "http-body"
821
+ version = "1.0.1"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
824
+ dependencies = [
825
+ "bytes",
826
+ "http",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "http-body-util"
831
+ version = "0.1.3"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
834
+ dependencies = [
835
+ "bytes",
836
+ "futures-core",
837
+ "http",
838
+ "http-body",
839
+ "pin-project-lite",
840
+ ]
841
+
842
+ [[package]]
843
+ name = "httparse"
844
+ version = "1.10.1"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
847
+
848
+ [[package]]
849
+ name = "hyper"
850
+ version = "1.10.1"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
853
+ dependencies = [
854
+ "atomic-waker",
855
+ "bytes",
856
+ "futures-channel",
857
+ "futures-core",
858
+ "h2",
859
+ "http",
860
+ "http-body",
861
+ "httparse",
862
+ "itoa",
863
+ "pin-project-lite",
864
+ "smallvec",
865
+ "tokio",
866
+ "want",
867
+ ]
868
+
869
+ [[package]]
870
+ name = "hyper-rustls"
871
+ version = "0.27.9"
872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
873
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
874
+ dependencies = [
875
+ "http",
876
+ "hyper",
877
+ "hyper-util",
878
+ "rustls",
879
+ "tokio",
880
+ "tokio-rustls",
881
+ "tower-service",
882
+ ]
883
+
884
+ [[package]]
885
+ name = "hyper-util"
886
+ version = "0.1.20"
887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
888
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
889
+ dependencies = [
890
+ "base64",
891
+ "bytes",
892
+ "futures-channel",
893
+ "futures-util",
894
+ "http",
895
+ "http-body",
896
+ "hyper",
897
+ "ipnet",
898
+ "libc",
899
+ "percent-encoding",
900
+ "pin-project-lite",
901
+ "socket2",
902
+ "system-configuration",
903
+ "tokio",
904
+ "tower-service",
905
+ "tracing",
906
+ "windows-registry",
907
+ ]
908
+
909
+ [[package]]
910
+ name = "iana-time-zone"
911
+ version = "0.1.65"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
914
+ dependencies = [
915
+ "android_system_properties",
916
+ "core-foundation-sys",
917
+ "iana-time-zone-haiku",
918
+ "js-sys",
919
+ "log",
920
+ "wasm-bindgen",
921
+ "windows-core",
922
+ ]
923
+
924
+ [[package]]
925
+ name = "iana-time-zone-haiku"
926
+ version = "0.1.2"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
929
+ dependencies = [
930
+ "cc",
931
+ ]
932
+
933
+ [[package]]
934
+ name = "icu_collections"
935
+ version = "2.2.0"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
938
+ dependencies = [
939
+ "displaydoc",
940
+ "potential_utf",
941
+ "utf8_iter",
942
+ "yoke",
943
+ "zerofrom",
944
+ "zerovec",
945
+ ]
946
+
947
+ [[package]]
948
+ name = "icu_locale_core"
949
+ version = "2.2.0"
950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
951
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
952
+ dependencies = [
953
+ "displaydoc",
954
+ "litemap",
955
+ "tinystr",
956
+ "writeable",
957
+ "zerovec",
958
+ ]
959
+
960
+ [[package]]
961
+ name = "icu_normalizer"
962
+ version = "2.2.0"
963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
964
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
965
+ dependencies = [
966
+ "icu_collections",
967
+ "icu_normalizer_data",
968
+ "icu_properties",
969
+ "icu_provider",
970
+ "smallvec",
971
+ "zerovec",
972
+ ]
973
+
974
+ [[package]]
975
+ name = "icu_normalizer_data"
976
+ version = "2.2.0"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
979
+
980
+ [[package]]
981
+ name = "icu_properties"
982
+ version = "2.2.0"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
985
+ dependencies = [
986
+ "icu_collections",
987
+ "icu_locale_core",
988
+ "icu_properties_data",
989
+ "icu_provider",
990
+ "zerotrie",
991
+ "zerovec",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "icu_properties_data"
996
+ version = "2.2.0"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
999
+
1000
+ [[package]]
1001
+ name = "icu_provider"
1002
+ version = "2.2.0"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1005
+ dependencies = [
1006
+ "displaydoc",
1007
+ "icu_locale_core",
1008
+ "writeable",
1009
+ "yoke",
1010
+ "zerofrom",
1011
+ "zerotrie",
1012
+ "zerovec",
1013
+ ]
1014
+
1015
+ [[package]]
1016
+ name = "ident_case"
1017
+ version = "1.0.1"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1020
+
1021
+ [[package]]
1022
+ name = "idna"
1023
+ version = "1.1.0"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1026
+ dependencies = [
1027
+ "idna_adapter",
1028
+ "smallvec",
1029
+ "utf8_iter",
1030
+ ]
1031
+
1032
+ [[package]]
1033
+ name = "idna_adapter"
1034
+ version = "1.2.2"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1037
+ dependencies = [
1038
+ "icu_normalizer",
1039
+ "icu_properties",
1040
+ ]
1041
+
1042
+ [[package]]
1043
+ name = "indexmap"
1044
+ version = "2.14.0"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1047
+ dependencies = [
1048
+ "equivalent",
1049
+ "hashbrown 0.17.1",
1050
+ ]
1051
+
1052
+ [[package]]
1053
+ name = "instant"
1054
+ version = "0.1.13"
1055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1056
+ checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
1057
+ dependencies = [
1058
+ "cfg-if",
1059
+ ]
1060
+
1061
+ [[package]]
1062
+ name = "ipnet"
1063
+ version = "2.12.0"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1066
+
1067
+ [[package]]
1068
+ name = "is-terminal"
1069
+ version = "0.4.17"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1072
+ dependencies = [
1073
+ "hermit-abi",
1074
+ "libc",
1075
+ "windows-sys 0.61.2",
1076
+ ]
1077
+
1078
+ [[package]]
1079
+ name = "is_terminal_polyfill"
1080
+ version = "1.70.2"
1081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1082
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1083
+
1084
+ [[package]]
1085
+ name = "itoa"
1086
+ version = "1.0.18"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1089
+
1090
+ [[package]]
1091
+ name = "jlabel"
1092
+ version = "0.1.10"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "3a86ec75dafa2d0c09bbb3190b120489e4f534bb5d97114dd7bb6afdadfcaffd"
1095
+ dependencies = [
1096
+ "thiserror 2.0.18",
1097
+ ]
1098
+
1099
+ [[package]]
1100
+ name = "jni"
1101
+ version = "0.22.4"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
1104
+ dependencies = [
1105
+ "cfg-if",
1106
+ "combine",
1107
+ "jni-macros",
1108
+ "jni-sys",
1109
+ "log",
1110
+ "simd_cesu8",
1111
+ "thiserror 2.0.18",
1112
+ "walkdir",
1113
+ "windows-link",
1114
+ ]
1115
+
1116
+ [[package]]
1117
+ name = "jni-macros"
1118
+ version = "0.22.4"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
1121
+ dependencies = [
1122
+ "proc-macro2",
1123
+ "quote",
1124
+ "rustc_version",
1125
+ "simd_cesu8",
1126
+ "syn",
1127
+ ]
1128
+
1129
+ [[package]]
1130
+ name = "jni-sys"
1131
+ version = "0.4.1"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
1134
+ dependencies = [
1135
+ "jni-sys-macros",
1136
+ ]
1137
+
1138
+ [[package]]
1139
+ name = "jni-sys-macros"
1140
+ version = "0.4.1"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
1143
+ dependencies = [
1144
+ "quote",
1145
+ "syn",
1146
+ ]
1147
+
1148
+ [[package]]
1149
+ name = "jobserver"
1150
+ version = "0.1.34"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1153
+ dependencies = [
1154
+ "getrandom 0.3.4",
1155
+ "libc",
1156
+ ]
1157
+
1158
+ [[package]]
1159
+ name = "jpreprocess"
1160
+ version = "0.15.0"
1161
+ dependencies = [
1162
+ "clap",
1163
+ "jlabel",
1164
+ "jpreprocess-core",
1165
+ "jpreprocess-dictionary",
1166
+ "jpreprocess-jpcommon",
1167
+ "jpreprocess-naist-jdic",
1168
+ "jpreprocess-njd",
1169
+ "lindera",
1170
+ "lindera-dictionary",
1171
+ "phf",
1172
+ "serde_json",
1173
+ ]
1174
+
1175
+ [[package]]
1176
+ name = "jpreprocess-core"
1177
+ version = "0.15.0"
1178
+ dependencies = [
1179
+ "aho-corasick",
1180
+ "bincode",
1181
+ "lindera",
1182
+ "lindera-dictionary",
1183
+ "once_cell",
1184
+ "regex",
1185
+ "serde",
1186
+ "thiserror 2.0.18",
1187
+ "vibrato",
1188
+ ]
1189
+
1190
+ [[package]]
1191
+ name = "jpreprocess-dictionary"
1192
+ version = "0.15.0"
1193
+ dependencies = [
1194
+ "anyhow",
1195
+ "bincode",
1196
+ "byteorder",
1197
+ "clap",
1198
+ "csv",
1199
+ "daachorse",
1200
+ "derive_builder",
1201
+ "encoding_rs",
1202
+ "encoding_rs_io",
1203
+ "glob",
1204
+ "jpreprocess-core",
1205
+ "lindera",
1206
+ "lindera-dictionary",
1207
+ "log",
1208
+ "once_cell",
1209
+ "serde",
1210
+ "thiserror 2.0.18",
1211
+ ]
1212
+
1213
+ [[package]]
1214
+ name = "jpreprocess-jpcommon"
1215
+ version = "0.15.0"
1216
+ dependencies = [
1217
+ "jlabel",
1218
+ "jpreprocess-core",
1219
+ "jpreprocess-njd",
1220
+ ]
1221
+
1222
+ [[package]]
1223
+ name = "jpreprocess-naist-jdic"
1224
+ version = "0.15.0"
1225
+ dependencies = [
1226
+ "bincode",
1227
+ "flate2",
1228
+ "jpreprocess-dictionary",
1229
+ "lindera-dictionary",
1230
+ "md5",
1231
+ "reqwest",
1232
+ "serde",
1233
+ "serde_json",
1234
+ "tar",
1235
+ "tokio",
1236
+ ]
1237
+
1238
+ [[package]]
1239
+ name = "jpreprocess-njd"
1240
+ version = "0.15.0"
1241
+ dependencies = [
1242
+ "aho-corasick",
1243
+ "jpreprocess-core",
1244
+ "jpreprocess-window",
1245
+ "phf",
1246
+ ]
1247
+
1248
+ [[package]]
1249
+ name = "jpreprocess-python"
1250
+ version = "0.1.6"
1251
+ dependencies = [
1252
+ "jpreprocess",
1253
+ "jpreprocess-core",
1254
+ "jpreprocess-dictionary",
1255
+ "jpreprocess-jpcommon",
1256
+ "jpreprocess-njd",
1257
+ "lindera",
1258
+ "lindera-dictionary",
1259
+ "pyo3",
1260
+ "pythonize",
1261
+ "serde",
1262
+ "serde_json",
1263
+ ]
1264
+
1265
+ [[package]]
1266
+ name = "jpreprocess-window"
1267
+ version = "0.15.0"
1268
+
1269
+ [[package]]
1270
+ name = "js-sys"
1271
+ version = "0.3.99"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
1274
+ dependencies = [
1275
+ "cfg-if",
1276
+ "futures-util",
1277
+ "once_cell",
1278
+ "wasm-bindgen",
1279
+ ]
1280
+
1281
+ [[package]]
1282
+ name = "kanaria"
1283
+ version = "0.2.0"
1284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1285
+ checksum = "c0f9d9652540055ac4fded998a73aca97d965899077ab1212587437da44196ff"
1286
+ dependencies = [
1287
+ "bitflags 1.3.2",
1288
+ ]
1289
+
1290
+ [[package]]
1291
+ name = "libc"
1292
+ version = "0.2.186"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1295
+
1296
+ [[package]]
1297
+ name = "lindera"
1298
+ version = "3.0.7"
1299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1300
+ checksum = "74cda79d7161e99b414e4d292ff673cc3f8d22f070d8be3b6185c033363a9216"
1301
+ dependencies = [
1302
+ "anyhow",
1303
+ "byteorder",
1304
+ "csv",
1305
+ "daachorse",
1306
+ "kanaria",
1307
+ "lindera-dictionary",
1308
+ "log",
1309
+ "once_cell",
1310
+ "percent-encoding",
1311
+ "regex",
1312
+ "serde",
1313
+ "serde_json",
1314
+ "serde_yaml_ng",
1315
+ "strum",
1316
+ "strum_macros",
1317
+ "unicode-blocks",
1318
+ "unicode-normalization",
1319
+ "unicode-segmentation",
1320
+ "url",
1321
+ ]
1322
+
1323
+ [[package]]
1324
+ name = "lindera-dictionary"
1325
+ version = "3.0.7"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "e2385456ca9fe87c29072c5f156b52fdd5e28d5b5738ddfb3979501dbd736530"
1328
+ dependencies = [
1329
+ "anyhow",
1330
+ "byteorder",
1331
+ "csv",
1332
+ "daachorse",
1333
+ "derive_builder",
1334
+ "encoding_rs",
1335
+ "encoding_rs_io",
1336
+ "glob",
1337
+ "log",
1338
+ "memmap2",
1339
+ "num_cpus",
1340
+ "once_cell",
1341
+ "regex",
1342
+ "rkyv",
1343
+ "serde",
1344
+ "serde_json",
1345
+ "strum",
1346
+ "strum_macros",
1347
+ "thiserror 2.0.18",
1348
+ ]
1349
+
1350
+ [[package]]
1351
+ name = "linux-raw-sys"
1352
+ version = "0.12.1"
1353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1354
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1355
+
1356
+ [[package]]
1357
+ name = "litemap"
1358
+ version = "0.8.2"
1359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1360
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1361
+
1362
+ [[package]]
1363
+ name = "log"
1364
+ version = "0.4.33"
1365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1366
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1367
+
1368
+ [[package]]
1369
+ name = "lru"
1370
+ version = "0.12.5"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
1373
+ dependencies = [
1374
+ "hashbrown 0.15.5",
1375
+ ]
1376
+
1377
+ [[package]]
1378
+ name = "lru-slab"
1379
+ version = "0.1.2"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1382
+
1383
+ [[package]]
1384
+ name = "md5"
1385
+ version = "0.8.0"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "ae960838283323069879657ca3de837e9f7bbb4c7bf6ea7f1b290d5e9476d2e0"
1388
+
1389
+ [[package]]
1390
+ name = "memchr"
1391
+ version = "2.8.1"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
1394
+
1395
+ [[package]]
1396
+ name = "memmap2"
1397
+ version = "0.9.10"
1398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1399
+ checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
1400
+ dependencies = [
1401
+ "libc",
1402
+ ]
1403
+
1404
+ [[package]]
1405
+ name = "miniz_oxide"
1406
+ version = "0.8.9"
1407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1408
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1409
+ dependencies = [
1410
+ "adler2",
1411
+ "simd-adler32",
1412
+ ]
1413
+
1414
+ [[package]]
1415
+ name = "mio"
1416
+ version = "1.2.1"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
1419
+ dependencies = [
1420
+ "libc",
1421
+ "wasi",
1422
+ "windows-sys 0.61.2",
1423
+ ]
1424
+
1425
+ [[package]]
1426
+ name = "munge"
1427
+ version = "0.4.7"
1428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1429
+ checksum = "5e17401f259eba956ca16491461b6e8f72913a0a114e39736ce404410f915a0c"
1430
+ dependencies = [
1431
+ "munge_macro",
1432
+ ]
1433
+
1434
+ [[package]]
1435
+ name = "munge_macro"
1436
+ version = "0.4.7"
1437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1438
+ checksum = "4568f25ccbd45ab5d5603dc34318c1ec56b117531781260002151b8530a9f931"
1439
+ dependencies = [
1440
+ "proc-macro2",
1441
+ "quote",
1442
+ "syn",
1443
+ ]
1444
+
1445
+ [[package]]
1446
+ name = "num-complex"
1447
+ version = "0.4.6"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1450
+ dependencies = [
1451
+ "num-traits",
1452
+ ]
1453
+
1454
+ [[package]]
1455
+ name = "num-conv"
1456
+ version = "0.2.2"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
1459
+
1460
+ [[package]]
1461
+ name = "num-integer"
1462
+ version = "0.1.46"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1465
+ dependencies = [
1466
+ "num-traits",
1467
+ ]
1468
+
1469
+ [[package]]
1470
+ name = "num-traits"
1471
+ version = "0.2.19"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1474
+ dependencies = [
1475
+ "autocfg",
1476
+ ]
1477
+
1478
+ [[package]]
1479
+ name = "num_cpus"
1480
+ version = "1.17.0"
1481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1482
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
1483
+ dependencies = [
1484
+ "hermit-abi",
1485
+ "libc",
1486
+ ]
1487
+
1488
+ [[package]]
1489
+ name = "once_cell"
1490
+ version = "1.21.4"
1491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1492
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1493
+
1494
+ [[package]]
1495
+ name = "once_cell_polyfill"
1496
+ version = "1.70.2"
1497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1498
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1499
+
1500
+ [[package]]
1501
+ name = "openssl-probe"
1502
+ version = "0.2.1"
1503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1504
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1505
+
1506
+ [[package]]
1507
+ name = "paste"
1508
+ version = "1.0.15"
1509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1510
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1511
+
1512
+ [[package]]
1513
+ name = "percent-encoding"
1514
+ version = "2.3.2"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1517
+
1518
+ [[package]]
1519
+ name = "phf"
1520
+ version = "0.13.1"
1521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1522
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
1523
+ dependencies = [
1524
+ "phf_macros",
1525
+ "phf_shared",
1526
+ "serde",
1527
+ ]
1528
+
1529
+ [[package]]
1530
+ name = "phf_generator"
1531
+ version = "0.13.1"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
1534
+ dependencies = [
1535
+ "fastrand",
1536
+ "phf_shared",
1537
+ ]
1538
+
1539
+ [[package]]
1540
+ name = "phf_macros"
1541
+ version = "0.13.1"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
1544
+ dependencies = [
1545
+ "phf_generator",
1546
+ "phf_shared",
1547
+ "proc-macro2",
1548
+ "quote",
1549
+ "syn",
1550
+ ]
1551
+
1552
+ [[package]]
1553
+ name = "phf_shared"
1554
+ version = "0.13.1"
1555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1556
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
1557
+ dependencies = [
1558
+ "siphasher",
1559
+ ]
1560
+
1561
+ [[package]]
1562
+ name = "pin-project-lite"
1563
+ version = "0.2.17"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1566
+
1567
+ [[package]]
1568
+ name = "portable-atomic"
1569
+ version = "1.13.1"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1572
+
1573
+ [[package]]
1574
+ name = "potential_utf"
1575
+ version = "0.1.5"
1576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1577
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1578
+ dependencies = [
1579
+ "zerovec",
1580
+ ]
1581
+
1582
+ [[package]]
1583
+ name = "powerfmt"
1584
+ version = "0.2.0"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1587
+
1588
+ [[package]]
1589
+ name = "ppv-lite86"
1590
+ version = "0.2.21"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1593
+ dependencies = [
1594
+ "zerocopy",
1595
+ ]
1596
+
1597
+ [[package]]
1598
+ name = "proc-macro2"
1599
+ version = "1.0.106"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1602
+ dependencies = [
1603
+ "unicode-ident",
1604
+ ]
1605
+
1606
+ [[package]]
1607
+ name = "ptr_meta"
1608
+ version = "0.3.1"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "0b9a0cf95a1196af61d4f1cbdab967179516d9a4a4312af1f31948f8f6224a79"
1611
+ dependencies = [
1612
+ "ptr_meta_derive",
1613
+ ]
1614
+
1615
+ [[package]]
1616
+ name = "ptr_meta_derive"
1617
+ version = "0.3.1"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "7347867d0a7e1208d93b46767be83e2b8f978c3dad35f775ac8d8847551d6fe1"
1620
+ dependencies = [
1621
+ "proc-macro2",
1622
+ "quote",
1623
+ "syn",
1624
+ ]
1625
+
1626
+ [[package]]
1627
+ name = "pyo3"
1628
+ version = "0.29.0"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
1631
+ dependencies = [
1632
+ "libc",
1633
+ "once_cell",
1634
+ "portable-atomic",
1635
+ "pyo3-build-config",
1636
+ "pyo3-ffi",
1637
+ "pyo3-macros",
1638
+ ]
1639
+
1640
+ [[package]]
1641
+ name = "pyo3-build-config"
1642
+ version = "0.29.0"
1643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1644
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
1645
+ dependencies = [
1646
+ "target-lexicon",
1647
+ ]
1648
+
1649
+ [[package]]
1650
+ name = "pyo3-ffi"
1651
+ version = "0.29.0"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
1654
+ dependencies = [
1655
+ "libc",
1656
+ "pyo3-build-config",
1657
+ ]
1658
+
1659
+ [[package]]
1660
+ name = "pyo3-macros"
1661
+ version = "0.29.0"
1662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1663
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
1664
+ dependencies = [
1665
+ "proc-macro2",
1666
+ "pyo3-macros-backend",
1667
+ "quote",
1668
+ "syn",
1669
+ ]
1670
+
1671
+ [[package]]
1672
+ name = "pyo3-macros-backend"
1673
+ version = "0.29.0"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
1676
+ dependencies = [
1677
+ "heck",
1678
+ "proc-macro2",
1679
+ "quote",
1680
+ "syn",
1681
+ ]
1682
+
1683
+ [[package]]
1684
+ name = "pythonize"
1685
+ version = "0.29.0"
1686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1687
+ checksum = "6ec376e1216e0c929a74964ce2020012a1a39f32d80e78aa688721219ea7fb89"
1688
+ dependencies = [
1689
+ "pyo3",
1690
+ "serde",
1691
+ ]
1692
+
1693
+ [[package]]
1694
+ name = "quinn"
1695
+ version = "0.11.9"
1696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1697
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
1698
+ dependencies = [
1699
+ "bytes",
1700
+ "cfg_aliases",
1701
+ "pin-project-lite",
1702
+ "quinn-proto",
1703
+ "quinn-udp",
1704
+ "rustc-hash",
1705
+ "rustls",
1706
+ "socket2",
1707
+ "thiserror 2.0.18",
1708
+ "tokio",
1709
+ "tracing",
1710
+ "web-time",
1711
+ ]
1712
+
1713
+ [[package]]
1714
+ name = "quinn-proto"
1715
+ version = "0.11.14"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
1718
+ dependencies = [
1719
+ "aws-lc-rs",
1720
+ "bytes",
1721
+ "getrandom 0.3.4",
1722
+ "lru-slab",
1723
+ "rand 0.9.4",
1724
+ "ring",
1725
+ "rustc-hash",
1726
+ "rustls",
1727
+ "rustls-pki-types",
1728
+ "slab",
1729
+ "thiserror 2.0.18",
1730
+ "tinyvec",
1731
+ "tracing",
1732
+ "web-time",
1733
+ ]
1734
+
1735
+ [[package]]
1736
+ name = "quinn-udp"
1737
+ version = "0.5.14"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
1740
+ dependencies = [
1741
+ "cfg_aliases",
1742
+ "libc",
1743
+ "once_cell",
1744
+ "socket2",
1745
+ "tracing",
1746
+ "windows-sys 0.60.2",
1747
+ ]
1748
+
1749
+ [[package]]
1750
+ name = "quote"
1751
+ version = "1.0.45"
1752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1753
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1754
+ dependencies = [
1755
+ "proc-macro2",
1756
+ ]
1757
+
1758
+ [[package]]
1759
+ name = "r-efi"
1760
+ version = "5.3.0"
1761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1762
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1763
+
1764
+ [[package]]
1765
+ name = "rancor"
1766
+ version = "0.1.1"
1767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1768
+ checksum = "a063ea72381527c2a0561da9c80000ef822bdd7c3241b1cc1b12100e3df081ee"
1769
+ dependencies = [
1770
+ "ptr_meta",
1771
+ ]
1772
+
1773
+ [[package]]
1774
+ name = "rand"
1775
+ version = "0.8.6"
1776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1777
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
1778
+ dependencies = [
1779
+ "libc",
1780
+ "rand_chacha 0.3.1",
1781
+ "rand_core 0.6.4",
1782
+ ]
1783
+
1784
+ [[package]]
1785
+ name = "rand"
1786
+ version = "0.9.4"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1789
+ dependencies = [
1790
+ "rand_chacha 0.9.0",
1791
+ "rand_core 0.9.5",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "rand_chacha"
1796
+ version = "0.3.1"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1799
+ dependencies = [
1800
+ "ppv-lite86",
1801
+ "rand_core 0.6.4",
1802
+ ]
1803
+
1804
+ [[package]]
1805
+ name = "rand_chacha"
1806
+ version = "0.9.0"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1809
+ dependencies = [
1810
+ "ppv-lite86",
1811
+ "rand_core 0.9.5",
1812
+ ]
1813
+
1814
+ [[package]]
1815
+ name = "rand_core"
1816
+ version = "0.6.4"
1817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1818
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1819
+ dependencies = [
1820
+ "getrandom 0.2.17",
1821
+ ]
1822
+
1823
+ [[package]]
1824
+ name = "rand_core"
1825
+ version = "0.9.5"
1826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1827
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1828
+ dependencies = [
1829
+ "getrandom 0.3.4",
1830
+ ]
1831
+
1832
+ [[package]]
1833
+ name = "rand_xoshiro"
1834
+ version = "0.6.0"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa"
1837
+ dependencies = [
1838
+ "rand_core 0.6.4",
1839
+ ]
1840
+
1841
+ [[package]]
1842
+ name = "regex"
1843
+ version = "1.12.4"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
1846
+ dependencies = [
1847
+ "aho-corasick",
1848
+ "memchr",
1849
+ "regex-automata",
1850
+ "regex-syntax",
1851
+ ]
1852
+
1853
+ [[package]]
1854
+ name = "regex-automata"
1855
+ version = "0.4.14"
1856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1857
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1858
+ dependencies = [
1859
+ "aho-corasick",
1860
+ "memchr",
1861
+ "regex-syntax",
1862
+ ]
1863
+
1864
+ [[package]]
1865
+ name = "regex-syntax"
1866
+ version = "0.8.11"
1867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1868
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1869
+
1870
+ [[package]]
1871
+ name = "rend"
1872
+ version = "0.5.3"
1873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1874
+ checksum = "cadadef317c2f20755a64d7fdc48f9e7178ee6b0e1f7fce33fa60f1d68a276e6"
1875
+ dependencies = [
1876
+ "bytecheck",
1877
+ ]
1878
+
1879
+ [[package]]
1880
+ name = "reqwest"
1881
+ version = "0.13.4"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
1884
+ dependencies = [
1885
+ "base64",
1886
+ "bytes",
1887
+ "futures-core",
1888
+ "h2",
1889
+ "http",
1890
+ "http-body",
1891
+ "http-body-util",
1892
+ "hyper",
1893
+ "hyper-rustls",
1894
+ "hyper-util",
1895
+ "js-sys",
1896
+ "log",
1897
+ "percent-encoding",
1898
+ "pin-project-lite",
1899
+ "quinn",
1900
+ "rustls",
1901
+ "rustls-pki-types",
1902
+ "rustls-platform-verifier",
1903
+ "sync_wrapper",
1904
+ "tokio",
1905
+ "tokio-rustls",
1906
+ "tower",
1907
+ "tower-http",
1908
+ "tower-service",
1909
+ "url",
1910
+ "wasm-bindgen",
1911
+ "wasm-bindgen-futures",
1912
+ "web-sys",
1913
+ ]
1914
+
1915
+ [[package]]
1916
+ name = "ring"
1917
+ version = "0.17.14"
1918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1919
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1920
+ dependencies = [
1921
+ "cc",
1922
+ "cfg-if",
1923
+ "getrandom 0.2.17",
1924
+ "libc",
1925
+ "untrusted",
1926
+ "windows-sys 0.52.0",
1927
+ ]
1928
+
1929
+ [[package]]
1930
+ name = "rkyv"
1931
+ version = "0.8.16"
1932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1933
+ checksum = "73389e0c99e664f919275ab5b5b0471391fe9a8de61e1dff9b1eaf56a90f16e3"
1934
+ dependencies = [
1935
+ "bytecheck",
1936
+ "bytes",
1937
+ "hashbrown 0.17.1",
1938
+ "indexmap",
1939
+ "munge",
1940
+ "ptr_meta",
1941
+ "rancor",
1942
+ "rend",
1943
+ "rkyv_derive",
1944
+ "tinyvec",
1945
+ "uuid",
1946
+ ]
1947
+
1948
+ [[package]]
1949
+ name = "rkyv_derive"
1950
+ version = "0.8.16"
1951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1952
+ checksum = "5d2ed0b54125315fb36bd021e82d314d1c126548f871634b483f46b31d13cac6"
1953
+ dependencies = [
1954
+ "proc-macro2",
1955
+ "quote",
1956
+ "syn",
1957
+ ]
1958
+
1959
+ [[package]]
1960
+ name = "rucrf"
1961
+ version = "0.3.3"
1962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1963
+ checksum = "e5f17d147c82c4a3d9f84274769a5a301b22b4f006b3d0f8a06570bac0acdc91"
1964
+ dependencies = [
1965
+ "argmin",
1966
+ "argmin-math",
1967
+ "argmin-observer-slog",
1968
+ "bincode",
1969
+ "crossbeam-channel",
1970
+ "hashbrown 0.15.5",
1971
+ ]
1972
+
1973
+ [[package]]
1974
+ name = "rustc-hash"
1975
+ version = "2.1.2"
1976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1977
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1978
+
1979
+ [[package]]
1980
+ name = "rustc_version"
1981
+ version = "0.4.1"
1982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1983
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1984
+ dependencies = [
1985
+ "semver",
1986
+ ]
1987
+
1988
+ [[package]]
1989
+ name = "rustix"
1990
+ version = "1.1.4"
1991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1992
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1993
+ dependencies = [
1994
+ "bitflags 2.13.0",
1995
+ "errno",
1996
+ "libc",
1997
+ "linux-raw-sys",
1998
+ "windows-sys 0.61.2",
1999
+ ]
2000
+
2001
+ [[package]]
2002
+ name = "rustls"
2003
+ version = "0.23.40"
2004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2005
+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
2006
+ dependencies = [
2007
+ "aws-lc-rs",
2008
+ "once_cell",
2009
+ "rustls-pki-types",
2010
+ "rustls-webpki",
2011
+ "subtle",
2012
+ "zeroize",
2013
+ ]
2014
+
2015
+ [[package]]
2016
+ name = "rustls-native-certs"
2017
+ version = "0.8.4"
2018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+ checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
2020
+ dependencies = [
2021
+ "openssl-probe",
2022
+ "rustls-pki-types",
2023
+ "schannel",
2024
+ "security-framework",
2025
+ ]
2026
+
2027
+ [[package]]
2028
+ name = "rustls-pki-types"
2029
+ version = "1.14.1"
2030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2031
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
2032
+ dependencies = [
2033
+ "web-time",
2034
+ "zeroize",
2035
+ ]
2036
+
2037
+ [[package]]
2038
+ name = "rustls-platform-verifier"
2039
+ version = "0.7.0"
2040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2041
+ checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
2042
+ dependencies = [
2043
+ "core-foundation 0.10.1",
2044
+ "core-foundation-sys",
2045
+ "jni",
2046
+ "log",
2047
+ "once_cell",
2048
+ "rustls",
2049
+ "rustls-native-certs",
2050
+ "rustls-platform-verifier-android",
2051
+ "rustls-webpki",
2052
+ "security-framework",
2053
+ "security-framework-sys",
2054
+ "webpki-root-certs",
2055
+ "windows-sys 0.61.2",
2056
+ ]
2057
+
2058
+ [[package]]
2059
+ name = "rustls-platform-verifier-android"
2060
+ version = "0.1.1"
2061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2062
+ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
2063
+
2064
+ [[package]]
2065
+ name = "rustls-webpki"
2066
+ version = "0.103.13"
2067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2068
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
2069
+ dependencies = [
2070
+ "aws-lc-rs",
2071
+ "ring",
2072
+ "rustls-pki-types",
2073
+ "untrusted",
2074
+ ]
2075
+
2076
+ [[package]]
2077
+ name = "rustversion"
2078
+ version = "1.0.22"
2079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2080
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2081
+
2082
+ [[package]]
2083
+ name = "ryu"
2084
+ version = "1.0.23"
2085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2086
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2087
+
2088
+ [[package]]
2089
+ name = "same-file"
2090
+ version = "1.0.6"
2091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2092
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2093
+ dependencies = [
2094
+ "winapi-util",
2095
+ ]
2096
+
2097
+ [[package]]
2098
+ name = "schannel"
2099
+ version = "0.1.29"
2100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2101
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
2102
+ dependencies = [
2103
+ "windows-sys 0.61.2",
2104
+ ]
2105
+
2106
+ [[package]]
2107
+ name = "security-framework"
2108
+ version = "3.7.0"
2109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2110
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2111
+ dependencies = [
2112
+ "bitflags 2.13.0",
2113
+ "core-foundation 0.10.1",
2114
+ "core-foundation-sys",
2115
+ "libc",
2116
+ "security-framework-sys",
2117
+ ]
2118
+
2119
+ [[package]]
2120
+ name = "security-framework-sys"
2121
+ version = "2.17.0"
2122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2123
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2124
+ dependencies = [
2125
+ "core-foundation-sys",
2126
+ "libc",
2127
+ ]
2128
+
2129
+ [[package]]
2130
+ name = "semver"
2131
+ version = "1.0.28"
2132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2133
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2134
+
2135
+ [[package]]
2136
+ name = "serde"
2137
+ version = "1.0.228"
2138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2139
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2140
+ dependencies = [
2141
+ "serde_core",
2142
+ "serde_derive",
2143
+ ]
2144
+
2145
+ [[package]]
2146
+ name = "serde-wasm-bindgen"
2147
+ version = "0.4.5"
2148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2149
+ checksum = "e3b4c031cd0d9014307d82b8abf653c0290fbdaeb4c02d00c63cf52f728628bf"
2150
+ dependencies = [
2151
+ "js-sys",
2152
+ "serde",
2153
+ "wasm-bindgen",
2154
+ ]
2155
+
2156
+ [[package]]
2157
+ name = "serde_core"
2158
+ version = "1.0.228"
2159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2160
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2161
+ dependencies = [
2162
+ "serde_derive",
2163
+ ]
2164
+
2165
+ [[package]]
2166
+ name = "serde_derive"
2167
+ version = "1.0.228"
2168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2169
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2170
+ dependencies = [
2171
+ "proc-macro2",
2172
+ "quote",
2173
+ "syn",
2174
+ ]
2175
+
2176
+ [[package]]
2177
+ name = "serde_json"
2178
+ version = "1.0.150"
2179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2180
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
2181
+ dependencies = [
2182
+ "itoa",
2183
+ "memchr",
2184
+ "serde",
2185
+ "serde_core",
2186
+ "zmij",
2187
+ ]
2188
+
2189
+ [[package]]
2190
+ name = "serde_yaml_ng"
2191
+ version = "0.10.0"
2192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2193
+ checksum = "7b4db627b98b36d4203a7b458cf3573730f2bb591b28871d916dfa9efabfd41f"
2194
+ dependencies = [
2195
+ "indexmap",
2196
+ "itoa",
2197
+ "ryu",
2198
+ "serde",
2199
+ "unsafe-libyaml",
2200
+ ]
2201
+
2202
+ [[package]]
2203
+ name = "shlex"
2204
+ version = "2.0.1"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
2207
+
2208
+ [[package]]
2209
+ name = "simd-adler32"
2210
+ version = "0.3.9"
2211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2212
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
2213
+
2214
+ [[package]]
2215
+ name = "simd_cesu8"
2216
+ version = "1.1.1"
2217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2218
+ checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
2219
+ dependencies = [
2220
+ "rustc_version",
2221
+ "simdutf8",
2222
+ ]
2223
+
2224
+ [[package]]
2225
+ name = "simdutf8"
2226
+ version = "0.1.5"
2227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2228
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
2229
+
2230
+ [[package]]
2231
+ name = "siphasher"
2232
+ version = "1.0.3"
2233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2234
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
2235
+
2236
+ [[package]]
2237
+ name = "slab"
2238
+ version = "0.4.12"
2239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2240
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2241
+
2242
+ [[package]]
2243
+ name = "slog"
2244
+ version = "2.8.2"
2245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2246
+ checksum = "9b3b8565691b22d2bdfc066426ed48f837fc0c5f2c8cad8d9718f7f99d6995c1"
2247
+ dependencies = [
2248
+ "anyhow",
2249
+ "erased-serde",
2250
+ "rustversion",
2251
+ "serde_core",
2252
+ ]
2253
+
2254
+ [[package]]
2255
+ name = "slog-async"
2256
+ version = "2.8.0"
2257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2258
+ checksum = "72c8038f898a2c79507940990f05386455b3a317d8f18d4caea7cbc3d5096b84"
2259
+ dependencies = [
2260
+ "crossbeam-channel",
2261
+ "slog",
2262
+ "take_mut",
2263
+ "thread_local",
2264
+ ]
2265
+
2266
+ [[package]]
2267
+ name = "slog-term"
2268
+ version = "2.9.2"
2269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2270
+ checksum = "5cb1fc680b38eed6fad4c02b3871c09d2c81db8c96aa4e9c0a34904c830f09b5"
2271
+ dependencies = [
2272
+ "chrono",
2273
+ "is-terminal",
2274
+ "slog",
2275
+ "term",
2276
+ "thread_local",
2277
+ "time",
2278
+ ]
2279
+
2280
+ [[package]]
2281
+ name = "smallvec"
2282
+ version = "1.15.1"
2283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2284
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2285
+
2286
+ [[package]]
2287
+ name = "socket2"
2288
+ version = "0.6.4"
2289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2290
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
2291
+ dependencies = [
2292
+ "libc",
2293
+ "windows-sys 0.61.2",
2294
+ ]
2295
+
2296
+ [[package]]
2297
+ name = "stable_deref_trait"
2298
+ version = "1.2.1"
2299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2300
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2301
+
2302
+ [[package]]
2303
+ name = "strsim"
2304
+ version = "0.11.1"
2305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2306
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2307
+
2308
+ [[package]]
2309
+ name = "strum"
2310
+ version = "0.28.0"
2311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2312
+ checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd"
2313
+ dependencies = [
2314
+ "strum_macros",
2315
+ ]
2316
+
2317
+ [[package]]
2318
+ name = "strum_macros"
2319
+ version = "0.28.0"
2320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2321
+ checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
2322
+ dependencies = [
2323
+ "heck",
2324
+ "proc-macro2",
2325
+ "quote",
2326
+ "syn",
2327
+ ]
2328
+
2329
+ [[package]]
2330
+ name = "subtle"
2331
+ version = "2.6.1"
2332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2333
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2334
+
2335
+ [[package]]
2336
+ name = "syn"
2337
+ version = "2.0.117"
2338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2339
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2340
+ dependencies = [
2341
+ "proc-macro2",
2342
+ "quote",
2343
+ "unicode-ident",
2344
+ ]
2345
+
2346
+ [[package]]
2347
+ name = "sync_wrapper"
2348
+ version = "1.0.2"
2349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2350
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2351
+ dependencies = [
2352
+ "futures-core",
2353
+ ]
2354
+
2355
+ [[package]]
2356
+ name = "synstructure"
2357
+ version = "0.13.2"
2358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2359
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2360
+ dependencies = [
2361
+ "proc-macro2",
2362
+ "quote",
2363
+ "syn",
2364
+ ]
2365
+
2366
+ [[package]]
2367
+ name = "system-configuration"
2368
+ version = "0.7.0"
2369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2370
+ checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
2371
+ dependencies = [
2372
+ "bitflags 2.13.0",
2373
+ "core-foundation 0.9.4",
2374
+ "system-configuration-sys",
2375
+ ]
2376
+
2377
+ [[package]]
2378
+ name = "system-configuration-sys"
2379
+ version = "0.6.0"
2380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2381
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2382
+ dependencies = [
2383
+ "core-foundation-sys",
2384
+ "libc",
2385
+ ]
2386
+
2387
+ [[package]]
2388
+ name = "take_mut"
2389
+ version = "0.2.2"
2390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2391
+ checksum = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60"
2392
+
2393
+ [[package]]
2394
+ name = "tar"
2395
+ version = "0.4.46"
2396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2397
+ checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840"
2398
+ dependencies = [
2399
+ "filetime",
2400
+ "libc",
2401
+ "xattr",
2402
+ ]
2403
+
2404
+ [[package]]
2405
+ name = "target-lexicon"
2406
+ version = "0.13.5"
2407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2408
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2409
+
2410
+ [[package]]
2411
+ name = "term"
2412
+ version = "1.2.1"
2413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2414
+ checksum = "d8c27177b12a6399ffc08b98f76f7c9a1f4fe9fc967c784c5a071fa8d93cf7e1"
2415
+ dependencies = [
2416
+ "windows-sys 0.61.2",
2417
+ ]
2418
+
2419
+ [[package]]
2420
+ name = "tests"
2421
+ version = "0.15.0"
2422
+ dependencies = [
2423
+ "jpreprocess",
2424
+ "jpreprocess-core",
2425
+ "jpreprocess-dictionary",
2426
+ "jpreprocess-jpcommon",
2427
+ "jpreprocess-njd",
2428
+ "lindera",
2429
+ ]
2430
+
2431
+ [[package]]
2432
+ name = "thiserror"
2433
+ version = "1.0.69"
2434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2435
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2436
+ dependencies = [
2437
+ "thiserror-impl 1.0.69",
2438
+ ]
2439
+
2440
+ [[package]]
2441
+ name = "thiserror"
2442
+ version = "2.0.18"
2443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2444
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2445
+ dependencies = [
2446
+ "thiserror-impl 2.0.18",
2447
+ ]
2448
+
2449
+ [[package]]
2450
+ name = "thiserror-impl"
2451
+ version = "1.0.69"
2452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2453
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2454
+ dependencies = [
2455
+ "proc-macro2",
2456
+ "quote",
2457
+ "syn",
2458
+ ]
2459
+
2460
+ [[package]]
2461
+ name = "thiserror-impl"
2462
+ version = "2.0.18"
2463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2464
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2465
+ dependencies = [
2466
+ "proc-macro2",
2467
+ "quote",
2468
+ "syn",
2469
+ ]
2470
+
2471
+ [[package]]
2472
+ name = "thread_local"
2473
+ version = "1.1.9"
2474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2475
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2476
+ dependencies = [
2477
+ "cfg-if",
2478
+ ]
2479
+
2480
+ [[package]]
2481
+ name = "time"
2482
+ version = "0.3.47"
2483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2484
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
2485
+ dependencies = [
2486
+ "deranged",
2487
+ "itoa",
2488
+ "num-conv",
2489
+ "powerfmt",
2490
+ "serde_core",
2491
+ "time-core",
2492
+ "time-macros",
2493
+ ]
2494
+
2495
+ [[package]]
2496
+ name = "time-core"
2497
+ version = "0.1.8"
2498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2499
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
2500
+
2501
+ [[package]]
2502
+ name = "time-macros"
2503
+ version = "0.2.27"
2504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2505
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
2506
+ dependencies = [
2507
+ "num-conv",
2508
+ "time-core",
2509
+ ]
2510
+
2511
+ [[package]]
2512
+ name = "tinystr"
2513
+ version = "0.8.3"
2514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2515
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2516
+ dependencies = [
2517
+ "displaydoc",
2518
+ "zerovec",
2519
+ ]
2520
+
2521
+ [[package]]
2522
+ name = "tinyvec"
2523
+ version = "1.11.0"
2524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2525
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
2526
+ dependencies = [
2527
+ "tinyvec_macros",
2528
+ ]
2529
+
2530
+ [[package]]
2531
+ name = "tinyvec_macros"
2532
+ version = "0.1.1"
2533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2534
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2535
+
2536
+ [[package]]
2537
+ name = "tokio"
2538
+ version = "1.52.3"
2539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2540
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
2541
+ dependencies = [
2542
+ "bytes",
2543
+ "libc",
2544
+ "mio",
2545
+ "pin-project-lite",
2546
+ "socket2",
2547
+ "tokio-macros",
2548
+ "windows-sys 0.61.2",
2549
+ ]
2550
+
2551
+ [[package]]
2552
+ name = "tokio-macros"
2553
+ version = "2.7.0"
2554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2555
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
2556
+ dependencies = [
2557
+ "proc-macro2",
2558
+ "quote",
2559
+ "syn",
2560
+ ]
2561
+
2562
+ [[package]]
2563
+ name = "tokio-rustls"
2564
+ version = "0.26.4"
2565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2566
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2567
+ dependencies = [
2568
+ "rustls",
2569
+ "tokio",
2570
+ ]
2571
+
2572
+ [[package]]
2573
+ name = "tokio-util"
2574
+ version = "0.7.18"
2575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2576
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2577
+ dependencies = [
2578
+ "bytes",
2579
+ "futures-core",
2580
+ "futures-sink",
2581
+ "pin-project-lite",
2582
+ "tokio",
2583
+ ]
2584
+
2585
+ [[package]]
2586
+ name = "tower"
2587
+ version = "0.5.3"
2588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2589
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2590
+ dependencies = [
2591
+ "futures-core",
2592
+ "futures-util",
2593
+ "pin-project-lite",
2594
+ "sync_wrapper",
2595
+ "tokio",
2596
+ "tower-layer",
2597
+ "tower-service",
2598
+ ]
2599
+
2600
+ [[package]]
2601
+ name = "tower-http"
2602
+ version = "0.6.11"
2603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2604
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
2605
+ dependencies = [
2606
+ "bitflags 2.13.0",
2607
+ "bytes",
2608
+ "futures-util",
2609
+ "http",
2610
+ "http-body",
2611
+ "pin-project-lite",
2612
+ "tower",
2613
+ "tower-layer",
2614
+ "tower-service",
2615
+ "url",
2616
+ ]
2617
+
2618
+ [[package]]
2619
+ name = "tower-layer"
2620
+ version = "0.3.3"
2621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2622
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2623
+
2624
+ [[package]]
2625
+ name = "tower-service"
2626
+ version = "0.3.3"
2627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2628
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2629
+
2630
+ [[package]]
2631
+ name = "tracing"
2632
+ version = "0.1.44"
2633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2634
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2635
+ dependencies = [
2636
+ "pin-project-lite",
2637
+ "tracing-core",
2638
+ ]
2639
+
2640
+ [[package]]
2641
+ name = "tracing-core"
2642
+ version = "0.1.36"
2643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2644
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2645
+ dependencies = [
2646
+ "once_cell",
2647
+ ]
2648
+
2649
+ [[package]]
2650
+ name = "try-lock"
2651
+ version = "0.2.5"
2652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2653
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2654
+
2655
+ [[package]]
2656
+ name = "unicode-blocks"
2657
+ version = "0.1.9"
2658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2659
+ checksum = "6b12e05d9e06373163a9bb6bb8c263c261b396643a99445fe6b9811fd376581b"
2660
+
2661
+ [[package]]
2662
+ name = "unicode-ident"
2663
+ version = "1.0.24"
2664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2665
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2666
+
2667
+ [[package]]
2668
+ name = "unicode-normalization"
2669
+ version = "0.1.25"
2670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2671
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
2672
+ dependencies = [
2673
+ "tinyvec",
2674
+ ]
2675
+
2676
+ [[package]]
2677
+ name = "unicode-segmentation"
2678
+ version = "1.13.3"
2679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2680
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
2681
+
2682
+ [[package]]
2683
+ name = "unsafe-libyaml"
2684
+ version = "0.2.11"
2685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2686
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
2687
+
2688
+ [[package]]
2689
+ name = "untrusted"
2690
+ version = "0.9.0"
2691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2692
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2693
+
2694
+ [[package]]
2695
+ name = "unty"
2696
+ version = "0.0.4"
2697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2698
+ checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
2699
+
2700
+ [[package]]
2701
+ name = "url"
2702
+ version = "2.5.8"
2703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2704
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2705
+ dependencies = [
2706
+ "form_urlencoded",
2707
+ "idna",
2708
+ "percent-encoding",
2709
+ "serde",
2710
+ ]
2711
+
2712
+ [[package]]
2713
+ name = "utf8_iter"
2714
+ version = "1.0.4"
2715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2716
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2717
+
2718
+ [[package]]
2719
+ name = "utf8parse"
2720
+ version = "0.2.2"
2721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2722
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2723
+
2724
+ [[package]]
2725
+ name = "uuid"
2726
+ version = "1.23.2"
2727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2728
+ checksum = "d258b83ceec21034727ecee8c382cfa6c3e133699b0742c64571814fb420c9f7"
2729
+ dependencies = [
2730
+ "js-sys",
2731
+ "wasm-bindgen",
2732
+ ]
2733
+
2734
+ [[package]]
2735
+ name = "version_check"
2736
+ version = "0.9.5"
2737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2738
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2739
+
2740
+ [[package]]
2741
+ name = "vibrato"
2742
+ version = "0.5.2"
2743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2744
+ checksum = "b02279291f68f435d84407eae0a99a8ac3dea4c2ff1f9efc86ab2431d13606bd"
2745
+ dependencies = [
2746
+ "bincode",
2747
+ "crawdad",
2748
+ "csv-core",
2749
+ "hashbrown 0.12.3",
2750
+ "regex",
2751
+ "rucrf",
2752
+ ]
2753
+
2754
+ [[package]]
2755
+ name = "virtue"
2756
+ version = "0.0.18"
2757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2758
+ checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
2759
+
2760
+ [[package]]
2761
+ name = "walkdir"
2762
+ version = "2.5.0"
2763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2764
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2765
+ dependencies = [
2766
+ "same-file",
2767
+ "winapi-util",
2768
+ ]
2769
+
2770
+ [[package]]
2771
+ name = "want"
2772
+ version = "0.3.1"
2773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2774
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2775
+ dependencies = [
2776
+ "try-lock",
2777
+ ]
2778
+
2779
+ [[package]]
2780
+ name = "wasi"
2781
+ version = "0.11.1+wasi-snapshot-preview1"
2782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2783
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2784
+
2785
+ [[package]]
2786
+ name = "wasip2"
2787
+ version = "1.0.3+wasi-0.2.9"
2788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2789
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
2790
+ dependencies = [
2791
+ "wit-bindgen",
2792
+ ]
2793
+
2794
+ [[package]]
2795
+ name = "wasm-bindgen"
2796
+ version = "0.2.122"
2797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2798
+ checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
2799
+ dependencies = [
2800
+ "cfg-if",
2801
+ "once_cell",
2802
+ "rustversion",
2803
+ "wasm-bindgen-macro",
2804
+ "wasm-bindgen-shared",
2805
+ ]
2806
+
2807
+ [[package]]
2808
+ name = "wasm-bindgen-futures"
2809
+ version = "0.4.72"
2810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2811
+ checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
2812
+ dependencies = [
2813
+ "js-sys",
2814
+ "wasm-bindgen",
2815
+ ]
2816
+
2817
+ [[package]]
2818
+ name = "wasm-bindgen-macro"
2819
+ version = "0.2.122"
2820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2821
+ checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
2822
+ dependencies = [
2823
+ "quote",
2824
+ "wasm-bindgen-macro-support",
2825
+ ]
2826
+
2827
+ [[package]]
2828
+ name = "wasm-bindgen-macro-support"
2829
+ version = "0.2.122"
2830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2831
+ checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
2832
+ dependencies = [
2833
+ "bumpalo",
2834
+ "proc-macro2",
2835
+ "quote",
2836
+ "syn",
2837
+ "wasm-bindgen-shared",
2838
+ ]
2839
+
2840
+ [[package]]
2841
+ name = "wasm-bindgen-shared"
2842
+ version = "0.2.122"
2843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2844
+ checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
2845
+ dependencies = [
2846
+ "unicode-ident",
2847
+ ]
2848
+
2849
+ [[package]]
2850
+ name = "web-sys"
2851
+ version = "0.3.99"
2852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2853
+ checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
2854
+ dependencies = [
2855
+ "js-sys",
2856
+ "wasm-bindgen",
2857
+ ]
2858
+
2859
+ [[package]]
2860
+ name = "web-time"
2861
+ version = "1.1.0"
2862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2863
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2864
+ dependencies = [
2865
+ "js-sys",
2866
+ "wasm-bindgen",
2867
+ ]
2868
+
2869
+ [[package]]
2870
+ name = "webpki-root-certs"
2871
+ version = "1.0.7"
2872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2873
+ checksum = "f31141ce3fc3e300ae89b78c0dd67f9708061d1d2eda54b8209346fd6be9a92c"
2874
+ dependencies = [
2875
+ "rustls-pki-types",
2876
+ ]
2877
+
2878
+ [[package]]
2879
+ name = "winapi-util"
2880
+ version = "0.1.11"
2881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2882
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2883
+ dependencies = [
2884
+ "windows-sys 0.61.2",
2885
+ ]
2886
+
2887
+ [[package]]
2888
+ name = "windows-core"
2889
+ version = "0.62.2"
2890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2891
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2892
+ dependencies = [
2893
+ "windows-implement",
2894
+ "windows-interface",
2895
+ "windows-link",
2896
+ "windows-result",
2897
+ "windows-strings",
2898
+ ]
2899
+
2900
+ [[package]]
2901
+ name = "windows-implement"
2902
+ version = "0.60.2"
2903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2904
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2905
+ dependencies = [
2906
+ "proc-macro2",
2907
+ "quote",
2908
+ "syn",
2909
+ ]
2910
+
2911
+ [[package]]
2912
+ name = "windows-interface"
2913
+ version = "0.59.3"
2914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2915
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2916
+ dependencies = [
2917
+ "proc-macro2",
2918
+ "quote",
2919
+ "syn",
2920
+ ]
2921
+
2922
+ [[package]]
2923
+ name = "windows-link"
2924
+ version = "0.2.1"
2925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2926
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2927
+
2928
+ [[package]]
2929
+ name = "windows-registry"
2930
+ version = "0.6.1"
2931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2932
+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
2933
+ dependencies = [
2934
+ "windows-link",
2935
+ "windows-result",
2936
+ "windows-strings",
2937
+ ]
2938
+
2939
+ [[package]]
2940
+ name = "windows-result"
2941
+ version = "0.4.1"
2942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2943
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2944
+ dependencies = [
2945
+ "windows-link",
2946
+ ]
2947
+
2948
+ [[package]]
2949
+ name = "windows-strings"
2950
+ version = "0.5.1"
2951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2952
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2953
+ dependencies = [
2954
+ "windows-link",
2955
+ ]
2956
+
2957
+ [[package]]
2958
+ name = "windows-sys"
2959
+ version = "0.52.0"
2960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2961
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2962
+ dependencies = [
2963
+ "windows-targets 0.52.6",
2964
+ ]
2965
+
2966
+ [[package]]
2967
+ name = "windows-sys"
2968
+ version = "0.60.2"
2969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2970
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2971
+ dependencies = [
2972
+ "windows-targets 0.53.5",
2973
+ ]
2974
+
2975
+ [[package]]
2976
+ name = "windows-sys"
2977
+ version = "0.61.2"
2978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2979
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2980
+ dependencies = [
2981
+ "windows-link",
2982
+ ]
2983
+
2984
+ [[package]]
2985
+ name = "windows-targets"
2986
+ version = "0.52.6"
2987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2988
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2989
+ dependencies = [
2990
+ "windows_aarch64_gnullvm 0.52.6",
2991
+ "windows_aarch64_msvc 0.52.6",
2992
+ "windows_i686_gnu 0.52.6",
2993
+ "windows_i686_gnullvm 0.52.6",
2994
+ "windows_i686_msvc 0.52.6",
2995
+ "windows_x86_64_gnu 0.52.6",
2996
+ "windows_x86_64_gnullvm 0.52.6",
2997
+ "windows_x86_64_msvc 0.52.6",
2998
+ ]
2999
+
3000
+ [[package]]
3001
+ name = "windows-targets"
3002
+ version = "0.53.5"
3003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3004
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3005
+ dependencies = [
3006
+ "windows-link",
3007
+ "windows_aarch64_gnullvm 0.53.1",
3008
+ "windows_aarch64_msvc 0.53.1",
3009
+ "windows_i686_gnu 0.53.1",
3010
+ "windows_i686_gnullvm 0.53.1",
3011
+ "windows_i686_msvc 0.53.1",
3012
+ "windows_x86_64_gnu 0.53.1",
3013
+ "windows_x86_64_gnullvm 0.53.1",
3014
+ "windows_x86_64_msvc 0.53.1",
3015
+ ]
3016
+
3017
+ [[package]]
3018
+ name = "windows_aarch64_gnullvm"
3019
+ version = "0.52.6"
3020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3021
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3022
+
3023
+ [[package]]
3024
+ name = "windows_aarch64_gnullvm"
3025
+ version = "0.53.1"
3026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3027
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3028
+
3029
+ [[package]]
3030
+ name = "windows_aarch64_msvc"
3031
+ version = "0.52.6"
3032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3033
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3034
+
3035
+ [[package]]
3036
+ name = "windows_aarch64_msvc"
3037
+ version = "0.53.1"
3038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3039
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3040
+
3041
+ [[package]]
3042
+ name = "windows_i686_gnu"
3043
+ version = "0.52.6"
3044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3045
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3046
+
3047
+ [[package]]
3048
+ name = "windows_i686_gnu"
3049
+ version = "0.53.1"
3050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3051
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3052
+
3053
+ [[package]]
3054
+ name = "windows_i686_gnullvm"
3055
+ version = "0.52.6"
3056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3057
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3058
+
3059
+ [[package]]
3060
+ name = "windows_i686_gnullvm"
3061
+ version = "0.53.1"
3062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3063
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3064
+
3065
+ [[package]]
3066
+ name = "windows_i686_msvc"
3067
+ version = "0.52.6"
3068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3069
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3070
+
3071
+ [[package]]
3072
+ name = "windows_i686_msvc"
3073
+ version = "0.53.1"
3074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3075
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3076
+
3077
+ [[package]]
3078
+ name = "windows_x86_64_gnu"
3079
+ version = "0.52.6"
3080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3081
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3082
+
3083
+ [[package]]
3084
+ name = "windows_x86_64_gnu"
3085
+ version = "0.53.1"
3086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3087
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3088
+
3089
+ [[package]]
3090
+ name = "windows_x86_64_gnullvm"
3091
+ version = "0.52.6"
3092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3093
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3094
+
3095
+ [[package]]
3096
+ name = "windows_x86_64_gnullvm"
3097
+ version = "0.53.1"
3098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3099
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3100
+
3101
+ [[package]]
3102
+ name = "windows_x86_64_msvc"
3103
+ version = "0.52.6"
3104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3105
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3106
+
3107
+ [[package]]
3108
+ name = "windows_x86_64_msvc"
3109
+ version = "0.53.1"
3110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3111
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3112
+
3113
+ [[package]]
3114
+ name = "wit-bindgen"
3115
+ version = "0.57.1"
3116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3117
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
3118
+
3119
+ [[package]]
3120
+ name = "writeable"
3121
+ version = "0.6.3"
3122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3123
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
3124
+
3125
+ [[package]]
3126
+ name = "xattr"
3127
+ version = "1.6.1"
3128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3129
+ checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
3130
+ dependencies = [
3131
+ "libc",
3132
+ "rustix",
3133
+ ]
3134
+
3135
+ [[package]]
3136
+ name = "yoke"
3137
+ version = "0.8.3"
3138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3139
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
3140
+ dependencies = [
3141
+ "stable_deref_trait",
3142
+ "yoke-derive",
3143
+ "zerofrom",
3144
+ ]
3145
+
3146
+ [[package]]
3147
+ name = "yoke-derive"
3148
+ version = "0.8.2"
3149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3150
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
3151
+ dependencies = [
3152
+ "proc-macro2",
3153
+ "quote",
3154
+ "syn",
3155
+ "synstructure",
3156
+ ]
3157
+
3158
+ [[package]]
3159
+ name = "zerocopy"
3160
+ version = "0.8.50"
3161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3162
+ checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
3163
+ dependencies = [
3164
+ "zerocopy-derive",
3165
+ ]
3166
+
3167
+ [[package]]
3168
+ name = "zerocopy-derive"
3169
+ version = "0.8.50"
3170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3171
+ checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
3172
+ dependencies = [
3173
+ "proc-macro2",
3174
+ "quote",
3175
+ "syn",
3176
+ ]
3177
+
3178
+ [[package]]
3179
+ name = "zerofrom"
3180
+ version = "0.1.8"
3181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3182
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
3183
+ dependencies = [
3184
+ "zerofrom-derive",
3185
+ ]
3186
+
3187
+ [[package]]
3188
+ name = "zerofrom-derive"
3189
+ version = "0.1.7"
3190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3191
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
3192
+ dependencies = [
3193
+ "proc-macro2",
3194
+ "quote",
3195
+ "syn",
3196
+ "synstructure",
3197
+ ]
3198
+
3199
+ [[package]]
3200
+ name = "zeroize"
3201
+ version = "1.8.2"
3202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3203
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3204
+
3205
+ [[package]]
3206
+ name = "zerotrie"
3207
+ version = "0.2.4"
3208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3209
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
3210
+ dependencies = [
3211
+ "displaydoc",
3212
+ "yoke",
3213
+ "zerofrom",
3214
+ ]
3215
+
3216
+ [[package]]
3217
+ name = "zerovec"
3218
+ version = "0.11.6"
3219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3220
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
3221
+ dependencies = [
3222
+ "yoke",
3223
+ "zerofrom",
3224
+ "zerovec-derive",
3225
+ ]
3226
+
3227
+ [[package]]
3228
+ name = "zerovec-derive"
3229
+ version = "0.11.3"
3230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3231
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3232
+ dependencies = [
3233
+ "proc-macro2",
3234
+ "quote",
3235
+ "syn",
3236
+ ]
3237
+
3238
+ [[package]]
3239
+ name = "zmij"
3240
+ version = "1.0.21"
3241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3242
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"