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