sysand 0.0.10__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 (171) hide show
  1. sysand-0.0.10/Cargo.lock +4692 -0
  2. sysand-0.0.10/Cargo.toml +18 -0
  3. sysand-0.0.10/PKG-INFO +77 -0
  4. sysand-0.0.10/README.md +50 -0
  5. sysand-0.0.10/bindings/py/.gitignore +4 -0
  6. sysand-0.0.10/bindings/py/.python-version +1 -0
  7. sysand-0.0.10/bindings/py/Cargo.toml +39 -0
  8. sysand-0.0.10/bindings/py/DEVELOPMENT.md +74 -0
  9. sysand-0.0.10/bindings/py/README.md +50 -0
  10. sysand-0.0.10/bindings/py/scripts/run_chores.sh +16 -0
  11. sysand-0.0.10/bindings/py/scripts/run_tests.sh +16 -0
  12. sysand-0.0.10/bindings/py/src/lib.rs +600 -0
  13. sysand-0.0.10/bindings/py/tests/basic.rs +55 -0
  14. sysand-0.0.10/bindings/py/tests/test_basic.py +273 -0
  15. sysand-0.0.10/bindings/py/uv.lock +465 -0
  16. sysand-0.0.10/core/.gitignore +0 -0
  17. sysand-0.0.10/core/Cargo.toml +78 -0
  18. sysand-0.0.10/core/scripts/run_chores.sh +14 -0
  19. sysand-0.0.10/core/scripts/run_tests.sh +13 -0
  20. sysand-0.0.10/core/src/auth.rs +524 -0
  21. sysand-0.0.10/core/src/commands/add.rs +111 -0
  22. sysand-0.0.10/core/src/commands/build.rs +309 -0
  23. sysand-0.0.10/core/src/commands/env/install.rs +151 -0
  24. sysand-0.0.10/core/src/commands/env/list.rs +42 -0
  25. sysand-0.0.10/core/src/commands/env/mod.rs +64 -0
  26. sysand-0.0.10/core/src/commands/env/uninstall.rs +21 -0
  27. sysand-0.0.10/core/src/commands/exclude.rs +45 -0
  28. sysand-0.0.10/core/src/commands/include.rs +79 -0
  29. sysand-0.0.10/core/src/commands/info.rs +94 -0
  30. sysand-0.0.10/core/src/commands/init.rs +131 -0
  31. sysand-0.0.10/core/src/commands/lock.rs +328 -0
  32. sysand-0.0.10/core/src/commands/mod.rs +17 -0
  33. sysand-0.0.10/core/src/commands/remove.rs +43 -0
  34. sysand-0.0.10/core/src/commands/root.rs +11 -0
  35. sysand-0.0.10/core/src/commands/sources.rs +140 -0
  36. sysand-0.0.10/core/src/commands/sync.rs +479 -0
  37. sysand-0.0.10/core/src/config/local_fs.rs +289 -0
  38. sysand-0.0.10/core/src/config/mod.rs +257 -0
  39. sysand-0.0.10/core/src/context.rs +12 -0
  40. sysand-0.0.10/core/src/discover.rs +91 -0
  41. sysand-0.0.10/core/src/env/local_directory.rs +644 -0
  42. sysand-0.0.10/core/src/env/memory.rs +506 -0
  43. sysand-0.0.10/core/src/env/mod.rs +330 -0
  44. sysand-0.0.10/core/src/env/null.rs +59 -0
  45. sysand-0.0.10/core/src/env/reqwest_http.rs +613 -0
  46. sysand-0.0.10/core/src/env/utils.rs +111 -0
  47. sysand-0.0.10/core/src/lib.rs +72 -0
  48. sysand-0.0.10/core/src/lock.rs +1620 -0
  49. sysand-0.0.10/core/src/model.rs +748 -0
  50. sysand-0.0.10/core/src/project/any.rs +121 -0
  51. sysand-0.0.10/core/src/project/cached.rs +66 -0
  52. sysand-0.0.10/core/src/project/editable.rs +85 -0
  53. sysand-0.0.10/core/src/project/gix_git_download.rs +276 -0
  54. sysand-0.0.10/core/src/project/local_kpar.rs +473 -0
  55. sysand-0.0.10/core/src/project/local_src.rs +435 -0
  56. sysand-0.0.10/core/src/project/memory.rs +162 -0
  57. sysand-0.0.10/core/src/project/mod.rs +1253 -0
  58. sysand-0.0.10/core/src/project/null.rs +113 -0
  59. sysand-0.0.10/core/src/project/reference.rs +77 -0
  60. sysand-0.0.10/core/src/project/reqwest_kpar_download.rs +258 -0
  61. sysand-0.0.10/core/src/project/reqwest_src.rs +314 -0
  62. sysand-0.0.10/core/src/project/utils.rs +595 -0
  63. sysand-0.0.10/core/src/resolve/combined.rs +703 -0
  64. sysand-0.0.10/core/src/resolve/env.rs +82 -0
  65. sysand-0.0.10/core/src/resolve/file.rs +299 -0
  66. sysand-0.0.10/core/src/resolve/gix_git.rs +173 -0
  67. sysand-0.0.10/core/src/resolve/memory.rs +103 -0
  68. sysand-0.0.10/core/src/resolve/mod.rs +250 -0
  69. sysand-0.0.10/core/src/resolve/net_utils.rs +101 -0
  70. sysand-0.0.10/core/src/resolve/null.rs +26 -0
  71. sysand-0.0.10/core/src/resolve/priority.rs +309 -0
  72. sysand-0.0.10/core/src/resolve/remote.rs +264 -0
  73. sysand-0.0.10/core/src/resolve/reqwest_http.rs +581 -0
  74. sysand-0.0.10/core/src/resolve/sequential.rs +233 -0
  75. sysand-0.0.10/core/src/resolve/standard.rs +135 -0
  76. sysand-0.0.10/core/src/solve/mod.rs +4 -0
  77. sysand-0.0.10/core/src/solve/pubgrub.rs +795 -0
  78. sysand-0.0.10/core/src/stdlib.rs +171 -0
  79. sysand-0.0.10/core/src/stdlib_assets/20250201/analysis-library.meta.json +1 -0
  80. sysand-0.0.10/core/src/stdlib_assets/20250201/analysis-library.project.json +1 -0
  81. sysand-0.0.10/core/src/stdlib_assets/20250201/cause-and-effect-library.meta.json +1 -0
  82. sysand-0.0.10/core/src/stdlib_assets/20250201/cause-and-effect-library.project.json +1 -0
  83. sysand-0.0.10/core/src/stdlib_assets/20250201/data-type-library.meta.json +1 -0
  84. sysand-0.0.10/core/src/stdlib_assets/20250201/data-type-library.project.json +1 -0
  85. sysand-0.0.10/core/src/stdlib_assets/20250201/function-library.meta.json +1 -0
  86. sysand-0.0.10/core/src/stdlib_assets/20250201/function-library.project.json +1 -0
  87. sysand-0.0.10/core/src/stdlib_assets/20250201/geometry-library.meta.json +1 -0
  88. sysand-0.0.10/core/src/stdlib_assets/20250201/geometry-library.project.json +1 -0
  89. sysand-0.0.10/core/src/stdlib_assets/20250201/metadata-library.meta.json +1 -0
  90. sysand-0.0.10/core/src/stdlib_assets/20250201/metadata-library.project.json +1 -0
  91. sysand-0.0.10/core/src/stdlib_assets/20250201/quantities-and-units-library.meta.json +1 -0
  92. sysand-0.0.10/core/src/stdlib_assets/20250201/quantities-and-units-library.project.json +1 -0
  93. sysand-0.0.10/core/src/stdlib_assets/20250201/requirement-derivation-library.meta.json +1 -0
  94. sysand-0.0.10/core/src/stdlib_assets/20250201/requirement-derivation-library.project.json +1 -0
  95. sysand-0.0.10/core/src/stdlib_assets/20250201/semantic-library.meta.json +1 -0
  96. sysand-0.0.10/core/src/stdlib_assets/20250201/semantic-library.project.json +1 -0
  97. sysand-0.0.10/core/src/stdlib_assets/20250201/systems-library.meta.json +1 -0
  98. sysand-0.0.10/core/src/stdlib_assets/20250201/systems-library.project.json +1 -0
  99. sysand-0.0.10/core/src/style.rs +46 -0
  100. sysand-0.0.10/core/src/symbols/lex.rs +202 -0
  101. sysand-0.0.10/core/src/symbols/mod.rs +734 -0
  102. sysand-0.0.10/core/src/workspace.rs +117 -0
  103. sysand-0.0.10/core/tests/filesystem_env.rs +200 -0
  104. sysand-0.0.10/core/tests/memory_env.rs +112 -0
  105. sysand-0.0.10/core/tests/memory_init.rs +93 -0
  106. sysand-0.0.10/core/tests/project_derive.rs +182 -0
  107. sysand-0.0.10/core/tests/project_no_derive.rs +200 -0
  108. sysand-0.0.10/macros/Cargo.toml +19 -0
  109. sysand-0.0.10/macros/scripts/run_chores.sh +12 -0
  110. sysand-0.0.10/macros/src/lib.rs +417 -0
  111. sysand-0.0.10/pyproject.toml +69 -0
  112. sysand-0.0.10/python/sysand/__init__.py +70 -0
  113. sysand-0.0.10/python/sysand/__main__.py +16 -0
  114. sysand-0.0.10/python/sysand/_add.py +16 -0
  115. sysand-0.0.10/python/sysand/_build.py +24 -0
  116. sysand-0.0.10/python/sysand/_exclude.py +19 -0
  117. sysand-0.0.10/python/sysand/_include.py +26 -0
  118. sysand-0.0.10/python/sysand/_info.py +40 -0
  119. sysand-0.0.10/python/sysand/_init.py +19 -0
  120. sysand-0.0.10/python/sysand/_model.py +61 -0
  121. sysand-0.0.10/python/sysand/_remove.py +16 -0
  122. sysand-0.0.10/python/sysand/_sources.py +29 -0
  123. sysand-0.0.10/python/sysand/env/__init__.py +26 -0
  124. sysand-0.0.10/python/sysand/env/_install.py +16 -0
  125. sysand-0.0.10/python/sysand/env/_sources.py +27 -0
  126. sysand-0.0.10/python/sysand/py.typed +0 -0
  127. sysand-0.0.10/sysand/.gitignore +0 -0
  128. sysand-0.0.10/sysand/Cargo.toml +59 -0
  129. sysand-0.0.10/sysand/README.md +50 -0
  130. sysand-0.0.10/sysand/scripts/run_chores.sh +12 -0
  131. sysand-0.0.10/sysand/scripts/run_tests.sh +11 -0
  132. sysand-0.0.10/sysand/src/cli.rs +1633 -0
  133. sysand-0.0.10/sysand/src/commands/add.rs +304 -0
  134. sysand-0.0.10/sysand/src/commands/build.rs +45 -0
  135. sysand-0.0.10/sysand/src/commands/clone.rs +404 -0
  136. sysand-0.0.10/sysand/src/commands/env.rs +327 -0
  137. sysand-0.0.10/sysand/src/commands/exclude.rs +21 -0
  138. sysand-0.0.10/sysand/src/commands/include.rs +34 -0
  139. sysand-0.0.10/sysand/src/commands/info.rs +679 -0
  140. sysand-0.0.10/sysand/src/commands/init.rs +56 -0
  141. sysand-0.0.10/sysand/src/commands/lock.rs +169 -0
  142. sysand-0.0.10/sysand/src/commands/mod.rs +16 -0
  143. sysand-0.0.10/sysand/src/commands/print_root.rs +21 -0
  144. sysand-0.0.10/sysand/src/commands/remove.rs +70 -0
  145. sysand-0.0.10/sysand/src/commands/sources.rs +122 -0
  146. sysand-0.0.10/sysand/src/commands/sync.rs +69 -0
  147. sysand-0.0.10/sysand/src/env_vars.rs +20 -0
  148. sysand-0.0.10/sysand/src/error.rs +20 -0
  149. sysand-0.0.10/sysand/src/lib.rs +778 -0
  150. sysand-0.0.10/sysand/src/logger.rs +69 -0
  151. sysand-0.0.10/sysand/src/main.rs +10 -0
  152. sysand-0.0.10/sysand/src/style.rs +39 -0
  153. sysand-0.0.10/sysand/tests/cli_add_remove.rs +1006 -0
  154. sysand-0.0.10/sysand/tests/cli_base.rs +20 -0
  155. sysand-0.0.10/sysand/tests/cli_build.rs +276 -0
  156. sysand-0.0.10/sysand/tests/cli_clone.rs +272 -0
  157. sysand-0.0.10/sysand/tests/cli_env.rs +287 -0
  158. sysand-0.0.10/sysand/tests/cli_include_exclude.rs +482 -0
  159. sysand-0.0.10/sysand/tests/cli_info.rs +1624 -0
  160. sysand-0.0.10/sysand/tests/cli_init.rs +213 -0
  161. sysand-0.0.10/sysand/tests/cli_lock.rs +348 -0
  162. sysand-0.0.10/sysand/tests/cli_source.rs +201 -0
  163. sysand-0.0.10/sysand/tests/cli_sync.rs +340 -0
  164. sysand-0.0.10/sysand/tests/common/mod.rs +190 -0
  165. sysand-0.0.10/sysand/tests/data/test_lib/.meta.json +8 -0
  166. sysand-0.0.10/sysand/tests/data/test_lib/.project.json +5 -0
  167. sysand-0.0.10/sysand/tests/data/test_lib/extras/bar/baz.sysml +3 -0
  168. sysand-0.0.10/sysand/tests/data/test_lib/extras/foo.sysml +3 -0
  169. sysand-0.0.10/sysand/tests/data/test_lib/libtest.sysml +3 -0
  170. sysand-0.0.10/sysand/tests/data/test_lib.kpar +0 -0
  171. sysand-0.0.10/sysand/tests/discover.rs +30 -0
