prek 0.2.23__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 (150) hide show
  1. prek-0.2.23/Cargo.lock +3662 -0
  2. prek-0.2.23/Cargo.toml +148 -0
  3. prek-0.2.23/LICENSE +21 -0
  4. prek-0.2.23/PKG-INFO +363 -0
  5. prek-0.2.23/README.md +340 -0
  6. prek-0.2.23/crates/prek/Cargo.toml +118 -0
  7. prek-0.2.23/crates/prek/build.rs +124 -0
  8. prek-0.2.23/crates/prek/src/archive.rs +319 -0
  9. prek-0.2.23/crates/prek/src/cleanup.rs +17 -0
  10. prek-0.2.23/crates/prek/src/cli/auto_update.rs +813 -0
  11. prek-0.2.23/crates/prek/src/cli/cache_clean.rs +68 -0
  12. prek-0.2.23/crates/prek/src/cli/cache_size.rs +59 -0
  13. prek-0.2.23/crates/prek/src/cli/completion.rs +276 -0
  14. prek-0.2.23/crates/prek/src/cli/hook_impl.rs +304 -0
  15. prek-0.2.23/crates/prek/src/cli/install.rs +420 -0
  16. prek-0.2.23/crates/prek/src/cli/list.rs +144 -0
  17. prek-0.2.23/crates/prek/src/cli/mod.rs +1064 -0
  18. prek-0.2.23/crates/prek/src/cli/reporter.rs +258 -0
  19. prek-0.2.23/crates/prek/src/cli/run/filter.rs +380 -0
  20. prek-0.2.23/crates/prek/src/cli/run/keeper.rs +267 -0
  21. prek-0.2.23/crates/prek/src/cli/run/mod.rs +9 -0
  22. prek-0.2.23/crates/prek/src/cli/run/run.rs +1054 -0
  23. prek-0.2.23/crates/prek/src/cli/run/selector.rs +778 -0
  24. prek-0.2.23/crates/prek/src/cli/sample_config.rs +44 -0
  25. prek-0.2.23/crates/prek/src/cli/self_update.rs +181 -0
  26. prek-0.2.23/crates/prek/src/cli/try_repo.rs +215 -0
  27. prek-0.2.23/crates/prek/src/cli/validate.rs +80 -0
  28. prek-0.2.23/crates/prek/src/config.rs +1872 -0
  29. prek-0.2.23/crates/prek/src/fs.rs +311 -0
  30. prek-0.2.23/crates/prek/src/git.rs +637 -0
  31. prek-0.2.23/crates/prek/src/hook.rs +676 -0
  32. prek-0.2.23/crates/prek/src/hooks/builtin_hooks.rs +278 -0
  33. prek-0.2.23/crates/prek/src/hooks/meta_hooks.rs +282 -0
  34. prek-0.2.23/crates/prek/src/hooks/mod.rs +50 -0
  35. prek-0.2.23/crates/prek/src/hooks/pre_commit_hooks/check_added_large_files.rs +87 -0
  36. prek-0.2.23/crates/prek/src/hooks/pre_commit_hooks/check_case_conflict.rs +164 -0
  37. prek-0.2.23/crates/prek/src/hooks/pre_commit_hooks/check_executables_have_shebangs.rs +245 -0
  38. prek-0.2.23/crates/prek/src/hooks/pre_commit_hooks/check_json.rs +255 -0
  39. prek-0.2.23/crates/prek/src/hooks/pre_commit_hooks/check_merge_conflict.rs +269 -0
  40. prek-0.2.23/crates/prek/src/hooks/pre_commit_hooks/check_symlinks.rs +166 -0
  41. prek-0.2.23/crates/prek/src/hooks/pre_commit_hooks/check_toml.rs +159 -0
  42. prek-0.2.23/crates/prek/src/hooks/pre_commit_hooks/check_xml.rs +236 -0
  43. prek-0.2.23/crates/prek/src/hooks/pre_commit_hooks/check_yaml.rs +191 -0
  44. prek-0.2.23/crates/prek/src/hooks/pre_commit_hooks/detect_private_key.rs +136 -0
  45. prek-0.2.23/crates/prek/src/hooks/pre_commit_hooks/fix_byte_order_marker.rs +220 -0
  46. prek-0.2.23/crates/prek/src/hooks/pre_commit_hooks/fix_end_of_file.rs +291 -0
  47. prek-0.2.23/crates/prek/src/hooks/pre_commit_hooks/fix_trailing_whitespace.rs +536 -0
  48. prek-0.2.23/crates/prek/src/hooks/pre_commit_hooks/mixed_line_ending.rs +316 -0
  49. prek-0.2.23/crates/prek/src/hooks/pre_commit_hooks/mod.rs +121 -0
  50. prek-0.2.23/crates/prek/src/hooks/pre_commit_hooks/no_commit_to_branch.rs +66 -0
  51. prek-0.2.23/crates/prek/src/identify.rs +1093 -0
  52. prek-0.2.23/crates/prek/src/languages/docker.rs +717 -0
  53. prek-0.2.23/crates/prek/src/languages/docker_image.rs +75 -0
  54. prek-0.2.23/crates/prek/src/languages/fail.rs +46 -0
  55. prek-0.2.23/crates/prek/src/languages/golang/golang.rs +188 -0
  56. prek-0.2.23/crates/prek/src/languages/golang/gomod.rs +7 -0
  57. prek-0.2.23/crates/prek/src/languages/golang/installer.rs +285 -0
  58. prek-0.2.23/crates/prek/src/languages/golang/mod.rs +9 -0
  59. prek-0.2.23/crates/prek/src/languages/golang/version.rs +145 -0
  60. prek-0.2.23/crates/prek/src/languages/lua.rs +250 -0
  61. prek-0.2.23/crates/prek/src/languages/mod.rs +394 -0
  62. prek-0.2.23/crates/prek/src/languages/node/installer.rs +340 -0
  63. prek-0.2.23/crates/prek/src/languages/node/mod.rs +7 -0
  64. prek-0.2.23/crates/prek/src/languages/node/node.rs +194 -0
  65. prek-0.2.23/crates/prek/src/languages/node/version.rs +354 -0
  66. prek-0.2.23/crates/prek/src/languages/pygrep/mod.rs +4 -0
  67. prek-0.2.23/crates/prek/src/languages/pygrep/pygrep.rs +280 -0
  68. prek-0.2.23/crates/prek/src/languages/pygrep/script.py +183 -0
  69. prek-0.2.23/crates/prek/src/languages/python/mod.rs +11 -0
  70. prek-0.2.23/crates/prek/src/languages/python/pep723.rs +288 -0
  71. prek-0.2.23/crates/prek/src/languages/python/python.rs +343 -0
  72. prek-0.2.23/crates/prek/src/languages/python/uv.rs +528 -0
  73. prek-0.2.23/crates/prek/src/languages/python/version.rs +249 -0
  74. prek-0.2.23/crates/prek/src/languages/ruby/gem.rs +137 -0
  75. prek-0.2.23/crates/prek/src/languages/ruby/installer.rs +550 -0
  76. prek-0.2.23/crates/prek/src/languages/ruby/mod.rs +15 -0
  77. prek-0.2.23/crates/prek/src/languages/ruby/ruby.rs +209 -0
  78. prek-0.2.23/crates/prek/src/languages/ruby/version.rs +200 -0
  79. prek-0.2.23/crates/prek/src/languages/rust/installer.rs +215 -0
  80. prek-0.2.23/crates/prek/src/languages/rust/mod.rs +8 -0
  81. prek-0.2.23/crates/prek/src/languages/rust/rust.rs +765 -0
  82. prek-0.2.23/crates/prek/src/languages/rust/rustup.rs +285 -0
  83. prek-0.2.23/crates/prek/src/languages/rust/version.rs +388 -0
  84. prek-0.2.23/crates/prek/src/languages/script.rs +85 -0
  85. prek-0.2.23/crates/prek/src/languages/system.rs +75 -0
  86. prek-0.2.23/crates/prek/src/languages/version.rs +119 -0
  87. prek-0.2.23/crates/prek/src/main.rs +447 -0
  88. prek-0.2.23/crates/prek/src/printer.rs +130 -0
  89. prek-0.2.23/crates/prek/src/process.rs +492 -0
  90. prek-0.2.23/crates/prek/src/profiler.rs +40 -0
  91. prek-0.2.23/crates/prek/src/run.rs +186 -0
  92. prek-0.2.23/crates/prek/src/snapshots/prek__config__tests__read_config.snap +297 -0
  93. prek-0.2.23/crates/prek/src/snapshots/prek__config__tests__read_manifest.snap +137 -0
  94. prek-0.2.23/crates/prek/src/store.rs +249 -0
  95. prek-0.2.23/crates/prek/src/version.rs +99 -0
  96. prek-0.2.23/crates/prek/src/warnings.rs +80 -0
  97. prek-0.2.23/crates/prek/src/workspace.rs +920 -0
  98. prek-0.2.23/crates/prek/src/yaml.rs +96 -0
  99. prek-0.2.23/crates/prek/tests/auto_update.rs +1023 -0
  100. prek-0.2.23/crates/prek/tests/builtin_hooks.rs +2079 -0
  101. prek-0.2.23/crates/prek/tests/cache.rs +101 -0
  102. prek-0.2.23/crates/prek/tests/common/mod.rs +438 -0
  103. prek-0.2.23/crates/prek/tests/fixtures/go.yaml +18 -0
  104. prek-0.2.23/crates/prek/tests/fixtures/issue227.yaml +5 -0
  105. prek-0.2.23/crates/prek/tests/fixtures/issue253/biome.json +7 -0
  106. prek-0.2.23/crates/prek/tests/fixtures/issue253/input.json +1 -0
  107. prek-0.2.23/crates/prek/tests/fixtures/issue253/issue253.yaml +6 -0
  108. prek-0.2.23/crates/prek/tests/fixtures/issue265.yaml +6 -0
  109. prek-0.2.23/crates/prek/tests/fixtures/node-dependencies.yaml +11 -0
  110. prek-0.2.23/crates/prek/tests/fixtures/node-version.yaml +17 -0
  111. prek-0.2.23/crates/prek/tests/fixtures/python-version.yaml +10 -0
  112. prek-0.2.23/crates/prek/tests/fixtures/repeated-repos.yaml +9 -0
  113. prek-0.2.23/crates/prek/tests/fixtures/uv-pre-commit-config.yaml +49 -0
  114. prek-0.2.23/crates/prek/tests/fixtures/uv-pre-commit-hooks.yaml +30 -0
  115. prek-0.2.23/crates/prek/tests/hook_impl.rs +661 -0
  116. prek-0.2.23/crates/prek/tests/install.rs +1031 -0
  117. prek-0.2.23/crates/prek/tests/languages/docker.rs +90 -0
  118. prek-0.2.23/crates/prek/tests/languages/docker_image.rs +82 -0
  119. prek-0.2.23/crates/prek/tests/languages/fail.rs +46 -0
  120. prek-0.2.23/crates/prek/tests/languages/golang.rs +326 -0
  121. prek-0.2.23/crates/prek/tests/languages/lua.rs +306 -0
  122. prek-0.2.23/crates/prek/tests/languages/main.rs +18 -0
  123. prek-0.2.23/crates/prek/tests/languages/node.rs +243 -0
  124. prek-0.2.23/crates/prek/tests/languages/pygrep.rs +448 -0
  125. prek-0.2.23/crates/prek/tests/languages/python.rs +356 -0
  126. prek-0.2.23/crates/prek/tests/languages/ruby.rs +829 -0
  127. prek-0.2.23/crates/prek/tests/languages/rust.rs +274 -0
  128. prek-0.2.23/crates/prek/tests/languages/script.rs +206 -0
  129. prek-0.2.23/crates/prek/tests/languages/unimplemented.rs +29 -0
  130. prek-0.2.23/crates/prek/tests/languages/unsupported.rs +53 -0
  131. prek-0.2.23/crates/prek/tests/list.rs +806 -0
  132. prek-0.2.23/crates/prek/tests/meta_hooks.rs +192 -0
  133. prek-0.2.23/crates/prek/tests/run.rs +2786 -0
  134. prek-0.2.23/crates/prek/tests/sample_config.rs +98 -0
  135. prek-0.2.23/crates/prek/tests/try_repo.rs +401 -0
  136. prek-0.2.23/crates/prek/tests/validate.rs +187 -0
  137. prek-0.2.23/crates/prek/tests/workspace.rs +1243 -0
  138. prek-0.2.23/crates/prek-consts/Cargo.toml +13 -0
  139. prek-0.2.23/crates/prek-consts/src/env_vars.rs +172 -0
  140. prek-0.2.23/crates/prek-consts/src/lib.rs +5 -0
  141. prek-0.2.23/crates/prek-pty/Cargo.toml +14 -0
  142. prek-0.2.23/crates/prek-pty/LICENSE +32 -0
  143. prek-0.2.23/crates/prek-pty/src/error.rs +47 -0
  144. prek-0.2.23/crates/prek-pty/src/lib.rs +13 -0
  145. prek-0.2.23/crates/prek-pty/src/pty.rs +355 -0
  146. prek-0.2.23/crates/prek-pty/src/sys.rs +173 -0
  147. prek-0.2.23/crates/prek-pty/src/types.rs +45 -0
  148. prek-0.2.23/licenses/LICENSE.identify.txt +19 -0
  149. prek-0.2.23/licenses/LICENSE.pre-commit.txt +19 -0
  150. prek-0.2.23/pyproject.toml +64 -0