@@ -0,0 +1,4692 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aes"
13
+ version = "0.8.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "cipher",
19
+ "cpufeatures",
20
+ ]
21
+
22
+ [[package]]
23
+ name = "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 = "0.6.21"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
51
+ dependencies = [
52
+ "anstyle",
53
+ "anstyle-parse 0.2.7",
54
+ "anstyle-query",
55
+ "anstyle-wincon",
56
+ "colorchoice",
57
+ "is_terminal_polyfill",
58
+ "utf8parse",
59
+ ]
60
+
61
+ [[package]]
62
+ name = "anstream"
63
+ version = "1.0.0"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
66
+ dependencies = [
67
+ "anstyle",
68
+ "anstyle-parse 1.0.0",
69
+ "anstyle-query",
70
+ "anstyle-wincon",
71
+ "colorchoice",
72
+ "is_terminal_polyfill",
73
+ "utf8parse",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "anstyle"
78
+ version = "1.0.14"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
81
+
82
+ [[package]]
83
+ name = "anstyle-parse"
84
+ version = "0.2.7"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
87
+ dependencies = [
88
+ "utf8parse",
89
+ ]
90
+
91
+ [[package]]
92
+ name = "anstyle-parse"
93
+ version = "1.0.0"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
96
+ dependencies = [
97
+ "utf8parse",
98
+ ]
99
+
100
+ [[package]]
101
+ name = "anstyle-query"
102
+ version = "1.1.5"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
105
+ dependencies = [
106
+ "windows-sys 0.60.2",
107
+ ]
108
+
109
+ [[package]]
110
+ name = "anstyle-wincon"
111
+ version = "3.0.11"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
114
+ dependencies = [
115
+ "anstyle",
116
+ "once_cell_polyfill",
117
+ "windows-sys 0.60.2",
118
+ ]
119
+
120
+ [[package]]
121
+ name = "anyhow"
122
+ version = "1.0.102"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
125
+
126
+ [[package]]
127
+ name = "arc-swap"
128
+ version = "1.8.1"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "9ded5f9a03ac8f24d1b8a25101ee812cd32cdc8c50a4c50237de2c4915850e73"
131
+ dependencies = [
132
+ "rustversion",
133
+ ]
134
+
135
+ [[package]]
136
+ name = "assert-json-diff"
137
+ version = "2.0.2"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
140
+ dependencies = [
141
+ "serde",
142
+ "serde_json",
143
+ ]
144
+
145
+ [[package]]
146
+ name = "assert_cmd"
147
+ version = "2.1.2"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "9c5bcfa8749ac45dd12cb11055aeeb6b27a3895560d60d71e3c23bf979e60514"
150
+ dependencies = [
151
+ "anstyle",
152
+ "bstr",
153
+ "libc",
154
+ "predicates",
155
+ "predicates-core",
156
+ "predicates-tree",
157
+ "wait-timeout",
158
+ ]
159
+
160
+ [[package]]
161
+ name = "async-trait"
162
+ version = "0.1.89"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
165
+ dependencies = [
166
+ "proc-macro2",
167
+ "quote",
168
+ "syn",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "atomic-waker"
173
+ version = "1.1.2"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
176
+
177
+ [[package]]
178
+ name = "autocfg"
179
+ version = "1.5.0"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
182
+
183
+ [[package]]
184
+ name = "aws-lc-rs"
185
+ version = "1.15.4"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "7b7b6141e96a8c160799cc2d5adecd5cbbe5054cb8c7c4af53da0f83bb7ad256"
188
+ dependencies = [
189
+ "aws-lc-sys",
190
+ "zeroize",
191
+ ]
192
+
193
+ [[package]]
194
+ name = "aws-lc-sys"
195
+ version = "0.37.0"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "5c34dda4df7017c8db52132f0f8a2e0f8161649d15723ed63fc00c82d0f2081a"
198
+ dependencies = [
199
+ "cc",
200
+ "cmake",
201
+ "dunce",
202
+ "fs_extra",
203
+ ]
204
+
205
+ [[package]]
206
+ name = "base64"
207
+ version = "0.22.1"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
210
+
211
+ [[package]]
212
+ name = "bitflags"
213
+ version = "2.11.0"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
216
+
217
+ [[package]]
218
+ name = "block-buffer"
219
+ version = "0.10.4"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
222
+ dependencies = [
223
+ "generic-array",
224
+ ]
225
+
226
+ [[package]]
227
+ name = "borrow-or-share"
228
+ version = "0.2.4"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "dc0b364ead1874514c8c2855ab558056ebfeb775653e7ae45ff72f28f8f3166c"
231
+
232
+ [[package]]
233
+ name = "bstr"
234
+ version = "1.12.1"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
237
+ dependencies = [
238
+ "memchr",
239
+ "regex-automata",
240
+ "serde",
241
+ ]
242
+
243
+ [[package]]
244
+ name = "bumpalo"
245
+ version = "3.19.1"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
248
+
249
+ [[package]]
250
+ name = "byteorder"
251
+ version = "1.5.0"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
254
+
255
+ [[package]]
256
+ name = "bytes"
257
+ version = "1.11.1"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
260
+
261
+ [[package]]
262
+ name = "bzip2"
263
+ version = "0.6.1"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c"
266
+ dependencies = [
267
+ "libbz2-rs-sys",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "camino"
272
+ version = "1.2.2"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
275
+ dependencies = [
276
+ "serde_core",
277
+ ]
278
+
279
+ [[package]]
280
+ name = "camino-tempfile"
281
+ version = "1.4.1"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "64308c4c82a5c38679945ddf88738dc1483dcc563bbb5780755ae9f8497d2b20"
284
+ dependencies = [
285
+ "camino",
286
+ "tempfile",
287
+ ]
288
+
289
+ [[package]]
290
+ name = "cast"
291
+ version = "0.3.0"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
294
+
295
+ [[package]]
296
+ name = "cc"
297
+ version = "1.2.56"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
300
+ dependencies = [
301
+ "find-msvc-tools",
302
+ "jobserver",
303
+ "libc",
304
+ "shlex",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "cesu8"
309
+ version = "1.1.0"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
312
+
313
+ [[package]]
314
+ name = "cfg-if"
315
+ version = "1.0.4"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
318
+
319
+ [[package]]
320
+ name = "cfg_aliases"
321
+ version = "0.2.1"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
324
+
325
+ [[package]]
326
+ name = "chrono"
327
+ version = "0.4.44"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
330
+ dependencies = [
331
+ "iana-time-zone",
332
+ "js-sys",
333
+ "num-traits",
334
+ "serde",
335
+ "wasm-bindgen",
336
+ "windows-link",
337
+ ]
338
+
339
+ [[package]]
340
+ name = "cipher"
341
+ version = "0.4.4"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
344
+ dependencies = [
345
+ "crypto-common",
346
+ "inout",
347
+ ]
348
+
349
+ [[package]]
350
+ name = "clap"
351
+ version = "4.6.0"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
354
+ dependencies = [
355
+ "clap_builder",
356
+ "clap_derive",
357
+ ]
358
+
359
+ [[package]]
360
+ name = "clap_builder"
361
+ version = "4.6.0"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
364
+ dependencies = [
365
+ "anstream 1.0.0",
366
+ "anstyle",
367
+ "clap_lex",
368
+ "strsim",
369
+ "unicase",
370
+ "unicode-width",
371
+ ]
372
+
373
+ [[package]]
374
+ name = "clap_derive"
375
+ version = "4.6.0"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
378
+ dependencies = [
379
+ "heck",
380
+ "proc-macro2",
381
+ "quote",
382
+ "syn",
383
+ ]
384
+
385
+ [[package]]
386
+ name = "clap_lex"
387
+ version = "1.0.0"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
390
+
391
+ [[package]]
392
+ name = "clru"
393
+ version = "0.6.2"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "cbd0f76e066e64fdc5631e3bb46381254deab9ef1158292f27c8c57e3bf3fe59"
396
+
397
+ [[package]]
398
+ name = "cmake"
399
+ version = "0.1.57"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
402
+ dependencies = [
403
+ "cc",
404
+ ]
405
+
406
+ [[package]]
407
+ name = "colorchoice"
408
+ version = "1.0.4"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
411
+
412
+ [[package]]
413
+ name = "colored"
414
+ version = "3.1.1"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
417
+ dependencies = [
418
+ "windows-sys 0.52.0",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "combine"
423
+ version = "4.6.7"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
426
+ dependencies = [
427
+ "bytes",
428
+ "memchr",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "comma"
433
+ version = "1.0.0"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "55b672471b4e9f9e95499ea597ff64941a309b2cdbffcc46f2cc5e2d971fd335"
436
+
437
+ [[package]]
438
+ name = "console_error_panic_hook"
439
+ version = "0.1.7"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
442
+ dependencies = [
443
+ "cfg-if",
444
+ "wasm-bindgen",
445
+ ]
446
+
447
+ [[package]]
448
+ name = "console_log"
449
+ version = "1.0.0"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "be8aed40e4edbf4d3b4431ab260b63fdc40f5780a4766824329ea0f1eefe3c0f"
452
+ dependencies = [
453
+ "log",
454
+ "web-sys",
455
+ ]
456
+
457
+ [[package]]
458
+ name = "constant_time_eq"
459
+ version = "0.3.1"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
462
+
463
+ [[package]]
464
+ name = "core-foundation"
465
+ version = "0.9.4"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
468
+ dependencies = [
469
+ "core-foundation-sys",
470
+ "libc",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "core-foundation"
475
+ version = "0.10.1"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
478
+ dependencies = [
479
+ "core-foundation-sys",
480
+ "libc",
481
+ ]
482
+
483
+ [[package]]
484
+ name = "core-foundation-sys"
485
+ version = "0.8.7"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
488
+
489
+ [[package]]
490
+ name = "cpufeatures"
491
+ version = "0.2.17"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
494
+ dependencies = [
495
+ "libc",
496
+ ]
497
+
498
+ [[package]]
499
+ name = "crc"
500
+ version = "3.3.0"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675"
503
+ dependencies = [
504
+ "crc-catalog",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "crc-catalog"
509
+ version = "2.4.0"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
512
+
513
+ [[package]]
514
+ name = "crc32fast"
515
+ version = "1.5.0"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
518
+ dependencies = [
519
+ "cfg-if",
520
+ ]
521
+
522
+ [[package]]
523
+ name = "crypto-common"
524
+ version = "0.1.7"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
527
+ dependencies = [
528
+ "generic-array",
529
+ "typenum",
530
+ ]
531
+
532
+ [[package]]
533
+ name = "deflate64"
534
+ version = "0.1.10"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "26bf8fc351c5ed29b5c2f0cbbac1b209b74f60ecd62e675a998df72c49af5204"
537
+
538
+ [[package]]
539
+ name = "deranged"
540
+ version = "0.5.5"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
543
+ dependencies = [
544
+ "powerfmt",
545
+ ]
546
+
547
+ [[package]]
548
+ name = "difflib"
549
+ version = "0.4.0"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
552
+
553
+ [[package]]
554
+ name = "digest"
555
+ version = "0.10.7"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
558
+ dependencies = [
559
+ "block-buffer",
560
+ "crypto-common",
561
+ "subtle",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "dirs"
566
+ version = "6.0.0"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
569
+ dependencies = [
570
+ "dirs-sys",
571
+ ]
572
+
573
+ [[package]]
574
+ name = "dirs-sys"
575
+ version = "0.5.0"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
578
+ dependencies = [
579
+ "libc",
580
+ "option-ext",
581
+ "redox_users",
582
+ "windows-sys 0.60.2",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "displaydoc"
587
+ version = "0.2.5"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
590
+ dependencies = [
591
+ "proc-macro2",
592
+ "quote",
593
+ "syn",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "dunce"
598
+ version = "1.0.5"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
601
+
602
+ [[package]]
603
+ name = "either"
604
+ version = "1.15.0"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
607
+
608
+ [[package]]
609
+ name = "encoding_rs"
610
+ version = "0.8.35"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
613
+ dependencies = [
614
+ "cfg-if",
615
+ ]
616
+
617
+ [[package]]
618
+ name = "env_filter"
619
+ version = "1.0.0"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "7a1c3cc8e57274ec99de65301228b537f1e4eedc1b8e0f9411c6caac8ae7308f"
622
+ dependencies = [
623
+ "log",
624
+ "regex",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "env_logger"
629
+ version = "0.11.9"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "b2daee4ea451f429a58296525ddf28b45a3b64f1acf6587e2067437bb11e218d"
632
+ dependencies = [
633
+ "anstream 0.6.21",
634
+ "anstyle",
635
+ "env_filter",
636
+ "jiff",
637
+ "log",
638
+ ]
639
+
640
+ [[package]]
641
+ name = "equivalent"
642
+ version = "1.0.2"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
645
+
646
+ [[package]]
647
+ name = "errno"
648
+ version = "0.3.14"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
651
+ dependencies = [
652
+ "libc",
653
+ "windows-sys 0.52.0",
654
+ ]
655
+
656
+ [[package]]
657
+ name = "faster-hex"
658
+ version = "0.10.0"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "7223ae2d2f179b803433d9c830478527e92b8117eab39460edae7f1614d9fb73"
661
+ dependencies = [
662
+ "heapless",
663
+ "serde",
664
+ ]
665
+
666
+ [[package]]
667
+ name = "fastrand"
668
+ version = "2.3.0"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
671
+
672
+ [[package]]
673
+ name = "filetime"
674
+ version = "0.2.27"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
677
+ dependencies = [
678
+ "cfg-if",
679
+ "libc",
680
+ "libredox",
681
+ ]
682
+
683
+ [[package]]
684
+ name = "find-msvc-tools"
685
+ version = "0.1.9"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
688
+
689
+ [[package]]
690
+ name = "flate2"
691
+ version = "1.1.9"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
694
+ dependencies = [
695
+ "miniz_oxide",
696
+ "zlib-rs",
697
+ ]
698
+
699
+ [[package]]
700
+ name = "float-cmp"
701
+ version = "0.10.0"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
704
+ dependencies = [
705
+ "num-traits",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "fluent-uri"
710
+ version = "0.4.1"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "bc74ac4d8359ae70623506d512209619e5cf8f347124910440dbc221714b328e"
713
+ dependencies = [
714
+ "borrow-or-share",
715
+ "ref-cast",
716
+ "serde",
717
+ ]
718
+
719
+ [[package]]
720
+ name = "fnv"
721
+ version = "1.0.7"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
724
+
725
+ [[package]]
726
+ name = "foldhash"
727
+ version = "0.1.5"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
730
+
731
+ [[package]]
732
+ name = "foldhash"
733
+ version = "0.2.0"
734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
735
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
736
+
737
+ [[package]]
738
+ name = "form_urlencoded"
739
+ version = "1.2.2"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
742
+ dependencies = [
743
+ "percent-encoding",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "fs_extra"
748
+ version = "1.3.0"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
751
+
752
+ [[package]]
753
+ name = "futures"
754
+ version = "0.3.32"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
757
+ dependencies = [
758
+ "futures-channel",
759
+ "futures-core",
760
+ "futures-io",
761
+ "futures-sink",
762
+ "futures-task",
763
+ "futures-util",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "futures-channel"
768
+ version = "0.3.32"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
771
+ dependencies = [
772
+ "futures-core",
773
+ "futures-sink",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "futures-core"
778
+ version = "0.3.32"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
781
+
782
+ [[package]]
783
+ name = "futures-io"
784
+ version = "0.3.32"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
787
+
788
+ [[package]]
789
+ name = "futures-macro"
790
+ version = "0.3.32"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
793
+ dependencies = [
794
+ "proc-macro2",
795
+ "quote",
796
+ "syn",
797
+ ]
798
+
799
+ [[package]]
800
+ name = "futures-sink"
801
+ version = "0.3.32"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
804
+
805
+ [[package]]
806
+ name = "futures-task"
807
+ version = "0.3.32"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
810
+
811
+ [[package]]
812
+ name = "futures-util"
813
+ version = "0.3.32"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
816
+ dependencies = [
817
+ "futures-channel",
818
+ "futures-core",
819
+ "futures-io",
820
+ "futures-macro",
821
+ "futures-sink",
822
+ "futures-task",
823
+ "memchr",
824
+ "pin-project-lite",
825
+ "slab",
826
+ ]
827
+
828
+ [[package]]
829
+ name = "generic-array"
830
+ version = "0.14.7"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
833
+ dependencies = [
834
+ "typenum",
835
+ "version_check",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "getrandom"
840
+ version = "0.2.17"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
843
+ dependencies = [
844
+ "cfg-if",
845
+ "js-sys",
846
+ "libc",
847
+ "wasi",
848
+ "wasm-bindgen",
849
+ ]
850
+
851
+ [[package]]
852
+ name = "getrandom"
853
+ version = "0.3.4"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
856
+ dependencies = [
857
+ "cfg-if",
858
+ "js-sys",
859
+ "libc",
860
+ "r-efi",
861
+ "wasip2",
862
+ "wasm-bindgen",
863
+ ]
864
+
865
+ [[package]]
866
+ name = "getrandom"
867
+ version = "0.4.1"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec"
870
+ dependencies = [
871
+ "cfg-if",
872
+ "libc",
873
+ "r-efi",
874
+ "wasip2",
875
+ "wasip3",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "gix"
880
+ version = "0.80.0"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "5aa56fdbfe98258af2759818ddc3175cc581112660e74c3fd55669836d29a994"
883
+ dependencies = [
884
+ "gix-actor",
885
+ "gix-attributes",
886
+ "gix-command",
887
+ "gix-commitgraph",
888
+ "gix-config",
889
+ "gix-credentials",
890
+ "gix-date",
891
+ "gix-diff",
892
+ "gix-discover",
893
+ "gix-error",
894
+ "gix-features",
895
+ "gix-filter",
896
+ "gix-fs",
897
+ "gix-glob",
898
+ "gix-hash",
899
+ "gix-hashtable",
900
+ "gix-ignore",
901
+ "gix-index",
902
+ "gix-lock",
903
+ "gix-negotiate",
904
+ "gix-object",
905
+ "gix-odb",
906
+ "gix-pack",
907
+ "gix-path",
908
+ "gix-pathspec",
909
+ "gix-prompt",
910
+ "gix-protocol",
911
+ "gix-ref",
912
+ "gix-refspec",
913
+ "gix-revision",
914
+ "gix-revwalk",
915
+ "gix-sec",
916
+ "gix-shallow",
917
+ "gix-submodule",
918
+ "gix-tempfile",
919
+ "gix-trace",
920
+ "gix-transport",
921
+ "gix-traverse",
922
+ "gix-url",
923
+ "gix-utils",
924
+ "gix-validate",
925
+ "gix-worktree",
926
+ "gix-worktree-state",
927
+ "nonempty",
928
+ "smallvec",
929
+ "thiserror 2.0.18",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "gix-actor"
934
+ version = "0.40.0"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "0e5e5b518339d5e6718af108fd064d4e9ba33caf728cf487352873d76411df35"
937
+ dependencies = [
938
+ "bstr",
939
+ "gix-date",
940
+ "gix-error",
941
+ "winnow",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "gix-attributes"
946
+ version = "0.31.0"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "c233d6eaa098c0ca5ce03236fd7a96e27f1abe72fad74b46003fbd11fe49563c"
949
+ dependencies = [
950
+ "bstr",
951
+ "gix-glob",
952
+ "gix-path",
953
+ "gix-quote",
954
+ "gix-trace",
955
+ "kstring",
956
+ "smallvec",
957
+ "thiserror 2.0.18",
958
+ "unicode-bom",
959
+ ]
960
+
961
+ [[package]]
962
+ name = "gix-bitmap"
963
+ version = "0.3.0"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "e7add20f40d060db8c9b1314d499bac6ed7480f33eb113ce3e1cf5d6ff85d989"
966
+ dependencies = [
967
+ "gix-error",
968
+ ]
969
+
970
+ [[package]]
971
+ name = "gix-chunk"
972
+ version = "0.7.0"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "1096b6608fbe5d27fb4984e20f992b4e76fb8c613f6acb87d07c5831b53a6959"
975
+ dependencies = [
976
+ "gix-error",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "gix-command"
981
+ version = "0.8.0"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "b849c65a609f50d02f8a2774fe371650b3384a743c79c2a070ce0da49b7fb7da"
984
+ dependencies = [
985
+ "bstr",
986
+ "gix-path",
987
+ "gix-quote",
988
+ "gix-trace",
989
+ "shell-words",
990
+ ]
991
+
992
+ [[package]]
993
+ name = "gix-commitgraph"
994
+ version = "0.34.0"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "aea2fcfa6bc7329cd094696ba76682b89bdb61cafc848d91b34abba1c1d7e040"
997
+ dependencies = [
998
+ "bstr",
999
+ "gix-chunk",
1000
+ "gix-error",
1001
+ "gix-hash",
1002
+ "memmap2",
1003
+ "nonempty",
1004
+ ]
1005
+
1006
+ [[package]]
1007
+ name = "gix-config"
1008
+ version = "0.53.0"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "8c24b190bd42b55724368c28ae750840b48e2038b9b5281202de6fca4ec1fce1"
1011
+ dependencies = [
1012
+ "bstr",
1013
+ "gix-config-value",
1014
+ "gix-features",
1015
+ "gix-glob",
1016
+ "gix-path",
1017
+ "gix-ref",
1018
+ "gix-sec",
1019
+ "memchr",
1020
+ "smallvec",
1021
+ "thiserror 2.0.18",
1022
+ "unicode-bom",
1023
+ "winnow",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "gix-config-value"
1028
+ version = "0.17.1"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "441a300bc3645a1f45cba495b9175f90f47256ce43f2ee161da0031e3ac77c92"
1031
+ dependencies = [
1032
+ "bitflags",
1033
+ "bstr",
1034
+ "gix-path",
1035
+ "libc",
1036
+ "thiserror 2.0.18",
1037
+ ]
1038
+
1039
+ [[package]]
1040
+ name = "gix-credentials"
1041
+ version = "0.37.0"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "604b2d440d293a0017cbe60ee87fe10337f6e1d224dd6a147619e849e2be4623"
1044
+ dependencies = [
1045
+ "bstr",
1046
+ "gix-command",
1047
+ "gix-config-value",
1048
+ "gix-date",
1049
+ "gix-path",
1050
+ "gix-prompt",
1051
+ "gix-sec",
1052
+ "gix-trace",
1053
+ "gix-url",
1054
+ "thiserror 2.0.18",
1055
+ ]
1056
+
1057
+ [[package]]
1058
+ name = "gix-date"
1059
+ version = "0.15.0"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "6c2f2155782090fd947c2f7904166b9f3c3da0d91358adb011f753ea3a55c0ff"
1062
+ dependencies = [
1063
+ "bstr",
1064
+ "gix-error",
1065
+ "itoa",
1066
+ "jiff",
1067
+ "smallvec",
1068
+ ]
1069
+
1070
+ [[package]]
1071
+ name = "gix-diff"
1072
+ version = "0.60.0"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "60592771b104eda4e537c311e8239daef0df651d61e0e21855f7e6166416ff12"
1075
+ dependencies = [
1076
+ "bstr",
1077
+ "gix-hash",
1078
+ "gix-object",
1079
+ "thiserror 2.0.18",
1080
+ ]
1081
+
1082
+ [[package]]
1083
+ name = "gix-discover"
1084
+ version = "0.48.0"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "810764b92e8cb95e4d91b7adfc5a14666434fd32ace02900dfb66aae71f845df"
1087
+ dependencies = [
1088
+ "bstr",
1089
+ "dunce",
1090
+ "gix-fs",
1091
+ "gix-path",
1092
+ "gix-ref",
1093
+ "gix-sec",
1094
+ "thiserror 2.0.18",
1095
+ ]
1096
+
1097
+ [[package]]
1098
+ name = "gix-error"
1099
+ version = "0.2.0"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "f2dfe8025209bf2a72d97a6f2dff105b93e5ebcf131ffa3d3f1728ce4ac3767b"
1102
+ dependencies = [
1103
+ "bstr",
1104
+ ]
1105
+
1106
+ [[package]]
1107
+ name = "gix-features"
1108
+ version = "0.46.1"
1109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1110
+ checksum = "a83a5fe8927de3bb02b0cfb87165dbfb49f04d4c297767443f2e1011ecc15bdd"
1111
+ dependencies = [
1112
+ "bytes",
1113
+ "crc32fast",
1114
+ "gix-path",
1115
+ "gix-trace",
1116
+ "gix-utils",
1117
+ "libc",
1118
+ "once_cell",
1119
+ "prodash",
1120
+ "thiserror 2.0.18",
1121
+ "walkdir",
1122
+ "zlib-rs",
1123
+ ]
1124
+
1125
+ [[package]]
1126
+ name = "gix-filter"
1127
+ version = "0.27.0"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "7eda328750accaac05ce7637298fd7d6ba0d5d7bdf49c21f899d0b97e3df822d"
1130
+ dependencies = [
1131
+ "bstr",
1132
+ "encoding_rs",
1133
+ "gix-attributes",
1134
+ "gix-command",
1135
+ "gix-hash",
1136
+ "gix-object",
1137
+ "gix-packetline",
1138
+ "gix-path",
1139
+ "gix-quote",
1140
+ "gix-trace",
1141
+ "gix-utils",
1142
+ "smallvec",
1143
+ "thiserror 2.0.18",
1144
+ ]
1145
+
1146
+ [[package]]
1147
+ name = "gix-fs"
1148
+ version = "0.19.1"
1149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1150
+ checksum = "de4bd0d8e6c6ef03485205f8eecc0359042a866d26dba569075db1ebcc005970"
1151
+ dependencies = [
1152
+ "bstr",
1153
+ "fastrand",
1154
+ "gix-features",
1155
+ "gix-path",
1156
+ "gix-utils",
1157
+ "thiserror 2.0.18",
1158
+ ]
1159
+
1160
+ [[package]]
1161
+ name = "gix-glob"
1162
+ version = "0.24.0"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "b03e6cd88cc0dc1eafa1fddac0fb719e4e74b6ea58dd016e71125fde4a326bee"
1165
+ dependencies = [
1166
+ "bitflags",
1167
+ "bstr",
1168
+ "gix-features",
1169
+ "gix-path",
1170
+ ]
1171
+
1172
+ [[package]]
1173
+ name = "gix-hash"
1174
+ version = "0.22.1"
1175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+ checksum = "d8ced05d2d7b13bff08b2f7eb4e47cfeaf00b974c2ddce08377c4fe1f706b3eb"
1177
+ dependencies = [
1178
+ "faster-hex",
1179
+ "gix-features",
1180
+ "sha1-checked",
1181
+ "thiserror 2.0.18",
1182
+ ]
1183
+
1184
+ [[package]]
1185
+ name = "gix-hashtable"
1186
+ version = "0.12.0"
1187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+ checksum = "52f1eecdd006390cbed81f105417dbf82a6fe40842022006550f2e32484101da"
1189
+ dependencies = [
1190
+ "gix-hash",
1191
+ "hashbrown 0.16.1",
1192
+ "parking_lot",
1193
+ ]
1194
+
1195
+ [[package]]
1196
+ name = "gix-ignore"
1197
+ version = "0.19.0"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "8953d87c13267e296d547f0fc7eaa8aa8fa5b2a9a34ab1cd5857f25240c7d299"
1200
+ dependencies = [
1201
+ "bstr",
1202
+ "gix-glob",
1203
+ "gix-path",
1204
+ "gix-trace",
1205
+ "unicode-bom",
1206
+ ]
1207
+
1208
+ [[package]]
1209
+ name = "gix-index"
1210
+ version = "0.48.0"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "13b28482b86662c8b78160e0750b097a35fd61185803a960681351b3a07de07e"
1213
+ dependencies = [
1214
+ "bitflags",
1215
+ "bstr",
1216
+ "filetime",
1217
+ "fnv",
1218
+ "gix-bitmap",
1219
+ "gix-features",
1220
+ "gix-fs",
1221
+ "gix-hash",
1222
+ "gix-lock",
1223
+ "gix-object",
1224
+ "gix-traverse",
1225
+ "gix-utils",
1226
+ "gix-validate",
1227
+ "hashbrown 0.16.1",
1228
+ "itoa",
1229
+ "libc",
1230
+ "memmap2",
1231
+ "rustix",
1232
+ "smallvec",
1233
+ "thiserror 2.0.18",
1234
+ ]
1235
+
1236
+ [[package]]
1237
+ name = "gix-lock"
1238
+ version = "21.0.0"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "e16d406220ef9df105645a9ddcaa42e8c882ba920344ace866d0403570aea599"
1241
+ dependencies = [
1242
+ "gix-tempfile",
1243
+ "gix-utils",
1244
+ "thiserror 2.0.18",
1245
+ ]
1246
+
1247
+ [[package]]
1248
+ name = "gix-negotiate"
1249
+ version = "0.28.0"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "5a925ec9bc3664eaff9c7dc49bc857fe0de7e90ece6e092cb66ba923812824db"
1252
+ dependencies = [
1253
+ "bitflags",
1254
+ "gix-commitgraph",
1255
+ "gix-date",
1256
+ "gix-hash",
1257
+ "gix-object",
1258
+ "gix-revwalk",
1259
+ ]
1260
+
1261
+ [[package]]
1262
+ name = "gix-object"
1263
+ version = "0.57.0"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "013eae8e072c6155191ac266950dfbc8d162408642571b32e2c6b3e4b03740fb"
1266
+ dependencies = [
1267
+ "bstr",
1268
+ "gix-actor",
1269
+ "gix-date",
1270
+ "gix-features",
1271
+ "gix-hash",
1272
+ "gix-hashtable",
1273
+ "gix-path",
1274
+ "gix-utils",
1275
+ "gix-validate",
1276
+ "itoa",
1277
+ "smallvec",
1278
+ "thiserror 2.0.18",
1279
+ "winnow",
1280
+ ]
1281
+
1282
+ [[package]]
1283
+ name = "gix-odb"
1284
+ version = "0.77.0"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "f8901a182923799e8857ac01bff6d7c6fecea999abd79a86dab638aadbb843f3"
1287
+ dependencies = [
1288
+ "arc-swap",
1289
+ "gix-features",
1290
+ "gix-fs",
1291
+ "gix-hash",
1292
+ "gix-hashtable",
1293
+ "gix-object",
1294
+ "gix-pack",
1295
+ "gix-path",
1296
+ "gix-quote",
1297
+ "parking_lot",
1298
+ "tempfile",
1299
+ "thiserror 2.0.18",
1300
+ ]
1301
+
1302
+ [[package]]
1303
+ name = "gix-pack"
1304
+ version = "0.67.0"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "194a9f96f4058359d6874123f160e5b2044974829a29f3a71bb9c9218d1916c3"
1307
+ dependencies = [
1308
+ "clru",
1309
+ "gix-chunk",
1310
+ "gix-error",
1311
+ "gix-features",
1312
+ "gix-hash",
1313
+ "gix-hashtable",
1314
+ "gix-object",
1315
+ "gix-path",
1316
+ "gix-tempfile",
1317
+ "memmap2",
1318
+ "parking_lot",
1319
+ "smallvec",
1320
+ "thiserror 2.0.18",
1321
+ ]
1322
+
1323
+ [[package]]
1324
+ name = "gix-packetline"
1325
+ version = "0.21.1"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "25429ee1ef792d9b653ee5de09bb525489fc8e6908334cfd5d5824269f0b7073"
1328
+ dependencies = [
1329
+ "bstr",
1330
+ "faster-hex",
1331
+ "gix-trace",
1332
+ "thiserror 2.0.18",
1333
+ ]
1334
+
1335
+ [[package]]
1336
+ name = "gix-path"
1337
+ version = "0.11.1"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "7163b1633d35846a52ef8093f390cec240e2d55da99b60151883035e5169cd85"
1340
+ dependencies = [
1341
+ "bstr",
1342
+ "gix-trace",
1343
+ "gix-validate",
1344
+ "thiserror 2.0.18",
1345
+ ]
1346
+
1347
+ [[package]]
1348
+ name = "gix-pathspec"
1349
+ version = "0.16.0"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "40e7636782b35bb1d3ade19ea7387278e96fd49f6963ab41bfca81cef4b61b20"
1352
+ dependencies = [
1353
+ "bitflags",
1354
+ "bstr",
1355
+ "gix-attributes",
1356
+ "gix-config-value",
1357
+ "gix-glob",
1358
+ "gix-path",
1359
+ "thiserror 2.0.18",
1360
+ ]
1361
+
1362
+ [[package]]
1363
+ name = "gix-prompt"
1364
+ version = "0.14.0"
1365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1366
+ checksum = "d5b43e9c81bce4e35d90e32405649d47e9fae2ab861d0edbc913fde4df2c6cc7"
1367
+ dependencies = [
1368
+ "gix-command",
1369
+ "gix-config-value",
1370
+ "parking_lot",
1371
+ "rustix",
1372
+ "thiserror 2.0.18",
1373
+ ]
1374
+
1375
+ [[package]]
1376
+ name = "gix-protocol"
1377
+ version = "0.58.0"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "5c64ec7b04c57df6e97a2ac4738a4a09897b88febd6ec4bd2c5d3ff3ad3849df"
1380
+ dependencies = [
1381
+ "bstr",
1382
+ "gix-credentials",
1383
+ "gix-date",
1384
+ "gix-features",
1385
+ "gix-hash",
1386
+ "gix-lock",
1387
+ "gix-negotiate",
1388
+ "gix-object",
1389
+ "gix-ref",
1390
+ "gix-refspec",
1391
+ "gix-revwalk",
1392
+ "gix-shallow",
1393
+ "gix-trace",
1394
+ "gix-transport",
1395
+ "gix-utils",
1396
+ "maybe-async",
1397
+ "nonempty",
1398
+ "thiserror 2.0.18",
1399
+ "winnow",
1400
+ ]
1401
+
1402
+ [[package]]
1403
+ name = "gix-quote"
1404
+ version = "0.7.0"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "68533db71259c8776dd4e770d2b7b98696213ecdc1f5c9e3507119e274e0c578"
1407
+ dependencies = [
1408
+ "bstr",
1409
+ "gix-error",
1410
+ "gix-utils",
1411
+ ]
1412
+
1413
+ [[package]]
1414
+ name = "gix-ref"
1415
+ version = "0.60.0"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "7cc7b230945f02d706a49bcf823b671785ecd9e88e713b8bd2ca5db104c97add"
1418
+ dependencies = [
1419
+ "gix-actor",
1420
+ "gix-features",
1421
+ "gix-fs",
1422
+ "gix-hash",
1423
+ "gix-lock",
1424
+ "gix-object",
1425
+ "gix-path",
1426
+ "gix-tempfile",
1427
+ "gix-utils",
1428
+ "gix-validate",
1429
+ "memmap2",
1430
+ "thiserror 2.0.18",
1431
+ "winnow",
1432
+ ]
1433
+
1434
+ [[package]]
1435
+ name = "gix-refspec"
1436
+ version = "0.38.0"
1437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1438
+ checksum = "bb3dc194cdc1176fc20f39f233d0d516f83df843ea14a9eb758a2690f3e38d1e"
1439
+ dependencies = [
1440
+ "bstr",
1441
+ "gix-error",
1442
+ "gix-glob",
1443
+ "gix-hash",
1444
+ "gix-revision",
1445
+ "gix-validate",
1446
+ "smallvec",
1447
+ "thiserror 2.0.18",
1448
+ ]
1449
+
1450
+ [[package]]
1451
+ name = "gix-revision"
1452
+ version = "0.42.0"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "df9e31cd402edae08c3fdb67917b9fb75b0c9c9bd2fbed0c2dd9c0847039c556"
1455
+ dependencies = [
1456
+ "bstr",
1457
+ "gix-commitgraph",
1458
+ "gix-date",
1459
+ "gix-error",
1460
+ "gix-hash",
1461
+ "gix-object",
1462
+ "gix-revwalk",
1463
+ "nonempty",
1464
+ ]
1465
+
1466
+ [[package]]
1467
+ name = "gix-revwalk"
1468
+ version = "0.28.0"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "573f6e471d76c0796f0b8ed5a431521ea5d121a7860121a2a9703e9434ab1d52"
1471
+ dependencies = [
1472
+ "gix-commitgraph",
1473
+ "gix-date",
1474
+ "gix-error",
1475
+ "gix-hash",
1476
+ "gix-hashtable",
1477
+ "gix-object",
1478
+ "smallvec",
1479
+ "thiserror 2.0.18",
1480
+ ]
1481
+
1482
+ [[package]]
1483
+ name = "gix-sec"
1484
+ version = "0.13.1"
1485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1486
+ checksum = "e014df75f3d7f5c98b18b45c202422da6236a1c0c0a50997c3f41e601f3ad511"
1487
+ dependencies = [
1488
+ "bitflags",
1489
+ "gix-path",
1490
+ "libc",
1491
+ "windows-sys 0.61.2",
1492
+ ]
1493
+
1494
+ [[package]]
1495
+ name = "gix-shallow"
1496
+ version = "0.9.0"
1497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1498
+ checksum = "4ee51037c8a27ddb1c7a6d6db2553d01e501d5b1dae7dc65e41905a70960e658"
1499
+ dependencies = [
1500
+ "bstr",
1501
+ "gix-hash",
1502
+ "gix-lock",
1503
+ "nonempty",
1504
+ "thiserror 2.0.18",
1505
+ ]
1506
+
1507
+ [[package]]
1508
+ name = "gix-submodule"
1509
+ version = "0.27.0"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "6cba2022599491d620fbc77b3729dba0120862ce9b4af6e3c47d19a9f2a5d884"
1512
+ dependencies = [
1513
+ "bstr",
1514
+ "gix-config",
1515
+ "gix-path",
1516
+ "gix-pathspec",
1517
+ "gix-refspec",
1518
+ "gix-url",
1519
+ "thiserror 2.0.18",
1520
+ ]
1521
+
1522
+ [[package]]
1523
+ name = "gix-tempfile"
1524
+ version = "21.0.0"
1525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1526
+ checksum = "d280bba7c547170e42d5228fc6e76c191fb5a7c88808ff61af06460404d1fd91"
1527
+ dependencies = [
1528
+ "gix-fs",
1529
+ "libc",
1530
+ "parking_lot",
1531
+ "tempfile",
1532
+ ]
1533
+
1534
+ [[package]]
1535
+ name = "gix-trace"
1536
+ version = "0.1.18"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "f69a13643b8437d4ca6845e08143e847a36ca82903eed13303475d0ae8b162e0"
1539
+
1540
+ [[package]]
1541
+ name = "gix-transport"
1542
+ version = "0.55.0"
1543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1544
+ checksum = "b4d72f5094b9f851e348f2cbb840d026ffd8119fc28bc2bca1387eecd171c815"
1545
+ dependencies = [
1546
+ "base64",
1547
+ "bstr",
1548
+ "gix-command",
1549
+ "gix-credentials",
1550
+ "gix-features",
1551
+ "gix-packetline",
1552
+ "gix-quote",
1553
+ "gix-sec",
1554
+ "gix-url",
1555
+ "reqwest",
1556
+ "thiserror 2.0.18",
1557
+ ]
1558
+
1559
+ [[package]]
1560
+ name = "gix-traverse"
1561
+ version = "0.54.0"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "c99b3cf9dc87c13f1404e7b0e8c5e4bff4975d6f788831c02d6c006f3c76b4a0"
1564
+ dependencies = [
1565
+ "bitflags",
1566
+ "gix-commitgraph",
1567
+ "gix-date",
1568
+ "gix-hash",
1569
+ "gix-hashtable",
1570
+ "gix-object",
1571
+ "gix-revwalk",
1572
+ "smallvec",
1573
+ "thiserror 2.0.18",
1574
+ ]
1575
+
1576
+ [[package]]
1577
+ name = "gix-url"
1578
+ version = "0.35.2"
1579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+ checksum = "d28e8af3d42581190da884f013caf254d2fd4d6ab102408f08d21bfa11de6c8d"
1581
+ dependencies = [
1582
+ "bstr",
1583
+ "gix-path",
1584
+ "percent-encoding",
1585
+ "thiserror 2.0.18",
1586
+ ]
1587
+
1588
+ [[package]]
1589
+ name = "gix-utils"
1590
+ version = "0.3.1"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "befcdbdfb1238d2854591f760a48711bed85e72d80a10e8f2f93f656746ef7c5"
1593
+ dependencies = [
1594
+ "fastrand",
1595
+ "unicode-normalization",
1596
+ ]
1597
+
1598
+ [[package]]
1599
+ name = "gix-validate"
1600
+ version = "0.11.0"
1601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1602
+ checksum = "0ec1eff98d91941f47766367cba1be746bab662bad761d9891ae6f7882f7840b"
1603
+ dependencies = [
1604
+ "bstr",
1605
+ ]
1606
+
1607
+ [[package]]
1608
+ name = "gix-worktree"
1609
+ version = "0.49.0"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "005627fc149315f39473e3e94a50058dd5d345c490a23723f67f32ee9c505232"
1612
+ dependencies = [
1613
+ "bstr",
1614
+ "gix-attributes",
1615
+ "gix-fs",
1616
+ "gix-glob",
1617
+ "gix-hash",
1618
+ "gix-ignore",
1619
+ "gix-index",
1620
+ "gix-object",
1621
+ "gix-path",
1622
+ "gix-validate",
1623
+ ]
1624
+
1625
+ [[package]]
1626
+ name = "gix-worktree-state"
1627
+ version = "0.27.0"
1628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1629
+ checksum = "8b9ffce16a83def3651ee4c9872960f4582652fbcc8bbee568c9bae6ffa23894"
1630
+ dependencies = [
1631
+ "bstr",
1632
+ "gix-features",
1633
+ "gix-filter",
1634
+ "gix-fs",
1635
+ "gix-index",
1636
+ "gix-object",
1637
+ "gix-path",
1638
+ "gix-worktree",
1639
+ "io-close",
1640
+ "thiserror 2.0.18",
1641
+ ]
1642
+
1643
+ [[package]]
1644
+ name = "glob"
1645
+ version = "0.3.3"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1648
+
1649
+ [[package]]
1650
+ name = "globset"
1651
+ version = "0.4.18"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
1654
+ dependencies = [
1655
+ "aho-corasick",
1656
+ "bstr",
1657
+ "regex-automata",
1658
+ "regex-syntax",
1659
+ ]
1660
+
1661
+ [[package]]
1662
+ name = "h2"
1663
+ version = "0.4.13"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
1666
+ dependencies = [
1667
+ "atomic-waker",
1668
+ "bytes",
1669
+ "fnv",
1670
+ "futures-core",
1671
+ "futures-sink",
1672
+ "http",
1673
+ "indexmap",
1674
+ "slab",
1675
+ "tokio",
1676
+ "tokio-util",
1677
+ "tracing",
1678
+ ]
1679
+
1680
+ [[package]]
1681
+ name = "hash32"
1682
+ version = "0.3.1"
1683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
+ checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
1685
+ dependencies = [
1686
+ "byteorder",
1687
+ ]
1688
+
1689
+ [[package]]
1690
+ name = "hashbrown"
1691
+ version = "0.15.5"
1692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1693
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1694
+ dependencies = [
1695
+ "foldhash 0.1.5",
1696
+ ]
1697
+
1698
+ [[package]]
1699
+ name = "hashbrown"
1700
+ version = "0.16.1"
1701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1702
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1703
+ dependencies = [
1704
+ "allocator-api2",
1705
+ "equivalent",
1706
+ "foldhash 0.2.0",
1707
+ ]
1708
+
1709
+ [[package]]
1710
+ name = "heapless"
1711
+ version = "0.8.0"
1712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1713
+ checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
1714
+ dependencies = [
1715
+ "hash32",
1716
+ "stable_deref_trait",
1717
+ ]
1718
+
1719
+ [[package]]
1720
+ name = "heck"
1721
+ version = "0.5.0"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1724
+
1725
+ [[package]]
1726
+ name = "hmac"
1727
+ version = "0.12.1"
1728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1729
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1730
+ dependencies = [
1731
+ "digest",
1732
+ ]
1733
+
1734
+ [[package]]
1735
+ name = "http"
1736
+ version = "1.4.0"
1737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1738
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1739
+ dependencies = [
1740
+ "bytes",
1741
+ "itoa",
1742
+ ]
1743
+
1744
+ [[package]]
1745
+ name = "http-body"
1746
+ version = "1.0.1"
1747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1748
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1749
+ dependencies = [
1750
+ "bytes",
1751
+ "http",
1752
+ ]
1753
+
1754
+ [[package]]
1755
+ name = "http-body-util"
1756
+ version = "0.1.3"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1759
+ dependencies = [
1760
+ "bytes",
1761
+ "futures-core",
1762
+ "http",
1763
+ "http-body",
1764
+ "pin-project-lite",
1765
+ ]
1766
+
1767
+ [[package]]
1768
+ name = "httparse"
1769
+ version = "1.10.1"
1770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1771
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1772
+
1773
+ [[package]]
1774
+ name = "httpdate"
1775
+ version = "1.0.3"
1776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1777
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1778
+
1779
+ [[package]]
1780
+ name = "hyper"
1781
+ version = "1.8.1"
1782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1783
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1784
+ dependencies = [
1785
+ "atomic-waker",
1786
+ "bytes",
1787
+ "futures-channel",
1788
+ "futures-core",
1789
+ "h2",
1790
+ "http",
1791
+ "http-body",
1792
+ "httparse",
1793
+ "httpdate",
1794
+ "itoa",
1795
+ "pin-project-lite",
1796
+ "pin-utils",
1797
+ "smallvec",
1798
+ "tokio",
1799
+ "want",
1800
+ ]
1801
+
1802
+ [[package]]
1803
+ name = "hyper-rustls"
1804
+ version = "0.27.7"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1807
+ dependencies = [
1808
+ "http",
1809
+ "hyper",
1810
+ "hyper-util",
1811
+ "rustls",
1812
+ "rustls-pki-types",
1813
+ "tokio",
1814
+ "tokio-rustls",
1815
+ "tower-service",
1816
+ ]
1817
+
1818
+ [[package]]
1819
+ name = "hyper-util"
1820
+ version = "0.1.20"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1823
+ dependencies = [
1824
+ "base64",
1825
+ "bytes",
1826
+ "futures-channel",
1827
+ "futures-util",
1828
+ "http",
1829
+ "http-body",
1830
+ "hyper",
1831
+ "ipnet",
1832
+ "libc",
1833
+ "percent-encoding",
1834
+ "pin-project-lite",
1835
+ "socket2",
1836
+ "system-configuration",
1837
+ "tokio",
1838
+ "tower-service",
1839
+ "tracing",
1840
+ "windows-registry",
1841
+ ]
1842
+
1843
+ [[package]]
1844
+ name = "iana-time-zone"
1845
+ version = "0.1.65"
1846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1847
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1848
+ dependencies = [
1849
+ "android_system_properties",
1850
+ "core-foundation-sys",
1851
+ "iana-time-zone-haiku",
1852
+ "js-sys",
1853
+ "log",
1854
+ "wasm-bindgen",
1855
+ "windows-core",
1856
+ ]
1857
+
1858
+ [[package]]
1859
+ name = "iana-time-zone-haiku"
1860
+ version = "0.1.2"
1861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1862
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1863
+ dependencies = [
1864
+ "cc",
1865
+ ]
1866
+
1867
+ [[package]]
1868
+ name = "icu_collections"
1869
+ version = "2.1.1"
1870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1871
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1872
+ dependencies = [
1873
+ "displaydoc",
1874
+ "potential_utf",
1875
+ "yoke",
1876
+ "zerofrom",
1877
+ "zerovec",
1878
+ ]
1879
+
1880
+ [[package]]
1881
+ name = "icu_locale_core"
1882
+ version = "2.1.1"
1883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1884
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1885
+ dependencies = [
1886
+ "displaydoc",
1887
+ "litemap",
1888
+ "tinystr",
1889
+ "writeable",
1890
+ "zerovec",
1891
+ ]
1892
+
1893
+ [[package]]
1894
+ name = "icu_normalizer"
1895
+ version = "2.1.1"
1896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1897
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1898
+ dependencies = [
1899
+ "icu_collections",
1900
+ "icu_normalizer_data",
1901
+ "icu_properties",
1902
+ "icu_provider",
1903
+ "smallvec",
1904
+ "zerovec",
1905
+ ]
1906
+
1907
+ [[package]]
1908
+ name = "icu_normalizer_data"
1909
+ version = "2.1.1"
1910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1911
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1912
+
1913
+ [[package]]
1914
+ name = "icu_properties"
1915
+ version = "2.1.2"
1916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1917
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1918
+ dependencies = [
1919
+ "icu_collections",
1920
+ "icu_locale_core",
1921
+ "icu_properties_data",
1922
+ "icu_provider",
1923
+ "zerotrie",
1924
+ "zerovec",
1925
+ ]
1926
+
1927
+ [[package]]
1928
+ name = "icu_properties_data"
1929
+ version = "2.1.2"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1932
+
1933
+ [[package]]
1934
+ name = "icu_provider"
1935
+ version = "2.1.1"
1936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1937
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1938
+ dependencies = [
1939
+ "displaydoc",
1940
+ "icu_locale_core",
1941
+ "writeable",
1942
+ "yoke",
1943
+ "zerofrom",
1944
+ "zerotrie",
1945
+ "zerovec",
1946
+ ]
1947
+
1948
+ [[package]]
1949
+ name = "id-arena"
1950
+ version = "2.3.0"
1951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1952
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1953
+
1954
+ [[package]]
1955
+ name = "idna"
1956
+ version = "1.1.0"
1957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1958
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1959
+ dependencies = [
1960
+ "idna_adapter",
1961
+ "smallvec",
1962
+ "utf8_iter",
1963
+ ]
1964
+
1965
+ [[package]]
1966
+ name = "idna_adapter"
1967
+ version = "1.2.1"
1968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1969
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1970
+ dependencies = [
1971
+ "icu_normalizer",
1972
+ "icu_properties",
1973
+ ]
1974
+
1975
+ [[package]]
1976
+ name = "indexmap"
1977
+ version = "2.13.0"
1978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1979
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1980
+ dependencies = [
1981
+ "equivalent",
1982
+ "hashbrown 0.16.1",
1983
+ "serde",
1984
+ "serde_core",
1985
+ ]
1986
+
1987
+ [[package]]
1988
+ name = "inout"
1989
+ version = "0.1.4"
1990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1991
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1992
+ dependencies = [
1993
+ "generic-array",
1994
+ ]
1995
+
1996
+ [[package]]
1997
+ name = "io-close"
1998
+ version = "0.3.7"
1999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2000
+ checksum = "9cadcf447f06744f8ce713d2d6239bb5bde2c357a452397a9ed90c625da390bc"
2001
+ dependencies = [
2002
+ "libc",
2003
+ "winapi",
2004
+ ]
2005
+
2006
+ [[package]]
2007
+ name = "ipnet"
2008
+ version = "2.11.0"
2009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2010
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
2011
+
2012
+ [[package]]
2013
+ name = "iri-string"
2014
+ version = "0.7.10"
2015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2016
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
2017
+ dependencies = [
2018
+ "memchr",
2019
+ "serde",
2020
+ ]
2021
+
2022
+ [[package]]
2023
+ name = "is_terminal_polyfill"
2024
+ version = "1.70.2"
2025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2026
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
2027
+
2028
+ [[package]]
2029
+ name = "itertools"
2030
+ version = "0.14.0"
2031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2032
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
2033
+ dependencies = [
2034
+ "either",
2035
+ ]
2036
+
2037
+ [[package]]
2038
+ name = "itoa"
2039
+ version = "1.0.17"
2040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2041
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
2042
+
2043
+ [[package]]
2044
+ name = "jiff"
2045
+ version = "0.2.18"
2046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2047
+ checksum = "e67e8da4c49d6d9909fe03361f9b620f58898859f5c7aded68351e85e71ecf50"
2048
+ dependencies = [
2049
+ "jiff-static",
2050
+ "jiff-tzdb-platform",
2051
+ "log",
2052
+ "portable-atomic",
2053
+ "portable-atomic-util",
2054
+ "serde_core",
2055
+ "windows-sys 0.52.0",
2056
+ ]
2057
+
2058
+ [[package]]
2059
+ name = "jiff-static"
2060
+ version = "0.2.18"
2061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2062
+ checksum = "e0c84ee7f197eca9a86c6fd6cb771e55eb991632f15f2bc3ca6ec838929e6e78"
2063
+ dependencies = [
2064
+ "proc-macro2",
2065
+ "quote",
2066
+ "syn",
2067
+ ]
2068
+
2069
+ [[package]]
2070
+ name = "jiff-tzdb"
2071
+ version = "0.1.5"
2072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2073
+ checksum = "68971ebff725b9e2ca27a601c5eb38a4c5d64422c4cbab0c535f248087eda5c2"
2074
+
2075
+ [[package]]
2076
+ name = "jiff-tzdb-platform"
2077
+ version = "0.1.3"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"
2080
+ dependencies = [
2081
+ "jiff-tzdb",
2082
+ ]
2083
+
2084
+ [[package]]
2085
+ name = "jni"
2086
+ version = "0.21.1"
2087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2088
+ checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
2089
+ dependencies = [
2090
+ "cesu8",
2091
+ "cfg-if",
2092
+ "combine",
2093
+ "jni-sys",
2094
+ "log",
2095
+ "thiserror 1.0.69",
2096
+ "walkdir",
2097
+ "windows-sys 0.45.0",
2098
+ ]
2099
+
2100
+ [[package]]
2101
+ name = "jni-sys"
2102
+ version = "0.3.0"
2103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2104
+ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
2105
+
2106
+ [[package]]
2107
+ name = "jobserver"
2108
+ version = "0.1.34"
2109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2110
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
2111
+ dependencies = [
2112
+ "getrandom 0.3.4",
2113
+ "libc",
2114
+ ]
2115
+
2116
+ [[package]]
2117
+ name = "js-sys"
2118
+ version = "0.3.91"
2119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2120
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
2121
+ dependencies = [
2122
+ "once_cell",
2123
+ "wasm-bindgen",
2124
+ ]
2125
+
2126
+ [[package]]
2127
+ name = "kstring"
2128
+ version = "2.0.2"
2129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2130
+ checksum = "558bf9508a558512042d3095138b1f7b8fe90c5467d94f9f1da28b3731c5dbd1"
2131
+ dependencies = [
2132
+ "static_assertions",
2133
+ ]
2134
+
2135
+ [[package]]
2136
+ name = "leb128fmt"
2137
+ version = "0.1.0"
2138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2139
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
2140
+
2141
+ [[package]]
2142
+ name = "libbz2-rs-sys"
2143
+ version = "0.2.2"
2144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2145
+ checksum = "2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7"
2146
+
2147
+ [[package]]
2148
+ name = "libc"
2149
+ version = "0.2.182"
2150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2151
+ checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
2152
+
2153
+ [[package]]
2154
+ name = "libm"
2155
+ version = "0.2.16"
2156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2157
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
2158
+
2159
+ [[package]]
2160
+ name = "libredox"
2161
+ version = "0.1.12"
2162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2163
+ checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
2164
+ dependencies = [
2165
+ "bitflags",
2166
+ "libc",
2167
+ "redox_syscall 0.7.0",
2168
+ ]
2169
+
2170
+ [[package]]
2171
+ name = "linux-raw-sys"
2172
+ version = "0.12.1"
2173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2174
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
2175
+
2176
+ [[package]]
2177
+ name = "litemap"
2178
+ version = "0.8.1"
2179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2180
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
2181
+
2182
+ [[package]]
2183
+ name = "lock_api"
2184
+ version = "0.4.14"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
2187
+ dependencies = [
2188
+ "scopeguard",
2189
+ ]
2190
+
2191
+ [[package]]
2192
+ name = "log"
2193
+ version = "0.4.29"
2194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2195
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
2196
+
2197
+ [[package]]
2198
+ name = "logos"
2199
+ version = "0.16.1"
2200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2201
+ checksum = "eb2c55a318a87600ea870ff8c2012148b44bf18b74fad48d0f835c38c7d07c5f"
2202
+ dependencies = [
2203
+ "logos-derive",
2204
+ ]
2205
+
2206
+ [[package]]
2207
+ name = "logos-codegen"
2208
+ version = "0.16.1"
2209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2210
+ checksum = "58b3ffaa284e1350d017a57d04ada118c4583cf260c8fb01e0fe28a2e9cf8970"
2211
+ dependencies = [
2212
+ "fnv",
2213
+ "proc-macro2",
2214
+ "quote",
2215
+ "regex-automata",
2216
+ "regex-syntax",
2217
+ "syn",
2218
+ ]
2219
+
2220
+ [[package]]
2221
+ name = "logos-derive"
2222
+ version = "0.16.1"
2223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2224
+ checksum = "52d3a9855747c17eaf4383823f135220716ab49bea5fbea7dd42cc9a92f8aa31"
2225
+ dependencies = [
2226
+ "logos-codegen",
2227
+ ]
2228
+
2229
+ [[package]]
2230
+ name = "lru-slab"
2231
+ version = "0.1.2"
2232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2233
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
2234
+
2235
+ [[package]]
2236
+ name = "lzma-rust2"
2237
+ version = "0.15.7"
2238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2239
+ checksum = "1670343e58806300d87950e3401e820b519b9384281bbabfb15e3636689ffd69"
2240
+ dependencies = [
2241
+ "crc",
2242
+ "sha2",
2243
+ ]
2244
+
2245
+ [[package]]
2246
+ name = "maybe-async"
2247
+ version = "0.2.10"
2248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2249
+ checksum = "5cf92c10c7e361d6b99666ec1c6f9805b0bea2c3bd8c78dc6fe98ac5bd78db11"
2250
+ dependencies = [
2251
+ "proc-macro2",
2252
+ "quote",
2253
+ "syn",
2254
+ ]
2255
+
2256
+ [[package]]
2257
+ name = "memchr"
2258
+ version = "2.8.0"
2259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2260
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
2261
+
2262
+ [[package]]
2263
+ name = "memmap2"
2264
+ version = "0.9.9"
2265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2266
+ checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
2267
+ dependencies = [
2268
+ "libc",
2269
+ ]
2270
+
2271
+ [[package]]
2272
+ name = "mime"
2273
+ version = "0.3.17"
2274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2275
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2276
+
2277
+ [[package]]
2278
+ name = "minicov"
2279
+ version = "0.3.8"
2280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2281
+ checksum = "4869b6a491569605d66d3952bcdf03df789e5b536e5f0cf7758a7f08a55ae24d"
2282
+ dependencies = [
2283
+ "cc",
2284
+ "walkdir",
2285
+ ]
2286
+
2287
+ [[package]]
2288
+ name = "miniz_oxide"
2289
+ version = "0.8.9"
2290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2291
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
2292
+ dependencies = [
2293
+ "adler2",
2294
+ "simd-adler32",
2295
+ ]
2296
+
2297
+ [[package]]
2298
+ name = "mio"
2299
+ version = "1.1.1"
2300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2301
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
2302
+ dependencies = [
2303
+ "libc",
2304
+ "wasi",
2305
+ "windows-sys 0.61.2",
2306
+ ]
2307
+
2308
+ [[package]]
2309
+ name = "mockito"
2310
+ version = "1.7.2"
2311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2312
+ checksum = "90820618712cab19cfc46b274c6c22546a82affcb3c3bdf0f29e3db8e1bb92c0"
2313
+ dependencies = [
2314
+ "assert-json-diff",
2315
+ "bytes",
2316
+ "colored",
2317
+ "futures-core",
2318
+ "http",
2319
+ "http-body",
2320
+ "http-body-util",
2321
+ "hyper",
2322
+ "hyper-util",
2323
+ "log",
2324
+ "pin-project-lite",
2325
+ "rand",
2326
+ "regex",
2327
+ "serde_json",
2328
+ "serde_urlencoded",
2329
+ "similar",
2330
+ "tokio",
2331
+ ]
2332
+
2333
+ [[package]]
2334
+ name = "nix"
2335
+ version = "0.30.1"
2336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2337
+ checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
2338
+ dependencies = [
2339
+ "bitflags",
2340
+ "cfg-if",
2341
+ "cfg_aliases",
2342
+ "libc",
2343
+ ]
2344
+
2345
+ [[package]]
2346
+ name = "nonempty"
2347
+ version = "0.12.0"
2348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2349
+ checksum = "9737e026353e5cd0736f98eddae28665118eb6f6600902a7f50db585621fecb6"
2350
+
2351
+ [[package]]
2352
+ name = "normalize-line-endings"
2353
+ version = "0.3.0"
2354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2355
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
2356
+
2357
+ [[package]]
2358
+ name = "nu-ansi-term"
2359
+ version = "0.50.3"
2360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2361
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
2362
+ dependencies = [
2363
+ "windows-sys 0.60.2",
2364
+ ]
2365
+
2366
+ [[package]]
2367
+ name = "num-conv"
2368
+ version = "0.1.0"
2369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2370
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
2371
+
2372
+ [[package]]
2373
+ name = "num-traits"
2374
+ version = "0.2.19"
2375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2376
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2377
+ dependencies = [
2378
+ "autocfg",
2379
+ "libm",
2380
+ ]
2381
+
2382
+ [[package]]
2383
+ name = "once_cell"
2384
+ version = "1.21.3"
2385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2386
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
2387
+
2388
+ [[package]]
2389
+ name = "once_cell_polyfill"
2390
+ version = "1.70.2"
2391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2392
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
2393
+
2394
+ [[package]]
2395
+ name = "oorandom"
2396
+ version = "11.1.5"
2397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2398
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
2399
+
2400
+ [[package]]
2401
+ name = "openssl-probe"
2402
+ version = "0.2.1"
2403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2404
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
2405
+
2406
+ [[package]]
2407
+ name = "option-ext"
2408
+ version = "0.2.0"
2409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2410
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
2411
+
2412
+ [[package]]
2413
+ name = "parking_lot"
2414
+ version = "0.12.5"
2415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2416
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2417
+ dependencies = [
2418
+ "lock_api",
2419
+ "parking_lot_core",
2420
+ ]
2421
+
2422
+ [[package]]
2423
+ name = "parking_lot_core"
2424
+ version = "0.9.12"
2425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2426
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2427
+ dependencies = [
2428
+ "cfg-if",
2429
+ "libc",
2430
+ "redox_syscall 0.5.18",
2431
+ "smallvec",
2432
+ "windows-link",
2433
+ ]
2434
+
2435
+ [[package]]
2436
+ name = "pbkdf2"
2437
+ version = "0.12.2"
2438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2439
+ checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
2440
+ dependencies = [
2441
+ "digest",
2442
+ "hmac",
2443
+ ]
2444
+
2445
+ [[package]]
2446
+ name = "percent-encoding"
2447
+ version = "2.3.2"
2448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2449
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2450
+
2451
+ [[package]]
2452
+ name = "pin-project-lite"
2453
+ version = "0.2.16"
2454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2455
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2456
+
2457
+ [[package]]
2458
+ name = "pin-utils"
2459
+ version = "0.1.0"
2460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2461
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2462
+
2463
+ [[package]]
2464
+ name = "pkg-config"
2465
+ version = "0.3.32"
2466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2467
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
2468
+
2469
+ [[package]]
2470
+ name = "port_check"
2471
+ version = "0.3.0"
2472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2473
+ checksum = "4c2749dcd0984ec1be3c01001bb1d83623a58c3c0049a99b9afec61464fa98e7"
2474
+
2475
+ [[package]]
2476
+ name = "portable-atomic"
2477
+ version = "1.13.1"
2478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2479
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2480
+
2481
+ [[package]]
2482
+ name = "portable-atomic-util"
2483
+ version = "0.2.5"
2484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2485
+ checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5"
2486
+ dependencies = [
2487
+ "portable-atomic",
2488
+ ]
2489
+
2490
+ [[package]]
2491
+ name = "potential_utf"
2492
+ version = "0.1.4"
2493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2494
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
2495
+ dependencies = [
2496
+ "zerovec",
2497
+ ]
2498
+
2499
+ [[package]]
2500
+ name = "powerfmt"
2501
+ version = "0.2.0"
2502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2503
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2504
+
2505
+ [[package]]
2506
+ name = "ppmd-rust"
2507
+ version = "1.4.0"
2508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2509
+ checksum = "efca4c95a19a79d1c98f791f10aebd5c1363b473244630bb7dbde1dc98455a24"
2510
+
2511
+ [[package]]
2512
+ name = "ppv-lite86"
2513
+ version = "0.2.21"
2514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2515
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2516
+ dependencies = [
2517
+ "zerocopy",
2518
+ ]
2519
+
2520
+ [[package]]
2521
+ name = "predicates"
2522
+ version = "3.1.4"
2523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2524
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
2525
+ dependencies = [
2526
+ "anstyle",
2527
+ "difflib",
2528
+ "float-cmp",
2529
+ "normalize-line-endings",
2530
+ "predicates-core",
2531
+ "regex",
2532
+ ]
2533
+
2534
+ [[package]]
2535
+ name = "predicates-core"
2536
+ version = "1.0.9"
2537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2538
+ checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
2539
+
2540
+ [[package]]
2541
+ name = "predicates-tree"
2542
+ version = "1.0.12"
2543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2544
+ checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
2545
+ dependencies = [
2546
+ "predicates-core",
2547
+ "termtree",
2548
+ ]
2549
+
2550
+ [[package]]
2551
+ name = "prettyplease"
2552
+ version = "0.2.37"
2553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2554
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2555
+ dependencies = [
2556
+ "proc-macro2",
2557
+ "syn",
2558
+ ]
2559
+
2560
+ [[package]]
2561
+ name = "priority-queue"
2562
+ version = "2.7.0"
2563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2564
+ checksum = "93980406f12d9f8140ed5abe7155acb10bb1e69ea55c88960b9c2f117445ef96"
2565
+ dependencies = [
2566
+ "equivalent",
2567
+ "indexmap",
2568
+ "serde",
2569
+ ]
2570
+
2571
+ [[package]]
2572
+ name = "proc-macro2"
2573
+ version = "1.0.106"
2574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2575
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2576
+ dependencies = [
2577
+ "unicode-ident",
2578
+ ]
2579
+
2580
+ [[package]]
2581
+ name = "prodash"
2582
+ version = "31.0.0"
2583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2584
+ checksum = "962200e2d7d551451297d9fdce85138374019ada198e30ea9ede38034e27604c"
2585
+ dependencies = [
2586
+ "parking_lot",
2587
+ ]
2588
+
2589
+ [[package]]
2590
+ name = "pubgrub"
2591
+ version = "0.3.0"
2592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2593
+ checksum = "3f5df7e552bc7edd075f5783a87fbfc21d6a546e32c16985679c488c18192d83"
2594
+ dependencies = [
2595
+ "indexmap",
2596
+ "log",
2597
+ "priority-queue",
2598
+ "rustc-hash",
2599
+ "thiserror 2.0.18",
2600
+ "version-ranges",
2601
+ ]
2602
+
2603
+ [[package]]
2604
+ name = "pyo3"
2605
+ version = "0.28.2"
2606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2607
+ checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
2608
+ dependencies = [
2609
+ "chrono",
2610
+ "indexmap",
2611
+ "libc",
2612
+ "once_cell",
2613
+ "portable-atomic",
2614
+ "pyo3-build-config",
2615
+ "pyo3-ffi",
2616
+ "pyo3-macros",
2617
+ ]
2618
+
2619
+ [[package]]
2620
+ name = "pyo3-build-config"
2621
+ version = "0.28.2"
2622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2623
+ checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
2624
+ dependencies = [
2625
+ "target-lexicon",
2626
+ ]
2627
+
2628
+ [[package]]
2629
+ name = "pyo3-ffi"
2630
+ version = "0.28.2"
2631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2632
+ checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
2633
+ dependencies = [
2634
+ "libc",
2635
+ "pyo3-build-config",
2636
+ ]
2637
+
2638
+ [[package]]
2639
+ name = "pyo3-log"
2640
+ version = "0.13.3"
2641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2642
+ checksum = "26c2ec80932c5c3b2d4fbc578c9b56b2d4502098587edb8bef5b6bfcad43682e"
2643
+ dependencies = [
2644
+ "arc-swap",
2645
+ "log",
2646
+ "pyo3",
2647
+ ]
2648
+
2649
+ [[package]]
2650
+ name = "pyo3-macros"
2651
+ version = "0.28.2"
2652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2653
+ checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
2654
+ dependencies = [
2655
+ "proc-macro2",
2656
+ "pyo3-macros-backend",
2657
+ "quote",
2658
+ "syn",
2659
+ ]
2660
+
2661
+ [[package]]
2662
+ name = "pyo3-macros-backend"
2663
+ version = "0.28.2"
2664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2665
+ checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
2666
+ dependencies = [
2667
+ "heck",
2668
+ "proc-macro2",
2669
+ "pyo3-build-config",
2670
+ "quote",
2671
+ "syn",
2672
+ ]
2673
+
2674
+ [[package]]
2675
+ name = "quinn"
2676
+ version = "0.11.9"
2677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2678
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2679
+ dependencies = [
2680
+ "bytes",
2681
+ "cfg_aliases",
2682
+ "pin-project-lite",
2683
+ "quinn-proto",
2684
+ "quinn-udp",
2685
+ "rustc-hash",
2686
+ "rustls",
2687
+ "socket2",
2688
+ "thiserror 2.0.18",
2689
+ "tokio",
2690
+ "tracing",
2691
+ "web-time",
2692
+ ]
2693
+
2694
+ [[package]]
2695
+ name = "quinn-proto"
2696
+ version = "0.11.13"
2697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2698
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
2699
+ dependencies = [
2700
+ "aws-lc-rs",
2701
+ "bytes",
2702
+ "getrandom 0.3.4",
2703
+ "lru-slab",
2704
+ "rand",
2705
+ "ring",
2706
+ "rustc-hash",
2707
+ "rustls",
2708
+ "rustls-pki-types",
2709
+ "slab",
2710
+ "thiserror 2.0.18",
2711
+ "tinyvec",
2712
+ "tracing",
2713
+ "web-time",
2714
+ ]
2715
+
2716
+ [[package]]
2717
+ name = "quinn-udp"
2718
+ version = "0.5.14"
2719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2720
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2721
+ dependencies = [
2722
+ "cfg_aliases",
2723
+ "libc",
2724
+ "once_cell",
2725
+ "socket2",
2726
+ "tracing",
2727
+ "windows-sys 0.52.0",
2728
+ ]
2729
+
2730
+ [[package]]
2731
+ name = "quote"
2732
+ version = "1.0.45"
2733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2734
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
2735
+ dependencies = [
2736
+ "proc-macro2",
2737
+ ]
2738
+
2739
+ [[package]]
2740
+ name = "r-efi"
2741
+ version = "5.3.0"
2742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2743
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2744
+
2745
+ [[package]]
2746
+ name = "rand"
2747
+ version = "0.9.2"
2748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2749
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2750
+ dependencies = [
2751
+ "rand_chacha",
2752
+ "rand_core",
2753
+ ]
2754
+
2755
+ [[package]]
2756
+ name = "rand_chacha"
2757
+ version = "0.9.0"
2758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2759
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2760
+ dependencies = [
2761
+ "ppv-lite86",
2762
+ "rand_core",
2763
+ ]
2764
+
2765
+ [[package]]
2766
+ name = "rand_core"
2767
+ version = "0.9.5"
2768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2769
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2770
+ dependencies = [
2771
+ "getrandom 0.3.4",
2772
+ ]
2773
+
2774
+ [[package]]
2775
+ name = "redox_syscall"
2776
+ version = "0.5.18"
2777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2778
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2779
+ dependencies = [
2780
+ "bitflags",
2781
+ ]
2782
+
2783
+ [[package]]
2784
+ name = "redox_syscall"
2785
+ version = "0.7.0"
2786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2787
+ checksum = "49f3fe0889e69e2ae9e41f4d6c4c0181701d00e4697b356fb1f74173a5e0ee27"
2788
+ dependencies = [
2789
+ "bitflags",
2790
+ ]
2791
+
2792
+ [[package]]
2793
+ name = "redox_users"
2794
+ version = "0.5.2"
2795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2796
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
2797
+ dependencies = [
2798
+ "getrandom 0.2.17",
2799
+ "libredox",
2800
+ "thiserror 2.0.18",
2801
+ ]
2802
+
2803
+ [[package]]
2804
+ name = "ref-cast"
2805
+ version = "1.0.25"
2806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2807
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
2808
+ dependencies = [
2809
+ "ref-cast-impl",
2810
+ ]
2811
+
2812
+ [[package]]
2813
+ name = "ref-cast-impl"
2814
+ version = "1.0.25"
2815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2816
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
2817
+ dependencies = [
2818
+ "proc-macro2",
2819
+ "quote",
2820
+ "syn",
2821
+ ]
2822
+
2823
+ [[package]]
2824
+ name = "regex"
2825
+ version = "1.12.3"
2826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2827
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2828
+ dependencies = [
2829
+ "aho-corasick",
2830
+ "memchr",
2831
+ "regex-automata",
2832
+ "regex-syntax",
2833
+ ]
2834
+
2835
+ [[package]]
2836
+ name = "regex-automata"
2837
+ version = "0.4.14"
2838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2839
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2840
+ dependencies = [
2841
+ "aho-corasick",
2842
+ "memchr",
2843
+ "regex-syntax",
2844
+ ]
2845
+
2846
+ [[package]]
2847
+ name = "regex-syntax"
2848
+ version = "0.8.9"
2849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2850
+ checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
2851
+
2852
+ [[package]]
2853
+ name = "reqwest"
2854
+ version = "0.13.2"
2855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2856
+ checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801"
2857
+ dependencies = [
2858
+ "base64",
2859
+ "bytes",
2860
+ "encoding_rs",
2861
+ "futures-channel",
2862
+ "futures-core",
2863
+ "futures-util",
2864
+ "h2",
2865
+ "http",
2866
+ "http-body",
2867
+ "http-body-util",
2868
+ "hyper",
2869
+ "hyper-rustls",
2870
+ "hyper-util",
2871
+ "js-sys",
2872
+ "log",
2873
+ "mime",
2874
+ "percent-encoding",
2875
+ "pin-project-lite",
2876
+ "quinn",
2877
+ "rustls",
2878
+ "rustls-pki-types",
2879
+ "rustls-platform-verifier",
2880
+ "sync_wrapper",
2881
+ "tokio",
2882
+ "tokio-rustls",
2883
+ "tokio-util",
2884
+ "tower",
2885
+ "tower-http",
2886
+ "tower-service",
2887
+ "url",
2888
+ "wasm-bindgen",
2889
+ "wasm-bindgen-futures",
2890
+ "wasm-streams",
2891
+ "web-sys",
2892
+ ]
2893
+
2894
+ [[package]]
2895
+ name = "reqwest-middleware"
2896
+ version = "0.5.1"
2897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2898
+ checksum = "199dda04a536b532d0cc04d7979e39b1c763ea749bf91507017069c00b96056f"
2899
+ dependencies = [
2900
+ "anyhow",
2901
+ "async-trait",
2902
+ "http",
2903
+ "reqwest",
2904
+ "thiserror 2.0.18",
2905
+ "tower-service",
2906
+ ]
2907
+
2908
+ [[package]]
2909
+ name = "rexpect"
2910
+ version = "0.6.3"
2911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2912
+ checksum = "a0fad980333eb2bc260e0ceb42b356f3e559f95106d14e5b22c631e6b0aef380"
2913
+ dependencies = [
2914
+ "comma",
2915
+ "nix",
2916
+ "regex",
2917
+ "tempfile",
2918
+ "thiserror 2.0.18",
2919
+ ]
2920
+
2921
+ [[package]]
2922
+ name = "ring"
2923
+ version = "0.17.14"
2924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2925
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2926
+ dependencies = [
2927
+ "cc",
2928
+ "cfg-if",
2929
+ "getrandom 0.2.17",
2930
+ "libc",
2931
+ "untrusted",
2932
+ "windows-sys 0.52.0",
2933
+ ]
2934
+
2935
+ [[package]]
2936
+ name = "rustc-hash"
2937
+ version = "2.1.1"
2938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2939
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2940
+
2941
+ [[package]]
2942
+ name = "rustix"
2943
+ version = "1.1.4"
2944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2945
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2946
+ dependencies = [
2947
+ "bitflags",
2948
+ "errno",
2949
+ "libc",
2950
+ "linux-raw-sys",
2951
+ "windows-sys 0.52.0",
2952
+ ]
2953
+
2954
+ [[package]]
2955
+ name = "rustls"
2956
+ version = "0.23.36"
2957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2958
+ checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
2959
+ dependencies = [
2960
+ "aws-lc-rs",
2961
+ "once_cell",
2962
+ "rustls-pki-types",
2963
+ "rustls-webpki",
2964
+ "subtle",
2965
+ "zeroize",
2966
+ ]
2967
+
2968
+ [[package]]
2969
+ name = "rustls-native-certs"
2970
+ version = "0.8.3"
2971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2972
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
2973
+ dependencies = [
2974
+ "openssl-probe",
2975
+ "rustls-pki-types",
2976
+ "schannel",
2977
+ "security-framework",
2978
+ ]
2979
+
2980
+ [[package]]
2981
+ name = "rustls-pki-types"
2982
+ version = "1.14.0"
2983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2984
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
2985
+ dependencies = [
2986
+ "web-time",
2987
+ "zeroize",
2988
+ ]
2989
+
2990
+ [[package]]
2991
+ name = "rustls-platform-verifier"
2992
+ version = "0.6.2"
2993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2994
+ checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
2995
+ dependencies = [
2996
+ "core-foundation 0.10.1",
2997
+ "core-foundation-sys",
2998
+ "jni",
2999
+ "log",
3000
+ "once_cell",
3001
+ "rustls",
3002
+ "rustls-native-certs",
3003
+ "rustls-platform-verifier-android",
3004
+ "rustls-webpki",
3005
+ "security-framework",
3006
+ "security-framework-sys",
3007
+ "webpki-root-certs",
3008
+ "windows-sys 0.52.0",
3009
+ ]
3010
+
3011
+ [[package]]
3012
+ name = "rustls-platform-verifier-android"
3013
+ version = "0.1.1"
3014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3015
+ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
3016
+
3017
+ [[package]]
3018
+ name = "rustls-webpki"
3019
+ version = "0.103.9"
3020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3021
+ checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
3022
+ dependencies = [
3023
+ "aws-lc-rs",
3024
+ "ring",
3025
+ "rustls-pki-types",
3026
+ "untrusted",
3027
+ ]
3028
+
3029
+ [[package]]
3030
+ name = "rustversion"
3031
+ version = "1.0.22"
3032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3033
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
3034
+
3035
+ [[package]]
3036
+ name = "ryu"
3037
+ version = "1.0.22"
3038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3039
+ checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
3040
+
3041
+ [[package]]
3042
+ name = "same-file"
3043
+ version = "1.0.6"
3044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3045
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
3046
+ dependencies = [
3047
+ "winapi-util",
3048
+ ]
3049
+
3050
+ [[package]]
3051
+ name = "schannel"
3052
+ version = "0.1.28"
3053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3054
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
3055
+ dependencies = [
3056
+ "windows-sys 0.61.2",
3057
+ ]
3058
+
3059
+ [[package]]
3060
+ name = "scopeguard"
3061
+ version = "1.2.0"
3062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3063
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3064
+
3065
+ [[package]]
3066
+ name = "security-framework"
3067
+ version = "3.5.1"
3068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3069
+ checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
3070
+ dependencies = [
3071
+ "bitflags",
3072
+ "core-foundation 0.10.1",
3073
+ "core-foundation-sys",
3074
+ "libc",
3075
+ "security-framework-sys",
3076
+ ]
3077
+
3078
+ [[package]]
3079
+ name = "security-framework-sys"
3080
+ version = "2.15.0"
3081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3082
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
3083
+ dependencies = [
3084
+ "core-foundation-sys",
3085
+ "libc",
3086
+ ]
3087
+
3088
+ [[package]]
3089
+ name = "semver"
3090
+ version = "1.0.27"
3091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3092
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
3093
+ dependencies = [
3094
+ "serde",
3095
+ "serde_core",
3096
+ ]
3097
+
3098
+ [[package]]
3099
+ name = "serde"
3100
+ version = "1.0.228"
3101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3102
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
3103
+ dependencies = [
3104
+ "serde_core",
3105
+ "serde_derive",
3106
+ ]
3107
+
3108
+ [[package]]
3109
+ name = "serde_core"
3110
+ version = "1.0.228"
3111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3112
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
3113
+ dependencies = [
3114
+ "serde_derive",
3115
+ ]
3116
+
3117
+ [[package]]
3118
+ name = "serde_derive"
3119
+ version = "1.0.228"
3120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3121
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
3122
+ dependencies = [
3123
+ "proc-macro2",
3124
+ "quote",
3125
+ "syn",
3126
+ ]
3127
+
3128
+ [[package]]
3129
+ name = "serde_json"
3130
+ version = "1.0.149"
3131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3132
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
3133
+ dependencies = [
3134
+ "indexmap",
3135
+ "itoa",
3136
+ "memchr",
3137
+ "serde",
3138
+ "serde_core",
3139
+ "zmij",
3140
+ ]
3141
+
3142
+ [[package]]
3143
+ name = "serde_spanned"
3144
+ version = "1.0.4"
3145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3146
+ checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
3147
+ dependencies = [
3148
+ "serde_core",
3149
+ ]
3150
+
3151
+ [[package]]
3152
+ name = "serde_urlencoded"
3153
+ version = "0.7.1"
3154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3155
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3156
+ dependencies = [
3157
+ "form_urlencoded",
3158
+ "itoa",
3159
+ "ryu",
3160
+ "serde",
3161
+ ]
3162
+
3163
+ [[package]]
3164
+ name = "sha1"
3165
+ version = "0.10.6"
3166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3167
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
3168
+ dependencies = [
3169
+ "cfg-if",
3170
+ "cpufeatures",
3171
+ "digest",
3172
+ ]
3173
+
3174
+ [[package]]
3175
+ name = "sha1-checked"
3176
+ version = "0.10.0"
3177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3178
+ checksum = "89f599ac0c323ebb1c6082821a54962b839832b03984598375bff3975b804423"
3179
+ dependencies = [
3180
+ "digest",
3181
+ "sha1",
3182
+ ]
3183
+
3184
+ [[package]]
3185
+ name = "sha2"
3186
+ version = "0.10.9"
3187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3188
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
3189
+ dependencies = [
3190
+ "cfg-if",
3191
+ "cpufeatures",
3192
+ "digest",
3193
+ ]
3194
+
3195
+ [[package]]
3196
+ name = "shell-words"
3197
+ version = "1.1.1"
3198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3199
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
3200
+
3201
+ [[package]]
3202
+ name = "shlex"
3203
+ version = "1.3.0"
3204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3205
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3206
+
3207
+ [[package]]
3208
+ name = "simd-adler32"
3209
+ version = "0.3.8"
3210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3211
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
3212
+
3213
+ [[package]]
3214
+ name = "similar"
3215
+ version = "2.7.0"
3216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3217
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
3218
+
3219
+ [[package]]
3220
+ name = "slab"
3221
+ version = "0.4.12"
3222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3223
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
3224
+
3225
+ [[package]]
3226
+ name = "smallvec"
3227
+ version = "1.15.1"
3228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3229
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3230
+
3231
+ [[package]]
3232
+ name = "socket2"
3233
+ version = "0.6.2"
3234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3235
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
3236
+ dependencies = [
3237
+ "libc",
3238
+ "windows-sys 0.60.2",
3239
+ ]
3240
+
3241
+ [[package]]
3242
+ name = "spdx"
3243
+ version = "0.13.4"
3244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3245
+ checksum = "a8da593e30beb790fc9424502eb898320b44e5eb30367dbda1c1edde8e2f32d7"
3246
+ dependencies = [
3247
+ "smallvec",
3248
+ ]
3249
+
3250
+ [[package]]
3251
+ name = "stable_deref_trait"
3252
+ version = "1.2.1"
3253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3254
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3255
+
3256
+ [[package]]
3257
+ name = "static_assertions"
3258
+ version = "1.1.0"
3259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3260
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
3261
+
3262
+ [[package]]
3263
+ name = "strsim"
3264
+ version = "0.11.1"
3265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3266
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3267
+
3268
+ [[package]]
3269
+ name = "subtle"
3270
+ version = "2.6.1"
3271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3272
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3273
+
3274
+ [[package]]
3275
+ name = "syn"
3276
+ version = "2.0.117"
3277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3278
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
3279
+ dependencies = [
3280
+ "proc-macro2",
3281
+ "quote",
3282
+ "unicode-ident",
3283
+ ]
3284
+
3285
+ [[package]]
3286
+ name = "sync_wrapper"
3287
+ version = "1.0.2"
3288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3289
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3290
+ dependencies = [
3291
+ "futures-core",
3292
+ ]
3293
+
3294
+ [[package]]
3295
+ name = "synstructure"
3296
+ version = "0.13.2"
3297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3298
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3299
+ dependencies = [
3300
+ "proc-macro2",
3301
+ "quote",
3302
+ "syn",
3303
+ ]
3304
+
3305
+ [[package]]
3306
+ name = "sysand"
3307
+ version = "0.0.10"
3308
+ dependencies = [
3309
+ "anstream 1.0.0",
3310
+ "anyhow",
3311
+ "assert_cmd",
3312
+ "camino",
3313
+ "camino-tempfile",
3314
+ "clap",
3315
+ "env_logger",
3316
+ "fluent-uri",
3317
+ "glob",
3318
+ "indexmap",
3319
+ "log",
3320
+ "mockito",
3321
+ "predicates",
3322
+ "pubgrub",
3323
+ "reqwest",
3324
+ "reqwest-middleware",
3325
+ "rexpect",
3326
+ "semver",
3327
+ "serde_json",
3328
+ "spdx",
3329
+ "sysand-core",
3330
+ "tempfile",
3331
+ "thiserror 2.0.18",
3332
+ "tokio",
3333
+ "toml",
3334
+ "typed-path",
3335
+ "url",
3336
+ "zip",
3337
+ ]
3338
+
3339
+ [[package]]
3340
+ name = "sysand-core"
3341
+ version = "0.0.10"
3342
+ dependencies = [
3343
+ "anstyle",
3344
+ "assert_cmd",
3345
+ "borrow-or-share",
3346
+ "bytes",
3347
+ "camino",
3348
+ "camino-tempfile",
3349
+ "chrono",
3350
+ "digest",
3351
+ "dirs",
3352
+ "fluent-uri",
3353
+ "futures",
3354
+ "gix",
3355
+ "globset",
3356
+ "indexmap",
3357
+ "log",
3358
+ "logos",
3359
+ "mockito",
3360
+ "port_check",
3361
+ "predicates",
3362
+ "pubgrub",
3363
+ "pyo3",
3364
+ "reqwest",
3365
+ "reqwest-middleware",
3366
+ "semver",
3367
+ "serde",
3368
+ "serde_json",
3369
+ "sha2",
3370
+ "spdx",
3371
+ "sysand-macros",
3372
+ "tempfile",
3373
+ "thiserror 2.0.18",
3374
+ "tokio",
3375
+ "toml",
3376
+ "toml_edit",
3377
+ "typed-path",
3378
+ "url",
3379
+ "walkdir",
3380
+ "wasm-bindgen",
3381
+ "zip",
3382
+ ]
3383
+
3384
+ [[package]]
3385
+ name = "sysand-java"
3386
+ version = "0.0.10"
3387
+ dependencies = [
3388
+ "camino",
3389
+ "indexmap",
3390
+ "jni",
3391
+ "reqwest",
3392
+ "reqwest-middleware",
3393
+ "serde",
3394
+ "serde_json",
3395
+ "sysand-core",
3396
+ "tokio",
3397
+ "url",
3398
+ ]
3399
+
3400
+ [[package]]
3401
+ name = "sysand-js"
3402
+ version = "0.0.10"
3403
+ dependencies = [
3404
+ "camino",
3405
+ "console_error_panic_hook",
3406
+ "console_log",
3407
+ "log",
3408
+ "regex",
3409
+ "semver",
3410
+ "serde",
3411
+ "serde_json",
3412
+ "sha2",
3413
+ "sysand-core",
3414
+ "thiserror 2.0.18",
3415
+ "typed-path",
3416
+ "wasm-bindgen",
3417
+ "wasm-bindgen-test",
3418
+ "web-sys",
3419
+ ]
3420
+
3421
+ [[package]]
3422
+ name = "sysand-macros"
3423
+ version = "0.0.10"
3424
+ dependencies = [
3425
+ "itertools",
3426
+ "proc-macro2",
3427
+ "quote",
3428
+ "syn",
3429
+ ]
3430
+
3431
+ [[package]]
3432
+ name = "sysand-py"
3433
+ version = "0.0.10"
3434
+ dependencies = [
3435
+ "camino",
3436
+ "predicates",
3437
+ "pyo3",
3438
+ "pyo3-log",
3439
+ "reqwest",
3440
+ "reqwest-middleware",
3441
+ "semver",
3442
+ "sysand",
3443
+ "sysand-core",
3444
+ "tempfile",
3445
+ "tokio",
3446
+ "typed-path",
3447
+ "url",
3448
+ ]
3449
+
3450
+ [[package]]
3451
+ name = "system-configuration"
3452
+ version = "0.7.0"
3453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3454
+ checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
3455
+ dependencies = [
3456
+ "bitflags",
3457
+ "core-foundation 0.9.4",
3458
+ "system-configuration-sys",
3459
+ ]
3460
+
3461
+ [[package]]
3462
+ name = "system-configuration-sys"
3463
+ version = "0.6.0"
3464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3465
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
3466
+ dependencies = [
3467
+ "core-foundation-sys",
3468
+ "libc",
3469
+ ]
3470
+
3471
+ [[package]]
3472
+ name = "target-lexicon"
3473
+ version = "0.13.4"
3474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3475
+ checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
3476
+
3477
+ [[package]]
3478
+ name = "tempfile"
3479
+ version = "3.26.0"
3480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3481
+ checksum = "82a72c767771b47409d2345987fda8628641887d5466101319899796367354a0"
3482
+ dependencies = [
3483
+ "fastrand",
3484
+ "getrandom 0.4.1",
3485
+ "once_cell",
3486
+ "rustix",
3487
+ "windows-sys 0.52.0",
3488
+ ]
3489
+
3490
+ [[package]]
3491
+ name = "termtree"
3492
+ version = "0.5.1"
3493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3494
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
3495
+
3496
+ [[package]]
3497
+ name = "thiserror"
3498
+ version = "1.0.69"
3499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3500
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3501
+ dependencies = [
3502
+ "thiserror-impl 1.0.69",
3503
+ ]
3504
+
3505
+ [[package]]
3506
+ name = "thiserror"
3507
+ version = "2.0.18"
3508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3509
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
3510
+ dependencies = [
3511
+ "thiserror-impl 2.0.18",
3512
+ ]
3513
+
3514
+ [[package]]
3515
+ name = "thiserror-impl"
3516
+ version = "1.0.69"
3517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3518
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3519
+ dependencies = [
3520
+ "proc-macro2",
3521
+ "quote",
3522
+ "syn",
3523
+ ]
3524
+
3525
+ [[package]]
3526
+ name = "thiserror-impl"
3527
+ version = "2.0.18"
3528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3529
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
3530
+ dependencies = [
3531
+ "proc-macro2",
3532
+ "quote",
3533
+ "syn",
3534
+ ]
3535
+
3536
+ [[package]]
3537
+ name = "time"
3538
+ version = "0.3.45"
3539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3540
+ checksum = "f9e442fc33d7fdb45aa9bfeb312c095964abdf596f7567261062b2a7107aaabd"
3541
+ dependencies = [
3542
+ "deranged",
3543
+ "js-sys",
3544
+ "num-conv",
3545
+ "powerfmt",
3546
+ "serde_core",
3547
+ "time-core",
3548
+ ]
3549
+
3550
+ [[package]]
3551
+ name = "time-core"
3552
+ version = "0.1.7"
3553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3554
+ checksum = "8b36ee98fd31ec7426d599183e8fe26932a8dc1fb76ddb6214d05493377d34ca"
3555
+
3556
+ [[package]]
3557
+ name = "tinystr"
3558
+ version = "0.8.2"
3559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3560
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
3561
+ dependencies = [
3562
+ "displaydoc",
3563
+ "zerovec",
3564
+ ]
3565
+
3566
+ [[package]]
3567
+ name = "tinyvec"
3568
+ version = "1.10.0"
3569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3570
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
3571
+ dependencies = [
3572
+ "tinyvec_macros",
3573
+ ]
3574
+
3575
+ [[package]]
3576
+ name = "tinyvec_macros"
3577
+ version = "0.1.1"
3578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3579
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3580
+
3581
+ [[package]]
3582
+ name = "tokio"
3583
+ version = "1.50.0"
3584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3585
+ checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
3586
+ dependencies = [
3587
+ "bytes",
3588
+ "libc",
3589
+ "mio",
3590
+ "parking_lot",
3591
+ "pin-project-lite",
3592
+ "socket2",
3593
+ "windows-sys 0.61.2",
3594
+ ]
3595
+
3596
+ [[package]]
3597
+ name = "tokio-rustls"
3598
+ version = "0.26.4"
3599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3600
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3601
+ dependencies = [
3602
+ "rustls",
3603
+ "tokio",
3604
+ ]
3605
+
3606
+ [[package]]
3607
+ name = "tokio-util"
3608
+ version = "0.7.18"
3609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3610
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
3611
+ dependencies = [
3612
+ "bytes",
3613
+ "futures-core",
3614
+ "futures-sink",
3615
+ "pin-project-lite",
3616
+ "tokio",
3617
+ ]
3618
+
3619
+ [[package]]
3620
+ name = "toml"
3621
+ version = "1.0.6+spec-1.1.0"
3622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3623
+ checksum = "399b1124a3c9e16766831c6bba21e50192572cdd98706ea114f9502509686ffc"
3624
+ dependencies = [
3625
+ "indexmap",
3626
+ "serde_core",
3627
+ "serde_spanned",
3628
+ "toml_datetime",
3629
+ "toml_parser",
3630
+ "toml_writer",
3631
+ "winnow",
3632
+ ]
3633
+
3634
+ [[package]]
3635
+ name = "toml_datetime"
3636
+ version = "1.0.0+spec-1.1.0"
3637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3638
+ checksum = "32c2555c699578a4f59f0cc68e5116c8d7cabbd45e1409b989d4be085b53f13e"
3639
+ dependencies = [
3640
+ "serde_core",
3641
+ ]
3642
+
3643
+ [[package]]
3644
+ name = "toml_edit"
3645
+ version = "0.25.4+spec-1.1.0"
3646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3647
+ checksum = "7193cbd0ce53dc966037f54351dbbcf0d5a642c7f0038c382ef9e677ce8c13f2"
3648
+ dependencies = [
3649
+ "indexmap",
3650
+ "serde_core",
3651
+ "serde_spanned",
3652
+ "toml_datetime",
3653
+ "toml_parser",
3654
+ "toml_writer",
3655
+ "winnow",
3656
+ ]
3657
+
3658
+ [[package]]
3659
+ name = "toml_parser"
3660
+ version = "1.0.9+spec-1.1.0"
3661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3662
+ checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4"
3663
+ dependencies = [
3664
+ "winnow",
3665
+ ]
3666
+
3667
+ [[package]]
3668
+ name = "toml_writer"
3669
+ version = "1.0.6+spec-1.1.0"
3670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3671
+ checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
3672
+
3673
+ [[package]]
3674
+ name = "tower"
3675
+ version = "0.5.3"
3676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3677
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3678
+ dependencies = [
3679
+ "futures-core",
3680
+ "futures-util",
3681
+ "pin-project-lite",
3682
+ "sync_wrapper",
3683
+ "tokio",
3684
+ "tower-layer",
3685
+ "tower-service",
3686
+ ]
3687
+
3688
+ [[package]]
3689
+ name = "tower-http"
3690
+ version = "0.6.8"
3691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3692
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
3693
+ dependencies = [
3694
+ "bitflags",
3695
+ "bytes",
3696
+ "futures-util",
3697
+ "http",
3698
+ "http-body",
3699
+ "iri-string",
3700
+ "pin-project-lite",
3701
+ "tower",
3702
+ "tower-layer",
3703
+ "tower-service",
3704
+ ]
3705
+
3706
+ [[package]]
3707
+ name = "tower-layer"
3708
+ version = "0.3.3"
3709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3710
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3711
+
3712
+ [[package]]
3713
+ name = "tower-service"
3714
+ version = "0.3.3"
3715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3716
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3717
+
3718
+ [[package]]
3719
+ name = "tracing"
3720
+ version = "0.1.44"
3721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3722
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3723
+ dependencies = [
3724
+ "pin-project-lite",
3725
+ "tracing-core",
3726
+ ]
3727
+
3728
+ [[package]]
3729
+ name = "tracing-core"
3730
+ version = "0.1.36"
3731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3732
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3733
+ dependencies = [
3734
+ "once_cell",
3735
+ ]
3736
+
3737
+ [[package]]
3738
+ name = "try-lock"
3739
+ version = "0.2.5"
3740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3741
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3742
+
3743
+ [[package]]
3744
+ name = "typed-path"
3745
+ version = "0.12.3"
3746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3747
+ checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
3748
+
3749
+ [[package]]
3750
+ name = "typenum"
3751
+ version = "1.19.0"
3752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3753
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
3754
+
3755
+ [[package]]
3756
+ name = "unicase"
3757
+ version = "2.9.0"
3758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3759
+ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
3760
+
3761
+ [[package]]
3762
+ name = "unicode-bom"
3763
+ version = "2.0.3"
3764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3765
+ checksum = "7eec5d1121208364f6793f7d2e222bf75a915c19557537745b195b253dd64217"
3766
+
3767
+ [[package]]
3768
+ name = "unicode-ident"
3769
+ version = "1.0.24"
3770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3771
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
3772
+
3773
+ [[package]]
3774
+ name = "unicode-normalization"
3775
+ version = "0.1.25"
3776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3777
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
3778
+ dependencies = [
3779
+ "tinyvec",
3780
+ ]
3781
+
3782
+ [[package]]
3783
+ name = "unicode-width"
3784
+ version = "0.2.2"
3785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3786
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
3787
+
3788
+ [[package]]
3789
+ name = "unicode-xid"
3790
+ version = "0.2.6"
3791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3792
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
3793
+
3794
+ [[package]]
3795
+ name = "untrusted"
3796
+ version = "0.9.0"
3797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3798
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3799
+
3800
+ [[package]]
3801
+ name = "url"
3802
+ version = "2.5.8"
3803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3804
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3805
+ dependencies = [
3806
+ "form_urlencoded",
3807
+ "idna",
3808
+ "percent-encoding",
3809
+ "serde",
3810
+ ]
3811
+
3812
+ [[package]]
3813
+ name = "utf8_iter"
3814
+ version = "1.0.4"
3815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3816
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3817
+
3818
+ [[package]]
3819
+ name = "utf8parse"
3820
+ version = "0.2.2"
3821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3822
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3823
+
3824
+ [[package]]
3825
+ name = "version-ranges"
3826
+ version = "0.1.2"
3827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3828
+ checksum = "3595ffe225639f1e0fd8d7269dcc05d2fbfea93cfac2fea367daf1adb60aae91"
3829
+ dependencies = [
3830
+ "smallvec",
3831
+ ]
3832
+
3833
+ [[package]]
3834
+ name = "version_check"
3835
+ version = "0.9.5"
3836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3837
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3838
+
3839
+ [[package]]
3840
+ name = "wait-timeout"
3841
+ version = "0.2.1"
3842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3843
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
3844
+ dependencies = [
3845
+ "libc",
3846
+ ]
3847
+
3848
+ [[package]]
3849
+ name = "walkdir"
3850
+ version = "2.5.0"
3851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3852
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3853
+ dependencies = [
3854
+ "same-file",
3855
+ "winapi-util",
3856
+ ]
3857
+
3858
+ [[package]]
3859
+ name = "want"
3860
+ version = "0.3.1"
3861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3862
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3863
+ dependencies = [
3864
+ "try-lock",
3865
+ ]
3866
+
3867
+ [[package]]
3868
+ name = "wasi"
3869
+ version = "0.11.1+wasi-snapshot-preview1"
3870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3871
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3872
+
3873
+ [[package]]
3874
+ name = "wasip2"
3875
+ version = "1.0.1+wasi-0.2.4"
3876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3877
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
3878
+ dependencies = [
3879
+ "wit-bindgen 0.46.0",
3880
+ ]
3881
+
3882
+ [[package]]
3883
+ name = "wasip3"
3884
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
3885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3886
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
3887
+ dependencies = [
3888
+ "wit-bindgen 0.51.0",
3889
+ ]
3890
+
3891
+ [[package]]
3892
+ name = "wasm-bindgen"
3893
+ version = "0.2.114"
3894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3895
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
3896
+ dependencies = [
3897
+ "cfg-if",
3898
+ "once_cell",
3899
+ "rustversion",
3900
+ "wasm-bindgen-macro",
3901
+ "wasm-bindgen-shared",
3902
+ ]
3903
+
3904
+ [[package]]
3905
+ name = "wasm-bindgen-futures"
3906
+ version = "0.4.64"
3907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3908
+ checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
3909
+ dependencies = [
3910
+ "cfg-if",
3911
+ "futures-util",
3912
+ "js-sys",
3913
+ "once_cell",
3914
+ "wasm-bindgen",
3915
+ "web-sys",
3916
+ ]
3917
+
3918
+ [[package]]
3919
+ name = "wasm-bindgen-macro"
3920
+ version = "0.2.114"
3921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3922
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
3923
+ dependencies = [
3924
+ "quote",
3925
+ "wasm-bindgen-macro-support",
3926
+ ]
3927
+
3928
+ [[package]]
3929
+ name = "wasm-bindgen-macro-support"
3930
+ version = "0.2.114"
3931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3932
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
3933
+ dependencies = [
3934
+ "bumpalo",
3935
+ "proc-macro2",
3936
+ "quote",
3937
+ "syn",
3938
+ "wasm-bindgen-shared",
3939
+ ]
3940
+
3941
+ [[package]]
3942
+ name = "wasm-bindgen-shared"
3943
+ version = "0.2.114"
3944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3945
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
3946
+ dependencies = [
3947
+ "unicode-ident",
3948
+ ]
3949
+
3950
+ [[package]]
3951
+ name = "wasm-bindgen-test"
3952
+ version = "0.3.64"
3953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3954
+ checksum = "6311c867385cc7d5602463b31825d454d0837a3aba7cdb5e56d5201792a3f7fe"
3955
+ dependencies = [
3956
+ "async-trait",
3957
+ "cast",
3958
+ "js-sys",
3959
+ "libm",
3960
+ "minicov",
3961
+ "nu-ansi-term",
3962
+ "num-traits",
3963
+ "oorandom",
3964
+ "serde",
3965
+ "serde_json",
3966
+ "wasm-bindgen",
3967
+ "wasm-bindgen-futures",
3968
+ "wasm-bindgen-test-macro",
3969
+ "wasm-bindgen-test-shared",
3970
+ ]
3971
+
3972
+ [[package]]
3973
+ name = "wasm-bindgen-test-macro"
3974
+ version = "0.3.64"
3975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3976
+ checksum = "67008cdde4769831958536b0f11b3bdd0380bde882be17fff9c2f34bb4549abd"
3977
+ dependencies = [
3978
+ "proc-macro2",
3979
+ "quote",
3980
+ "syn",
3981
+ ]
3982
+
3983
+ [[package]]
3984
+ name = "wasm-bindgen-test-shared"
3985
+ version = "0.2.114"
3986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3987
+ checksum = "cfe29135b180b72b04c74aa97b2b4a2ef275161eff9a6c7955ea9eaedc7e1d4e"
3988
+
3989
+ [[package]]
3990
+ name = "wasm-encoder"
3991
+ version = "0.244.0"
3992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3993
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
3994
+ dependencies = [
3995
+ "leb128fmt",
3996
+ "wasmparser",
3997
+ ]
3998
+
3999
+ [[package]]
4000
+ name = "wasm-metadata"
4001
+ version = "0.244.0"
4002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4003
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
4004
+ dependencies = [
4005
+ "anyhow",
4006
+ "indexmap",
4007
+ "wasm-encoder",
4008
+ "wasmparser",
4009
+ ]
4010
+
4011
+ [[package]]
4012
+ name = "wasm-streams"
4013
+ version = "0.5.0"
4014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4015
+ checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb"
4016
+ dependencies = [
4017
+ "futures-util",
4018
+ "js-sys",
4019
+ "wasm-bindgen",
4020
+ "wasm-bindgen-futures",
4021
+ "web-sys",
4022
+ ]
4023
+
4024
+ [[package]]
4025
+ name = "wasmparser"
4026
+ version = "0.244.0"
4027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4028
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
4029
+ dependencies = [
4030
+ "bitflags",
4031
+ "hashbrown 0.15.5",
4032
+ "indexmap",
4033
+ "semver",
4034
+ ]
4035
+
4036
+ [[package]]
4037
+ name = "web-sys"
4038
+ version = "0.3.91"
4039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4040
+ checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
4041
+ dependencies = [
4042
+ "js-sys",
4043
+ "wasm-bindgen",
4044
+ ]
4045
+
4046
+ [[package]]
4047
+ name = "web-time"
4048
+ version = "1.1.0"
4049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4050
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
4051
+ dependencies = [
4052
+ "js-sys",
4053
+ "wasm-bindgen",
4054
+ ]
4055
+
4056
+ [[package]]
4057
+ name = "webpki-root-certs"
4058
+ version = "1.0.6"
4059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4060
+ checksum = "804f18a4ac2676ffb4e8b5b5fa9ae38af06df08162314f96a68d2a363e21a8ca"
4061
+ dependencies = [
4062
+ "rustls-pki-types",
4063
+ ]
4064
+
4065
+ [[package]]
4066
+ name = "winapi"
4067
+ version = "0.3.9"
4068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4069
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
4070
+ dependencies = [
4071
+ "winapi-i686-pc-windows-gnu",
4072
+ "winapi-x86_64-pc-windows-gnu",
4073
+ ]
4074
+
4075
+ [[package]]
4076
+ name = "winapi-i686-pc-windows-gnu"
4077
+ version = "0.4.0"
4078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4079
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
4080
+
4081
+ [[package]]
4082
+ name = "winapi-util"
4083
+ version = "0.1.11"
4084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4085
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
4086
+ dependencies = [
4087
+ "windows-sys 0.52.0",
4088
+ ]
4089
+
4090
+ [[package]]
4091
+ name = "winapi-x86_64-pc-windows-gnu"
4092
+ version = "0.4.0"
4093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4094
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4095
+
4096
+ [[package]]
4097
+ name = "windows-core"
4098
+ version = "0.62.2"
4099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4100
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
4101
+ dependencies = [
4102
+ "windows-implement",
4103
+ "windows-interface",
4104
+ "windows-link",
4105
+ "windows-result",
4106
+ "windows-strings",
4107
+ ]
4108
+
4109
+ [[package]]
4110
+ name = "windows-implement"
4111
+ version = "0.60.2"
4112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4113
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
4114
+ dependencies = [
4115
+ "proc-macro2",
4116
+ "quote",
4117
+ "syn",
4118
+ ]
4119
+
4120
+ [[package]]
4121
+ name = "windows-interface"
4122
+ version = "0.59.3"
4123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4124
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
4125
+ dependencies = [
4126
+ "proc-macro2",
4127
+ "quote",
4128
+ "syn",
4129
+ ]
4130
+
4131
+ [[package]]
4132
+ name = "windows-link"
4133
+ version = "0.2.1"
4134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4135
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
4136
+
4137
+ [[package]]
4138
+ name = "windows-registry"
4139
+ version = "0.6.1"
4140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4141
+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
4142
+ dependencies = [
4143
+ "windows-link",
4144
+ "windows-result",
4145
+ "windows-strings",
4146
+ ]
4147
+
4148
+ [[package]]
4149
+ name = "windows-result"
4150
+ version = "0.4.1"
4151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4152
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
4153
+ dependencies = [
4154
+ "windows-link",
4155
+ ]
4156
+
4157
+ [[package]]
4158
+ name = "windows-strings"
4159
+ version = "0.5.1"
4160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4161
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
4162
+ dependencies = [
4163
+ "windows-link",
4164
+ ]
4165
+
4166
+ [[package]]
4167
+ name = "windows-sys"
4168
+ version = "0.45.0"
4169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4170
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
4171
+ dependencies = [
4172
+ "windows-targets 0.42.2",
4173
+ ]
4174
+
4175
+ [[package]]
4176
+ name = "windows-sys"
4177
+ version = "0.52.0"
4178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4179
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4180
+ dependencies = [
4181
+ "windows-targets 0.52.6",
4182
+ ]
4183
+
4184
+ [[package]]
4185
+ name = "windows-sys"
4186
+ version = "0.60.2"
4187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4188
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4189
+ dependencies = [
4190
+ "windows-targets 0.53.5",
4191
+ ]
4192
+
4193
+ [[package]]
4194
+ name = "windows-sys"
4195
+ version = "0.61.2"
4196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4197
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
4198
+ dependencies = [
4199
+ "windows-link",
4200
+ ]
4201
+
4202
+ [[package]]
4203
+ name = "windows-targets"
4204
+ version = "0.42.2"
4205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4206
+ checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
4207
+ dependencies = [
4208
+ "windows_aarch64_gnullvm 0.42.2",
4209
+ "windows_aarch64_msvc 0.42.2",
4210
+ "windows_i686_gnu 0.42.2",
4211
+ "windows_i686_msvc 0.42.2",
4212
+ "windows_x86_64_gnu 0.42.2",
4213
+ "windows_x86_64_gnullvm 0.42.2",
4214
+ "windows_x86_64_msvc 0.42.2",
4215
+ ]
4216
+
4217
+ [[package]]
4218
+ name = "windows-targets"
4219
+ version = "0.52.6"
4220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4221
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4222
+ dependencies = [
4223
+ "windows_aarch64_gnullvm 0.52.6",
4224
+ "windows_aarch64_msvc 0.52.6",
4225
+ "windows_i686_gnu 0.52.6",
4226
+ "windows_i686_gnullvm 0.52.6",
4227
+ "windows_i686_msvc 0.52.6",
4228
+ "windows_x86_64_gnu 0.52.6",
4229
+ "windows_x86_64_gnullvm 0.52.6",
4230
+ "windows_x86_64_msvc 0.52.6",
4231
+ ]
4232
+
4233
+ [[package]]
4234
+ name = "windows-targets"
4235
+ version = "0.53.5"
4236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4237
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
4238
+ dependencies = [
4239
+ "windows-link",
4240
+ "windows_aarch64_gnullvm 0.53.1",
4241
+ "windows_aarch64_msvc 0.53.1",
4242
+ "windows_i686_gnu 0.53.1",
4243
+ "windows_i686_gnullvm 0.53.1",
4244
+ "windows_i686_msvc 0.53.1",
4245
+ "windows_x86_64_gnu 0.53.1",
4246
+ "windows_x86_64_gnullvm 0.53.1",
4247
+ "windows_x86_64_msvc 0.53.1",
4248
+ ]
4249
+
4250
+ [[package]]
4251
+ name = "windows_aarch64_gnullvm"
4252
+ version = "0.42.2"
4253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4254
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
4255
+
4256
+ [[package]]
4257
+ name = "windows_aarch64_gnullvm"
4258
+ version = "0.52.6"
4259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4260
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4261
+
4262
+ [[package]]
4263
+ name = "windows_aarch64_gnullvm"
4264
+ version = "0.53.1"
4265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4266
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
4267
+
4268
+ [[package]]
4269
+ name = "windows_aarch64_msvc"
4270
+ version = "0.42.2"
4271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4272
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
4273
+
4274
+ [[package]]
4275
+ name = "windows_aarch64_msvc"
4276
+ version = "0.52.6"
4277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4278
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4279
+
4280
+ [[package]]
4281
+ name = "windows_aarch64_msvc"
4282
+ version = "0.53.1"
4283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4284
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
4285
+
4286
+ [[package]]
4287
+ name = "windows_i686_gnu"
4288
+ version = "0.42.2"
4289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4290
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
4291
+
4292
+ [[package]]
4293
+ name = "windows_i686_gnu"
4294
+ version = "0.52.6"
4295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4296
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4297
+
4298
+ [[package]]
4299
+ name = "windows_i686_gnu"
4300
+ version = "0.53.1"
4301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4302
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
4303
+
4304
+ [[package]]
4305
+ name = "windows_i686_gnullvm"
4306
+ version = "0.52.6"
4307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4308
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4309
+
4310
+ [[package]]
4311
+ name = "windows_i686_gnullvm"
4312
+ version = "0.53.1"
4313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4314
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
4315
+
4316
+ [[package]]
4317
+ name = "windows_i686_msvc"
4318
+ version = "0.42.2"
4319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4320
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
4321
+
4322
+ [[package]]
4323
+ name = "windows_i686_msvc"
4324
+ version = "0.52.6"
4325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4326
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4327
+
4328
+ [[package]]
4329
+ name = "windows_i686_msvc"
4330
+ version = "0.53.1"
4331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4332
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
4333
+
4334
+ [[package]]
4335
+ name = "windows_x86_64_gnu"
4336
+ version = "0.42.2"
4337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4338
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
4339
+
4340
+ [[package]]
4341
+ name = "windows_x86_64_gnu"
4342
+ version = "0.52.6"
4343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4344
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4345
+
4346
+ [[package]]
4347
+ name = "windows_x86_64_gnu"
4348
+ version = "0.53.1"
4349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4350
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
4351
+
4352
+ [[package]]
4353
+ name = "windows_x86_64_gnullvm"
4354
+ version = "0.42.2"
4355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4356
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
4357
+
4358
+ [[package]]
4359
+ name = "windows_x86_64_gnullvm"
4360
+ version = "0.52.6"
4361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4362
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4363
+
4364
+ [[package]]
4365
+ name = "windows_x86_64_gnullvm"
4366
+ version = "0.53.1"
4367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4368
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
4369
+
4370
+ [[package]]
4371
+ name = "windows_x86_64_msvc"
4372
+ version = "0.42.2"
4373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4374
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
4375
+
4376
+ [[package]]
4377
+ name = "windows_x86_64_msvc"
4378
+ version = "0.52.6"
4379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4380
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4381
+
4382
+ [[package]]
4383
+ name = "windows_x86_64_msvc"
4384
+ version = "0.53.1"
4385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4386
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
4387
+
4388
+ [[package]]
4389
+ name = "winnow"
4390
+ version = "0.7.14"
4391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4392
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
4393
+ dependencies = [
4394
+ "memchr",
4395
+ ]
4396
+
4397
+ [[package]]
4398
+ name = "wit-bindgen"
4399
+ version = "0.46.0"
4400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4401
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
4402
+
4403
+ [[package]]
4404
+ name = "wit-bindgen"
4405
+ version = "0.51.0"
4406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4407
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
4408
+ dependencies = [
4409
+ "wit-bindgen-rust-macro",
4410
+ ]
4411
+
4412
+ [[package]]
4413
+ name = "wit-bindgen-core"
4414
+ version = "0.51.0"
4415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4416
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
4417
+ dependencies = [
4418
+ "anyhow",
4419
+ "heck",
4420
+ "wit-parser",
4421
+ ]
4422
+
4423
+ [[package]]
4424
+ name = "wit-bindgen-rust"
4425
+ version = "0.51.0"
4426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4427
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
4428
+ dependencies = [
4429
+ "anyhow",
4430
+ "heck",
4431
+ "indexmap",
4432
+ "prettyplease",
4433
+ "syn",
4434
+ "wasm-metadata",
4435
+ "wit-bindgen-core",
4436
+ "wit-component",
4437
+ ]
4438
+
4439
+ [[package]]
4440
+ name = "wit-bindgen-rust-macro"
4441
+ version = "0.51.0"
4442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4443
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
4444
+ dependencies = [
4445
+ "anyhow",
4446
+ "prettyplease",
4447
+ "proc-macro2",
4448
+ "quote",
4449
+ "syn",
4450
+ "wit-bindgen-core",
4451
+ "wit-bindgen-rust",
4452
+ ]
4453
+
4454
+ [[package]]
4455
+ name = "wit-component"
4456
+ version = "0.244.0"
4457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4458
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
4459
+ dependencies = [
4460
+ "anyhow",
4461
+ "bitflags",
4462
+ "indexmap",
4463
+ "log",
4464
+ "serde",
4465
+ "serde_derive",
4466
+ "serde_json",
4467
+ "wasm-encoder",
4468
+ "wasm-metadata",
4469
+ "wasmparser",
4470
+ "wit-parser",
4471
+ ]
4472
+
4473
+ [[package]]
4474
+ name = "wit-parser"
4475
+ version = "0.244.0"
4476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4477
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
4478
+ dependencies = [
4479
+ "anyhow",
4480
+ "id-arena",
4481
+ "indexmap",
4482
+ "log",
4483
+ "semver",
4484
+ "serde",
4485
+ "serde_derive",
4486
+ "serde_json",
4487
+ "unicode-xid",
4488
+ "wasmparser",
4489
+ ]
4490
+
4491
+ [[package]]
4492
+ name = "writeable"
4493
+ version = "0.6.2"
4494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4495
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
4496
+
4497
+ [[package]]
4498
+ name = "yoke"
4499
+ version = "0.8.1"
4500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4501
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
4502
+ dependencies = [
4503
+ "stable_deref_trait",
4504
+ "yoke-derive",
4505
+ "zerofrom",
4506
+ ]
4507
+
4508
+ [[package]]
4509
+ name = "yoke-derive"
4510
+ version = "0.8.1"
4511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4512
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
4513
+ dependencies = [
4514
+ "proc-macro2",
4515
+ "quote",
4516
+ "syn",
4517
+ "synstructure",
4518
+ ]
4519
+
4520
+ [[package]]
4521
+ name = "zerocopy"
4522
+ version = "0.8.39"
4523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4524
+ checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
4525
+ dependencies = [
4526
+ "zerocopy-derive",
4527
+ ]
4528
+
4529
+ [[package]]
4530
+ name = "zerocopy-derive"
4531
+ version = "0.8.39"
4532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4533
+ checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
4534
+ dependencies = [
4535
+ "proc-macro2",
4536
+ "quote",
4537
+ "syn",
4538
+ ]
4539
+
4540
+ [[package]]
4541
+ name = "zerofrom"
4542
+ version = "0.1.6"
4543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4544
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
4545
+ dependencies = [
4546
+ "zerofrom-derive",
4547
+ ]
4548
+
4549
+ [[package]]
4550
+ name = "zerofrom-derive"
4551
+ version = "0.1.6"
4552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4553
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4554
+ dependencies = [
4555
+ "proc-macro2",
4556
+ "quote",
4557
+ "syn",
4558
+ "synstructure",
4559
+ ]
4560
+
4561
+ [[package]]
4562
+ name = "zeroize"
4563
+ version = "1.8.2"
4564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4565
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
4566
+ dependencies = [
4567
+ "zeroize_derive",
4568
+ ]
4569
+
4570
+ [[package]]
4571
+ name = "zeroize_derive"
4572
+ version = "1.4.3"
4573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4574
+ checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
4575
+ dependencies = [
4576
+ "proc-macro2",
4577
+ "quote",
4578
+ "syn",
4579
+ ]
4580
+
4581
+ [[package]]
4582
+ name = "zerotrie"
4583
+ version = "0.2.3"
4584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4585
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
4586
+ dependencies = [
4587
+ "displaydoc",
4588
+ "yoke",
4589
+ "zerofrom",
4590
+ ]
4591
+
4592
+ [[package]]
4593
+ name = "zerovec"
4594
+ version = "0.11.5"
4595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4596
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
4597
+ dependencies = [
4598
+ "yoke",
4599
+ "zerofrom",
4600
+ "zerovec-derive",
4601
+ ]
4602
+
4603
+ [[package]]
4604
+ name = "zerovec-derive"
4605
+ version = "0.11.2"
4606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4607
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
4608
+ dependencies = [
4609
+ "proc-macro2",
4610
+ "quote",
4611
+ "syn",
4612
+ ]
4613
+
4614
+ [[package]]
4615
+ name = "zip"
4616
+ version = "7.2.0"
4617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4618
+ checksum = "c42e33efc22a0650c311c2ef19115ce232583abbe80850bc8b66509ebef02de0"
4619
+ dependencies = [
4620
+ "aes",
4621
+ "bzip2",
4622
+ "constant_time_eq",
4623
+ "crc32fast",
4624
+ "deflate64",
4625
+ "flate2",
4626
+ "generic-array",
4627
+ "getrandom 0.3.4",
4628
+ "hmac",
4629
+ "indexmap",
4630
+ "lzma-rust2",
4631
+ "memchr",
4632
+ "pbkdf2",
4633
+ "ppmd-rust",
4634
+ "sha1",
4635
+ "time",
4636
+ "typed-path",
4637
+ "zeroize",
4638
+ "zopfli",
4639
+ "zstd",
4640
+ ]
4641
+
4642
+ [[package]]
4643
+ name = "zlib-rs"
4644
+ version = "0.6.0"
4645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4646
+ checksum = "a7948af682ccbc3342b6e9420e8c51c1fe5d7bf7756002b4a3c6cabfe96a7e3c"
4647
+
4648
+ [[package]]
4649
+ name = "zmij"
4650
+ version = "1.0.21"
4651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4652
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
4653
+
4654
+ [[package]]
4655
+ name = "zopfli"
4656
+ version = "0.8.3"
4657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4658
+ checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
4659
+ dependencies = [
4660
+ "bumpalo",
4661
+ "crc32fast",
4662
+ "log",
4663
+ "simd-adler32",
4664
+ ]
4665
+
4666
+ [[package]]
4667
+ name = "zstd"
4668
+ version = "0.13.3"
4669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4670
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
4671
+ dependencies = [
4672
+ "zstd-safe",
4673
+ ]
4674
+
4675
+ [[package]]
4676
+ name = "zstd-safe"
4677
+ version = "7.2.4"
4678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4679
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
4680
+ dependencies = [
4681
+ "zstd-sys",
4682
+ ]
4683
+
4684
+ [[package]]
4685
+ name = "zstd-sys"
4686
+ version = "2.0.16+zstd.1.5.7"
4687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4688
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
4689
+ dependencies = [
4690
+ "cc",
4691
+ "pkg-config",
4692
+ ]