prek-0.2.23/Cargo.lock ADDED
@@ -0,0 +1,3662 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.25.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "adler2"
16
+ version = "2.0.1"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
19
+
20
+ [[package]]
21
+ name = "ahash"
22
+ version = "0.8.12"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
25
+ dependencies = [
26
+ "cfg-if",
27
+ "getrandom 0.3.4",
28
+ "once_cell",
29
+ "version_check",
30
+ "zerocopy",
31
+ ]
32
+
33
+ [[package]]
34
+ name = "aho-corasick"
35
+ version = "1.1.4"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
38
+ dependencies = [
39
+ "memchr",
40
+ ]
41
+
42
+ [[package]]
43
+ name = "aligned-vec"
44
+ version = "0.6.4"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b"
47
+ dependencies = [
48
+ "equator",
49
+ ]
50
+
51
+ [[package]]
52
+ name = "anstream"
53
+ version = "0.6.21"
54
+ source = "registry+https://github.com/rust-lang/crates.io-index"
55
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
56
+ dependencies = [
57
+ "anstyle",
58
+ "anstyle-parse",
59
+ "anstyle-query",
60
+ "anstyle-wincon",
61
+ "colorchoice",
62
+ "is_terminal_polyfill",
63
+ "utf8parse",
64
+ ]
65
+
66
+ [[package]]
67
+ name = "anstyle"
68
+ version = "1.0.13"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
71
+
72
+ [[package]]
73
+ name = "anstyle-parse"
74
+ version = "0.2.7"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
77
+ dependencies = [
78
+ "utf8parse",
79
+ ]
80
+
81
+ [[package]]
82
+ name = "anstyle-query"
83
+ version = "1.1.5"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
86
+ dependencies = [
87
+ "windows-sys 0.61.2",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "anstyle-wincon"
92
+ version = "3.0.11"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
95
+ dependencies = [
96
+ "anstyle",
97
+ "once_cell_polyfill",
98
+ "windows-sys 0.61.2",
99
+ ]
100
+
101
+ [[package]]
102
+ name = "anyhow"
103
+ version = "1.0.100"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
106
+
107
+ [[package]]
108
+ name = "ar_archive_writer"
109
+ version = "0.2.0"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "f0c269894b6fe5e9d7ada0cf69b5bf847ff35bc25fc271f08e1d080fce80339a"
112
+ dependencies = [
113
+ "object 0.32.2",
114
+ ]
115
+
116
+ [[package]]
117
+ name = "arrayvec"
118
+ version = "0.7.6"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
121
+
122
+ [[package]]
123
+ name = "assert_cmd"
124
+ version = "2.1.1"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "bcbb6924530aa9e0432442af08bbcafdad182db80d2e560da42a6d442535bf85"
127
+ dependencies = [
128
+ "anstream",
129
+ "anstyle",
130
+ "bstr",
131
+ "libc",
132
+ "predicates",
133
+ "predicates-core",
134
+ "predicates-tree",
135
+ "wait-timeout",
136
+ ]
137
+
138
+ [[package]]
139
+ name = "assert_fs"
140
+ version = "1.1.3"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "a652f6cb1f516886fcfee5e7a5c078b9ade62cfcb889524efe5a64d682dd27a9"
143
+ dependencies = [
144
+ "anstyle",
145
+ "doc-comment",
146
+ "globwalk",
147
+ "predicates",
148
+ "predicates-core",
149
+ "predicates-tree",
150
+ "tempfile",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "astral-tokio-tar"
155
+ version = "0.5.6"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "ec179a06c1769b1e42e1e2cbe74c7dcdb3d6383c838454d063eaac5bbb7ebbe5"
158
+ dependencies = [
159
+ "filetime",
160
+ "futures-core",
161
+ "libc",
162
+ "portable-atomic",
163
+ "rustc-hash",
164
+ "tokio",
165
+ "tokio-stream",
166
+ "xattr",
167
+ ]
168
+
169
+ [[package]]
170
+ name = "astral_async_zip"
171
+ version = "0.0.17"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "ab72a761e6085828cc8f0e05ed332b2554701368c5dc54de551bfaec466518ba"
174
+ dependencies = [
175
+ "async-compression",
176
+ "crc32fast",
177
+ "futures-lite",
178
+ "pin-project",
179
+ "thiserror 1.0.69",
180
+ "tokio",
181
+ "tokio-util",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "async-compression"
186
+ version = "0.4.36"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "98ec5f6c2f8bc326c994cb9e241cc257ddaba9afa8555a43cffbb5dd86efaa37"
189
+ dependencies = [
190
+ "compression-codecs",
191
+ "compression-core",
192
+ "futures-core",
193
+ "futures-io",
194
+ "pin-project-lite",
195
+ "tokio",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "atomic-waker"
200
+ version = "1.1.2"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
203
+
204
+ [[package]]
205
+ name = "autocfg"
206
+ version = "1.5.0"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
209
+
210
+ [[package]]
211
+ name = "axoasset"
212
+ version = "1.4.0"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "a07b94735e2775756d9a5b6422bd49ee089de3c3f39383489e20ea748b4ee690"
215
+ dependencies = [
216
+ "camino",
217
+ "image",
218
+ "lazy_static",
219
+ "miette",
220
+ "mime",
221
+ "reqwest",
222
+ "serde",
223
+ "serde_json",
224
+ "thiserror 2.0.17",
225
+ "url",
226
+ "walkdir",
227
+ ]
228
+
229
+ [[package]]
230
+ name = "axoprocess"
231
+ version = "0.2.1"
232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
233
+ checksum = "8a4b4798a6c02e91378537c63cd6e91726900b595450daa5d487bc3c11e95e1b"
234
+ dependencies = [
235
+ "miette",
236
+ "thiserror 2.0.17",
237
+ "tracing",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "axotag"
242
+ version = "0.3.0"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "dc923121fbc4cc72e9008436b5650b98e56f94b5799df59a1b4f572b5c6a7e6b"
245
+ dependencies = [
246
+ "miette",
247
+ "semver",
248
+ "thiserror 2.0.17",
249
+ ]
250
+
251
+ [[package]]
252
+ name = "axoupdater"
253
+ version = "0.9.1"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "dc482a1926df098f4e3806b834f3fe73a1ab54b24ab0ac481f72de479af5e982"
256
+ dependencies = [
257
+ "axoasset",
258
+ "axoprocess",
259
+ "axotag",
260
+ "camino",
261
+ "homedir",
262
+ "miette",
263
+ "self-replace",
264
+ "serde",
265
+ "tempfile",
266
+ "thiserror 2.0.17",
267
+ "url",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "backtrace"
272
+ version = "0.3.76"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
275
+ dependencies = [
276
+ "addr2line",
277
+ "cfg-if",
278
+ "libc",
279
+ "miniz_oxide",
280
+ "object 0.37.3",
281
+ "rustc-demangle",
282
+ "windows-link 0.2.1",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "base64"
287
+ version = "0.22.1"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
290
+
291
+ [[package]]
292
+ name = "bit-set"
293
+ version = "0.8.0"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
296
+ dependencies = [
297
+ "bit-vec",
298
+ ]
299
+
300
+ [[package]]
301
+ name = "bit-vec"
302
+ version = "0.8.0"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
305
+
306
+ [[package]]
307
+ name = "bitflags"
308
+ version = "1.3.2"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
311
+
312
+ [[package]]
313
+ name = "bitflags"
314
+ version = "2.10.0"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
317
+
318
+ [[package]]
319
+ name = "block2"
320
+ version = "0.6.2"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
323
+ dependencies = [
324
+ "objc2",
325
+ ]
326
+
327
+ [[package]]
328
+ name = "bstr"
329
+ version = "1.12.1"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
332
+ dependencies = [
333
+ "memchr",
334
+ "regex-automata",
335
+ "serde",
336
+ ]
337
+
338
+ [[package]]
339
+ name = "bumpalo"
340
+ version = "3.19.1"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
343
+
344
+ [[package]]
345
+ name = "bytemuck"
346
+ version = "1.24.0"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
349
+
350
+ [[package]]
351
+ name = "byteorder-lite"
352
+ version = "0.1.0"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
355
+
356
+ [[package]]
357
+ name = "bytes"
358
+ version = "1.11.0"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
361
+
362
+ [[package]]
363
+ name = "camino"
364
+ version = "1.2.2"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
367
+ dependencies = [
368
+ "serde_core",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "cargo-platform"
373
+ version = "0.3.2"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "87a0c0e6148f11f01f32650a2ea02d532b2ad4e81d8bd41e6e565b5adc5e6082"
376
+ dependencies = [
377
+ "serde",
378
+ "serde_core",
379
+ ]
380
+
381
+ [[package]]
382
+ name = "cargo_metadata"
383
+ version = "0.23.1"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "ef987d17b0a113becdd19d3d0022d04d7ef41f9efe4f3fb63ac44ba61df3ade9"
386
+ dependencies = [
387
+ "camino",
388
+ "cargo-platform",
389
+ "semver",
390
+ "serde",
391
+ "serde_json",
392
+ "thiserror 2.0.17",
393
+ ]
394
+
395
+ [[package]]
396
+ name = "cc"
397
+ version = "1.2.50"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "9f50d563227a1c37cc0a263f64eca3334388c01c5e4c4861a9def205c614383c"
400
+ dependencies = [
401
+ "find-msvc-tools",
402
+ "jobserver",
403
+ "libc",
404
+ "shlex",
405
+ ]
406
+
407
+ [[package]]
408
+ name = "cfg-if"
409
+ version = "1.0.4"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
412
+
413
+ [[package]]
414
+ name = "cfg_aliases"
415
+ version = "0.2.1"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
418
+
419
+ [[package]]
420
+ name = "clap"
421
+ version = "4.5.53"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
424
+ dependencies = [
425
+ "clap_builder",
426
+ "clap_derive",
427
+ ]
428
+
429
+ [[package]]
430
+ name = "clap_builder"
431
+ version = "4.5.53"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
434
+ dependencies = [
435
+ "anstream",
436
+ "anstyle",
437
+ "clap_lex",
438
+ "strsim",
439
+ "terminal_size",
440
+ ]
441
+
442
+ [[package]]
443
+ name = "clap_complete"
444
+ version = "4.5.62"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "004eef6b14ce34759aa7de4aea3217e368f463f46a3ed3764ca4b5a4404003b4"
447
+ dependencies = [
448
+ "clap",
449
+ "clap_lex",
450
+ "is_executable",
451
+ "shlex",
452
+ ]
453
+
454
+ [[package]]
455
+ name = "clap_derive"
456
+ version = "4.5.49"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
459
+ dependencies = [
460
+ "heck",
461
+ "proc-macro2",
462
+ "quote",
463
+ "syn",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "clap_lex"
468
+ version = "0.7.6"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
471
+
472
+ [[package]]
473
+ name = "colorchoice"
474
+ version = "1.0.4"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
477
+
478
+ [[package]]
479
+ name = "compression-codecs"
480
+ version = "0.4.35"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "b0f7ac3e5b97fdce45e8922fb05cae2c37f7bbd63d30dd94821dacfd8f3f2bf2"
483
+ dependencies = [
484
+ "compression-core",
485
+ "flate2",
486
+ "liblzma",
487
+ "memchr",
488
+ ]
489
+
490
+ [[package]]
491
+ name = "compression-core"
492
+ version = "0.4.31"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d"
495
+
496
+ [[package]]
497
+ name = "console"
498
+ version = "0.15.11"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
501
+ dependencies = [
502
+ "encode_unicode",
503
+ "libc",
504
+ "once_cell",
505
+ "windows-sys 0.59.0",
506
+ ]
507
+
508
+ [[package]]
509
+ name = "console"
510
+ version = "0.16.2"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "03e45a4a8926227e4197636ba97a9fc9b00477e9f4bd711395687c5f0734bec4"
513
+ dependencies = [
514
+ "encode_unicode",
515
+ "libc",
516
+ "once_cell",
517
+ "unicode-width 0.2.2",
518
+ "windows-sys 0.61.2",
519
+ ]
520
+
521
+ [[package]]
522
+ name = "core-foundation"
523
+ version = "0.10.1"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
526
+ dependencies = [
527
+ "core-foundation-sys",
528
+ "libc",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "core-foundation-sys"
533
+ version = "0.8.7"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
536
+
537
+ [[package]]
538
+ name = "cpp_demangle"
539
+ version = "0.4.5"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "f2bb79cb74d735044c972aae58ed0aaa9a837e85b01106a54c39e42e97f62253"
542
+ dependencies = [
543
+ "cfg-if",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "crc32fast"
548
+ version = "1.5.0"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
551
+ dependencies = [
552
+ "cfg-if",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "crossbeam-deque"
557
+ version = "0.8.6"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
560
+ dependencies = [
561
+ "crossbeam-epoch",
562
+ "crossbeam-utils",
563
+ ]
564
+
565
+ [[package]]
566
+ name = "crossbeam-epoch"
567
+ version = "0.9.18"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
570
+ dependencies = [
571
+ "crossbeam-utils",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "crossbeam-utils"
576
+ version = "0.8.21"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
579
+
580
+ [[package]]
581
+ name = "ctrlc"
582
+ version = "3.5.1"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "73736a89c4aff73035ba2ed2e565061954da00d4970fc9ac25dcc85a2a20d790"
585
+ dependencies = [
586
+ "dispatch2",
587
+ "nix 0.30.1",
588
+ "windows-sys 0.61.2",
589
+ ]
590
+
591
+ [[package]]
592
+ name = "debugid"
593
+ version = "0.8.0"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
596
+ dependencies = [
597
+ "uuid",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "diff"
602
+ version = "0.1.13"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
605
+
606
+ [[package]]
607
+ name = "difflib"
608
+ version = "0.4.0"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
611
+
612
+ [[package]]
613
+ name = "dispatch2"
614
+ version = "0.3.0"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec"
617
+ dependencies = [
618
+ "bitflags 2.10.0",
619
+ "block2",
620
+ "libc",
621
+ "objc2",
622
+ ]
623
+
624
+ [[package]]
625
+ name = "displaydoc"
626
+ version = "0.2.5"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
629
+ dependencies = [
630
+ "proc-macro2",
631
+ "quote",
632
+ "syn",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "doc-comment"
637
+ version = "0.3.4"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "780955b8b195a21ab8e4ac6b60dd1dbdcec1dc6c51c0617964b08c81785e12c9"
640
+
641
+ [[package]]
642
+ name = "dunce"
643
+ version = "1.0.5"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
646
+
647
+ [[package]]
648
+ name = "either"
649
+ version = "1.15.0"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
652
+
653
+ [[package]]
654
+ name = "encode_unicode"
655
+ version = "1.0.0"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
658
+
659
+ [[package]]
660
+ name = "env_home"
661
+ version = "0.1.0"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "c7f84e12ccf0a7ddc17a6c41c93326024c42920d7ee630d04950e6926645c0fe"
664
+
665
+ [[package]]
666
+ name = "equator"
667
+ version = "0.4.2"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
670
+ dependencies = [
671
+ "equator-macro",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "equator-macro"
676
+ version = "0.4.2"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
679
+ dependencies = [
680
+ "proc-macro2",
681
+ "quote",
682
+ "syn",
683
+ ]
684
+
685
+ [[package]]
686
+ name = "equivalent"
687
+ version = "1.0.2"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
690
+
691
+ [[package]]
692
+ name = "errno"
693
+ version = "0.3.14"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
696
+ dependencies = [
697
+ "libc",
698
+ "windows-sys 0.61.2",
699
+ ]
700
+
701
+ [[package]]
702
+ name = "etcetera"
703
+ version = "0.11.0"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "de48cc4d1c1d97a20fd819def54b890cadde72ed3ad0c614822a0a433361be96"
706
+ dependencies = [
707
+ "cfg-if",
708
+ "windows-sys 0.61.2",
709
+ ]
710
+
711
+ [[package]]
712
+ name = "fancy-regex"
713
+ version = "0.17.0"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "72cf461f865c862bb7dc573f643dd6a2b6842f7c30b07882b56bd148cc2761b8"
716
+ dependencies = [
717
+ "bit-set",
718
+ "regex-automata",
719
+ "regex-syntax",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "fastrand"
724
+ version = "2.3.0"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
727
+
728
+ [[package]]
729
+ name = "filetime"
730
+ version = "0.2.26"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
733
+ dependencies = [
734
+ "cfg-if",
735
+ "libc",
736
+ "libredox",
737
+ "windows-sys 0.60.2",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "find-msvc-tools"
742
+ version = "0.1.5"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
745
+
746
+ [[package]]
747
+ name = "findshlibs"
748
+ version = "0.10.2"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64"
751
+ dependencies = [
752
+ "cc",
753
+ "lazy_static",
754
+ "libc",
755
+ "winapi",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "flate2"
760
+ version = "1.1.5"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
763
+ dependencies = [
764
+ "crc32fast",
765
+ "miniz_oxide",
766
+ ]
767
+
768
+ [[package]]
769
+ name = "float-cmp"
770
+ version = "0.10.0"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
773
+ dependencies = [
774
+ "num-traits",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "fnv"
779
+ version = "1.0.7"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
782
+
783
+ [[package]]
784
+ name = "foldhash"
785
+ version = "0.2.0"
786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
787
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
788
+
789
+ [[package]]
790
+ name = "form_urlencoded"
791
+ version = "1.2.2"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
794
+ dependencies = [
795
+ "percent-encoding",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "fs-err"
800
+ version = "3.2.1"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "824f08d01d0f496b3eca4f001a13cf17690a6ee930043d20817f547455fd98f8"
803
+ dependencies = [
804
+ "autocfg",
805
+ "tokio",
806
+ ]
807
+
808
+ [[package]]
809
+ name = "futures"
810
+ version = "0.3.31"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
813
+ dependencies = [
814
+ "futures-channel",
815
+ "futures-core",
816
+ "futures-executor",
817
+ "futures-io",
818
+ "futures-sink",
819
+ "futures-task",
820
+ "futures-util",
821
+ ]
822
+
823
+ [[package]]
824
+ name = "futures-channel"
825
+ version = "0.3.31"
826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
828
+ dependencies = [
829
+ "futures-core",
830
+ "futures-sink",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "futures-core"
835
+ version = "0.3.31"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
838
+
839
+ [[package]]
840
+ name = "futures-executor"
841
+ version = "0.3.31"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
844
+ dependencies = [
845
+ "futures-core",
846
+ "futures-task",
847
+ "futures-util",
848
+ ]
849
+
850
+ [[package]]
851
+ name = "futures-io"
852
+ version = "0.3.31"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
855
+
856
+ [[package]]
857
+ name = "futures-lite"
858
+ version = "2.6.1"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
861
+ dependencies = [
862
+ "fastrand",
863
+ "futures-core",
864
+ "futures-io",
865
+ "parking",
866
+ "pin-project-lite",
867
+ ]
868
+
869
+ [[package]]
870
+ name = "futures-macro"
871
+ version = "0.3.31"
872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
873
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
874
+ dependencies = [
875
+ "proc-macro2",
876
+ "quote",
877
+ "syn",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "futures-sink"
882
+ version = "0.3.31"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
885
+
886
+ [[package]]
887
+ name = "futures-task"
888
+ version = "0.3.31"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
891
+
892
+ [[package]]
893
+ name = "futures-util"
894
+ version = "0.3.31"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
897
+ dependencies = [
898
+ "futures-channel",
899
+ "futures-core",
900
+ "futures-io",
901
+ "futures-macro",
902
+ "futures-sink",
903
+ "futures-task",
904
+ "memchr",
905
+ "pin-project-lite",
906
+ "pin-utils",
907
+ "slab",
908
+ ]
909
+
910
+ [[package]]
911
+ name = "getrandom"
912
+ version = "0.2.16"
913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
914
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
915
+ dependencies = [
916
+ "cfg-if",
917
+ "js-sys",
918
+ "libc",
919
+ "wasi",
920
+ "wasm-bindgen",
921
+ ]
922
+
923
+ [[package]]
924
+ name = "getrandom"
925
+ version = "0.3.4"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
928
+ dependencies = [
929
+ "cfg-if",
930
+ "js-sys",
931
+ "libc",
932
+ "r-efi",
933
+ "wasip2",
934
+ "wasm-bindgen",
935
+ ]
936
+
937
+ [[package]]
938
+ name = "gimli"
939
+ version = "0.32.3"
940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
941
+ checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
942
+
943
+ [[package]]
944
+ name = "globset"
945
+ version = "0.4.18"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
948
+ dependencies = [
949
+ "aho-corasick",
950
+ "bstr",
951
+ "log",
952
+ "regex-automata",
953
+ "regex-syntax",
954
+ ]
955
+
956
+ [[package]]
957
+ name = "globwalk"
958
+ version = "0.9.1"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757"
961
+ dependencies = [
962
+ "bitflags 2.10.0",
963
+ "ignore",
964
+ "walkdir",
965
+ ]
966
+
967
+ [[package]]
968
+ name = "h2"
969
+ version = "0.4.12"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
972
+ dependencies = [
973
+ "atomic-waker",
974
+ "bytes",
975
+ "fnv",
976
+ "futures-core",
977
+ "futures-sink",
978
+ "http",
979
+ "indexmap",
980
+ "slab",
981
+ "tokio",
982
+ "tokio-util",
983
+ "tracing",
984
+ ]
985
+
986
+ [[package]]
987
+ name = "hashbrown"
988
+ version = "0.16.1"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
991
+
992
+ [[package]]
993
+ name = "heck"
994
+ version = "0.5.0"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
997
+
998
+ [[package]]
999
+ name = "hermit-abi"
1000
+ version = "0.5.2"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1003
+
1004
+ [[package]]
1005
+ name = "hex"
1006
+ version = "0.4.3"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1009
+
1010
+ [[package]]
1011
+ name = "homedir"
1012
+ version = "0.3.6"
1013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1014
+ checksum = "68df315d2857b2d8d2898be54a85e1d001bbbe0dbb5f8ef847b48dd3a23c4527"
1015
+ dependencies = [
1016
+ "cfg-if",
1017
+ "nix 0.30.1",
1018
+ "widestring",
1019
+ "windows",
1020
+ ]
1021
+
1022
+ [[package]]
1023
+ name = "http"
1024
+ version = "1.4.0"
1025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1026
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1027
+ dependencies = [
1028
+ "bytes",
1029
+ "itoa",
1030
+ ]
1031
+
1032
+ [[package]]
1033
+ name = "http-body"
1034
+ version = "1.0.1"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1037
+ dependencies = [
1038
+ "bytes",
1039
+ "http",
1040
+ ]
1041
+
1042
+ [[package]]
1043
+ name = "http-body-util"
1044
+ version = "0.1.3"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1047
+ dependencies = [
1048
+ "bytes",
1049
+ "futures-core",
1050
+ "http",
1051
+ "http-body",
1052
+ "pin-project-lite",
1053
+ ]
1054
+
1055
+ [[package]]
1056
+ name = "httparse"
1057
+ version = "1.10.1"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1060
+
1061
+ [[package]]
1062
+ name = "hyper"
1063
+ version = "1.8.1"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1066
+ dependencies = [
1067
+ "atomic-waker",
1068
+ "bytes",
1069
+ "futures-channel",
1070
+ "futures-core",
1071
+ "h2",
1072
+ "http",
1073
+ "http-body",
1074
+ "httparse",
1075
+ "itoa",
1076
+ "pin-project-lite",
1077
+ "pin-utils",
1078
+ "smallvec",
1079
+ "tokio",
1080
+ "want",
1081
+ ]
1082
+
1083
+ [[package]]
1084
+ name = "hyper-rustls"
1085
+ version = "0.27.7"
1086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1087
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1088
+ dependencies = [
1089
+ "http",
1090
+ "hyper",
1091
+ "hyper-util",
1092
+ "rustls",
1093
+ "rustls-native-certs",
1094
+ "rustls-pki-types",
1095
+ "tokio",
1096
+ "tokio-rustls",
1097
+ "tower-service",
1098
+ "webpki-roots",
1099
+ ]
1100
+
1101
+ [[package]]
1102
+ name = "hyper-util"
1103
+ version = "0.1.19"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
1106
+ dependencies = [
1107
+ "base64",
1108
+ "bytes",
1109
+ "futures-channel",
1110
+ "futures-core",
1111
+ "futures-util",
1112
+ "http",
1113
+ "http-body",
1114
+ "hyper",
1115
+ "ipnet",
1116
+ "libc",
1117
+ "percent-encoding",
1118
+ "pin-project-lite",
1119
+ "socket2",
1120
+ "tokio",
1121
+ "tower-service",
1122
+ "tracing",
1123
+ ]
1124
+
1125
+ [[package]]
1126
+ name = "icu_collections"
1127
+ version = "2.1.1"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1130
+ dependencies = [
1131
+ "displaydoc",
1132
+ "potential_utf",
1133
+ "yoke",
1134
+ "zerofrom",
1135
+ "zerovec",
1136
+ ]
1137
+
1138
+ [[package]]
1139
+ name = "icu_locale_core"
1140
+ version = "2.1.1"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1143
+ dependencies = [
1144
+ "displaydoc",
1145
+ "litemap",
1146
+ "tinystr",
1147
+ "writeable",
1148
+ "zerovec",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "icu_normalizer"
1153
+ version = "2.1.1"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1156
+ dependencies = [
1157
+ "icu_collections",
1158
+ "icu_normalizer_data",
1159
+ "icu_properties",
1160
+ "icu_provider",
1161
+ "smallvec",
1162
+ "zerovec",
1163
+ ]
1164
+
1165
+ [[package]]
1166
+ name = "icu_normalizer_data"
1167
+ version = "2.1.1"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1170
+
1171
+ [[package]]
1172
+ name = "icu_properties"
1173
+ version = "2.1.2"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1176
+ dependencies = [
1177
+ "icu_collections",
1178
+ "icu_locale_core",
1179
+ "icu_properties_data",
1180
+ "icu_provider",
1181
+ "zerotrie",
1182
+ "zerovec",
1183
+ ]
1184
+
1185
+ [[package]]
1186
+ name = "icu_properties_data"
1187
+ version = "2.1.2"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1190
+
1191
+ [[package]]
1192
+ name = "icu_provider"
1193
+ version = "2.1.1"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1196
+ dependencies = [
1197
+ "displaydoc",
1198
+ "icu_locale_core",
1199
+ "writeable",
1200
+ "yoke",
1201
+ "zerofrom",
1202
+ "zerotrie",
1203
+ "zerovec",
1204
+ ]
1205
+
1206
+ [[package]]
1207
+ name = "idna"
1208
+ version = "1.1.0"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1211
+ dependencies = [
1212
+ "idna_adapter",
1213
+ "smallvec",
1214
+ "utf8_iter",
1215
+ ]
1216
+
1217
+ [[package]]
1218
+ name = "idna_adapter"
1219
+ version = "1.2.1"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1222
+ dependencies = [
1223
+ "icu_normalizer",
1224
+ "icu_properties",
1225
+ ]
1226
+
1227
+ [[package]]
1228
+ name = "ignore"
1229
+ version = "0.4.25"
1230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1231
+ checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a"
1232
+ dependencies = [
1233
+ "crossbeam-deque",
1234
+ "globset",
1235
+ "log",
1236
+ "memchr",
1237
+ "regex-automata",
1238
+ "same-file",
1239
+ "walkdir",
1240
+ "winapi-util",
1241
+ ]
1242
+
1243
+ [[package]]
1244
+ name = "image"
1245
+ version = "0.25.9"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "e6506c6c10786659413faa717ceebcb8f70731c0a60cbae39795fdf114519c1a"
1248
+ dependencies = [
1249
+ "bytemuck",
1250
+ "byteorder-lite",
1251
+ "moxcms",
1252
+ "num-traits",
1253
+ ]
1254
+
1255
+ [[package]]
1256
+ name = "indexmap"
1257
+ version = "2.12.1"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
1260
+ dependencies = [
1261
+ "equivalent",
1262
+ "hashbrown",
1263
+ ]
1264
+
1265
+ [[package]]
1266
+ name = "indicatif"
1267
+ version = "0.18.3"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "9375e112e4b463ec1b1c6c011953545c65a30164fbab5b581df32b3abf0dcb88"
1270
+ dependencies = [
1271
+ "console 0.16.2",
1272
+ "portable-atomic",
1273
+ "unicode-width 0.2.2",
1274
+ "unit-prefix",
1275
+ "web-time",
1276
+ ]
1277
+
1278
+ [[package]]
1279
+ name = "indoc"
1280
+ version = "2.0.7"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1283
+ dependencies = [
1284
+ "rustversion",
1285
+ ]
1286
+
1287
+ [[package]]
1288
+ name = "inferno"
1289
+ version = "0.11.21"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88"
1292
+ dependencies = [
1293
+ "ahash",
1294
+ "indexmap",
1295
+ "is-terminal",
1296
+ "itoa",
1297
+ "log",
1298
+ "num-format",
1299
+ "once_cell",
1300
+ "quick-xml 0.26.0",
1301
+ "rgb",
1302
+ "str_stack",
1303
+ ]
1304
+
1305
+ [[package]]
1306
+ name = "insta"
1307
+ version = "1.45.0"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "b76866be74d68b1595eb8060cb9191dca9c021db2316558e52ddc5d55d41b66c"
1310
+ dependencies = [
1311
+ "console 0.15.11",
1312
+ "once_cell",
1313
+ "regex",
1314
+ "serde",
1315
+ "similar",
1316
+ "tempfile",
1317
+ ]
1318
+
1319
+ [[package]]
1320
+ name = "insta-cmd"
1321
+ version = "0.6.0"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "ffeeefa927925cced49ccb01bf3e57c9d4cd132df21e576eb9415baeab2d3de6"
1324
+ dependencies = [
1325
+ "insta",
1326
+ "serde",
1327
+ "serde_json",
1328
+ ]
1329
+
1330
+ [[package]]
1331
+ name = "ipnet"
1332
+ version = "2.11.0"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1335
+
1336
+ [[package]]
1337
+ name = "iri-string"
1338
+ version = "0.7.9"
1339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1340
+ checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397"
1341
+ dependencies = [
1342
+ "memchr",
1343
+ "serde",
1344
+ ]
1345
+
1346
+ [[package]]
1347
+ name = "is-terminal"
1348
+ version = "0.4.17"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1351
+ dependencies = [
1352
+ "hermit-abi",
1353
+ "libc",
1354
+ "windows-sys 0.61.2",
1355
+ ]
1356
+
1357
+ [[package]]
1358
+ name = "is_executable"
1359
+ version = "1.0.5"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "baabb8b4867b26294d818bf3f651a454b6901431711abb96e296245888d6e8c4"
1362
+ dependencies = [
1363
+ "windows-sys 0.60.2",
1364
+ ]
1365
+
1366
+ [[package]]
1367
+ name = "is_terminal_polyfill"
1368
+ version = "1.70.2"
1369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1370
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1371
+
1372
+ [[package]]
1373
+ name = "itertools"
1374
+ version = "0.14.0"
1375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1376
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1377
+ dependencies = [
1378
+ "either",
1379
+ ]
1380
+
1381
+ [[package]]
1382
+ name = "itoa"
1383
+ version = "1.0.15"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1386
+
1387
+ [[package]]
1388
+ name = "jobserver"
1389
+ version = "0.1.34"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1392
+ dependencies = [
1393
+ "getrandom 0.3.4",
1394
+ "libc",
1395
+ ]
1396
+
1397
+ [[package]]
1398
+ name = "js-sys"
1399
+ version = "0.3.83"
1400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1401
+ checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
1402
+ dependencies = [
1403
+ "once_cell",
1404
+ "wasm-bindgen",
1405
+ ]
1406
+
1407
+ [[package]]
1408
+ name = "lazy-regex"
1409
+ version = "3.4.2"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "191898e17ddee19e60bccb3945aa02339e81edd4a8c50e21fd4d48cdecda7b29"
1412
+ dependencies = [
1413
+ "lazy-regex-proc_macros",
1414
+ "once_cell",
1415
+ "regex",
1416
+ ]
1417
+
1418
+ [[package]]
1419
+ name = "lazy-regex-proc_macros"
1420
+ version = "3.4.2"
1421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1422
+ checksum = "c35dc8b0da83d1a9507e12122c80dea71a9c7c613014347392483a83ea593e04"
1423
+ dependencies = [
1424
+ "proc-macro2",
1425
+ "quote",
1426
+ "regex",
1427
+ "syn",
1428
+ ]
1429
+
1430
+ [[package]]
1431
+ name = "lazy_static"
1432
+ version = "1.5.0"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1435
+
1436
+ [[package]]
1437
+ name = "levenshtein"
1438
+ version = "1.0.5"
1439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1440
+ checksum = "db13adb97ab515a3691f56e4dbab09283d0b86cb45abd991d8634a9d6f501760"
1441
+
1442
+ [[package]]
1443
+ name = "libc"
1444
+ version = "0.2.178"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
1447
+
1448
+ [[package]]
1449
+ name = "liblzma"
1450
+ version = "0.4.5"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "73c36d08cad03a3fbe2c4e7bb3a9e84c57e4ee4135ed0b065cade3d98480c648"
1453
+ dependencies = [
1454
+ "liblzma-sys",
1455
+ ]
1456
+
1457
+ [[package]]
1458
+ name = "liblzma-sys"
1459
+ version = "0.4.4"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "01b9596486f6d60c3bbe644c0e1be1aa6ccc472ad630fe8927b456973d7cb736"
1462
+ dependencies = [
1463
+ "cc",
1464
+ "libc",
1465
+ "pkg-config",
1466
+ ]
1467
+
1468
+ [[package]]
1469
+ name = "libredox"
1470
+ version = "0.1.11"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "df15f6eac291ed1cf25865b1ee60399f57e7c227e7f51bdbd4c5270396a9ed50"
1473
+ dependencies = [
1474
+ "bitflags 2.10.0",
1475
+ "libc",
1476
+ "redox_syscall",
1477
+ ]
1478
+
1479
+ [[package]]
1480
+ name = "linux-raw-sys"
1481
+ version = "0.11.0"
1482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1483
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1484
+
1485
+ [[package]]
1486
+ name = "litemap"
1487
+ version = "0.8.1"
1488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1489
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1490
+
1491
+ [[package]]
1492
+ name = "lock_api"
1493
+ version = "0.4.14"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1496
+ dependencies = [
1497
+ "scopeguard",
1498
+ ]
1499
+
1500
+ [[package]]
1501
+ name = "log"
1502
+ version = "0.4.29"
1503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1504
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1505
+
1506
+ [[package]]
1507
+ name = "lru-slab"
1508
+ version = "0.1.2"
1509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1510
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1511
+
1512
+ [[package]]
1513
+ name = "markdown"
1514
+ version = "1.0.0"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "a5cab8f2cadc416a82d2e783a1946388b31654d391d1c7d92cc1f03e295b1deb"
1517
+ dependencies = [
1518
+ "unicode-id",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "matchers"
1523
+ version = "0.2.0"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1526
+ dependencies = [
1527
+ "regex-automata",
1528
+ ]
1529
+
1530
+ [[package]]
1531
+ name = "memchr"
1532
+ version = "2.7.6"
1533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1534
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1535
+
1536
+ [[package]]
1537
+ name = "memmap2"
1538
+ version = "0.9.9"
1539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1540
+ checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
1541
+ dependencies = [
1542
+ "libc",
1543
+ ]
1544
+
1545
+ [[package]]
1546
+ name = "miette"
1547
+ version = "7.6.0"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
1550
+ dependencies = [
1551
+ "cfg-if",
1552
+ "miette-derive",
1553
+ "unicode-width 0.1.14",
1554
+ ]
1555
+
1556
+ [[package]]
1557
+ name = "miette-derive"
1558
+ version = "7.6.0"
1559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1560
+ checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
1561
+ dependencies = [
1562
+ "proc-macro2",
1563
+ "quote",
1564
+ "syn",
1565
+ ]
1566
+
1567
+ [[package]]
1568
+ name = "mime"
1569
+ version = "0.3.17"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1572
+
1573
+ [[package]]
1574
+ name = "miniz_oxide"
1575
+ version = "0.8.9"
1576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1577
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1578
+ dependencies = [
1579
+ "adler2",
1580
+ "simd-adler32",
1581
+ ]
1582
+
1583
+ [[package]]
1584
+ name = "mio"
1585
+ version = "1.1.1"
1586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1588
+ dependencies = [
1589
+ "libc",
1590
+ "wasi",
1591
+ "windows-sys 0.61.2",
1592
+ ]
1593
+
1594
+ [[package]]
1595
+ name = "moxcms"
1596
+ version = "0.7.11"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "ac9557c559cd6fc9867e122e20d2cbefc9ca29d80d027a8e39310920ed2f0a97"
1599
+ dependencies = [
1600
+ "num-traits",
1601
+ "pxfm",
1602
+ ]
1603
+
1604
+ [[package]]
1605
+ name = "nix"
1606
+ version = "0.26.4"
1607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1608
+ checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
1609
+ dependencies = [
1610
+ "bitflags 1.3.2",
1611
+ "cfg-if",
1612
+ "libc",
1613
+ ]
1614
+
1615
+ [[package]]
1616
+ name = "nix"
1617
+ version = "0.30.1"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
1620
+ dependencies = [
1621
+ "bitflags 2.10.0",
1622
+ "cfg-if",
1623
+ "cfg_aliases",
1624
+ "libc",
1625
+ ]
1626
+
1627
+ [[package]]
1628
+ name = "normalize-line-endings"
1629
+ version = "0.3.0"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
1632
+
1633
+ [[package]]
1634
+ name = "nu-ansi-term"
1635
+ version = "0.50.3"
1636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1637
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1638
+ dependencies = [
1639
+ "windows-sys 0.61.2",
1640
+ ]
1641
+
1642
+ [[package]]
1643
+ name = "num-format"
1644
+ version = "0.4.4"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3"
1647
+ dependencies = [
1648
+ "arrayvec",
1649
+ "itoa",
1650
+ ]
1651
+
1652
+ [[package]]
1653
+ name = "num-traits"
1654
+ version = "0.2.19"
1655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1656
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1657
+ dependencies = [
1658
+ "autocfg",
1659
+ ]
1660
+
1661
+ [[package]]
1662
+ name = "objc2"
1663
+ version = "0.6.3"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "b7c2599ce0ec54857b29ce62166b0ed9b4f6f1a70ccc9a71165b6154caca8c05"
1666
+ dependencies = [
1667
+ "objc2-encode",
1668
+ ]
1669
+
1670
+ [[package]]
1671
+ name = "objc2-encode"
1672
+ version = "4.1.0"
1673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1674
+ checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
1675
+
1676
+ [[package]]
1677
+ name = "object"
1678
+ version = "0.32.2"
1679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1680
+ checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
1681
+ dependencies = [
1682
+ "memchr",
1683
+ ]
1684
+
1685
+ [[package]]
1686
+ name = "object"
1687
+ version = "0.37.3"
1688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1689
+ checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
1690
+ dependencies = [
1691
+ "memchr",
1692
+ ]
1693
+
1694
+ [[package]]
1695
+ name = "once_cell"
1696
+ version = "1.21.3"
1697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1698
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1699
+
1700
+ [[package]]
1701
+ name = "once_cell_polyfill"
1702
+ version = "1.70.2"
1703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1704
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1705
+
1706
+ [[package]]
1707
+ name = "openssl-probe"
1708
+ version = "0.1.6"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1711
+
1712
+ [[package]]
1713
+ name = "owo-colors"
1714
+ version = "4.2.3"
1715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1716
+ checksum = "9c6901729fa79e91a0913333229e9ca5dc725089d1c363b2f4b4760709dc4a52"
1717
+
1718
+ [[package]]
1719
+ name = "parking"
1720
+ version = "2.2.1"
1721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1722
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1723
+
1724
+ [[package]]
1725
+ name = "path-clean"
1726
+ version = "1.0.1"
1727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1728
+ checksum = "17359afc20d7ab31fdb42bb844c8b3bb1dabd7dcf7e68428492da7f16966fcef"
1729
+
1730
+ [[package]]
1731
+ name = "percent-encoding"
1732
+ version = "2.3.2"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1735
+
1736
+ [[package]]
1737
+ name = "pin-project"
1738
+ version = "1.1.10"
1739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1740
+ checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
1741
+ dependencies = [
1742
+ "pin-project-internal",
1743
+ ]
1744
+
1745
+ [[package]]
1746
+ name = "pin-project-internal"
1747
+ version = "1.1.10"
1748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1749
+ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
1750
+ dependencies = [
1751
+ "proc-macro2",
1752
+ "quote",
1753
+ "syn",
1754
+ ]
1755
+
1756
+ [[package]]
1757
+ name = "pin-project-lite"
1758
+ version = "0.2.16"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1761
+
1762
+ [[package]]
1763
+ name = "pin-utils"
1764
+ version = "0.1.0"
1765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1766
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1767
+
1768
+ [[package]]
1769
+ name = "pkg-config"
1770
+ version = "0.3.32"
1771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1772
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1773
+
1774
+ [[package]]
1775
+ name = "portable-atomic"
1776
+ version = "1.12.0"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "f59e70c4aef1e55797c2e8fd94a4f2a973fc972cfde0e0b05f683667b0cd39dd"
1779
+
1780
+ [[package]]
1781
+ name = "potential_utf"
1782
+ version = "0.1.4"
1783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1784
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1785
+ dependencies = [
1786
+ "zerovec",
1787
+ ]
1788
+
1789
+ [[package]]
1790
+ name = "pprof"
1791
+ version = "0.15.0"
1792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1793
+ checksum = "38a01da47675efa7673b032bf8efd8214f1917d89685e07e395ab125ea42b187"
1794
+ dependencies = [
1795
+ "aligned-vec",
1796
+ "backtrace",
1797
+ "cfg-if",
1798
+ "findshlibs",
1799
+ "inferno",
1800
+ "libc",
1801
+ "log",
1802
+ "nix 0.26.4",
1803
+ "once_cell",
1804
+ "smallvec",
1805
+ "spin",
1806
+ "symbolic-demangle",
1807
+ "tempfile",
1808
+ "thiserror 2.0.17",
1809
+ ]
1810
+
1811
+ [[package]]
1812
+ name = "ppv-lite86"
1813
+ version = "0.2.21"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1816
+ dependencies = [
1817
+ "zerocopy",
1818
+ ]
1819
+
1820
+ [[package]]
1821
+ name = "predicates"
1822
+ version = "3.1.3"
1823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1824
+ checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
1825
+ dependencies = [
1826
+ "anstyle",
1827
+ "difflib",
1828
+ "float-cmp",
1829
+ "normalize-line-endings",
1830
+ "predicates-core",
1831
+ "regex",
1832
+ ]
1833
+
1834
+ [[package]]
1835
+ name = "predicates-core"
1836
+ version = "1.0.9"
1837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1838
+ checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
1839
+
1840
+ [[package]]
1841
+ name = "predicates-tree"
1842
+ version = "1.0.12"
1843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1844
+ checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
1845
+ dependencies = [
1846
+ "predicates-core",
1847
+ "termtree",
1848
+ ]
1849
+
1850
+ [[package]]
1851
+ name = "prek"
1852
+ version = "0.2.23"
1853
+ dependencies = [
1854
+ "anstream",
1855
+ "anstyle-query",
1856
+ "anyhow",
1857
+ "assert_cmd",
1858
+ "assert_fs",
1859
+ "astral-tokio-tar",
1860
+ "astral_async_zip",
1861
+ "async-compression",
1862
+ "axoupdater",
1863
+ "bstr",
1864
+ "cargo_metadata",
1865
+ "clap",
1866
+ "clap_complete",
1867
+ "ctrlc",
1868
+ "dunce",
1869
+ "etcetera",
1870
+ "fancy-regex",
1871
+ "fs-err",
1872
+ "futures",
1873
+ "hex",
1874
+ "http",
1875
+ "ignore",
1876
+ "indicatif",
1877
+ "indoc",
1878
+ "insta",
1879
+ "insta-cmd",
1880
+ "itertools",
1881
+ "lazy-regex",
1882
+ "levenshtein",
1883
+ "libc",
1884
+ "liblzma",
1885
+ "markdown",
1886
+ "memchr",
1887
+ "owo-colors",
1888
+ "path-clean",
1889
+ "pprof",
1890
+ "predicates",
1891
+ "prek-consts",
1892
+ "prek-pty",
1893
+ "pretty_assertions",
1894
+ "quick-xml 0.38.4",
1895
+ "rand",
1896
+ "rayon",
1897
+ "regex",
1898
+ "reqwest",
1899
+ "rustc-hash",
1900
+ "same-file",
1901
+ "semver",
1902
+ "serde",
1903
+ "serde_json",
1904
+ "serde_stacker",
1905
+ "serde_yaml",
1906
+ "shlex",
1907
+ "smallvec",
1908
+ "target-lexicon",
1909
+ "tempfile",
1910
+ "textwrap",
1911
+ "thiserror 2.0.17",
1912
+ "tokio",
1913
+ "tokio-util",
1914
+ "toml",
1915
+ "tracing",
1916
+ "tracing-subscriber",
1917
+ "unicode-width 0.2.2",
1918
+ "walkdir",
1919
+ "which",
1920
+ ]
1921
+
1922
+ [[package]]
1923
+ name = "prek-consts"
1924
+ version = "0.2.23"
1925
+ dependencies = [
1926
+ "tracing",
1927
+ ]
1928
+
1929
+ [[package]]
1930
+ name = "prek-pty"
1931
+ version = "0.2.23"
1932
+ dependencies = [
1933
+ "rustix",
1934
+ "tokio",
1935
+ ]
1936
+
1937
+ [[package]]
1938
+ name = "pretty_assertions"
1939
+ version = "1.4.1"
1940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1941
+ checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
1942
+ dependencies = [
1943
+ "diff",
1944
+ "yansi",
1945
+ ]
1946
+
1947
+ [[package]]
1948
+ name = "proc-macro2"
1949
+ version = "1.0.103"
1950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1951
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
1952
+ dependencies = [
1953
+ "unicode-ident",
1954
+ ]
1955
+
1956
+ [[package]]
1957
+ name = "psm"
1958
+ version = "0.1.28"
1959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1960
+ checksum = "d11f2fedc3b7dafdc2851bc52f277377c5473d378859be234bc7ebb593144d01"
1961
+ dependencies = [
1962
+ "ar_archive_writer",
1963
+ "cc",
1964
+ ]
1965
+
1966
+ [[package]]
1967
+ name = "pxfm"
1968
+ version = "0.1.27"
1969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1970
+ checksum = "7186d3822593aa4393561d186d1393b3923e9d6163d3fbfd6e825e3e6cf3e6a8"
1971
+ dependencies = [
1972
+ "num-traits",
1973
+ ]
1974
+
1975
+ [[package]]
1976
+ name = "quick-xml"
1977
+ version = "0.26.0"
1978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1979
+ checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd"
1980
+ dependencies = [
1981
+ "memchr",
1982
+ ]
1983
+
1984
+ [[package]]
1985
+ name = "quick-xml"
1986
+ version = "0.38.4"
1987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1988
+ checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c"
1989
+ dependencies = [
1990
+ "memchr",
1991
+ ]
1992
+
1993
+ [[package]]
1994
+ name = "quinn"
1995
+ version = "0.11.9"
1996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1997
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
1998
+ dependencies = [
1999
+ "bytes",
2000
+ "cfg_aliases",
2001
+ "pin-project-lite",
2002
+ "quinn-proto",
2003
+ "quinn-udp",
2004
+ "rustc-hash",
2005
+ "rustls",
2006
+ "socket2",
2007
+ "thiserror 2.0.17",
2008
+ "tokio",
2009
+ "tracing",
2010
+ "web-time",
2011
+ ]
2012
+
2013
+ [[package]]
2014
+ name = "quinn-proto"
2015
+ version = "0.11.13"
2016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2017
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
2018
+ dependencies = [
2019
+ "bytes",
2020
+ "getrandom 0.3.4",
2021
+ "lru-slab",
2022
+ "rand",
2023
+ "ring",
2024
+ "rustc-hash",
2025
+ "rustls",
2026
+ "rustls-pki-types",
2027
+ "slab",
2028
+ "thiserror 2.0.17",
2029
+ "tinyvec",
2030
+ "tracing",
2031
+ "web-time",
2032
+ ]
2033
+
2034
+ [[package]]
2035
+ name = "quinn-udp"
2036
+ version = "0.5.14"
2037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2038
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2039
+ dependencies = [
2040
+ "cfg_aliases",
2041
+ "libc",
2042
+ "once_cell",
2043
+ "socket2",
2044
+ "tracing",
2045
+ "windows-sys 0.60.2",
2046
+ ]
2047
+
2048
+ [[package]]
2049
+ name = "quote"
2050
+ version = "1.0.42"
2051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2052
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
2053
+ dependencies = [
2054
+ "proc-macro2",
2055
+ ]
2056
+
2057
+ [[package]]
2058
+ name = "r-efi"
2059
+ version = "5.3.0"
2060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2061
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2062
+
2063
+ [[package]]
2064
+ name = "rand"
2065
+ version = "0.9.2"
2066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2067
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2068
+ dependencies = [
2069
+ "rand_chacha",
2070
+ "rand_core",
2071
+ ]
2072
+
2073
+ [[package]]
2074
+ name = "rand_chacha"
2075
+ version = "0.9.0"
2076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2077
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2078
+ dependencies = [
2079
+ "ppv-lite86",
2080
+ "rand_core",
2081
+ ]
2082
+
2083
+ [[package]]
2084
+ name = "rand_core"
2085
+ version = "0.9.3"
2086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2087
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2088
+ dependencies = [
2089
+ "getrandom 0.3.4",
2090
+ ]
2091
+
2092
+ [[package]]
2093
+ name = "rayon"
2094
+ version = "1.11.0"
2095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2096
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
2097
+ dependencies = [
2098
+ "either",
2099
+ "rayon-core",
2100
+ ]
2101
+
2102
+ [[package]]
2103
+ name = "rayon-core"
2104
+ version = "1.13.0"
2105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2106
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2107
+ dependencies = [
2108
+ "crossbeam-deque",
2109
+ "crossbeam-utils",
2110
+ ]
2111
+
2112
+ [[package]]
2113
+ name = "redox_syscall"
2114
+ version = "0.6.0"
2115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2116
+ checksum = "ec96166dafa0886eb81fe1c0a388bece180fbef2135f97c1e2cf8302e74b43b5"
2117
+ dependencies = [
2118
+ "bitflags 2.10.0",
2119
+ ]
2120
+
2121
+ [[package]]
2122
+ name = "regex"
2123
+ version = "1.12.2"
2124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2125
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
2126
+ dependencies = [
2127
+ "aho-corasick",
2128
+ "memchr",
2129
+ "regex-automata",
2130
+ "regex-syntax",
2131
+ ]
2132
+
2133
+ [[package]]
2134
+ name = "regex-automata"
2135
+ version = "0.4.13"
2136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2137
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
2138
+ dependencies = [
2139
+ "aho-corasick",
2140
+ "memchr",
2141
+ "regex-syntax",
2142
+ ]
2143
+
2144
+ [[package]]
2145
+ name = "regex-syntax"
2146
+ version = "0.8.8"
2147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2148
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
2149
+
2150
+ [[package]]
2151
+ name = "reqwest"
2152
+ version = "0.12.26"
2153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2154
+ checksum = "3b4c14b2d9afca6a60277086b0cc6a6ae0b568f6f7916c943a8cdc79f8be240f"
2155
+ dependencies = [
2156
+ "base64",
2157
+ "bytes",
2158
+ "futures-core",
2159
+ "futures-util",
2160
+ "h2",
2161
+ "http",
2162
+ "http-body",
2163
+ "http-body-util",
2164
+ "hyper",
2165
+ "hyper-rustls",
2166
+ "hyper-util",
2167
+ "js-sys",
2168
+ "log",
2169
+ "percent-encoding",
2170
+ "pin-project-lite",
2171
+ "quinn",
2172
+ "rustls",
2173
+ "rustls-native-certs",
2174
+ "rustls-pki-types",
2175
+ "serde",
2176
+ "serde_json",
2177
+ "serde_urlencoded",
2178
+ "sync_wrapper",
2179
+ "tokio",
2180
+ "tokio-rustls",
2181
+ "tokio-util",
2182
+ "tower",
2183
+ "tower-http",
2184
+ "tower-service",
2185
+ "url",
2186
+ "wasm-bindgen",
2187
+ "wasm-bindgen-futures",
2188
+ "wasm-streams",
2189
+ "web-sys",
2190
+ "webpki-roots",
2191
+ ]
2192
+
2193
+ [[package]]
2194
+ name = "rgb"
2195
+ version = "0.8.52"
2196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2197
+ checksum = "0c6a884d2998352bb4daf0183589aec883f16a6da1f4dde84d8e2e9a5409a1ce"
2198
+ dependencies = [
2199
+ "bytemuck",
2200
+ ]
2201
+
2202
+ [[package]]
2203
+ name = "ring"
2204
+ version = "0.17.14"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2207
+ dependencies = [
2208
+ "cc",
2209
+ "cfg-if",
2210
+ "getrandom 0.2.16",
2211
+ "libc",
2212
+ "untrusted",
2213
+ "windows-sys 0.52.0",
2214
+ ]
2215
+
2216
+ [[package]]
2217
+ name = "rustc-demangle"
2218
+ version = "0.1.26"
2219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2220
+ checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
2221
+
2222
+ [[package]]
2223
+ name = "rustc-hash"
2224
+ version = "2.1.1"
2225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2226
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2227
+
2228
+ [[package]]
2229
+ name = "rustix"
2230
+ version = "1.1.2"
2231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2232
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
2233
+ dependencies = [
2234
+ "bitflags 2.10.0",
2235
+ "errno",
2236
+ "libc",
2237
+ "linux-raw-sys",
2238
+ "windows-sys 0.61.2",
2239
+ ]
2240
+
2241
+ [[package]]
2242
+ name = "rustls"
2243
+ version = "0.23.35"
2244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2245
+ checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
2246
+ dependencies = [
2247
+ "once_cell",
2248
+ "ring",
2249
+ "rustls-pki-types",
2250
+ "rustls-webpki",
2251
+ "subtle",
2252
+ "zeroize",
2253
+ ]
2254
+
2255
+ [[package]]
2256
+ name = "rustls-native-certs"
2257
+ version = "0.8.2"
2258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2259
+ checksum = "9980d917ebb0c0536119ba501e90834767bffc3d60641457fd84a1f3fd337923"
2260
+ dependencies = [
2261
+ "openssl-probe",
2262
+ "rustls-pki-types",
2263
+ "schannel",
2264
+ "security-framework",
2265
+ ]
2266
+
2267
+ [[package]]
2268
+ name = "rustls-pki-types"
2269
+ version = "1.13.2"
2270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2271
+ checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282"
2272
+ dependencies = [
2273
+ "web-time",
2274
+ "zeroize",
2275
+ ]
2276
+
2277
+ [[package]]
2278
+ name = "rustls-webpki"
2279
+ version = "0.103.8"
2280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2281
+ checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
2282
+ dependencies = [
2283
+ "ring",
2284
+ "rustls-pki-types",
2285
+ "untrusted",
2286
+ ]
2287
+
2288
+ [[package]]
2289
+ name = "rustversion"
2290
+ version = "1.0.22"
2291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2292
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2293
+
2294
+ [[package]]
2295
+ name = "ryu"
2296
+ version = "1.0.20"
2297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2298
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2299
+
2300
+ [[package]]
2301
+ name = "same-file"
2302
+ version = "1.0.6"
2303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2304
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2305
+ dependencies = [
2306
+ "winapi-util",
2307
+ ]
2308
+
2309
+ [[package]]
2310
+ name = "schannel"
2311
+ version = "0.1.28"
2312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2313
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
2314
+ dependencies = [
2315
+ "windows-sys 0.61.2",
2316
+ ]
2317
+
2318
+ [[package]]
2319
+ name = "scopeguard"
2320
+ version = "1.2.0"
2321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2322
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2323
+
2324
+ [[package]]
2325
+ name = "security-framework"
2326
+ version = "3.5.1"
2327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2328
+ checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
2329
+ dependencies = [
2330
+ "bitflags 2.10.0",
2331
+ "core-foundation",
2332
+ "core-foundation-sys",
2333
+ "libc",
2334
+ "security-framework-sys",
2335
+ ]
2336
+
2337
+ [[package]]
2338
+ name = "security-framework-sys"
2339
+ version = "2.15.0"
2340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2341
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
2342
+ dependencies = [
2343
+ "core-foundation-sys",
2344
+ "libc",
2345
+ ]
2346
+
2347
+ [[package]]
2348
+ name = "self-replace"
2349
+ version = "1.5.0"
2350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2351
+ checksum = "03ec815b5eab420ab893f63393878d89c90fdd94c0bcc44c07abb8ad95552fb7"
2352
+ dependencies = [
2353
+ "fastrand",
2354
+ "tempfile",
2355
+ "windows-sys 0.52.0",
2356
+ ]
2357
+
2358
+ [[package]]
2359
+ name = "semver"
2360
+ version = "1.0.27"
2361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2362
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
2363
+ dependencies = [
2364
+ "serde",
2365
+ "serde_core",
2366
+ ]
2367
+
2368
+ [[package]]
2369
+ name = "serde"
2370
+ version = "1.0.228"
2371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2372
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2373
+ dependencies = [
2374
+ "serde_core",
2375
+ "serde_derive",
2376
+ ]
2377
+
2378
+ [[package]]
2379
+ name = "serde_core"
2380
+ version = "1.0.228"
2381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2382
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2383
+ dependencies = [
2384
+ "serde_derive",
2385
+ ]
2386
+
2387
+ [[package]]
2388
+ name = "serde_derive"
2389
+ version = "1.0.228"
2390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2391
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2392
+ dependencies = [
2393
+ "proc-macro2",
2394
+ "quote",
2395
+ "syn",
2396
+ ]
2397
+
2398
+ [[package]]
2399
+ name = "serde_json"
2400
+ version = "1.0.145"
2401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2402
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
2403
+ dependencies = [
2404
+ "itoa",
2405
+ "memchr",
2406
+ "ryu",
2407
+ "serde",
2408
+ "serde_core",
2409
+ ]
2410
+
2411
+ [[package]]
2412
+ name = "serde_spanned"
2413
+ version = "1.0.4"
2414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2415
+ checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
2416
+ dependencies = [
2417
+ "serde_core",
2418
+ ]
2419
+
2420
+ [[package]]
2421
+ name = "serde_stacker"
2422
+ version = "0.1.14"
2423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2424
+ checksum = "d4936375d50c4be7eff22293a9344f8e46f323ed2b3c243e52f89138d9bb0f4a"
2425
+ dependencies = [
2426
+ "serde",
2427
+ "serde_core",
2428
+ "stacker",
2429
+ ]
2430
+
2431
+ [[package]]
2432
+ name = "serde_urlencoded"
2433
+ version = "0.7.1"
2434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2435
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2436
+ dependencies = [
2437
+ "form_urlencoded",
2438
+ "itoa",
2439
+ "ryu",
2440
+ "serde",
2441
+ ]
2442
+
2443
+ [[package]]
2444
+ name = "serde_yaml"
2445
+ version = "0.9.34+deprecated"
2446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2447
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
2448
+ dependencies = [
2449
+ "indexmap",
2450
+ "itoa",
2451
+ "ryu",
2452
+ "serde",
2453
+ "unsafe-libyaml",
2454
+ ]
2455
+
2456
+ [[package]]
2457
+ name = "sharded-slab"
2458
+ version = "0.1.7"
2459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2460
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2461
+ dependencies = [
2462
+ "lazy_static",
2463
+ ]
2464
+
2465
+ [[package]]
2466
+ name = "shlex"
2467
+ version = "1.3.0"
2468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2469
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2470
+
2471
+ [[package]]
2472
+ name = "signal-hook-registry"
2473
+ version = "1.4.7"
2474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2475
+ checksum = "7664a098b8e616bdfcc2dc0e9ac44eb231eedf41db4e9fe95d8d32ec728dedad"
2476
+ dependencies = [
2477
+ "libc",
2478
+ ]
2479
+
2480
+ [[package]]
2481
+ name = "simd-adler32"
2482
+ version = "0.3.8"
2483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2484
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
2485
+
2486
+ [[package]]
2487
+ name = "similar"
2488
+ version = "2.7.0"
2489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2490
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
2491
+
2492
+ [[package]]
2493
+ name = "slab"
2494
+ version = "0.4.11"
2495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2496
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
2497
+
2498
+ [[package]]
2499
+ name = "smallvec"
2500
+ version = "1.15.1"
2501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2502
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2503
+
2504
+ [[package]]
2505
+ name = "smawk"
2506
+ version = "0.3.2"
2507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2508
+ checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
2509
+
2510
+ [[package]]
2511
+ name = "socket2"
2512
+ version = "0.6.1"
2513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2514
+ checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
2515
+ dependencies = [
2516
+ "libc",
2517
+ "windows-sys 0.60.2",
2518
+ ]
2519
+
2520
+ [[package]]
2521
+ name = "spin"
2522
+ version = "0.10.0"
2523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2524
+ checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591"
2525
+ dependencies = [
2526
+ "lock_api",
2527
+ ]
2528
+
2529
+ [[package]]
2530
+ name = "stable_deref_trait"
2531
+ version = "1.2.1"
2532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2533
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2534
+
2535
+ [[package]]
2536
+ name = "stacker"
2537
+ version = "0.1.22"
2538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2539
+ checksum = "e1f8b29fb42aafcea4edeeb6b2f2d7ecd0d969c48b4cf0d2e64aafc471dd6e59"
2540
+ dependencies = [
2541
+ "cc",
2542
+ "cfg-if",
2543
+ "libc",
2544
+ "psm",
2545
+ "windows-sys 0.59.0",
2546
+ ]
2547
+
2548
+ [[package]]
2549
+ name = "str_stack"
2550
+ version = "0.1.0"
2551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2552
+ checksum = "9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb"
2553
+
2554
+ [[package]]
2555
+ name = "strsim"
2556
+ version = "0.11.1"
2557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2558
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2559
+
2560
+ [[package]]
2561
+ name = "subtle"
2562
+ version = "2.6.1"
2563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2564
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2565
+
2566
+ [[package]]
2567
+ name = "symbolic-common"
2568
+ version = "12.17.0"
2569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2570
+ checksum = "b3d8046c5674ab857104bc4559d505f4809b8060d57806e45d49737c97afeb60"
2571
+ dependencies = [
2572
+ "debugid",
2573
+ "memmap2",
2574
+ "stable_deref_trait",
2575
+ "uuid",
2576
+ ]
2577
+
2578
+ [[package]]
2579
+ name = "symbolic-demangle"
2580
+ version = "12.17.0"
2581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2582
+ checksum = "1accb6e5c4b0f682de907623912e616b44be1c9e725775155546669dbff720ec"
2583
+ dependencies = [
2584
+ "cpp_demangle",
2585
+ "rustc-demangle",
2586
+ "symbolic-common",
2587
+ ]
2588
+
2589
+ [[package]]
2590
+ name = "syn"
2591
+ version = "2.0.111"
2592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2593
+ checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
2594
+ dependencies = [
2595
+ "proc-macro2",
2596
+ "quote",
2597
+ "unicode-ident",
2598
+ ]
2599
+
2600
+ [[package]]
2601
+ name = "sync_wrapper"
2602
+ version = "1.0.2"
2603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2604
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2605
+ dependencies = [
2606
+ "futures-core",
2607
+ ]
2608
+
2609
+ [[package]]
2610
+ name = "synstructure"
2611
+ version = "0.13.2"
2612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2613
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2614
+ dependencies = [
2615
+ "proc-macro2",
2616
+ "quote",
2617
+ "syn",
2618
+ ]
2619
+
2620
+ [[package]]
2621
+ name = "target-lexicon"
2622
+ version = "0.13.4"
2623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2624
+ checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
2625
+
2626
+ [[package]]
2627
+ name = "tempfile"
2628
+ version = "3.23.0"
2629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2630
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
2631
+ dependencies = [
2632
+ "fastrand",
2633
+ "getrandom 0.3.4",
2634
+ "once_cell",
2635
+ "rustix",
2636
+ "windows-sys 0.61.2",
2637
+ ]
2638
+
2639
+ [[package]]
2640
+ name = "terminal_size"
2641
+ version = "0.4.3"
2642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2643
+ checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0"
2644
+ dependencies = [
2645
+ "rustix",
2646
+ "windows-sys 0.60.2",
2647
+ ]
2648
+
2649
+ [[package]]
2650
+ name = "termtree"
2651
+ version = "0.5.1"
2652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2653
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
2654
+
2655
+ [[package]]
2656
+ name = "textwrap"
2657
+ version = "0.16.2"
2658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2659
+ checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
2660
+ dependencies = [
2661
+ "smawk",
2662
+ "unicode-linebreak",
2663
+ "unicode-width 0.2.2",
2664
+ ]
2665
+
2666
+ [[package]]
2667
+ name = "thiserror"
2668
+ version = "1.0.69"
2669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2670
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2671
+ dependencies = [
2672
+ "thiserror-impl 1.0.69",
2673
+ ]
2674
+
2675
+ [[package]]
2676
+ name = "thiserror"
2677
+ version = "2.0.17"
2678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2679
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
2680
+ dependencies = [
2681
+ "thiserror-impl 2.0.17",
2682
+ ]
2683
+
2684
+ [[package]]
2685
+ name = "thiserror-impl"
2686
+ version = "1.0.69"
2687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2688
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2689
+ dependencies = [
2690
+ "proc-macro2",
2691
+ "quote",
2692
+ "syn",
2693
+ ]
2694
+
2695
+ [[package]]
2696
+ name = "thiserror-impl"
2697
+ version = "2.0.17"
2698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2699
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
2700
+ dependencies = [
2701
+ "proc-macro2",
2702
+ "quote",
2703
+ "syn",
2704
+ ]
2705
+
2706
+ [[package]]
2707
+ name = "thread_local"
2708
+ version = "1.1.9"
2709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2710
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2711
+ dependencies = [
2712
+ "cfg-if",
2713
+ ]
2714
+
2715
+ [[package]]
2716
+ name = "tinystr"
2717
+ version = "0.8.2"
2718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2719
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2720
+ dependencies = [
2721
+ "displaydoc",
2722
+ "zerovec",
2723
+ ]
2724
+
2725
+ [[package]]
2726
+ name = "tinyvec"
2727
+ version = "1.10.0"
2728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2729
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
2730
+ dependencies = [
2731
+ "tinyvec_macros",
2732
+ ]
2733
+
2734
+ [[package]]
2735
+ name = "tinyvec_macros"
2736
+ version = "0.1.1"
2737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2738
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2739
+
2740
+ [[package]]
2741
+ name = "tokio"
2742
+ version = "1.48.0"
2743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2744
+ checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
2745
+ dependencies = [
2746
+ "bytes",
2747
+ "libc",
2748
+ "mio",
2749
+ "pin-project-lite",
2750
+ "signal-hook-registry",
2751
+ "socket2",
2752
+ "tokio-macros",
2753
+ "windows-sys 0.61.2",
2754
+ ]
2755
+
2756
+ [[package]]
2757
+ name = "tokio-macros"
2758
+ version = "2.6.0"
2759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2760
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
2761
+ dependencies = [
2762
+ "proc-macro2",
2763
+ "quote",
2764
+ "syn",
2765
+ ]
2766
+
2767
+ [[package]]
2768
+ name = "tokio-rustls"
2769
+ version = "0.26.4"
2770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2771
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2772
+ dependencies = [
2773
+ "rustls",
2774
+ "tokio",
2775
+ ]
2776
+
2777
+ [[package]]
2778
+ name = "tokio-stream"
2779
+ version = "0.1.17"
2780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2781
+ checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
2782
+ dependencies = [
2783
+ "futures-core",
2784
+ "pin-project-lite",
2785
+ "tokio",
2786
+ ]
2787
+
2788
+ [[package]]
2789
+ name = "tokio-util"
2790
+ version = "0.7.17"
2791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2792
+ checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594"
2793
+ dependencies = [
2794
+ "bytes",
2795
+ "futures-core",
2796
+ "futures-io",
2797
+ "futures-sink",
2798
+ "pin-project-lite",
2799
+ "tokio",
2800
+ ]
2801
+
2802
+ [[package]]
2803
+ name = "toml"
2804
+ version = "0.9.10+spec-1.1.0"
2805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2806
+ checksum = "0825052159284a1a8b4d6c0c86cbc801f2da5afd2b225fa548c72f2e74002f48"
2807
+ dependencies = [
2808
+ "foldhash",
2809
+ "indexmap",
2810
+ "serde_core",
2811
+ "serde_spanned",
2812
+ "toml_datetime",
2813
+ "toml_parser",
2814
+ "toml_writer",
2815
+ "winnow",
2816
+ ]
2817
+
2818
+ [[package]]
2819
+ name = "toml_datetime"
2820
+ version = "0.7.5+spec-1.1.0"
2821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2822
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
2823
+ dependencies = [
2824
+ "serde_core",
2825
+ ]
2826
+
2827
+ [[package]]
2828
+ name = "toml_parser"
2829
+ version = "1.0.6+spec-1.1.0"
2830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2831
+ checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
2832
+ dependencies = [
2833
+ "winnow",
2834
+ ]
2835
+
2836
+ [[package]]
2837
+ name = "toml_writer"
2838
+ version = "1.0.6+spec-1.1.0"
2839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2840
+ checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
2841
+
2842
+ [[package]]
2843
+ name = "tower"
2844
+ version = "0.5.2"
2845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2846
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
2847
+ dependencies = [
2848
+ "futures-core",
2849
+ "futures-util",
2850
+ "pin-project-lite",
2851
+ "sync_wrapper",
2852
+ "tokio",
2853
+ "tower-layer",
2854
+ "tower-service",
2855
+ ]
2856
+
2857
+ [[package]]
2858
+ name = "tower-http"
2859
+ version = "0.6.8"
2860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2861
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
2862
+ dependencies = [
2863
+ "bitflags 2.10.0",
2864
+ "bytes",
2865
+ "futures-util",
2866
+ "http",
2867
+ "http-body",
2868
+ "iri-string",
2869
+ "pin-project-lite",
2870
+ "tower",
2871
+ "tower-layer",
2872
+ "tower-service",
2873
+ ]
2874
+
2875
+ [[package]]
2876
+ name = "tower-layer"
2877
+ version = "0.3.3"
2878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2879
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2880
+
2881
+ [[package]]
2882
+ name = "tower-service"
2883
+ version = "0.3.3"
2884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2885
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2886
+
2887
+ [[package]]
2888
+ name = "tracing"
2889
+ version = "0.1.44"
2890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2891
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2892
+ dependencies = [
2893
+ "pin-project-lite",
2894
+ "tracing-attributes",
2895
+ "tracing-core",
2896
+ ]
2897
+
2898
+ [[package]]
2899
+ name = "tracing-attributes"
2900
+ version = "0.1.31"
2901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2902
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2903
+ dependencies = [
2904
+ "proc-macro2",
2905
+ "quote",
2906
+ "syn",
2907
+ ]
2908
+
2909
+ [[package]]
2910
+ name = "tracing-core"
2911
+ version = "0.1.36"
2912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2913
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2914
+ dependencies = [
2915
+ "once_cell",
2916
+ "valuable",
2917
+ ]
2918
+
2919
+ [[package]]
2920
+ name = "tracing-log"
2921
+ version = "0.2.0"
2922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2923
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2924
+ dependencies = [
2925
+ "log",
2926
+ "once_cell",
2927
+ "tracing-core",
2928
+ ]
2929
+
2930
+ [[package]]
2931
+ name = "tracing-subscriber"
2932
+ version = "0.3.22"
2933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2934
+ checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
2935
+ dependencies = [
2936
+ "matchers",
2937
+ "nu-ansi-term",
2938
+ "once_cell",
2939
+ "regex-automata",
2940
+ "sharded-slab",
2941
+ "smallvec",
2942
+ "thread_local",
2943
+ "tracing",
2944
+ "tracing-core",
2945
+ "tracing-log",
2946
+ ]
2947
+
2948
+ [[package]]
2949
+ name = "try-lock"
2950
+ version = "0.2.5"
2951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2952
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2953
+
2954
+ [[package]]
2955
+ name = "unicode-id"
2956
+ version = "0.3.6"
2957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2958
+ checksum = "70ba288e709927c043cbe476718d37be306be53fb1fafecd0dbe36d072be2580"
2959
+
2960
+ [[package]]
2961
+ name = "unicode-ident"
2962
+ version = "1.0.22"
2963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2964
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
2965
+
2966
+ [[package]]
2967
+ name = "unicode-linebreak"
2968
+ version = "0.1.5"
2969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2970
+ checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
2971
+
2972
+ [[package]]
2973
+ name = "unicode-width"
2974
+ version = "0.1.14"
2975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2976
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
2977
+
2978
+ [[package]]
2979
+ name = "unicode-width"
2980
+ version = "0.2.2"
2981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2982
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
2983
+
2984
+ [[package]]
2985
+ name = "unit-prefix"
2986
+ version = "0.5.2"
2987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2988
+ checksum = "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3"
2989
+
2990
+ [[package]]
2991
+ name = "unsafe-libyaml"
2992
+ version = "0.2.11"
2993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2994
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
2995
+
2996
+ [[package]]
2997
+ name = "untrusted"
2998
+ version = "0.9.0"
2999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3000
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3001
+
3002
+ [[package]]
3003
+ name = "url"
3004
+ version = "2.5.7"
3005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3006
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
3007
+ dependencies = [
3008
+ "form_urlencoded",
3009
+ "idna",
3010
+ "percent-encoding",
3011
+ "serde",
3012
+ ]
3013
+
3014
+ [[package]]
3015
+ name = "utf8_iter"
3016
+ version = "1.0.4"
3017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3018
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3019
+
3020
+ [[package]]
3021
+ name = "utf8parse"
3022
+ version = "0.2.2"
3023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3024
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3025
+
3026
+ [[package]]
3027
+ name = "uuid"
3028
+ version = "1.19.0"
3029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3030
+ checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
3031
+ dependencies = [
3032
+ "js-sys",
3033
+ "wasm-bindgen",
3034
+ ]
3035
+
3036
+ [[package]]
3037
+ name = "valuable"
3038
+ version = "0.1.1"
3039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3040
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3041
+
3042
+ [[package]]
3043
+ name = "version_check"
3044
+ version = "0.9.5"
3045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3046
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3047
+
3048
+ [[package]]
3049
+ name = "wait-timeout"
3050
+ version = "0.2.1"
3051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3052
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
3053
+ dependencies = [
3054
+ "libc",
3055
+ ]
3056
+
3057
+ [[package]]
3058
+ name = "walkdir"
3059
+ version = "2.5.0"
3060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3061
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3062
+ dependencies = [
3063
+ "same-file",
3064
+ "winapi-util",
3065
+ ]
3066
+
3067
+ [[package]]
3068
+ name = "want"
3069
+ version = "0.3.1"
3070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3071
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3072
+ dependencies = [
3073
+ "try-lock",
3074
+ ]
3075
+
3076
+ [[package]]
3077
+ name = "wasi"
3078
+ version = "0.11.1+wasi-snapshot-preview1"
3079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3080
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3081
+
3082
+ [[package]]
3083
+ name = "wasip2"
3084
+ version = "1.0.1+wasi-0.2.4"
3085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3086
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
3087
+ dependencies = [
3088
+ "wit-bindgen",
3089
+ ]
3090
+
3091
+ [[package]]
3092
+ name = "wasm-bindgen"
3093
+ version = "0.2.106"
3094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3095
+ checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
3096
+ dependencies = [
3097
+ "cfg-if",
3098
+ "once_cell",
3099
+ "rustversion",
3100
+ "wasm-bindgen-macro",
3101
+ "wasm-bindgen-shared",
3102
+ ]
3103
+
3104
+ [[package]]
3105
+ name = "wasm-bindgen-futures"
3106
+ version = "0.4.56"
3107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3108
+ checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
3109
+ dependencies = [
3110
+ "cfg-if",
3111
+ "js-sys",
3112
+ "once_cell",
3113
+ "wasm-bindgen",
3114
+ "web-sys",
3115
+ ]
3116
+
3117
+ [[package]]
3118
+ name = "wasm-bindgen-macro"
3119
+ version = "0.2.106"
3120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3121
+ checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
3122
+ dependencies = [
3123
+ "quote",
3124
+ "wasm-bindgen-macro-support",
3125
+ ]
3126
+
3127
+ [[package]]
3128
+ name = "wasm-bindgen-macro-support"
3129
+ version = "0.2.106"
3130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3131
+ checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
3132
+ dependencies = [
3133
+ "bumpalo",
3134
+ "proc-macro2",
3135
+ "quote",
3136
+ "syn",
3137
+ "wasm-bindgen-shared",
3138
+ ]
3139
+
3140
+ [[package]]
3141
+ name = "wasm-bindgen-shared"
3142
+ version = "0.2.106"
3143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3144
+ checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
3145
+ dependencies = [
3146
+ "unicode-ident",
3147
+ ]
3148
+
3149
+ [[package]]
3150
+ name = "wasm-streams"
3151
+ version = "0.4.2"
3152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3153
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
3154
+ dependencies = [
3155
+ "futures-util",
3156
+ "js-sys",
3157
+ "wasm-bindgen",
3158
+ "wasm-bindgen-futures",
3159
+ "web-sys",
3160
+ ]
3161
+
3162
+ [[package]]
3163
+ name = "web-sys"
3164
+ version = "0.3.83"
3165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3166
+ checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
3167
+ dependencies = [
3168
+ "js-sys",
3169
+ "wasm-bindgen",
3170
+ ]
3171
+
3172
+ [[package]]
3173
+ name = "web-time"
3174
+ version = "1.1.0"
3175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3176
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3177
+ dependencies = [
3178
+ "js-sys",
3179
+ "wasm-bindgen",
3180
+ ]
3181
+
3182
+ [[package]]
3183
+ name = "webpki-roots"
3184
+ version = "1.0.4"
3185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3186
+ checksum = "b2878ef029c47c6e8cf779119f20fcf52bde7ad42a731b2a304bc221df17571e"
3187
+ dependencies = [
3188
+ "rustls-pki-types",
3189
+ ]
3190
+
3191
+ [[package]]
3192
+ name = "which"
3193
+ version = "8.0.0"
3194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3195
+ checksum = "d3fabb953106c3c8eea8306e4393700d7657561cb43122571b172bbfb7c7ba1d"
3196
+ dependencies = [
3197
+ "env_home",
3198
+ "rustix",
3199
+ "winsafe",
3200
+ ]
3201
+
3202
+ [[package]]
3203
+ name = "widestring"
3204
+ version = "1.2.1"
3205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3206
+ checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
3207
+
3208
+ [[package]]
3209
+ name = "winapi"
3210
+ version = "0.3.9"
3211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3212
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3213
+ dependencies = [
3214
+ "winapi-i686-pc-windows-gnu",
3215
+ "winapi-x86_64-pc-windows-gnu",
3216
+ ]
3217
+
3218
+ [[package]]
3219
+ name = "winapi-i686-pc-windows-gnu"
3220
+ version = "0.4.0"
3221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3222
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3223
+
3224
+ [[package]]
3225
+ name = "winapi-util"
3226
+ version = "0.1.11"
3227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3228
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3229
+ dependencies = [
3230
+ "windows-sys 0.61.2",
3231
+ ]
3232
+
3233
+ [[package]]
3234
+ name = "winapi-x86_64-pc-windows-gnu"
3235
+ version = "0.4.0"
3236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3237
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3238
+
3239
+ [[package]]
3240
+ name = "windows"
3241
+ version = "0.61.3"
3242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3243
+ checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
3244
+ dependencies = [
3245
+ "windows-collections",
3246
+ "windows-core",
3247
+ "windows-future",
3248
+ "windows-link 0.1.3",
3249
+ "windows-numerics",
3250
+ ]
3251
+
3252
+ [[package]]
3253
+ name = "windows-collections"
3254
+ version = "0.2.0"
3255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3256
+ checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
3257
+ dependencies = [
3258
+ "windows-core",
3259
+ ]
3260
+
3261
+ [[package]]
3262
+ name = "windows-core"
3263
+ version = "0.61.2"
3264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3265
+ checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
3266
+ dependencies = [
3267
+ "windows-implement",
3268
+ "windows-interface",
3269
+ "windows-link 0.1.3",
3270
+ "windows-result",
3271
+ "windows-strings",
3272
+ ]
3273
+
3274
+ [[package]]
3275
+ name = "windows-future"
3276
+ version = "0.2.1"
3277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3278
+ checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
3279
+ dependencies = [
3280
+ "windows-core",
3281
+ "windows-link 0.1.3",
3282
+ "windows-threading",
3283
+ ]
3284
+
3285
+ [[package]]
3286
+ name = "windows-implement"
3287
+ version = "0.60.2"
3288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3289
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3290
+ dependencies = [
3291
+ "proc-macro2",
3292
+ "quote",
3293
+ "syn",
3294
+ ]
3295
+
3296
+ [[package]]
3297
+ name = "windows-interface"
3298
+ version = "0.59.3"
3299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3300
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3301
+ dependencies = [
3302
+ "proc-macro2",
3303
+ "quote",
3304
+ "syn",
3305
+ ]
3306
+
3307
+ [[package]]
3308
+ name = "windows-link"
3309
+ version = "0.1.3"
3310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3311
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
3312
+
3313
+ [[package]]
3314
+ name = "windows-link"
3315
+ version = "0.2.1"
3316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3317
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3318
+
3319
+ [[package]]
3320
+ name = "windows-numerics"
3321
+ version = "0.2.0"
3322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3323
+ checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
3324
+ dependencies = [
3325
+ "windows-core",
3326
+ "windows-link 0.1.3",
3327
+ ]
3328
+
3329
+ [[package]]
3330
+ name = "windows-result"
3331
+ version = "0.3.4"
3332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3333
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
3334
+ dependencies = [
3335
+ "windows-link 0.1.3",
3336
+ ]
3337
+
3338
+ [[package]]
3339
+ name = "windows-strings"
3340
+ version = "0.4.2"
3341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3342
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
3343
+ dependencies = [
3344
+ "windows-link 0.1.3",
3345
+ ]
3346
+
3347
+ [[package]]
3348
+ name = "windows-sys"
3349
+ version = "0.52.0"
3350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3351
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3352
+ dependencies = [
3353
+ "windows-targets 0.52.6",
3354
+ ]
3355
+
3356
+ [[package]]
3357
+ name = "windows-sys"
3358
+ version = "0.59.0"
3359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3360
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3361
+ dependencies = [
3362
+ "windows-targets 0.52.6",
3363
+ ]
3364
+
3365
+ [[package]]
3366
+ name = "windows-sys"
3367
+ version = "0.60.2"
3368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3369
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3370
+ dependencies = [
3371
+ "windows-targets 0.53.5",
3372
+ ]
3373
+
3374
+ [[package]]
3375
+ name = "windows-sys"
3376
+ version = "0.61.2"
3377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3378
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3379
+ dependencies = [
3380
+ "windows-link 0.2.1",
3381
+ ]
3382
+
3383
+ [[package]]
3384
+ name = "windows-targets"
3385
+ version = "0.52.6"
3386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3387
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3388
+ dependencies = [
3389
+ "windows_aarch64_gnullvm 0.52.6",
3390
+ "windows_aarch64_msvc 0.52.6",
3391
+ "windows_i686_gnu 0.52.6",
3392
+ "windows_i686_gnullvm 0.52.6",
3393
+ "windows_i686_msvc 0.52.6",
3394
+ "windows_x86_64_gnu 0.52.6",
3395
+ "windows_x86_64_gnullvm 0.52.6",
3396
+ "windows_x86_64_msvc 0.52.6",
3397
+ ]
3398
+
3399
+ [[package]]
3400
+ name = "windows-targets"
3401
+ version = "0.53.5"
3402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3403
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3404
+ dependencies = [
3405
+ "windows-link 0.2.1",
3406
+ "windows_aarch64_gnullvm 0.53.1",
3407
+ "windows_aarch64_msvc 0.53.1",
3408
+ "windows_i686_gnu 0.53.1",
3409
+ "windows_i686_gnullvm 0.53.1",
3410
+ "windows_i686_msvc 0.53.1",
3411
+ "windows_x86_64_gnu 0.53.1",
3412
+ "windows_x86_64_gnullvm 0.53.1",
3413
+ "windows_x86_64_msvc 0.53.1",
3414
+ ]
3415
+
3416
+ [[package]]
3417
+ name = "windows-threading"
3418
+ version = "0.1.0"
3419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3420
+ checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
3421
+ dependencies = [
3422
+ "windows-link 0.1.3",
3423
+ ]
3424
+
3425
+ [[package]]
3426
+ name = "windows_aarch64_gnullvm"
3427
+ version = "0.52.6"
3428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3429
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3430
+
3431
+ [[package]]
3432
+ name = "windows_aarch64_gnullvm"
3433
+ version = "0.53.1"
3434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3435
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3436
+
3437
+ [[package]]
3438
+ name = "windows_aarch64_msvc"
3439
+ version = "0.52.6"
3440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3441
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3442
+
3443
+ [[package]]
3444
+ name = "windows_aarch64_msvc"
3445
+ version = "0.53.1"
3446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3447
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3448
+
3449
+ [[package]]
3450
+ name = "windows_i686_gnu"
3451
+ version = "0.52.6"
3452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3453
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3454
+
3455
+ [[package]]
3456
+ name = "windows_i686_gnu"
3457
+ version = "0.53.1"
3458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3459
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3460
+
3461
+ [[package]]
3462
+ name = "windows_i686_gnullvm"
3463
+ version = "0.52.6"
3464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3465
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3466
+
3467
+ [[package]]
3468
+ name = "windows_i686_gnullvm"
3469
+ version = "0.53.1"
3470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3471
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3472
+
3473
+ [[package]]
3474
+ name = "windows_i686_msvc"
3475
+ version = "0.52.6"
3476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3477
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3478
+
3479
+ [[package]]
3480
+ name = "windows_i686_msvc"
3481
+ version = "0.53.1"
3482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3483
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3484
+
3485
+ [[package]]
3486
+ name = "windows_x86_64_gnu"
3487
+ version = "0.52.6"
3488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3489
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3490
+
3491
+ [[package]]
3492
+ name = "windows_x86_64_gnu"
3493
+ version = "0.53.1"
3494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3495
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3496
+
3497
+ [[package]]
3498
+ name = "windows_x86_64_gnullvm"
3499
+ version = "0.52.6"
3500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3501
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3502
+
3503
+ [[package]]
3504
+ name = "windows_x86_64_gnullvm"
3505
+ version = "0.53.1"
3506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3507
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3508
+
3509
+ [[package]]
3510
+ name = "windows_x86_64_msvc"
3511
+ version = "0.52.6"
3512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3513
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3514
+
3515
+ [[package]]
3516
+ name = "windows_x86_64_msvc"
3517
+ version = "0.53.1"
3518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3519
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3520
+
3521
+ [[package]]
3522
+ name = "winnow"
3523
+ version = "0.7.14"
3524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3525
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
3526
+
3527
+ [[package]]
3528
+ name = "winsafe"
3529
+ version = "0.0.19"
3530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3531
+ checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904"
3532
+
3533
+ [[package]]
3534
+ name = "wit-bindgen"
3535
+ version = "0.46.0"
3536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3537
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
3538
+
3539
+ [[package]]
3540
+ name = "writeable"
3541
+ version = "0.6.2"
3542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3543
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
3544
+
3545
+ [[package]]
3546
+ name = "xattr"
3547
+ version = "1.6.1"
3548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3549
+ checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
3550
+ dependencies = [
3551
+ "libc",
3552
+ "rustix",
3553
+ ]
3554
+
3555
+ [[package]]
3556
+ name = "yansi"
3557
+ version = "1.0.1"
3558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3559
+ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
3560
+
3561
+ [[package]]
3562
+ name = "yoke"
3563
+ version = "0.8.1"
3564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3565
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
3566
+ dependencies = [
3567
+ "stable_deref_trait",
3568
+ "yoke-derive",
3569
+ "zerofrom",
3570
+ ]
3571
+
3572
+ [[package]]
3573
+ name = "yoke-derive"
3574
+ version = "0.8.1"
3575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3576
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
3577
+ dependencies = [
3578
+ "proc-macro2",
3579
+ "quote",
3580
+ "syn",
3581
+ "synstructure",
3582
+ ]
3583
+
3584
+ [[package]]
3585
+ name = "zerocopy"
3586
+ version = "0.8.31"
3587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3588
+ checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
3589
+ dependencies = [
3590
+ "zerocopy-derive",
3591
+ ]
3592
+
3593
+ [[package]]
3594
+ name = "zerocopy-derive"
3595
+ version = "0.8.31"
3596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3597
+ checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
3598
+ dependencies = [
3599
+ "proc-macro2",
3600
+ "quote",
3601
+ "syn",
3602
+ ]
3603
+
3604
+ [[package]]
3605
+ name = "zerofrom"
3606
+ version = "0.1.6"
3607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3608
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3609
+ dependencies = [
3610
+ "zerofrom-derive",
3611
+ ]
3612
+
3613
+ [[package]]
3614
+ name = "zerofrom-derive"
3615
+ version = "0.1.6"
3616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3617
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3618
+ dependencies = [
3619
+ "proc-macro2",
3620
+ "quote",
3621
+ "syn",
3622
+ "synstructure",
3623
+ ]
3624
+
3625
+ [[package]]
3626
+ name = "zeroize"
3627
+ version = "1.8.2"
3628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3629
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3630
+
3631
+ [[package]]
3632
+ name = "zerotrie"
3633
+ version = "0.2.3"
3634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3635
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
3636
+ dependencies = [
3637
+ "displaydoc",
3638
+ "yoke",
3639
+ "zerofrom",
3640
+ ]
3641
+
3642
+ [[package]]
3643
+ name = "zerovec"
3644
+ version = "0.11.5"
3645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3646
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
3647
+ dependencies = [
3648
+ "yoke",
3649
+ "zerofrom",
3650
+ "zerovec-derive",
3651
+ ]
3652
+
3653
+ [[package]]
3654
+ name = "zerovec-derive"
3655
+ version = "0.11.2"
3656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3657
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3658
+ dependencies = [
3659
+ "proc-macro2",
3660
+ "quote",
3661
+ "syn",
3662
+ ]