kreuzcrawl 0.1.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 (114) hide show
  1. kreuzcrawl-0.1.0/Cargo.lock +5044 -0
  2. kreuzcrawl-0.1.0/Cargo.toml +89 -0
  3. kreuzcrawl-0.1.0/PKG-INFO +15 -0
  4. kreuzcrawl-0.1.0/crates/kreuzcrawl/Cargo.toml +89 -0
  5. kreuzcrawl-0.1.0/crates/kreuzcrawl/README.md +275 -0
  6. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/api/error.rs +83 -0
  7. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/api/handlers.rs +500 -0
  8. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/api/jobs.rs +151 -0
  9. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/api/mod.rs +30 -0
  10. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/api/openapi.rs +129 -0
  11. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/api/router.rs +107 -0
  12. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/api/startup.rs +59 -0
  13. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/api/state.rs +32 -0
  14. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/api/types.rs +213 -0
  15. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/assets.rs +184 -0
  16. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/bindings.rs +113 -0
  17. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/browser.rs +195 -0
  18. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/browser_detect.rs +163 -0
  19. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/browser_pool.rs +345 -0
  20. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/browser_profile.rs +283 -0
  21. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/citations.rs +138 -0
  22. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/defaults/cache.rs +357 -0
  23. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/defaults/emitter.rs +41 -0
  24. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/defaults/filter.rs +172 -0
  25. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/defaults/frontier.rs +180 -0
  26. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/defaults/llm_extractor.rs +162 -0
  27. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/defaults/mod.rs +22 -0
  28. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/defaults/rate_limiter.rs +147 -0
  29. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/defaults/store.rs +50 -0
  30. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/defaults/strategy.rs +346 -0
  31. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/engine/batch.rs +182 -0
  32. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/engine/builder.rs +121 -0
  33. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/engine/crawl_loop.rs +752 -0
  34. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/engine/mod.rs +297 -0
  35. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/error.rs +132 -0
  36. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/helpers.rs +58 -0
  37. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/html/charset.rs +61 -0
  38. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/html/content.rs +71 -0
  39. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/html/detection.rs +68 -0
  40. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/html/extract.rs +75 -0
  41. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/html/feeds.rs +113 -0
  42. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/html/images.rs +104 -0
  43. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/html/json_ld.rs +27 -0
  44. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/html/links.rs +125 -0
  45. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/html/metadata.rs +213 -0
  46. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/html/mod.rs +59 -0
  47. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/html/selectors.rs +43 -0
  48. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/http.rs +364 -0
  49. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/interact/actions.rs +97 -0
  50. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/interact/mod.rs +13 -0
  51. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/interact/validation.rs +107 -0
  52. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/lib.rs +69 -0
  53. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/map.rs +172 -0
  54. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/markdown.rs +128 -0
  55. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/mcp/errors.rs +156 -0
  56. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/mcp/format.rs +207 -0
  57. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/mcp/mod.rs +47 -0
  58. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/mcp/params.rs +203 -0
  59. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/mcp/server.rs +461 -0
  60. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/normalize.rs +98 -0
  61. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/pruning.rs +158 -0
  62. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/research/agent.rs +186 -0
  63. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/research/mod.rs +12 -0
  64. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/research/planner.rs +39 -0
  65. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/research/synthesizer.rs +53 -0
  66. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/research/types.rs +116 -0
  67. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/robots.rs +223 -0
  68. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/scrape.rs +156 -0
  69. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/sitemap.rs +238 -0
  70. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/tower/cache.rs +157 -0
  71. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/tower/mod.rs +31 -0
  72. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/tower/rate_limit.rs +117 -0
  73. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/tower/service.rs +223 -0
  74. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/tower/tracing_layer.rs +81 -0
  75. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/tower/types.rs +36 -0
  76. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/tower/ua_rotation.rs +123 -0
  77. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/traits.rs +175 -0
  78. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/types/config.rs +318 -0
  79. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/types/discovery.rs +239 -0
  80. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/types/metadata.rs +163 -0
  81. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/types/mod.rs +17 -0
  82. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/types/results.rs +281 -0
  83. kreuzcrawl-0.1.0/crates/kreuzcrawl/src/warc.rs +242 -0
  84. kreuzcrawl-0.1.0/crates/kreuzcrawl/tests/browser_pool_integration.rs +206 -0
  85. kreuzcrawl-0.1.0/crates/kreuzcrawl/tests/llm_integration.rs +96 -0
  86. kreuzcrawl-0.1.0/crates/kreuzcrawl/tests/test_adaptive_strategy.rs +67 -0
  87. kreuzcrawl-0.1.0/crates/kreuzcrawl/tests/test_api.rs +323 -0
  88. kreuzcrawl-0.1.0/crates/kreuzcrawl/tests/test_batch_crawl_integration.rs +88 -0
  89. kreuzcrawl-0.1.0/crates/kreuzcrawl/tests/test_batch_crawl_stream.rs +53 -0
  90. kreuzcrawl-0.1.0/crates/kreuzcrawl/tests/test_browser_profile.rs +133 -0
  91. kreuzcrawl-0.1.0/crates/kreuzcrawl/tests/test_cache_integration.rs +62 -0
  92. kreuzcrawl-0.1.0/crates/kreuzcrawl/tests/test_crawl_store.rs +92 -0
  93. kreuzcrawl-0.1.0/crates/kreuzcrawl/tests/test_disk_cache_flow.rs +119 -0
  94. kreuzcrawl-0.1.0/crates/kreuzcrawl/tests/test_event_emitter.rs +87 -0
  95. kreuzcrawl-0.1.0/crates/kreuzcrawl/tests/test_frontier_dedup.rs +59 -0
  96. kreuzcrawl-0.1.0/crates/kreuzcrawl/tests/test_interaction.rs +329 -0
  97. kreuzcrawl-0.1.0/crates/kreuzcrawl/tests/test_markdown_integration.rs +99 -0
  98. kreuzcrawl-0.1.0/crates/kreuzcrawl/tests/test_mcp.rs +199 -0
  99. kreuzcrawl-0.1.0/crates/kreuzcrawl/tests/test_mcp_contract.rs +41 -0
  100. kreuzcrawl-0.1.0/crates/kreuzcrawl/tests/test_middleware_integration.rs +148 -0
  101. kreuzcrawl-0.1.0/crates/kreuzcrawl/tests/test_rate_limiting_integration.rs +67 -0
  102. kreuzcrawl-0.1.0/crates/kreuzcrawl/tests/test_research.rs +444 -0
  103. kreuzcrawl-0.1.0/crates/kreuzcrawl/tests/test_strategy_integration.rs +171 -0
  104. kreuzcrawl-0.1.0/crates/kreuzcrawl/tests/test_waf_detection_integration.rs +98 -0
  105. kreuzcrawl-0.1.0/crates/kreuzcrawl/tests/test_warc.rs +297 -0
  106. kreuzcrawl-0.1.0/crates/kreuzcrawl-py/Cargo.toml +16 -0
  107. kreuzcrawl-0.1.0/crates/kreuzcrawl-py/src/lib.rs +3106 -0
  108. kreuzcrawl-0.1.0/kreuzcrawl/__init__.py +134 -0
  109. kreuzcrawl-0.1.0/kreuzcrawl/_kreuzcrawl.pyi +664 -0
  110. kreuzcrawl-0.1.0/kreuzcrawl/api.py +138 -0
  111. kreuzcrawl-0.1.0/kreuzcrawl/exceptions.py +76 -0
  112. kreuzcrawl-0.1.0/kreuzcrawl/options.py +774 -0
  113. kreuzcrawl-0.1.0/kreuzcrawl/py.typed +0 -0
  114. kreuzcrawl-0.1.0/pyproject.toml +27 -0
@@ -0,0 +1,5044 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aes"
13
+ version = "0.8.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "cipher",
19
+ "cpufeatures 0.2.17",
20
+ ]
21
+
22
+ [[package]]
23
+ name = "ahash"
24
+ version = "0.8.12"
25
+ source = "registry+https://github.com/rust-lang/crates.io-index"
26
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
27
+ dependencies = [
28
+ "cfg-if",
29
+ "const-random",
30
+ "getrandom 0.3.4",
31
+ "once_cell",
32
+ "version_check",
33
+ "zerocopy",
34
+ ]
35
+
36
+ [[package]]
37
+ name = "aho-corasick"
38
+ version = "1.1.4"
39
+ source = "registry+https://github.com/rust-lang/crates.io-index"
40
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
41
+ dependencies = [
42
+ "memchr",
43
+ ]
44
+
45
+ [[package]]
46
+ name = "alloc-no-stdlib"
47
+ version = "2.0.4"
48
+ source = "registry+https://github.com/rust-lang/crates.io-index"
49
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
50
+
51
+ [[package]]
52
+ name = "alloc-stdlib"
53
+ version = "0.2.2"
54
+ source = "registry+https://github.com/rust-lang/crates.io-index"
55
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
56
+ dependencies = [
57
+ "alloc-no-stdlib",
58
+ ]
59
+
60
+ [[package]]
61
+ name = "allocator-api2"
62
+ version = "0.2.21"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
65
+
66
+ [[package]]
67
+ name = "android_system_properties"
68
+ version = "0.1.5"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
71
+ dependencies = [
72
+ "libc",
73
+ ]
74
+
75
+ [[package]]
76
+ name = "anstream"
77
+ version = "1.0.0"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
80
+ dependencies = [
81
+ "anstyle",
82
+ "anstyle-parse",
83
+ "anstyle-query",
84
+ "anstyle-wincon",
85
+ "colorchoice",
86
+ "is_terminal_polyfill",
87
+ "utf8parse",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "anstyle"
92
+ version = "1.0.14"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
95
+
96
+ [[package]]
97
+ name = "anstyle-parse"
98
+ version = "1.0.0"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
101
+ dependencies = [
102
+ "utf8parse",
103
+ ]
104
+
105
+ [[package]]
106
+ name = "anstyle-query"
107
+ version = "1.1.5"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
110
+ dependencies = [
111
+ "windows-sys 0.61.2",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "anstyle-wincon"
116
+ version = "3.0.11"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
119
+ dependencies = [
120
+ "anstyle",
121
+ "once_cell_polyfill",
122
+ "windows-sys 0.61.2",
123
+ ]
124
+
125
+ [[package]]
126
+ name = "anyhow"
127
+ version = "1.0.102"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
130
+
131
+ [[package]]
132
+ name = "arrayref"
133
+ version = "0.3.9"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
136
+
137
+ [[package]]
138
+ name = "arrayvec"
139
+ version = "0.7.6"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
142
+
143
+ [[package]]
144
+ name = "assert-json-diff"
145
+ version = "2.0.2"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
148
+ dependencies = [
149
+ "serde",
150
+ "serde_json",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "astral-tl"
155
+ version = "0.7.11"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "d90933ffb0f97e2fc2e0de21da9d3f20597b804012d199843a6fe7c2810d28f3"
158
+ dependencies = [
159
+ "memchr",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "async-compression"
164
+ version = "0.4.41"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "d0f9ee0f6e02ffd7ad5816e9464499fba7b3effd01123b515c41d1697c43dad1"
167
+ dependencies = [
168
+ "compression-codecs",
169
+ "compression-core",
170
+ "pin-project-lite",
171
+ "tokio",
172
+ ]
173
+
174
+ [[package]]
175
+ name = "async-trait"
176
+ version = "0.1.89"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
179
+ dependencies = [
180
+ "proc-macro2",
181
+ "quote",
182
+ "syn",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "async-tungstenite"
187
+ version = "0.32.1"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "8acc405d38be14342132609f06f02acaf825ddccfe76c4824a69281e0458ebd4"
190
+ dependencies = [
191
+ "atomic-waker",
192
+ "futures-core",
193
+ "futures-io",
194
+ "futures-task",
195
+ "futures-util",
196
+ "log",
197
+ "pin-project-lite",
198
+ "tokio",
199
+ "tungstenite",
200
+ ]
201
+
202
+ [[package]]
203
+ name = "atomic-waker"
204
+ version = "1.1.2"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
207
+
208
+ [[package]]
209
+ name = "autocfg"
210
+ version = "1.5.0"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
213
+
214
+ [[package]]
215
+ name = "aws-lc-rs"
216
+ version = "1.16.3"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "0ec6fb3fe69024a75fa7e1bfb48aa6cf59706a101658ea01bfd33b2b248a038f"
219
+ dependencies = [
220
+ "aws-lc-sys",
221
+ "zeroize",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "aws-lc-sys"
226
+ version = "0.40.0"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "f50037ee5e1e41e7b8f9d161680a725bd1626cb6f8c7e901f91f942850852fe7"
229
+ dependencies = [
230
+ "cc",
231
+ "cmake",
232
+ "dunce",
233
+ "fs_extra",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "axum"
238
+ version = "0.8.9"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
241
+ dependencies = [
242
+ "axum-core",
243
+ "bytes",
244
+ "form_urlencoded",
245
+ "futures-util",
246
+ "http",
247
+ "http-body",
248
+ "http-body-util",
249
+ "hyper",
250
+ "hyper-util",
251
+ "itoa",
252
+ "matchit",
253
+ "memchr",
254
+ "mime",
255
+ "percent-encoding",
256
+ "pin-project-lite",
257
+ "serde_core",
258
+ "serde_json",
259
+ "serde_path_to_error",
260
+ "serde_urlencoded",
261
+ "sync_wrapper",
262
+ "tokio",
263
+ "tower",
264
+ "tower-layer",
265
+ "tower-service",
266
+ "tracing",
267
+ ]
268
+
269
+ [[package]]
270
+ name = "axum-core"
271
+ version = "0.5.6"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
274
+ dependencies = [
275
+ "bytes",
276
+ "futures-core",
277
+ "http",
278
+ "http-body",
279
+ "http-body-util",
280
+ "mime",
281
+ "pin-project-lite",
282
+ "sync_wrapper",
283
+ "tower-layer",
284
+ "tower-service",
285
+ "tracing",
286
+ ]
287
+
288
+ [[package]]
289
+ name = "base64"
290
+ version = "0.22.1"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
293
+
294
+ [[package]]
295
+ name = "base64ct"
296
+ version = "1.8.3"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
299
+
300
+ [[package]]
301
+ name = "bitflags"
302
+ version = "2.11.1"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
305
+
306
+ [[package]]
307
+ name = "blake3"
308
+ version = "1.8.4"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "4d2d5991425dfd0785aed03aedcf0b321d61975c9b5b3689c774a2610ae0b51e"
311
+ dependencies = [
312
+ "arrayref",
313
+ "arrayvec",
314
+ "cc",
315
+ "cfg-if",
316
+ "constant_time_eq",
317
+ "cpufeatures 0.3.0",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "block-buffer"
322
+ version = "0.10.4"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
325
+ dependencies = [
326
+ "generic-array",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "block-buffer"
331
+ version = "0.12.0"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
334
+ dependencies = [
335
+ "hybrid-array",
336
+ ]
337
+
338
+ [[package]]
339
+ name = "brotli"
340
+ version = "8.0.2"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
343
+ dependencies = [
344
+ "alloc-no-stdlib",
345
+ "alloc-stdlib",
346
+ "brotli-decompressor",
347
+ ]
348
+
349
+ [[package]]
350
+ name = "brotli-decompressor"
351
+ version = "5.0.0"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
354
+ dependencies = [
355
+ "alloc-no-stdlib",
356
+ "alloc-stdlib",
357
+ ]
358
+
359
+ [[package]]
360
+ name = "bumpalo"
361
+ version = "3.20.2"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
364
+
365
+ [[package]]
366
+ name = "bytecount"
367
+ version = "0.6.9"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
370
+
371
+ [[package]]
372
+ name = "bytemuck"
373
+ version = "1.25.0"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
376
+
377
+ [[package]]
378
+ name = "byteorder-lite"
379
+ version = "0.1.0"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
382
+
383
+ [[package]]
384
+ name = "bytes"
385
+ version = "1.11.1"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
388
+
389
+ [[package]]
390
+ name = "bzip2"
391
+ version = "0.6.1"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c"
394
+ dependencies = [
395
+ "libbz2-rs-sys",
396
+ ]
397
+
398
+ [[package]]
399
+ name = "camino"
400
+ version = "1.2.2"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
403
+ dependencies = [
404
+ "serde_core",
405
+ ]
406
+
407
+ [[package]]
408
+ name = "cargo-platform"
409
+ version = "0.1.9"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
412
+ dependencies = [
413
+ "serde",
414
+ ]
415
+
416
+ [[package]]
417
+ name = "cargo_metadata"
418
+ version = "0.14.2"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
421
+ dependencies = [
422
+ "camino",
423
+ "cargo-platform",
424
+ "semver",
425
+ "serde",
426
+ "serde_json",
427
+ ]
428
+
429
+ [[package]]
430
+ name = "cbindgen"
431
+ version = "0.29.2"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "befbfd072a8e81c02f8c507aefce431fe5e7d051f83d48a23ffc9b9fe5a11799"
434
+ dependencies = [
435
+ "clap",
436
+ "heck",
437
+ "indexmap",
438
+ "log",
439
+ "proc-macro2",
440
+ "quote",
441
+ "serde",
442
+ "serde_json",
443
+ "syn",
444
+ "tempfile",
445
+ "toml 0.9.12+spec-1.1.0",
446
+ ]
447
+
448
+ [[package]]
449
+ name = "cc"
450
+ version = "1.2.60"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
453
+ dependencies = [
454
+ "find-msvc-tools",
455
+ "jobserver",
456
+ "libc",
457
+ "shlex",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "cesu8"
462
+ version = "1.1.0"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
465
+
466
+ [[package]]
467
+ name = "cexpr"
468
+ version = "0.6.0"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
471
+ dependencies = [
472
+ "nom",
473
+ ]
474
+
475
+ [[package]]
476
+ name = "cfg-if"
477
+ version = "1.0.4"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
480
+
481
+ [[package]]
482
+ name = "cfg_aliases"
483
+ version = "0.2.1"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
486
+
487
+ [[package]]
488
+ name = "chromiumoxide"
489
+ version = "0.9.1"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "26ed067eb6c1f660bdb87c05efb964421d2ca262bae0296cdfe38cf0cd949a3e"
492
+ dependencies = [
493
+ "async-tungstenite",
494
+ "base64",
495
+ "chromiumoxide_cdp",
496
+ "chromiumoxide_types",
497
+ "dunce",
498
+ "fnv",
499
+ "futures",
500
+ "futures-timer",
501
+ "pin-project-lite",
502
+ "reqwest",
503
+ "serde",
504
+ "serde_json",
505
+ "thiserror 2.0.18",
506
+ "tokio",
507
+ "tracing",
508
+ "url",
509
+ "which",
510
+ "windows-registry",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "chromiumoxide_cdp"
515
+ version = "0.9.1"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "68a6a03a7ebac4ea85308f285d6959a3e6b2ce32a0c9465dc7a7b1db0144eec7"
518
+ dependencies = [
519
+ "chromiumoxide_pdl",
520
+ "chromiumoxide_types",
521
+ "serde",
522
+ "serde_json",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "chromiumoxide_pdl"
527
+ version = "0.9.1"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "c602dea92337bc4d824668d78c5b79c3b4ddb29b40dd7218282bbe8fd3fc2091"
530
+ dependencies = [
531
+ "chromiumoxide_types",
532
+ "either",
533
+ "heck",
534
+ "once_cell",
535
+ "proc-macro2",
536
+ "quote",
537
+ "regex",
538
+ "serde_json",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "chromiumoxide_types"
543
+ version = "0.9.1"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "678d5146e74f16fc4a41978b275af572cd913de1f10270d2b93b6c276bc57d80"
546
+ dependencies = [
547
+ "serde",
548
+ "serde_json",
549
+ ]
550
+
551
+ [[package]]
552
+ name = "chrono"
553
+ version = "0.4.44"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
556
+ dependencies = [
557
+ "iana-time-zone",
558
+ "js-sys",
559
+ "num-traits",
560
+ "serde",
561
+ "wasm-bindgen",
562
+ "windows-link",
563
+ ]
564
+
565
+ [[package]]
566
+ name = "cipher"
567
+ version = "0.4.4"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
570
+ dependencies = [
571
+ "crypto-common 0.1.7",
572
+ "inout",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "clap"
577
+ version = "4.6.1"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
580
+ dependencies = [
581
+ "clap_builder",
582
+ "clap_derive",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "clap_builder"
587
+ version = "4.6.0"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
590
+ dependencies = [
591
+ "anstream",
592
+ "anstyle",
593
+ "clap_lex",
594
+ "strsim",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "clap_derive"
599
+ version = "4.6.1"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
602
+ dependencies = [
603
+ "heck",
604
+ "proc-macro2",
605
+ "quote",
606
+ "syn",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "clap_lex"
611
+ version = "1.1.0"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
614
+
615
+ [[package]]
616
+ name = "cmake"
617
+ version = "0.1.58"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
620
+ dependencies = [
621
+ "cc",
622
+ ]
623
+
624
+ [[package]]
625
+ name = "color_quant"
626
+ version = "1.1.0"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
629
+
630
+ [[package]]
631
+ name = "colorchoice"
632
+ version = "1.0.5"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
635
+
636
+ [[package]]
637
+ name = "combine"
638
+ version = "4.6.7"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
641
+ dependencies = [
642
+ "bytes",
643
+ "memchr",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "compression-codecs"
648
+ version = "0.4.37"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "eb7b51a7d9c967fc26773061ba86150f19c50c0d65c887cb1fbe295fd16619b7"
651
+ dependencies = [
652
+ "brotli",
653
+ "compression-core",
654
+ "flate2",
655
+ "memchr",
656
+ "zstd",
657
+ "zstd-safe",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "compression-core"
662
+ version = "0.4.31"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d"
665
+
666
+ [[package]]
667
+ name = "const-oid"
668
+ version = "0.10.2"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
671
+
672
+ [[package]]
673
+ name = "const-random"
674
+ version = "0.1.18"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
677
+ dependencies = [
678
+ "const-random-macro",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "const-random-macro"
683
+ version = "0.1.16"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
686
+ dependencies = [
687
+ "getrandom 0.2.17",
688
+ "once_cell",
689
+ "tiny-keccak",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "constant_time_eq"
694
+ version = "0.4.3"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "7dab3fe76c1571ecd5cfe878b61bce3fedf4adbde5d8a8653b2a7956ffd14628"
697
+
698
+ [[package]]
699
+ name = "convert_case"
700
+ version = "0.11.0"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
703
+ dependencies = [
704
+ "unicode-segmentation",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "cookie"
709
+ version = "0.18.1"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
712
+ dependencies = [
713
+ "percent-encoding",
714
+ "time",
715
+ "version_check",
716
+ ]
717
+
718
+ [[package]]
719
+ name = "cookie_store"
720
+ version = "0.22.1"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "15b2c103cf610ec6cae3da84a766285b42fd16aad564758459e6ecf128c75206"
723
+ dependencies = [
724
+ "cookie",
725
+ "document-features",
726
+ "idna",
727
+ "log",
728
+ "publicsuffix",
729
+ "serde",
730
+ "serde_derive",
731
+ "serde_json",
732
+ "time",
733
+ "url",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "core-foundation"
738
+ version = "0.9.4"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
741
+ dependencies = [
742
+ "core-foundation-sys",
743
+ "libc",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "core-foundation"
748
+ version = "0.10.1"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
751
+ dependencies = [
752
+ "core-foundation-sys",
753
+ "libc",
754
+ ]
755
+
756
+ [[package]]
757
+ name = "core-foundation-sys"
758
+ version = "0.8.7"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
761
+
762
+ [[package]]
763
+ name = "cpufeatures"
764
+ version = "0.2.17"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
767
+ dependencies = [
768
+ "libc",
769
+ ]
770
+
771
+ [[package]]
772
+ name = "cpufeatures"
773
+ version = "0.3.0"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
776
+ dependencies = [
777
+ "libc",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "crc32fast"
782
+ version = "1.5.0"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
785
+ dependencies = [
786
+ "cfg-if",
787
+ ]
788
+
789
+ [[package]]
790
+ name = "crossbeam-deque"
791
+ version = "0.8.6"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
794
+ dependencies = [
795
+ "crossbeam-epoch",
796
+ "crossbeam-utils",
797
+ ]
798
+
799
+ [[package]]
800
+ name = "crossbeam-epoch"
801
+ version = "0.9.18"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
804
+ dependencies = [
805
+ "crossbeam-utils",
806
+ ]
807
+
808
+ [[package]]
809
+ name = "crossbeam-utils"
810
+ version = "0.8.21"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
813
+
814
+ [[package]]
815
+ name = "crunchy"
816
+ version = "0.2.4"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
819
+
820
+ [[package]]
821
+ name = "crypto-common"
822
+ version = "0.1.7"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
825
+ dependencies = [
826
+ "generic-array",
827
+ "typenum",
828
+ ]
829
+
830
+ [[package]]
831
+ name = "crypto-common"
832
+ version = "0.2.1"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "77727bb15fa921304124b128af125e7e3b968275d1b108b379190264f4423710"
835
+ dependencies = [
836
+ "hybrid-array",
837
+ ]
838
+
839
+ [[package]]
840
+ name = "ctor"
841
+ version = "0.10.0"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "95d0d11eb38e7642efca359c3cf6eb7b2e528182d09110165de70192b0352775"
844
+ dependencies = [
845
+ "ctor-proc-macro",
846
+ "dtor",
847
+ ]
848
+
849
+ [[package]]
850
+ name = "ctor-proc-macro"
851
+ version = "0.0.12"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "a7ab264ea985f1bd27887d7b21ea2bb046728e05d11909ca138d700c494730db"
854
+
855
+ [[package]]
856
+ name = "darling"
857
+ version = "0.23.0"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
860
+ dependencies = [
861
+ "darling_core",
862
+ "darling_macro",
863
+ ]
864
+
865
+ [[package]]
866
+ name = "darling_core"
867
+ version = "0.23.0"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
870
+ dependencies = [
871
+ "ident_case",
872
+ "proc-macro2",
873
+ "quote",
874
+ "strsim",
875
+ "syn",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "darling_macro"
880
+ version = "0.23.0"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
883
+ dependencies = [
884
+ "darling_core",
885
+ "quote",
886
+ "syn",
887
+ ]
888
+
889
+ [[package]]
890
+ name = "dashmap"
891
+ version = "6.1.0"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
894
+ dependencies = [
895
+ "cfg-if",
896
+ "crossbeam-utils",
897
+ "hashbrown 0.14.5",
898
+ "lock_api",
899
+ "once_cell",
900
+ "parking_lot_core",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "data-encoding"
905
+ version = "2.10.0"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
908
+
909
+ [[package]]
910
+ name = "deadpool"
911
+ version = "0.12.3"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "0be2b1d1d6ec8d846f05e137292d0b89133caf95ef33695424c09568bdd39b1b"
914
+ dependencies = [
915
+ "deadpool-runtime",
916
+ "lazy_static",
917
+ "num_cpus",
918
+ "tokio",
919
+ ]
920
+
921
+ [[package]]
922
+ name = "deadpool-runtime"
923
+ version = "0.1.4"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
926
+
927
+ [[package]]
928
+ name = "deflate64"
929
+ version = "0.1.12"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "ac6b926516df9c60bfa16e107b21086399f8285a44ca9711344b9e553c5146e2"
932
+
933
+ [[package]]
934
+ name = "der"
935
+ version = "0.8.0"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "71fd89660b2dc699704064e59e9dba0147b903e85319429e131620d022be411b"
938
+ dependencies = [
939
+ "pem-rfc7468",
940
+ "zeroize",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "deranged"
945
+ version = "0.5.8"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
948
+ dependencies = [
949
+ "powerfmt",
950
+ ]
951
+
952
+ [[package]]
953
+ name = "digest"
954
+ version = "0.10.7"
955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
956
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
957
+ dependencies = [
958
+ "block-buffer 0.10.4",
959
+ "crypto-common 0.1.7",
960
+ "subtle",
961
+ ]
962
+
963
+ [[package]]
964
+ name = "digest"
965
+ version = "0.11.2"
966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
967
+ checksum = "4850db49bf08e663084f7fb5c87d202ef91a3907271aff24a94eb97ff039153c"
968
+ dependencies = [
969
+ "block-buffer 0.12.0",
970
+ "const-oid",
971
+ "crypto-common 0.2.1",
972
+ ]
973
+
974
+ [[package]]
975
+ name = "dirs"
976
+ version = "6.0.0"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
979
+ dependencies = [
980
+ "dirs-sys",
981
+ ]
982
+
983
+ [[package]]
984
+ name = "dirs-sys"
985
+ version = "0.5.0"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
988
+ dependencies = [
989
+ "libc",
990
+ "option-ext",
991
+ "redox_users",
992
+ "windows-sys 0.61.2",
993
+ ]
994
+
995
+ [[package]]
996
+ name = "displaydoc"
997
+ version = "0.2.5"
998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
999
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
1000
+ dependencies = [
1001
+ "proc-macro2",
1002
+ "quote",
1003
+ "syn",
1004
+ ]
1005
+
1006
+ [[package]]
1007
+ name = "document-features"
1008
+ version = "0.2.12"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
1011
+ dependencies = [
1012
+ "litrs",
1013
+ ]
1014
+
1015
+ [[package]]
1016
+ name = "dtor"
1017
+ version = "0.7.0"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "17f72721db8027a4e96dd6fb50d2a1d32259c9d3da1b63dee612ccd981e14293"
1020
+ dependencies = [
1021
+ "dtor-proc-macro",
1022
+ ]
1023
+
1024
+ [[package]]
1025
+ name = "dtor-proc-macro"
1026
+ version = "0.0.12"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "8c98b077c7463d01d22dde8a24378ddf1ca7263dc687cffbed38819ea6c21131"
1029
+
1030
+ [[package]]
1031
+ name = "dunce"
1032
+ version = "1.0.5"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
1035
+
1036
+ [[package]]
1037
+ name = "dyn-clone"
1038
+ version = "1.0.20"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
1041
+
1042
+ [[package]]
1043
+ name = "either"
1044
+ version = "1.15.0"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
1047
+
1048
+ [[package]]
1049
+ name = "encoding_rs"
1050
+ version = "0.8.35"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
1053
+ dependencies = [
1054
+ "cfg-if",
1055
+ ]
1056
+
1057
+ [[package]]
1058
+ name = "equivalent"
1059
+ version = "1.0.2"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
1062
+
1063
+ [[package]]
1064
+ name = "errno"
1065
+ version = "0.3.14"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
1068
+ dependencies = [
1069
+ "libc",
1070
+ "windows-sys 0.61.2",
1071
+ ]
1072
+
1073
+ [[package]]
1074
+ name = "error-chain"
1075
+ version = "0.12.4"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
1078
+ dependencies = [
1079
+ "version_check",
1080
+ ]
1081
+
1082
+ [[package]]
1083
+ name = "ext-php-rs"
1084
+ version = "0.15.10"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "896f178baf2f04a110819ef1c7bdab6bfbeecd7e6eb242f65a6ab0a0632f01d1"
1087
+ dependencies = [
1088
+ "anyhow",
1089
+ "bitflags",
1090
+ "cc",
1091
+ "cfg-if",
1092
+ "ext-php-rs-bindgen",
1093
+ "ext-php-rs-build",
1094
+ "ext-php-rs-derive",
1095
+ "inventory",
1096
+ "native-tls",
1097
+ "once_cell",
1098
+ "parking_lot",
1099
+ "skeptic",
1100
+ "ureq",
1101
+ "zip",
1102
+ ]
1103
+
1104
+ [[package]]
1105
+ name = "ext-php-rs-bindgen"
1106
+ version = "0.72.1-extphprs.1"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "4795dd0976bd7d7d321c49e88e836f8e5b5b2b481e089067e303f2945617458a"
1109
+ dependencies = [
1110
+ "bitflags",
1111
+ "cexpr",
1112
+ "ext-php-rs-clang-sys",
1113
+ "itertools",
1114
+ "log",
1115
+ "prettyplease",
1116
+ "proc-macro2",
1117
+ "quote",
1118
+ "regex",
1119
+ "rustc-hash",
1120
+ "shlex",
1121
+ "syn",
1122
+ ]
1123
+
1124
+ [[package]]
1125
+ name = "ext-php-rs-build"
1126
+ version = "0.1.1"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "561bce8a6312a6182c078cd987d8d9cb6bf9292a35817cfd009ea0bffa794f5f"
1129
+ dependencies = [
1130
+ "anyhow",
1131
+ ]
1132
+
1133
+ [[package]]
1134
+ name = "ext-php-rs-clang-sys"
1135
+ version = "1.8.1-extphprs.1"
1136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1137
+ checksum = "aa1ad6e482017d457d57d73691f8bed148a8a6198babe90830310c3308480a61"
1138
+ dependencies = [
1139
+ "glob",
1140
+ "libc",
1141
+ "libloading 0.8.9",
1142
+ ]
1143
+
1144
+ [[package]]
1145
+ name = "ext-php-rs-derive"
1146
+ version = "0.11.11"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "9cbfc942526ee091e48818a0f654c67d159fb4068539bd2bfe7ce474dca939ff"
1149
+ dependencies = [
1150
+ "convert_case",
1151
+ "darling",
1152
+ "itertools",
1153
+ "proc-macro2",
1154
+ "quote",
1155
+ "syn",
1156
+ ]
1157
+
1158
+ [[package]]
1159
+ name = "fastrand"
1160
+ version = "2.4.1"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
1163
+
1164
+ [[package]]
1165
+ name = "fdeflate"
1166
+ version = "0.3.7"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
1169
+ dependencies = [
1170
+ "simd-adler32",
1171
+ ]
1172
+
1173
+ [[package]]
1174
+ name = "find-msvc-tools"
1175
+ version = "0.1.9"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
1178
+
1179
+ [[package]]
1180
+ name = "flate2"
1181
+ version = "1.1.9"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
1184
+ dependencies = [
1185
+ "crc32fast",
1186
+ "miniz_oxide",
1187
+ "zlib-rs",
1188
+ ]
1189
+
1190
+ [[package]]
1191
+ name = "fnv"
1192
+ version = "1.0.7"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1195
+
1196
+ [[package]]
1197
+ name = "foldhash"
1198
+ version = "0.1.5"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1201
+
1202
+ [[package]]
1203
+ name = "foldhash"
1204
+ version = "0.2.0"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
1207
+
1208
+ [[package]]
1209
+ name = "foreign-types"
1210
+ version = "0.3.2"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
1213
+ dependencies = [
1214
+ "foreign-types-shared",
1215
+ ]
1216
+
1217
+ [[package]]
1218
+ name = "foreign-types-shared"
1219
+ version = "0.1.1"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
1222
+
1223
+ [[package]]
1224
+ name = "form_urlencoded"
1225
+ version = "1.2.2"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1228
+ dependencies = [
1229
+ "percent-encoding",
1230
+ ]
1231
+
1232
+ [[package]]
1233
+ name = "fs_extra"
1234
+ version = "1.3.0"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
1237
+
1238
+ [[package]]
1239
+ name = "futures"
1240
+ version = "0.3.32"
1241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1242
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
1243
+ dependencies = [
1244
+ "futures-channel",
1245
+ "futures-core",
1246
+ "futures-executor",
1247
+ "futures-io",
1248
+ "futures-sink",
1249
+ "futures-task",
1250
+ "futures-util",
1251
+ ]
1252
+
1253
+ [[package]]
1254
+ name = "futures-channel"
1255
+ version = "0.3.32"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
1258
+ dependencies = [
1259
+ "futures-core",
1260
+ "futures-sink",
1261
+ ]
1262
+
1263
+ [[package]]
1264
+ name = "futures-core"
1265
+ version = "0.3.32"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
1268
+
1269
+ [[package]]
1270
+ name = "futures-executor"
1271
+ version = "0.3.32"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
1274
+ dependencies = [
1275
+ "futures-core",
1276
+ "futures-task",
1277
+ "futures-util",
1278
+ ]
1279
+
1280
+ [[package]]
1281
+ name = "futures-io"
1282
+ version = "0.3.32"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
1285
+
1286
+ [[package]]
1287
+ name = "futures-macro"
1288
+ version = "0.3.32"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
1291
+ dependencies = [
1292
+ "proc-macro2",
1293
+ "quote",
1294
+ "syn",
1295
+ ]
1296
+
1297
+ [[package]]
1298
+ name = "futures-sink"
1299
+ version = "0.3.32"
1300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
1302
+
1303
+ [[package]]
1304
+ name = "futures-task"
1305
+ version = "0.3.32"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
1308
+
1309
+ [[package]]
1310
+ name = "futures-timer"
1311
+ version = "3.0.3"
1312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1313
+ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
1314
+
1315
+ [[package]]
1316
+ name = "futures-util"
1317
+ version = "0.3.32"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
1320
+ dependencies = [
1321
+ "futures-channel",
1322
+ "futures-core",
1323
+ "futures-io",
1324
+ "futures-macro",
1325
+ "futures-sink",
1326
+ "futures-task",
1327
+ "memchr",
1328
+ "pin-project-lite",
1329
+ "slab",
1330
+ ]
1331
+
1332
+ [[package]]
1333
+ name = "generic-array"
1334
+ version = "0.14.7"
1335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1336
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1337
+ dependencies = [
1338
+ "typenum",
1339
+ "version_check",
1340
+ ]
1341
+
1342
+ [[package]]
1343
+ name = "getrandom"
1344
+ version = "0.2.17"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1347
+ dependencies = [
1348
+ "cfg-if",
1349
+ "js-sys",
1350
+ "libc",
1351
+ "wasi",
1352
+ "wasm-bindgen",
1353
+ ]
1354
+
1355
+ [[package]]
1356
+ name = "getrandom"
1357
+ version = "0.3.4"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1360
+ dependencies = [
1361
+ "cfg-if",
1362
+ "js-sys",
1363
+ "libc",
1364
+ "r-efi 5.3.0",
1365
+ "wasip2",
1366
+ "wasm-bindgen",
1367
+ ]
1368
+
1369
+ [[package]]
1370
+ name = "getrandom"
1371
+ version = "0.4.2"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
1374
+ dependencies = [
1375
+ "cfg-if",
1376
+ "js-sys",
1377
+ "libc",
1378
+ "r-efi 6.0.0",
1379
+ "wasip2",
1380
+ "wasip3",
1381
+ "wasm-bindgen",
1382
+ ]
1383
+
1384
+ [[package]]
1385
+ name = "gif"
1386
+ version = "0.14.2"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "ee8cfcc411d9adbbaba82fb72661cc1bcca13e8bba98b364e62b2dba8f960159"
1389
+ dependencies = [
1390
+ "color_quant",
1391
+ "weezl",
1392
+ ]
1393
+
1394
+ [[package]]
1395
+ name = "glob"
1396
+ version = "0.3.3"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1399
+
1400
+ [[package]]
1401
+ name = "h2"
1402
+ version = "0.4.13"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
1405
+ dependencies = [
1406
+ "atomic-waker",
1407
+ "bytes",
1408
+ "fnv",
1409
+ "futures-core",
1410
+ "futures-sink",
1411
+ "http",
1412
+ "indexmap",
1413
+ "slab",
1414
+ "tokio",
1415
+ "tokio-util",
1416
+ "tracing",
1417
+ ]
1418
+
1419
+ [[package]]
1420
+ name = "hashbrown"
1421
+ version = "0.14.5"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1424
+
1425
+ [[package]]
1426
+ name = "hashbrown"
1427
+ version = "0.15.5"
1428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1429
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1430
+ dependencies = [
1431
+ "foldhash 0.1.5",
1432
+ ]
1433
+
1434
+ [[package]]
1435
+ name = "hashbrown"
1436
+ version = "0.17.0"
1437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1438
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
1439
+ dependencies = [
1440
+ "allocator-api2",
1441
+ "equivalent",
1442
+ "foldhash 0.2.0",
1443
+ ]
1444
+
1445
+ [[package]]
1446
+ name = "heck"
1447
+ version = "0.5.0"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1450
+
1451
+ [[package]]
1452
+ name = "hermit-abi"
1453
+ version = "0.5.2"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1456
+
1457
+ [[package]]
1458
+ name = "hmac"
1459
+ version = "0.12.1"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1462
+ dependencies = [
1463
+ "digest 0.10.7",
1464
+ ]
1465
+
1466
+ [[package]]
1467
+ name = "html-escape"
1468
+ version = "0.2.13"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
1471
+ dependencies = [
1472
+ "utf8-width",
1473
+ ]
1474
+
1475
+ [[package]]
1476
+ name = "html-to-markdown-rs"
1477
+ version = "3.2.5"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "bcb619abe81160bba2e2185823e10f6c0793220a266f16791aa715287de322cd"
1480
+ dependencies = [
1481
+ "ahash",
1482
+ "astral-tl",
1483
+ "base64",
1484
+ "html-escape",
1485
+ "html5ever",
1486
+ "image",
1487
+ "lru",
1488
+ "memchr",
1489
+ "once_cell",
1490
+ "regex",
1491
+ "serde",
1492
+ "serde_json",
1493
+ "thiserror 2.0.18",
1494
+ ]
1495
+
1496
+ [[package]]
1497
+ name = "html5ever"
1498
+ version = "0.39.0"
1499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1500
+ checksum = "46a1761807faccc9a19e86944bbf40610014066306f96edcdedc2fb714bcb7b8"
1501
+ dependencies = [
1502
+ "log",
1503
+ "markup5ever",
1504
+ ]
1505
+
1506
+ [[package]]
1507
+ name = "http"
1508
+ version = "1.4.0"
1509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1510
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1511
+ dependencies = [
1512
+ "bytes",
1513
+ "itoa",
1514
+ ]
1515
+
1516
+ [[package]]
1517
+ name = "http-body"
1518
+ version = "1.0.1"
1519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1521
+ dependencies = [
1522
+ "bytes",
1523
+ "http",
1524
+ ]
1525
+
1526
+ [[package]]
1527
+ name = "http-body-util"
1528
+ version = "0.1.3"
1529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1530
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1531
+ dependencies = [
1532
+ "bytes",
1533
+ "futures-core",
1534
+ "http",
1535
+ "http-body",
1536
+ "pin-project-lite",
1537
+ ]
1538
+
1539
+ [[package]]
1540
+ name = "httparse"
1541
+ version = "1.10.1"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1544
+
1545
+ [[package]]
1546
+ name = "httpdate"
1547
+ version = "1.0.3"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1550
+
1551
+ [[package]]
1552
+ name = "hybrid-array"
1553
+ version = "0.4.10"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "3944cf8cf766b40e2a1a333ee5e9b563f854d5fa49d6a8ca2764e97c6eddb214"
1556
+ dependencies = [
1557
+ "typenum",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "hyper"
1562
+ version = "1.9.0"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
1565
+ dependencies = [
1566
+ "atomic-waker",
1567
+ "bytes",
1568
+ "futures-channel",
1569
+ "futures-core",
1570
+ "h2",
1571
+ "http",
1572
+ "http-body",
1573
+ "httparse",
1574
+ "httpdate",
1575
+ "itoa",
1576
+ "pin-project-lite",
1577
+ "smallvec",
1578
+ "tokio",
1579
+ "want",
1580
+ ]
1581
+
1582
+ [[package]]
1583
+ name = "hyper-rustls"
1584
+ version = "0.27.9"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
1587
+ dependencies = [
1588
+ "http",
1589
+ "hyper",
1590
+ "hyper-util",
1591
+ "rustls",
1592
+ "tokio",
1593
+ "tokio-rustls",
1594
+ "tower-service",
1595
+ ]
1596
+
1597
+ [[package]]
1598
+ name = "hyper-util"
1599
+ version = "0.1.20"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1602
+ dependencies = [
1603
+ "base64",
1604
+ "bytes",
1605
+ "futures-channel",
1606
+ "futures-util",
1607
+ "http",
1608
+ "http-body",
1609
+ "hyper",
1610
+ "ipnet",
1611
+ "libc",
1612
+ "percent-encoding",
1613
+ "pin-project-lite",
1614
+ "socket2",
1615
+ "system-configuration",
1616
+ "tokio",
1617
+ "tower-service",
1618
+ "tracing",
1619
+ "windows-registry",
1620
+ ]
1621
+
1622
+ [[package]]
1623
+ name = "iana-time-zone"
1624
+ version = "0.1.65"
1625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1626
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1627
+ dependencies = [
1628
+ "android_system_properties",
1629
+ "core-foundation-sys",
1630
+ "iana-time-zone-haiku",
1631
+ "js-sys",
1632
+ "log",
1633
+ "wasm-bindgen",
1634
+ "windows-core",
1635
+ ]
1636
+
1637
+ [[package]]
1638
+ name = "iana-time-zone-haiku"
1639
+ version = "0.1.2"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1642
+ dependencies = [
1643
+ "cc",
1644
+ ]
1645
+
1646
+ [[package]]
1647
+ name = "icu_collections"
1648
+ version = "2.2.0"
1649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1650
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1651
+ dependencies = [
1652
+ "displaydoc",
1653
+ "potential_utf",
1654
+ "utf8_iter",
1655
+ "yoke",
1656
+ "zerofrom",
1657
+ "zerovec",
1658
+ ]
1659
+
1660
+ [[package]]
1661
+ name = "icu_locale_core"
1662
+ version = "2.2.0"
1663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1665
+ dependencies = [
1666
+ "displaydoc",
1667
+ "litemap",
1668
+ "tinystr",
1669
+ "writeable",
1670
+ "zerovec",
1671
+ ]
1672
+
1673
+ [[package]]
1674
+ name = "icu_normalizer"
1675
+ version = "2.2.0"
1676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1677
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1678
+ dependencies = [
1679
+ "icu_collections",
1680
+ "icu_normalizer_data",
1681
+ "icu_properties",
1682
+ "icu_provider",
1683
+ "smallvec",
1684
+ "zerovec",
1685
+ ]
1686
+
1687
+ [[package]]
1688
+ name = "icu_normalizer_data"
1689
+ version = "2.2.0"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1692
+
1693
+ [[package]]
1694
+ name = "icu_properties"
1695
+ version = "2.2.0"
1696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1697
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1698
+ dependencies = [
1699
+ "icu_collections",
1700
+ "icu_locale_core",
1701
+ "icu_properties_data",
1702
+ "icu_provider",
1703
+ "zerotrie",
1704
+ "zerovec",
1705
+ ]
1706
+
1707
+ [[package]]
1708
+ name = "icu_properties_data"
1709
+ version = "2.2.0"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1712
+
1713
+ [[package]]
1714
+ name = "icu_provider"
1715
+ version = "2.2.0"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1718
+ dependencies = [
1719
+ "displaydoc",
1720
+ "icu_locale_core",
1721
+ "writeable",
1722
+ "yoke",
1723
+ "zerofrom",
1724
+ "zerotrie",
1725
+ "zerovec",
1726
+ ]
1727
+
1728
+ [[package]]
1729
+ name = "id-arena"
1730
+ version = "2.3.0"
1731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1732
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1733
+
1734
+ [[package]]
1735
+ name = "ident_case"
1736
+ version = "1.0.1"
1737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1738
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1739
+
1740
+ [[package]]
1741
+ name = "idna"
1742
+ version = "1.1.0"
1743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1744
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1745
+ dependencies = [
1746
+ "idna_adapter",
1747
+ "smallvec",
1748
+ "utf8_iter",
1749
+ ]
1750
+
1751
+ [[package]]
1752
+ name = "idna_adapter"
1753
+ version = "1.2.1"
1754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1755
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1756
+ dependencies = [
1757
+ "icu_normalizer",
1758
+ "icu_properties",
1759
+ ]
1760
+
1761
+ [[package]]
1762
+ name = "image"
1763
+ version = "0.25.10"
1764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1765
+ checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
1766
+ dependencies = [
1767
+ "bytemuck",
1768
+ "byteorder-lite",
1769
+ "color_quant",
1770
+ "gif",
1771
+ "image-webp",
1772
+ "moxcms",
1773
+ "num-traits",
1774
+ "png",
1775
+ "zune-core",
1776
+ "zune-jpeg",
1777
+ ]
1778
+
1779
+ [[package]]
1780
+ name = "image-webp"
1781
+ version = "0.2.4"
1782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1783
+ checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
1784
+ dependencies = [
1785
+ "byteorder-lite",
1786
+ "quick-error",
1787
+ ]
1788
+
1789
+ [[package]]
1790
+ name = "indexmap"
1791
+ version = "2.14.0"
1792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1793
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1794
+ dependencies = [
1795
+ "equivalent",
1796
+ "hashbrown 0.17.0",
1797
+ "serde",
1798
+ "serde_core",
1799
+ ]
1800
+
1801
+ [[package]]
1802
+ name = "inout"
1803
+ version = "0.1.4"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1806
+ dependencies = [
1807
+ "generic-array",
1808
+ ]
1809
+
1810
+ [[package]]
1811
+ name = "inventory"
1812
+ version = "0.3.24"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
1815
+ dependencies = [
1816
+ "rustversion",
1817
+ ]
1818
+
1819
+ [[package]]
1820
+ name = "ipnet"
1821
+ version = "2.12.0"
1822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1823
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1824
+
1825
+ [[package]]
1826
+ name = "iri-string"
1827
+ version = "0.7.12"
1828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1829
+ checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
1830
+ dependencies = [
1831
+ "memchr",
1832
+ "serde",
1833
+ ]
1834
+
1835
+ [[package]]
1836
+ name = "is_terminal_polyfill"
1837
+ version = "1.70.2"
1838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1839
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1840
+
1841
+ [[package]]
1842
+ name = "itertools"
1843
+ version = "0.14.0"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1846
+ dependencies = [
1847
+ "either",
1848
+ ]
1849
+
1850
+ [[package]]
1851
+ name = "itoa"
1852
+ version = "1.0.18"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1855
+
1856
+ [[package]]
1857
+ name = "jni"
1858
+ version = "0.21.1"
1859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1860
+ checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
1861
+ dependencies = [
1862
+ "cesu8",
1863
+ "cfg-if",
1864
+ "combine",
1865
+ "jni-sys 0.3.1",
1866
+ "log",
1867
+ "thiserror 1.0.69",
1868
+ "walkdir",
1869
+ "windows-sys 0.45.0",
1870
+ ]
1871
+
1872
+ [[package]]
1873
+ name = "jni-sys"
1874
+ version = "0.3.1"
1875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1876
+ checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
1877
+ dependencies = [
1878
+ "jni-sys 0.4.1",
1879
+ ]
1880
+
1881
+ [[package]]
1882
+ name = "jni-sys"
1883
+ version = "0.4.1"
1884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1885
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
1886
+ dependencies = [
1887
+ "jni-sys-macros",
1888
+ ]
1889
+
1890
+ [[package]]
1891
+ name = "jni-sys-macros"
1892
+ version = "0.4.1"
1893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1894
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
1895
+ dependencies = [
1896
+ "quote",
1897
+ "syn",
1898
+ ]
1899
+
1900
+ [[package]]
1901
+ name = "jobserver"
1902
+ version = "0.1.34"
1903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1904
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1905
+ dependencies = [
1906
+ "getrandom 0.3.4",
1907
+ "libc",
1908
+ ]
1909
+
1910
+ [[package]]
1911
+ name = "js-sys"
1912
+ version = "0.3.95"
1913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1914
+ checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
1915
+ dependencies = [
1916
+ "cfg-if",
1917
+ "futures-util",
1918
+ "once_cell",
1919
+ "wasm-bindgen",
1920
+ ]
1921
+
1922
+ [[package]]
1923
+ name = "kreuzcrawl"
1924
+ version = "0.1.0"
1925
+ dependencies = [
1926
+ "ahash",
1927
+ "astral-tl",
1928
+ "async-trait",
1929
+ "axum",
1930
+ "base64",
1931
+ "blake3",
1932
+ "chromiumoxide",
1933
+ "chrono",
1934
+ "dashmap",
1935
+ "dirs",
1936
+ "flate2",
1937
+ "getrandom 0.4.2",
1938
+ "html-to-markdown-rs",
1939
+ "liter-llm",
1940
+ "memchr",
1941
+ "minijinja",
1942
+ "quick-xml",
1943
+ "regex",
1944
+ "reqwest",
1945
+ "rmcp",
1946
+ "schemars",
1947
+ "serde",
1948
+ "serde_json",
1949
+ "sha2 0.11.0",
1950
+ "tempfile",
1951
+ "thiserror 2.0.18",
1952
+ "tokio",
1953
+ "tokio-stream",
1954
+ "tower",
1955
+ "tower-http",
1956
+ "tracing",
1957
+ "url",
1958
+ "utoipa",
1959
+ "uuid",
1960
+ "wiremock",
1961
+ ]
1962
+
1963
+ [[package]]
1964
+ name = "kreuzcrawl-bindings-common"
1965
+ version = "0.1.0"
1966
+ dependencies = [
1967
+ "kreuzcrawl",
1968
+ ]
1969
+
1970
+ [[package]]
1971
+ name = "kreuzcrawl-cli"
1972
+ version = "0.1.0"
1973
+ dependencies = [
1974
+ "clap",
1975
+ "kreuzcrawl",
1976
+ "serde_json",
1977
+ "tokio",
1978
+ ]
1979
+
1980
+ [[package]]
1981
+ name = "kreuzcrawl-e2e-generator"
1982
+ version = "0.1.0"
1983
+ dependencies = [
1984
+ "anyhow",
1985
+ "camino",
1986
+ "clap",
1987
+ "itertools",
1988
+ "serde",
1989
+ "serde_json",
1990
+ "walkdir",
1991
+ ]
1992
+
1993
+ [[package]]
1994
+ name = "kreuzcrawl-e2e-rust"
1995
+ version = "0.1.0"
1996
+ dependencies = [
1997
+ "kreuzcrawl",
1998
+ "serde_json",
1999
+ "tokio",
2000
+ ]
2001
+
2002
+ [[package]]
2003
+ name = "kreuzcrawl-ffi"
2004
+ version = "0.1.0"
2005
+ dependencies = [
2006
+ "cbindgen",
2007
+ "kreuzcrawl",
2008
+ "serde_json",
2009
+ "tokio",
2010
+ ]
2011
+
2012
+ [[package]]
2013
+ name = "kreuzcrawl-node"
2014
+ version = "0.1.0"
2015
+ dependencies = [
2016
+ "kreuzcrawl",
2017
+ "napi",
2018
+ "napi-build",
2019
+ "napi-derive",
2020
+ "serde",
2021
+ "serde_json",
2022
+ ]
2023
+
2024
+ [[package]]
2025
+ name = "kreuzcrawl-php"
2026
+ version = "0.1.0"
2027
+ dependencies = [
2028
+ "ext-php-rs",
2029
+ "kreuzcrawl",
2030
+ "serde",
2031
+ "serde_json",
2032
+ "tokio",
2033
+ ]
2034
+
2035
+ [[package]]
2036
+ name = "kreuzcrawl-py"
2037
+ version = "0.1.0"
2038
+ dependencies = [
2039
+ "kreuzcrawl",
2040
+ "pyo3",
2041
+ "pyo3-async-runtimes",
2042
+ "serde",
2043
+ "serde_json",
2044
+ ]
2045
+
2046
+ [[package]]
2047
+ name = "kreuzcrawl-wasm"
2048
+ version = "0.1.0"
2049
+ dependencies = [
2050
+ "getrandom 0.4.2",
2051
+ "kreuzcrawl",
2052
+ "serde-wasm-bindgen",
2053
+ "wasm-bindgen",
2054
+ "wasm-bindgen-futures",
2055
+ ]
2056
+
2057
+ [[package]]
2058
+ name = "kreuzcrawl_nif"
2059
+ version = "0.1.0"
2060
+ dependencies = [
2061
+ "kreuzcrawl",
2062
+ "rustler",
2063
+ "serde",
2064
+ "serde_json",
2065
+ "tokio",
2066
+ ]
2067
+
2068
+ [[package]]
2069
+ name = "lazy_static"
2070
+ version = "1.5.0"
2071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2072
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
2073
+
2074
+ [[package]]
2075
+ name = "leb128fmt"
2076
+ version = "0.1.0"
2077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2078
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
2079
+
2080
+ [[package]]
2081
+ name = "libbz2-rs-sys"
2082
+ version = "0.2.3"
2083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2084
+ checksum = "b3a6a8c165077efc8f3a971534c50ea6a1a18b329ef4a66e897a7e3a1494565f"
2085
+
2086
+ [[package]]
2087
+ name = "libc"
2088
+ version = "0.2.185"
2089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2090
+ checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
2091
+
2092
+ [[package]]
2093
+ name = "libloading"
2094
+ version = "0.8.9"
2095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2096
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
2097
+ dependencies = [
2098
+ "cfg-if",
2099
+ "windows-link",
2100
+ ]
2101
+
2102
+ [[package]]
2103
+ name = "libloading"
2104
+ version = "0.9.0"
2105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2106
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
2107
+ dependencies = [
2108
+ "cfg-if",
2109
+ "windows-link",
2110
+ ]
2111
+
2112
+ [[package]]
2113
+ name = "libredox"
2114
+ version = "0.1.16"
2115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2116
+ checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
2117
+ dependencies = [
2118
+ "libc",
2119
+ ]
2120
+
2121
+ [[package]]
2122
+ name = "linux-raw-sys"
2123
+ version = "0.12.1"
2124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2125
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
2126
+
2127
+ [[package]]
2128
+ name = "litemap"
2129
+ version = "0.8.2"
2130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2131
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
2132
+
2133
+ [[package]]
2134
+ name = "liter-llm"
2135
+ version = "1.2.2"
2136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2137
+ checksum = "4e4ce5d2d0b09f2e63537ba40b15b0a95c2d6818ed0454eb04d9593ba4a0cad3"
2138
+ dependencies = [
2139
+ "base64",
2140
+ "bytes",
2141
+ "futures-core",
2142
+ "memchr",
2143
+ "pin-project-lite",
2144
+ "reqwest",
2145
+ "secrecy",
2146
+ "serde",
2147
+ "serde_json",
2148
+ "thiserror 2.0.18",
2149
+ "tokio",
2150
+ "toml 1.1.2+spec-1.1.0",
2151
+ ]
2152
+
2153
+ [[package]]
2154
+ name = "litrs"
2155
+ version = "1.0.0"
2156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2157
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
2158
+
2159
+ [[package]]
2160
+ name = "lock_api"
2161
+ version = "0.4.14"
2162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2163
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
2164
+ dependencies = [
2165
+ "scopeguard",
2166
+ ]
2167
+
2168
+ [[package]]
2169
+ name = "log"
2170
+ version = "0.4.29"
2171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2172
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
2173
+
2174
+ [[package]]
2175
+ name = "lru"
2176
+ version = "0.17.0"
2177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2178
+ checksum = "0e0b564323a0fb6d54b864f625ae139de9612e27edb944dda37c109f05aac531"
2179
+ dependencies = [
2180
+ "hashbrown 0.17.0",
2181
+ ]
2182
+
2183
+ [[package]]
2184
+ name = "lru-slab"
2185
+ version = "0.1.2"
2186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2187
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
2188
+
2189
+ [[package]]
2190
+ name = "lzma-rust2"
2191
+ version = "0.16.2"
2192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2193
+ checksum = "47bb1e988e6fb779cf720ad431242d3f03167c1b3f2b1aae7f1a94b2495b36ae"
2194
+ dependencies = [
2195
+ "sha2 0.10.9",
2196
+ ]
2197
+
2198
+ [[package]]
2199
+ name = "markup5ever"
2200
+ version = "0.39.0"
2201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2202
+ checksum = "7122d987ec5f704ee56f6e5b41a7d93722e9aae27ae07cafa4036c4d3f9757de"
2203
+ dependencies = [
2204
+ "log",
2205
+ "tendril",
2206
+ "web_atoms",
2207
+ ]
2208
+
2209
+ [[package]]
2210
+ name = "matchers"
2211
+ version = "0.2.0"
2212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2213
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
2214
+ dependencies = [
2215
+ "regex-automata",
2216
+ ]
2217
+
2218
+ [[package]]
2219
+ name = "matchit"
2220
+ version = "0.8.4"
2221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2222
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
2223
+
2224
+ [[package]]
2225
+ name = "memchr"
2226
+ version = "2.8.0"
2227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2228
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
2229
+
2230
+ [[package]]
2231
+ name = "memo-map"
2232
+ version = "0.3.3"
2233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2234
+ checksum = "38d1115007560874e373613744c6fba374c17688327a71c1476d1a5954cc857b"
2235
+
2236
+ [[package]]
2237
+ name = "mime"
2238
+ version = "0.3.17"
2239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2240
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2241
+
2242
+ [[package]]
2243
+ name = "mime_guess"
2244
+ version = "2.0.5"
2245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2246
+ checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
2247
+ dependencies = [
2248
+ "mime",
2249
+ "unicase",
2250
+ ]
2251
+
2252
+ [[package]]
2253
+ name = "minijinja"
2254
+ version = "2.19.0"
2255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2256
+ checksum = "805bfd7352166bae857ee569628b52bcd85a1cecf7810861ebceb1686b72b75d"
2257
+ dependencies = [
2258
+ "memo-map",
2259
+ "serde",
2260
+ ]
2261
+
2262
+ [[package]]
2263
+ name = "minimal-lexical"
2264
+ version = "0.2.1"
2265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2266
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2267
+
2268
+ [[package]]
2269
+ name = "miniz_oxide"
2270
+ version = "0.8.9"
2271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2272
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
2273
+ dependencies = [
2274
+ "adler2",
2275
+ "simd-adler32",
2276
+ ]
2277
+
2278
+ [[package]]
2279
+ name = "mio"
2280
+ version = "1.2.0"
2281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2282
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
2283
+ dependencies = [
2284
+ "libc",
2285
+ "wasi",
2286
+ "windows-sys 0.61.2",
2287
+ ]
2288
+
2289
+ [[package]]
2290
+ name = "mock-server"
2291
+ version = "0.1.0"
2292
+ dependencies = [
2293
+ "axum",
2294
+ "clap",
2295
+ "serde",
2296
+ "serde_json",
2297
+ "tokio",
2298
+ "tracing-subscriber",
2299
+ ]
2300
+
2301
+ [[package]]
2302
+ name = "moxcms"
2303
+ version = "0.8.1"
2304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2305
+ checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
2306
+ dependencies = [
2307
+ "num-traits",
2308
+ "pxfm",
2309
+ ]
2310
+
2311
+ [[package]]
2312
+ name = "napi"
2313
+ version = "3.8.5"
2314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2315
+ checksum = "fa73b028610e2b26e9e40bd2c8ff8a98e6d7ed5d67d89ebf4bfd2f992616b024"
2316
+ dependencies = [
2317
+ "bitflags",
2318
+ "ctor",
2319
+ "futures",
2320
+ "napi-build",
2321
+ "napi-sys",
2322
+ "nohash-hasher",
2323
+ "rustc-hash",
2324
+ "tokio",
2325
+ ]
2326
+
2327
+ [[package]]
2328
+ name = "napi-build"
2329
+ version = "2.3.1"
2330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2331
+ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
2332
+
2333
+ [[package]]
2334
+ name = "napi-derive"
2335
+ version = "3.5.4"
2336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2337
+ checksum = "7430702d3cc05cf55f0a2c9e41d991c3b7a53f91e6146a8f282b1bfc7f3fd133"
2338
+ dependencies = [
2339
+ "convert_case",
2340
+ "ctor",
2341
+ "napi-derive-backend",
2342
+ "proc-macro2",
2343
+ "quote",
2344
+ "syn",
2345
+ ]
2346
+
2347
+ [[package]]
2348
+ name = "napi-derive-backend"
2349
+ version = "5.0.3"
2350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2351
+ checksum = "1ca5a083f2c9b49a0c7d33ec75c083498849c6fcc46f5497317faa39ea77f5d5"
2352
+ dependencies = [
2353
+ "convert_case",
2354
+ "proc-macro2",
2355
+ "quote",
2356
+ "semver",
2357
+ "syn",
2358
+ ]
2359
+
2360
+ [[package]]
2361
+ name = "napi-sys"
2362
+ version = "3.2.1"
2363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2364
+ checksum = "8eb602b84d7c1edae45e50bbf1374696548f36ae179dfa667f577e384bb90c2b"
2365
+ dependencies = [
2366
+ "libloading 0.9.0",
2367
+ ]
2368
+
2369
+ [[package]]
2370
+ name = "native-tls"
2371
+ version = "0.2.18"
2372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2373
+ checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
2374
+ dependencies = [
2375
+ "libc",
2376
+ "log",
2377
+ "openssl",
2378
+ "openssl-probe",
2379
+ "openssl-sys",
2380
+ "schannel",
2381
+ "security-framework",
2382
+ "security-framework-sys",
2383
+ "tempfile",
2384
+ ]
2385
+
2386
+ [[package]]
2387
+ name = "new_debug_unreachable"
2388
+ version = "1.0.6"
2389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2390
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
2391
+
2392
+ [[package]]
2393
+ name = "nohash-hasher"
2394
+ version = "0.2.0"
2395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2396
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
2397
+
2398
+ [[package]]
2399
+ name = "nom"
2400
+ version = "7.1.3"
2401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2402
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2403
+ dependencies = [
2404
+ "memchr",
2405
+ "minimal-lexical",
2406
+ ]
2407
+
2408
+ [[package]]
2409
+ name = "nu-ansi-term"
2410
+ version = "0.50.3"
2411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2412
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
2413
+ dependencies = [
2414
+ "windows-sys 0.61.2",
2415
+ ]
2416
+
2417
+ [[package]]
2418
+ name = "num-conv"
2419
+ version = "0.2.1"
2420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2421
+ checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
2422
+
2423
+ [[package]]
2424
+ name = "num-traits"
2425
+ version = "0.2.19"
2426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2427
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2428
+ dependencies = [
2429
+ "autocfg",
2430
+ ]
2431
+
2432
+ [[package]]
2433
+ name = "num_cpus"
2434
+ version = "1.17.0"
2435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2436
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
2437
+ dependencies = [
2438
+ "hermit-abi",
2439
+ "libc",
2440
+ ]
2441
+
2442
+ [[package]]
2443
+ name = "once_cell"
2444
+ version = "1.21.4"
2445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2446
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
2447
+
2448
+ [[package]]
2449
+ name = "once_cell_polyfill"
2450
+ version = "1.70.2"
2451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2452
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
2453
+
2454
+ [[package]]
2455
+ name = "openssl"
2456
+ version = "0.10.78"
2457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2458
+ checksum = "f38c4372413cdaaf3cc79dd92d29d7d9f5ab09b51b10dded508fb90bb70b9222"
2459
+ dependencies = [
2460
+ "bitflags",
2461
+ "cfg-if",
2462
+ "foreign-types",
2463
+ "libc",
2464
+ "once_cell",
2465
+ "openssl-macros",
2466
+ "openssl-sys",
2467
+ ]
2468
+
2469
+ [[package]]
2470
+ name = "openssl-macros"
2471
+ version = "0.1.1"
2472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2473
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
2474
+ dependencies = [
2475
+ "proc-macro2",
2476
+ "quote",
2477
+ "syn",
2478
+ ]
2479
+
2480
+ [[package]]
2481
+ name = "openssl-probe"
2482
+ version = "0.2.1"
2483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2484
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
2485
+
2486
+ [[package]]
2487
+ name = "openssl-sys"
2488
+ version = "0.9.114"
2489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2490
+ checksum = "13ce1245cd07fcc4cfdb438f7507b0c7e4f3849a69fd84d52374c66d83741bb6"
2491
+ dependencies = [
2492
+ "cc",
2493
+ "libc",
2494
+ "pkg-config",
2495
+ "vcpkg",
2496
+ ]
2497
+
2498
+ [[package]]
2499
+ name = "option-ext"
2500
+ version = "0.2.0"
2501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2502
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
2503
+
2504
+ [[package]]
2505
+ name = "parking_lot"
2506
+ version = "0.12.5"
2507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2508
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2509
+ dependencies = [
2510
+ "lock_api",
2511
+ "parking_lot_core",
2512
+ ]
2513
+
2514
+ [[package]]
2515
+ name = "parking_lot_core"
2516
+ version = "0.9.12"
2517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2518
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2519
+ dependencies = [
2520
+ "cfg-if",
2521
+ "libc",
2522
+ "redox_syscall",
2523
+ "smallvec",
2524
+ "windows-link",
2525
+ ]
2526
+
2527
+ [[package]]
2528
+ name = "pastey"
2529
+ version = "0.2.1"
2530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2531
+ checksum = "b867cad97c0791bbd3aaa6472142568c6c9e8f71937e98379f584cfb0cf35bec"
2532
+
2533
+ [[package]]
2534
+ name = "pbkdf2"
2535
+ version = "0.12.2"
2536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2537
+ checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
2538
+ dependencies = [
2539
+ "digest 0.10.7",
2540
+ "hmac",
2541
+ ]
2542
+
2543
+ [[package]]
2544
+ name = "pem-rfc7468"
2545
+ version = "1.0.0"
2546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2547
+ checksum = "a6305423e0e7738146434843d1694d621cce767262b2a86910beab705e4493d9"
2548
+ dependencies = [
2549
+ "base64ct",
2550
+ ]
2551
+
2552
+ [[package]]
2553
+ name = "percent-encoding"
2554
+ version = "2.3.2"
2555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2556
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2557
+
2558
+ [[package]]
2559
+ name = "phf"
2560
+ version = "0.13.1"
2561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2562
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
2563
+ dependencies = [
2564
+ "phf_shared",
2565
+ "serde",
2566
+ ]
2567
+
2568
+ [[package]]
2569
+ name = "phf_codegen"
2570
+ version = "0.13.1"
2571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2572
+ checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1"
2573
+ dependencies = [
2574
+ "phf_generator",
2575
+ "phf_shared",
2576
+ ]
2577
+
2578
+ [[package]]
2579
+ name = "phf_generator"
2580
+ version = "0.13.1"
2581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2582
+ checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
2583
+ dependencies = [
2584
+ "fastrand",
2585
+ "phf_shared",
2586
+ ]
2587
+
2588
+ [[package]]
2589
+ name = "phf_shared"
2590
+ version = "0.13.1"
2591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2592
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
2593
+ dependencies = [
2594
+ "siphasher",
2595
+ ]
2596
+
2597
+ [[package]]
2598
+ name = "pin-project-lite"
2599
+ version = "0.2.17"
2600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2601
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
2602
+
2603
+ [[package]]
2604
+ name = "pkg-config"
2605
+ version = "0.3.33"
2606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2607
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
2608
+
2609
+ [[package]]
2610
+ name = "png"
2611
+ version = "0.18.1"
2612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2613
+ checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
2614
+ dependencies = [
2615
+ "bitflags",
2616
+ "crc32fast",
2617
+ "fdeflate",
2618
+ "flate2",
2619
+ "miniz_oxide",
2620
+ ]
2621
+
2622
+ [[package]]
2623
+ name = "portable-atomic"
2624
+ version = "1.13.1"
2625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2626
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2627
+
2628
+ [[package]]
2629
+ name = "potential_utf"
2630
+ version = "0.1.5"
2631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2632
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
2633
+ dependencies = [
2634
+ "zerovec",
2635
+ ]
2636
+
2637
+ [[package]]
2638
+ name = "powerfmt"
2639
+ version = "0.2.0"
2640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2641
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2642
+
2643
+ [[package]]
2644
+ name = "ppmd-rust"
2645
+ version = "1.4.0"
2646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2647
+ checksum = "efca4c95a19a79d1c98f791f10aebd5c1363b473244630bb7dbde1dc98455a24"
2648
+
2649
+ [[package]]
2650
+ name = "ppv-lite86"
2651
+ version = "0.2.21"
2652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2653
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2654
+ dependencies = [
2655
+ "zerocopy",
2656
+ ]
2657
+
2658
+ [[package]]
2659
+ name = "precomputed-hash"
2660
+ version = "0.1.1"
2661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2662
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
2663
+
2664
+ [[package]]
2665
+ name = "prettyplease"
2666
+ version = "0.2.37"
2667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2668
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2669
+ dependencies = [
2670
+ "proc-macro2",
2671
+ "syn",
2672
+ ]
2673
+
2674
+ [[package]]
2675
+ name = "proc-macro2"
2676
+ version = "1.0.106"
2677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2678
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2679
+ dependencies = [
2680
+ "unicode-ident",
2681
+ ]
2682
+
2683
+ [[package]]
2684
+ name = "psl-types"
2685
+ version = "2.0.11"
2686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2687
+ checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
2688
+
2689
+ [[package]]
2690
+ name = "publicsuffix"
2691
+ version = "2.3.0"
2692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2693
+ checksum = "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf"
2694
+ dependencies = [
2695
+ "idna",
2696
+ "psl-types",
2697
+ ]
2698
+
2699
+ [[package]]
2700
+ name = "pulldown-cmark"
2701
+ version = "0.9.6"
2702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2703
+ checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
2704
+ dependencies = [
2705
+ "bitflags",
2706
+ "memchr",
2707
+ "unicase",
2708
+ ]
2709
+
2710
+ [[package]]
2711
+ name = "pxfm"
2712
+ version = "0.1.29"
2713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2714
+ checksum = "e0c5ccf5294c6ccd63a74f1565028353830a9c2f5eb0c682c355c471726a6e3f"
2715
+
2716
+ [[package]]
2717
+ name = "pyo3"
2718
+ version = "0.28.3"
2719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2720
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
2721
+ dependencies = [
2722
+ "libc",
2723
+ "once_cell",
2724
+ "portable-atomic",
2725
+ "pyo3-build-config",
2726
+ "pyo3-ffi",
2727
+ "pyo3-macros",
2728
+ ]
2729
+
2730
+ [[package]]
2731
+ name = "pyo3-async-runtimes"
2732
+ version = "0.28.0"
2733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2734
+ checksum = "9e7364a95bf00e8377bbf9b0f09d7ff9715a29d8fcf93b47d1a967363b973178"
2735
+ dependencies = [
2736
+ "futures-channel",
2737
+ "futures-util",
2738
+ "once_cell",
2739
+ "pin-project-lite",
2740
+ "pyo3",
2741
+ "tokio",
2742
+ ]
2743
+
2744
+ [[package]]
2745
+ name = "pyo3-build-config"
2746
+ version = "0.28.3"
2747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2748
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
2749
+ dependencies = [
2750
+ "target-lexicon",
2751
+ ]
2752
+
2753
+ [[package]]
2754
+ name = "pyo3-ffi"
2755
+ version = "0.28.3"
2756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2757
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
2758
+ dependencies = [
2759
+ "libc",
2760
+ "pyo3-build-config",
2761
+ ]
2762
+
2763
+ [[package]]
2764
+ name = "pyo3-macros"
2765
+ version = "0.28.3"
2766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2767
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
2768
+ dependencies = [
2769
+ "proc-macro2",
2770
+ "pyo3-macros-backend",
2771
+ "quote",
2772
+ "syn",
2773
+ ]
2774
+
2775
+ [[package]]
2776
+ name = "pyo3-macros-backend"
2777
+ version = "0.28.3"
2778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2779
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
2780
+ dependencies = [
2781
+ "heck",
2782
+ "proc-macro2",
2783
+ "pyo3-build-config",
2784
+ "quote",
2785
+ "syn",
2786
+ ]
2787
+
2788
+ [[package]]
2789
+ name = "quick-error"
2790
+ version = "2.0.1"
2791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2792
+ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
2793
+
2794
+ [[package]]
2795
+ name = "quick-xml"
2796
+ version = "0.39.2"
2797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2798
+ checksum = "958f21e8e7ceb5a1aa7fa87fab28e7c75976e0bfe7e23ff069e0a260f894067d"
2799
+ dependencies = [
2800
+ "memchr",
2801
+ ]
2802
+
2803
+ [[package]]
2804
+ name = "quinn"
2805
+ version = "0.11.9"
2806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2807
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2808
+ dependencies = [
2809
+ "bytes",
2810
+ "cfg_aliases",
2811
+ "pin-project-lite",
2812
+ "quinn-proto",
2813
+ "quinn-udp",
2814
+ "rustc-hash",
2815
+ "rustls",
2816
+ "socket2",
2817
+ "thiserror 2.0.18",
2818
+ "tokio",
2819
+ "tracing",
2820
+ "web-time",
2821
+ ]
2822
+
2823
+ [[package]]
2824
+ name = "quinn-proto"
2825
+ version = "0.11.14"
2826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2827
+ checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
2828
+ dependencies = [
2829
+ "aws-lc-rs",
2830
+ "bytes",
2831
+ "getrandom 0.3.4",
2832
+ "lru-slab",
2833
+ "rand",
2834
+ "ring",
2835
+ "rustc-hash",
2836
+ "rustls",
2837
+ "rustls-pki-types",
2838
+ "slab",
2839
+ "thiserror 2.0.18",
2840
+ "tinyvec",
2841
+ "tracing",
2842
+ "web-time",
2843
+ ]
2844
+
2845
+ [[package]]
2846
+ name = "quinn-udp"
2847
+ version = "0.5.14"
2848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2849
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2850
+ dependencies = [
2851
+ "cfg_aliases",
2852
+ "libc",
2853
+ "once_cell",
2854
+ "socket2",
2855
+ "tracing",
2856
+ "windows-sys 0.60.2",
2857
+ ]
2858
+
2859
+ [[package]]
2860
+ name = "quote"
2861
+ version = "1.0.45"
2862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2863
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
2864
+ dependencies = [
2865
+ "proc-macro2",
2866
+ ]
2867
+
2868
+ [[package]]
2869
+ name = "r-efi"
2870
+ version = "5.3.0"
2871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2872
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2873
+
2874
+ [[package]]
2875
+ name = "r-efi"
2876
+ version = "6.0.0"
2877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2878
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2879
+
2880
+ [[package]]
2881
+ name = "rand"
2882
+ version = "0.9.4"
2883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2884
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
2885
+ dependencies = [
2886
+ "rand_chacha",
2887
+ "rand_core",
2888
+ ]
2889
+
2890
+ [[package]]
2891
+ name = "rand_chacha"
2892
+ version = "0.9.0"
2893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2894
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2895
+ dependencies = [
2896
+ "ppv-lite86",
2897
+ "rand_core",
2898
+ ]
2899
+
2900
+ [[package]]
2901
+ name = "rand_core"
2902
+ version = "0.9.5"
2903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2904
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2905
+ dependencies = [
2906
+ "getrandom 0.3.4",
2907
+ ]
2908
+
2909
+ [[package]]
2910
+ name = "rayon"
2911
+ version = "1.12.0"
2912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2913
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
2914
+ dependencies = [
2915
+ "either",
2916
+ "rayon-core",
2917
+ ]
2918
+
2919
+ [[package]]
2920
+ name = "rayon-core"
2921
+ version = "1.13.0"
2922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2923
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2924
+ dependencies = [
2925
+ "crossbeam-deque",
2926
+ "crossbeam-utils",
2927
+ ]
2928
+
2929
+ [[package]]
2930
+ name = "redox_syscall"
2931
+ version = "0.5.18"
2932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2933
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2934
+ dependencies = [
2935
+ "bitflags",
2936
+ ]
2937
+
2938
+ [[package]]
2939
+ name = "redox_users"
2940
+ version = "0.5.2"
2941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2942
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
2943
+ dependencies = [
2944
+ "getrandom 0.2.17",
2945
+ "libredox",
2946
+ "thiserror 2.0.18",
2947
+ ]
2948
+
2949
+ [[package]]
2950
+ name = "ref-cast"
2951
+ version = "1.0.25"
2952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2953
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
2954
+ dependencies = [
2955
+ "ref-cast-impl",
2956
+ ]
2957
+
2958
+ [[package]]
2959
+ name = "ref-cast-impl"
2960
+ version = "1.0.25"
2961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2962
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
2963
+ dependencies = [
2964
+ "proc-macro2",
2965
+ "quote",
2966
+ "syn",
2967
+ ]
2968
+
2969
+ [[package]]
2970
+ name = "regex"
2971
+ version = "1.12.3"
2972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2973
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2974
+ dependencies = [
2975
+ "aho-corasick",
2976
+ "memchr",
2977
+ "regex-automata",
2978
+ "regex-syntax",
2979
+ ]
2980
+
2981
+ [[package]]
2982
+ name = "regex-automata"
2983
+ version = "0.4.14"
2984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2985
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2986
+ dependencies = [
2987
+ "aho-corasick",
2988
+ "memchr",
2989
+ "regex-syntax",
2990
+ ]
2991
+
2992
+ [[package]]
2993
+ name = "regex-lite"
2994
+ version = "0.1.9"
2995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2996
+ checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973"
2997
+
2998
+ [[package]]
2999
+ name = "regex-syntax"
3000
+ version = "0.8.10"
3001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3002
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
3003
+
3004
+ [[package]]
3005
+ name = "reqwest"
3006
+ version = "0.13.2"
3007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3008
+ checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801"
3009
+ dependencies = [
3010
+ "base64",
3011
+ "bytes",
3012
+ "cookie",
3013
+ "cookie_store",
3014
+ "encoding_rs",
3015
+ "futures-core",
3016
+ "futures-util",
3017
+ "h2",
3018
+ "http",
3019
+ "http-body",
3020
+ "http-body-util",
3021
+ "hyper",
3022
+ "hyper-rustls",
3023
+ "hyper-util",
3024
+ "js-sys",
3025
+ "log",
3026
+ "mime",
3027
+ "mime_guess",
3028
+ "percent-encoding",
3029
+ "pin-project-lite",
3030
+ "quinn",
3031
+ "rustls",
3032
+ "rustls-pki-types",
3033
+ "rustls-platform-verifier",
3034
+ "serde",
3035
+ "serde_json",
3036
+ "serde_urlencoded",
3037
+ "sync_wrapper",
3038
+ "tokio",
3039
+ "tokio-rustls",
3040
+ "tokio-util",
3041
+ "tower",
3042
+ "tower-http",
3043
+ "tower-service",
3044
+ "url",
3045
+ "wasm-bindgen",
3046
+ "wasm-bindgen-futures",
3047
+ "wasm-streams",
3048
+ "web-sys",
3049
+ ]
3050
+
3051
+ [[package]]
3052
+ name = "ring"
3053
+ version = "0.17.14"
3054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3055
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
3056
+ dependencies = [
3057
+ "cc",
3058
+ "cfg-if",
3059
+ "getrandom 0.2.17",
3060
+ "libc",
3061
+ "untrusted",
3062
+ "windows-sys 0.52.0",
3063
+ ]
3064
+
3065
+ [[package]]
3066
+ name = "rmcp"
3067
+ version = "1.5.0"
3068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3069
+ checksum = "67d69668de0b0ccd9cc435f700f3b39a7861863cf37a15e1f304ea78688a4826"
3070
+ dependencies = [
3071
+ "async-trait",
3072
+ "base64",
3073
+ "chrono",
3074
+ "futures",
3075
+ "pastey",
3076
+ "pin-project-lite",
3077
+ "rmcp-macros",
3078
+ "schemars",
3079
+ "serde",
3080
+ "serde_json",
3081
+ "thiserror 2.0.18",
3082
+ "tokio",
3083
+ "tokio-util",
3084
+ "tracing",
3085
+ ]
3086
+
3087
+ [[package]]
3088
+ name = "rmcp-macros"
3089
+ version = "1.5.0"
3090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3091
+ checksum = "48fdc01c81097b0aed18633e676e269fefa3a78ec1df56b4fe597c1241b92025"
3092
+ dependencies = [
3093
+ "darling",
3094
+ "proc-macro2",
3095
+ "quote",
3096
+ "serde_json",
3097
+ "syn",
3098
+ ]
3099
+
3100
+ [[package]]
3101
+ name = "rustc-hash"
3102
+ version = "2.1.2"
3103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3104
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
3105
+
3106
+ [[package]]
3107
+ name = "rustix"
3108
+ version = "1.1.4"
3109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3110
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
3111
+ dependencies = [
3112
+ "bitflags",
3113
+ "errno",
3114
+ "libc",
3115
+ "linux-raw-sys",
3116
+ "windows-sys 0.61.2",
3117
+ ]
3118
+
3119
+ [[package]]
3120
+ name = "rustler"
3121
+ version = "0.37.3"
3122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3123
+ checksum = "c779e2cbfa2987990205d0d8fc142163739e45a4c6592dc637896c77fec01280"
3124
+ dependencies = [
3125
+ "inventory",
3126
+ "libloading 0.9.0",
3127
+ "regex-lite",
3128
+ "rustler_codegen",
3129
+ ]
3130
+
3131
+ [[package]]
3132
+ name = "rustler_codegen"
3133
+ version = "0.37.3"
3134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3135
+ checksum = "e6e120f8936c779b6c2e09992a2dfa9a4e8bcd0794c02bb654fde03e03ce8c31"
3136
+ dependencies = [
3137
+ "heck",
3138
+ "inventory",
3139
+ "proc-macro2",
3140
+ "quote",
3141
+ "syn",
3142
+ ]
3143
+
3144
+ [[package]]
3145
+ name = "rustls"
3146
+ version = "0.23.38"
3147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3148
+ checksum = "69f9466fb2c14ea04357e91413efb882e2a6d4a406e625449bc0a5d360d53a21"
3149
+ dependencies = [
3150
+ "aws-lc-rs",
3151
+ "once_cell",
3152
+ "rustls-pki-types",
3153
+ "rustls-webpki",
3154
+ "subtle",
3155
+ "zeroize",
3156
+ ]
3157
+
3158
+ [[package]]
3159
+ name = "rustls-native-certs"
3160
+ version = "0.8.3"
3161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3162
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
3163
+ dependencies = [
3164
+ "openssl-probe",
3165
+ "rustls-pki-types",
3166
+ "schannel",
3167
+ "security-framework",
3168
+ ]
3169
+
3170
+ [[package]]
3171
+ name = "rustls-pki-types"
3172
+ version = "1.14.0"
3173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3174
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
3175
+ dependencies = [
3176
+ "web-time",
3177
+ "zeroize",
3178
+ ]
3179
+
3180
+ [[package]]
3181
+ name = "rustls-platform-verifier"
3182
+ version = "0.6.2"
3183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3184
+ checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
3185
+ dependencies = [
3186
+ "core-foundation 0.10.1",
3187
+ "core-foundation-sys",
3188
+ "jni",
3189
+ "log",
3190
+ "once_cell",
3191
+ "rustls",
3192
+ "rustls-native-certs",
3193
+ "rustls-platform-verifier-android",
3194
+ "rustls-webpki",
3195
+ "security-framework",
3196
+ "security-framework-sys",
3197
+ "webpki-root-certs",
3198
+ "windows-sys 0.61.2",
3199
+ ]
3200
+
3201
+ [[package]]
3202
+ name = "rustls-platform-verifier-android"
3203
+ version = "0.1.1"
3204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3205
+ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
3206
+
3207
+ [[package]]
3208
+ name = "rustls-webpki"
3209
+ version = "0.103.12"
3210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3211
+ checksum = "8279bb85272c9f10811ae6a6c547ff594d6a7f3c6c6b02ee9726d1d0dcfcdd06"
3212
+ dependencies = [
3213
+ "aws-lc-rs",
3214
+ "ring",
3215
+ "rustls-pki-types",
3216
+ "untrusted",
3217
+ ]
3218
+
3219
+ [[package]]
3220
+ name = "rustversion"
3221
+ version = "1.0.22"
3222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3223
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
3224
+
3225
+ [[package]]
3226
+ name = "ryu"
3227
+ version = "1.0.23"
3228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3229
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
3230
+
3231
+ [[package]]
3232
+ name = "same-file"
3233
+ version = "1.0.6"
3234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3235
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
3236
+ dependencies = [
3237
+ "winapi-util",
3238
+ ]
3239
+
3240
+ [[package]]
3241
+ name = "schannel"
3242
+ version = "0.1.29"
3243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3244
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
3245
+ dependencies = [
3246
+ "windows-sys 0.61.2",
3247
+ ]
3248
+
3249
+ [[package]]
3250
+ name = "schemars"
3251
+ version = "1.2.1"
3252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3253
+ checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
3254
+ dependencies = [
3255
+ "chrono",
3256
+ "dyn-clone",
3257
+ "ref-cast",
3258
+ "schemars_derive",
3259
+ "serde",
3260
+ "serde_json",
3261
+ ]
3262
+
3263
+ [[package]]
3264
+ name = "schemars_derive"
3265
+ version = "1.2.1"
3266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3267
+ checksum = "7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f"
3268
+ dependencies = [
3269
+ "proc-macro2",
3270
+ "quote",
3271
+ "serde_derive_internals",
3272
+ "syn",
3273
+ ]
3274
+
3275
+ [[package]]
3276
+ name = "scopeguard"
3277
+ version = "1.2.0"
3278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3279
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3280
+
3281
+ [[package]]
3282
+ name = "secrecy"
3283
+ version = "0.10.3"
3284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3285
+ checksum = "e891af845473308773346dc847b2c23ee78fe442e0472ac50e22a18a93d3ae5a"
3286
+ dependencies = [
3287
+ "serde",
3288
+ "zeroize",
3289
+ ]
3290
+
3291
+ [[package]]
3292
+ name = "security-framework"
3293
+ version = "3.7.0"
3294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3295
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
3296
+ dependencies = [
3297
+ "bitflags",
3298
+ "core-foundation 0.10.1",
3299
+ "core-foundation-sys",
3300
+ "libc",
3301
+ "security-framework-sys",
3302
+ ]
3303
+
3304
+ [[package]]
3305
+ name = "security-framework-sys"
3306
+ version = "2.17.0"
3307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3308
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
3309
+ dependencies = [
3310
+ "core-foundation-sys",
3311
+ "libc",
3312
+ ]
3313
+
3314
+ [[package]]
3315
+ name = "semver"
3316
+ version = "1.0.28"
3317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3318
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
3319
+ dependencies = [
3320
+ "serde",
3321
+ "serde_core",
3322
+ ]
3323
+
3324
+ [[package]]
3325
+ name = "serde"
3326
+ version = "1.0.228"
3327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3328
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
3329
+ dependencies = [
3330
+ "serde_core",
3331
+ "serde_derive",
3332
+ ]
3333
+
3334
+ [[package]]
3335
+ name = "serde-wasm-bindgen"
3336
+ version = "0.6.5"
3337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3338
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
3339
+ dependencies = [
3340
+ "js-sys",
3341
+ "serde",
3342
+ "wasm-bindgen",
3343
+ ]
3344
+
3345
+ [[package]]
3346
+ name = "serde_core"
3347
+ version = "1.0.228"
3348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3349
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
3350
+ dependencies = [
3351
+ "serde_derive",
3352
+ ]
3353
+
3354
+ [[package]]
3355
+ name = "serde_derive"
3356
+ version = "1.0.228"
3357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3358
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
3359
+ dependencies = [
3360
+ "proc-macro2",
3361
+ "quote",
3362
+ "syn",
3363
+ ]
3364
+
3365
+ [[package]]
3366
+ name = "serde_derive_internals"
3367
+ version = "0.29.1"
3368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3369
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
3370
+ dependencies = [
3371
+ "proc-macro2",
3372
+ "quote",
3373
+ "syn",
3374
+ ]
3375
+
3376
+ [[package]]
3377
+ name = "serde_json"
3378
+ version = "1.0.149"
3379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3380
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
3381
+ dependencies = [
3382
+ "itoa",
3383
+ "memchr",
3384
+ "serde",
3385
+ "serde_core",
3386
+ "zmij",
3387
+ ]
3388
+
3389
+ [[package]]
3390
+ name = "serde_path_to_error"
3391
+ version = "0.1.20"
3392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3393
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
3394
+ dependencies = [
3395
+ "itoa",
3396
+ "serde",
3397
+ "serde_core",
3398
+ ]
3399
+
3400
+ [[package]]
3401
+ name = "serde_spanned"
3402
+ version = "1.1.1"
3403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3404
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
3405
+ dependencies = [
3406
+ "serde_core",
3407
+ ]
3408
+
3409
+ [[package]]
3410
+ name = "serde_urlencoded"
3411
+ version = "0.7.1"
3412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3413
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3414
+ dependencies = [
3415
+ "form_urlencoded",
3416
+ "itoa",
3417
+ "ryu",
3418
+ "serde",
3419
+ ]
3420
+
3421
+ [[package]]
3422
+ name = "sha1"
3423
+ version = "0.10.6"
3424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3425
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
3426
+ dependencies = [
3427
+ "cfg-if",
3428
+ "cpufeatures 0.2.17",
3429
+ "digest 0.10.7",
3430
+ ]
3431
+
3432
+ [[package]]
3433
+ name = "sha2"
3434
+ version = "0.10.9"
3435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3436
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
3437
+ dependencies = [
3438
+ "cfg-if",
3439
+ "cpufeatures 0.2.17",
3440
+ "digest 0.10.7",
3441
+ ]
3442
+
3443
+ [[package]]
3444
+ name = "sha2"
3445
+ version = "0.11.0"
3446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3447
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
3448
+ dependencies = [
3449
+ "cfg-if",
3450
+ "cpufeatures 0.3.0",
3451
+ "digest 0.11.2",
3452
+ ]
3453
+
3454
+ [[package]]
3455
+ name = "sharded-slab"
3456
+ version = "0.1.7"
3457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3458
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
3459
+ dependencies = [
3460
+ "lazy_static",
3461
+ ]
3462
+
3463
+ [[package]]
3464
+ name = "shlex"
3465
+ version = "1.3.0"
3466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3467
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3468
+
3469
+ [[package]]
3470
+ name = "signal-hook-registry"
3471
+ version = "1.4.8"
3472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3473
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
3474
+ dependencies = [
3475
+ "errno",
3476
+ "libc",
3477
+ ]
3478
+
3479
+ [[package]]
3480
+ name = "simd-adler32"
3481
+ version = "0.3.9"
3482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3483
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
3484
+
3485
+ [[package]]
3486
+ name = "siphasher"
3487
+ version = "1.0.2"
3488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3489
+ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
3490
+
3491
+ [[package]]
3492
+ name = "skeptic"
3493
+ version = "0.13.7"
3494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3495
+ checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8"
3496
+ dependencies = [
3497
+ "bytecount",
3498
+ "cargo_metadata",
3499
+ "error-chain",
3500
+ "glob",
3501
+ "pulldown-cmark",
3502
+ "tempfile",
3503
+ "walkdir",
3504
+ ]
3505
+
3506
+ [[package]]
3507
+ name = "slab"
3508
+ version = "0.4.12"
3509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3510
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
3511
+
3512
+ [[package]]
3513
+ name = "smallvec"
3514
+ version = "1.15.1"
3515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3516
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3517
+
3518
+ [[package]]
3519
+ name = "snippet-runner"
3520
+ version = "0.1.0"
3521
+ dependencies = [
3522
+ "clap",
3523
+ "rayon",
3524
+ "serde",
3525
+ "serde_json",
3526
+ "tempfile",
3527
+ "thiserror 2.0.18",
3528
+ "toml 1.1.2+spec-1.1.0",
3529
+ "walkdir",
3530
+ "which",
3531
+ ]
3532
+
3533
+ [[package]]
3534
+ name = "socket2"
3535
+ version = "0.6.3"
3536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3537
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
3538
+ dependencies = [
3539
+ "libc",
3540
+ "windows-sys 0.61.2",
3541
+ ]
3542
+
3543
+ [[package]]
3544
+ name = "stable_deref_trait"
3545
+ version = "1.2.1"
3546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3547
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3548
+
3549
+ [[package]]
3550
+ name = "string_cache"
3551
+ version = "0.9.0"
3552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3553
+ checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901"
3554
+ dependencies = [
3555
+ "new_debug_unreachable",
3556
+ "parking_lot",
3557
+ "phf_shared",
3558
+ "precomputed-hash",
3559
+ ]
3560
+
3561
+ [[package]]
3562
+ name = "string_cache_codegen"
3563
+ version = "0.6.1"
3564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3565
+ checksum = "585635e46db231059f76c5849798146164652513eb9e8ab2685939dd90f29b69"
3566
+ dependencies = [
3567
+ "phf_generator",
3568
+ "phf_shared",
3569
+ "proc-macro2",
3570
+ "quote",
3571
+ ]
3572
+
3573
+ [[package]]
3574
+ name = "strsim"
3575
+ version = "0.11.1"
3576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3577
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3578
+
3579
+ [[package]]
3580
+ name = "subtle"
3581
+ version = "2.6.1"
3582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3583
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3584
+
3585
+ [[package]]
3586
+ name = "syn"
3587
+ version = "2.0.117"
3588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3589
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
3590
+ dependencies = [
3591
+ "proc-macro2",
3592
+ "quote",
3593
+ "unicode-ident",
3594
+ ]
3595
+
3596
+ [[package]]
3597
+ name = "sync_wrapper"
3598
+ version = "1.0.2"
3599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3600
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3601
+ dependencies = [
3602
+ "futures-core",
3603
+ ]
3604
+
3605
+ [[package]]
3606
+ name = "synstructure"
3607
+ version = "0.13.2"
3608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3609
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3610
+ dependencies = [
3611
+ "proc-macro2",
3612
+ "quote",
3613
+ "syn",
3614
+ ]
3615
+
3616
+ [[package]]
3617
+ name = "system-configuration"
3618
+ version = "0.7.0"
3619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3620
+ checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
3621
+ dependencies = [
3622
+ "bitflags",
3623
+ "core-foundation 0.9.4",
3624
+ "system-configuration-sys",
3625
+ ]
3626
+
3627
+ [[package]]
3628
+ name = "system-configuration-sys"
3629
+ version = "0.6.0"
3630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3631
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
3632
+ dependencies = [
3633
+ "core-foundation-sys",
3634
+ "libc",
3635
+ ]
3636
+
3637
+ [[package]]
3638
+ name = "target-lexicon"
3639
+ version = "0.13.5"
3640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3641
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
3642
+
3643
+ [[package]]
3644
+ name = "tempfile"
3645
+ version = "3.27.0"
3646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3647
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
3648
+ dependencies = [
3649
+ "fastrand",
3650
+ "getrandom 0.4.2",
3651
+ "once_cell",
3652
+ "rustix",
3653
+ "windows-sys 0.61.2",
3654
+ ]
3655
+
3656
+ [[package]]
3657
+ name = "tendril"
3658
+ version = "0.5.0"
3659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3660
+ checksum = "c4790fc369d5a530f4b544b094e31388b9b3a37c0f4652ade4505945f5660d24"
3661
+ dependencies = [
3662
+ "new_debug_unreachable",
3663
+ "utf-8",
3664
+ ]
3665
+
3666
+ [[package]]
3667
+ name = "thiserror"
3668
+ version = "1.0.69"
3669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3670
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3671
+ dependencies = [
3672
+ "thiserror-impl 1.0.69",
3673
+ ]
3674
+
3675
+ [[package]]
3676
+ name = "thiserror"
3677
+ version = "2.0.18"
3678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3679
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
3680
+ dependencies = [
3681
+ "thiserror-impl 2.0.18",
3682
+ ]
3683
+
3684
+ [[package]]
3685
+ name = "thiserror-impl"
3686
+ version = "1.0.69"
3687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3688
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3689
+ dependencies = [
3690
+ "proc-macro2",
3691
+ "quote",
3692
+ "syn",
3693
+ ]
3694
+
3695
+ [[package]]
3696
+ name = "thiserror-impl"
3697
+ version = "2.0.18"
3698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3699
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
3700
+ dependencies = [
3701
+ "proc-macro2",
3702
+ "quote",
3703
+ "syn",
3704
+ ]
3705
+
3706
+ [[package]]
3707
+ name = "thread_local"
3708
+ version = "1.1.9"
3709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3710
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
3711
+ dependencies = [
3712
+ "cfg-if",
3713
+ ]
3714
+
3715
+ [[package]]
3716
+ name = "time"
3717
+ version = "0.3.47"
3718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3719
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
3720
+ dependencies = [
3721
+ "deranged",
3722
+ "itoa",
3723
+ "js-sys",
3724
+ "num-conv",
3725
+ "powerfmt",
3726
+ "serde_core",
3727
+ "time-core",
3728
+ "time-macros",
3729
+ ]
3730
+
3731
+ [[package]]
3732
+ name = "time-core"
3733
+ version = "0.1.8"
3734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3735
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
3736
+
3737
+ [[package]]
3738
+ name = "time-macros"
3739
+ version = "0.2.27"
3740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3741
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
3742
+ dependencies = [
3743
+ "num-conv",
3744
+ "time-core",
3745
+ ]
3746
+
3747
+ [[package]]
3748
+ name = "tiny-keccak"
3749
+ version = "2.0.2"
3750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3751
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
3752
+ dependencies = [
3753
+ "crunchy",
3754
+ ]
3755
+
3756
+ [[package]]
3757
+ name = "tinystr"
3758
+ version = "0.8.3"
3759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3760
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
3761
+ dependencies = [
3762
+ "displaydoc",
3763
+ "zerovec",
3764
+ ]
3765
+
3766
+ [[package]]
3767
+ name = "tinyvec"
3768
+ version = "1.11.0"
3769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3770
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
3771
+ dependencies = [
3772
+ "tinyvec_macros",
3773
+ ]
3774
+
3775
+ [[package]]
3776
+ name = "tinyvec_macros"
3777
+ version = "0.1.1"
3778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3779
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3780
+
3781
+ [[package]]
3782
+ name = "tokio"
3783
+ version = "1.52.1"
3784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3785
+ checksum = "b67dee974fe86fd92cc45b7a95fdd2f99a36a6d7b0d431a231178d3d670bbcc6"
3786
+ dependencies = [
3787
+ "bytes",
3788
+ "libc",
3789
+ "mio",
3790
+ "parking_lot",
3791
+ "pin-project-lite",
3792
+ "signal-hook-registry",
3793
+ "socket2",
3794
+ "tokio-macros",
3795
+ "windows-sys 0.61.2",
3796
+ ]
3797
+
3798
+ [[package]]
3799
+ name = "tokio-macros"
3800
+ version = "2.7.0"
3801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3802
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
3803
+ dependencies = [
3804
+ "proc-macro2",
3805
+ "quote",
3806
+ "syn",
3807
+ ]
3808
+
3809
+ [[package]]
3810
+ name = "tokio-rustls"
3811
+ version = "0.26.4"
3812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3813
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3814
+ dependencies = [
3815
+ "rustls",
3816
+ "tokio",
3817
+ ]
3818
+
3819
+ [[package]]
3820
+ name = "tokio-stream"
3821
+ version = "0.1.18"
3822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3823
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
3824
+ dependencies = [
3825
+ "futures-core",
3826
+ "pin-project-lite",
3827
+ "tokio",
3828
+ ]
3829
+
3830
+ [[package]]
3831
+ name = "tokio-util"
3832
+ version = "0.7.18"
3833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3834
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
3835
+ dependencies = [
3836
+ "bytes",
3837
+ "futures-core",
3838
+ "futures-sink",
3839
+ "pin-project-lite",
3840
+ "tokio",
3841
+ ]
3842
+
3843
+ [[package]]
3844
+ name = "toml"
3845
+ version = "0.9.12+spec-1.1.0"
3846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3847
+ checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
3848
+ dependencies = [
3849
+ "indexmap",
3850
+ "serde_core",
3851
+ "serde_spanned",
3852
+ "toml_datetime 0.7.5+spec-1.1.0",
3853
+ "toml_parser",
3854
+ "toml_writer",
3855
+ "winnow 0.7.15",
3856
+ ]
3857
+
3858
+ [[package]]
3859
+ name = "toml"
3860
+ version = "1.1.2+spec-1.1.0"
3861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3862
+ checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
3863
+ dependencies = [
3864
+ "indexmap",
3865
+ "serde_core",
3866
+ "serde_spanned",
3867
+ "toml_datetime 1.1.1+spec-1.1.0",
3868
+ "toml_parser",
3869
+ "toml_writer",
3870
+ "winnow 1.0.1",
3871
+ ]
3872
+
3873
+ [[package]]
3874
+ name = "toml_datetime"
3875
+ version = "0.7.5+spec-1.1.0"
3876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3877
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
3878
+ dependencies = [
3879
+ "serde_core",
3880
+ ]
3881
+
3882
+ [[package]]
3883
+ name = "toml_datetime"
3884
+ version = "1.1.1+spec-1.1.0"
3885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3886
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
3887
+ dependencies = [
3888
+ "serde_core",
3889
+ ]
3890
+
3891
+ [[package]]
3892
+ name = "toml_parser"
3893
+ version = "1.1.2+spec-1.1.0"
3894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3895
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
3896
+ dependencies = [
3897
+ "winnow 1.0.1",
3898
+ ]
3899
+
3900
+ [[package]]
3901
+ name = "toml_writer"
3902
+ version = "1.1.1+spec-1.1.0"
3903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3904
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
3905
+
3906
+ [[package]]
3907
+ name = "tower"
3908
+ version = "0.5.3"
3909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3910
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3911
+ dependencies = [
3912
+ "futures-core",
3913
+ "futures-util",
3914
+ "pin-project-lite",
3915
+ "sync_wrapper",
3916
+ "tokio",
3917
+ "tokio-util",
3918
+ "tower-layer",
3919
+ "tower-service",
3920
+ "tracing",
3921
+ ]
3922
+
3923
+ [[package]]
3924
+ name = "tower-http"
3925
+ version = "0.6.8"
3926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3927
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
3928
+ dependencies = [
3929
+ "async-compression",
3930
+ "bitflags",
3931
+ "bytes",
3932
+ "futures-core",
3933
+ "futures-util",
3934
+ "http",
3935
+ "http-body",
3936
+ "http-body-util",
3937
+ "iri-string",
3938
+ "pin-project-lite",
3939
+ "tokio",
3940
+ "tokio-util",
3941
+ "tower",
3942
+ "tower-layer",
3943
+ "tower-service",
3944
+ "tracing",
3945
+ "uuid",
3946
+ ]
3947
+
3948
+ [[package]]
3949
+ name = "tower-layer"
3950
+ version = "0.3.3"
3951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3952
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3953
+
3954
+ [[package]]
3955
+ name = "tower-service"
3956
+ version = "0.3.3"
3957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3958
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3959
+
3960
+ [[package]]
3961
+ name = "tracing"
3962
+ version = "0.1.44"
3963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3964
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3965
+ dependencies = [
3966
+ "log",
3967
+ "pin-project-lite",
3968
+ "tracing-attributes",
3969
+ "tracing-core",
3970
+ ]
3971
+
3972
+ [[package]]
3973
+ name = "tracing-attributes"
3974
+ version = "0.1.31"
3975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3976
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
3977
+ dependencies = [
3978
+ "proc-macro2",
3979
+ "quote",
3980
+ "syn",
3981
+ ]
3982
+
3983
+ [[package]]
3984
+ name = "tracing-core"
3985
+ version = "0.1.36"
3986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3987
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3988
+ dependencies = [
3989
+ "once_cell",
3990
+ "valuable",
3991
+ ]
3992
+
3993
+ [[package]]
3994
+ name = "tracing-log"
3995
+ version = "0.2.0"
3996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3997
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3998
+ dependencies = [
3999
+ "log",
4000
+ "once_cell",
4001
+ "tracing-core",
4002
+ ]
4003
+
4004
+ [[package]]
4005
+ name = "tracing-subscriber"
4006
+ version = "0.3.23"
4007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4008
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
4009
+ dependencies = [
4010
+ "matchers",
4011
+ "nu-ansi-term",
4012
+ "once_cell",
4013
+ "regex-automata",
4014
+ "sharded-slab",
4015
+ "smallvec",
4016
+ "thread_local",
4017
+ "tracing",
4018
+ "tracing-core",
4019
+ "tracing-log",
4020
+ ]
4021
+
4022
+ [[package]]
4023
+ name = "try-lock"
4024
+ version = "0.2.5"
4025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4026
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
4027
+
4028
+ [[package]]
4029
+ name = "tungstenite"
4030
+ version = "0.28.0"
4031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4032
+ checksum = "8628dcc84e5a09eb3d8423d6cb682965dea9133204e8fb3efee74c2a0c259442"
4033
+ dependencies = [
4034
+ "bytes",
4035
+ "data-encoding",
4036
+ "http",
4037
+ "httparse",
4038
+ "log",
4039
+ "rand",
4040
+ "sha1",
4041
+ "thiserror 2.0.18",
4042
+ "utf-8",
4043
+ ]
4044
+
4045
+ [[package]]
4046
+ name = "typed-path"
4047
+ version = "0.12.3"
4048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4049
+ checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
4050
+
4051
+ [[package]]
4052
+ name = "typenum"
4053
+ version = "1.20.0"
4054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4055
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
4056
+
4057
+ [[package]]
4058
+ name = "unicase"
4059
+ version = "2.9.0"
4060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4061
+ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
4062
+
4063
+ [[package]]
4064
+ name = "unicode-ident"
4065
+ version = "1.0.24"
4066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4067
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
4068
+
4069
+ [[package]]
4070
+ name = "unicode-segmentation"
4071
+ version = "1.13.2"
4072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4073
+ checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
4074
+
4075
+ [[package]]
4076
+ name = "unicode-xid"
4077
+ version = "0.2.6"
4078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4079
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
4080
+
4081
+ [[package]]
4082
+ name = "untrusted"
4083
+ version = "0.9.0"
4084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4085
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
4086
+
4087
+ [[package]]
4088
+ name = "ureq"
4089
+ version = "3.3.0"
4090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4091
+ checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0"
4092
+ dependencies = [
4093
+ "base64",
4094
+ "der",
4095
+ "flate2",
4096
+ "log",
4097
+ "native-tls",
4098
+ "percent-encoding",
4099
+ "rustls-pki-types",
4100
+ "ureq-proto",
4101
+ "utf8-zero",
4102
+ "webpki-root-certs",
4103
+ ]
4104
+
4105
+ [[package]]
4106
+ name = "ureq-proto"
4107
+ version = "0.6.0"
4108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4109
+ checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c"
4110
+ dependencies = [
4111
+ "base64",
4112
+ "http",
4113
+ "httparse",
4114
+ "log",
4115
+ ]
4116
+
4117
+ [[package]]
4118
+ name = "url"
4119
+ version = "2.5.8"
4120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4121
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
4122
+ dependencies = [
4123
+ "form_urlencoded",
4124
+ "idna",
4125
+ "percent-encoding",
4126
+ "serde",
4127
+ ]
4128
+
4129
+ [[package]]
4130
+ name = "utf-8"
4131
+ version = "0.7.6"
4132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4133
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
4134
+
4135
+ [[package]]
4136
+ name = "utf8-width"
4137
+ version = "0.1.8"
4138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4139
+ checksum = "1292c0d970b54115d14f2492fe0170adf21d68a1de108eebc51c1df4f346a091"
4140
+
4141
+ [[package]]
4142
+ name = "utf8-zero"
4143
+ version = "0.8.1"
4144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4145
+ checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
4146
+
4147
+ [[package]]
4148
+ name = "utf8_iter"
4149
+ version = "1.0.4"
4150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4151
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
4152
+
4153
+ [[package]]
4154
+ name = "utf8parse"
4155
+ version = "0.2.2"
4156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4157
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
4158
+
4159
+ [[package]]
4160
+ name = "utoipa"
4161
+ version = "5.4.0"
4162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4163
+ checksum = "2fcc29c80c21c31608227e0912b2d7fddba57ad76b606890627ba8ee7964e993"
4164
+ dependencies = [
4165
+ "indexmap",
4166
+ "serde",
4167
+ "serde_json",
4168
+ "utoipa-gen",
4169
+ ]
4170
+
4171
+ [[package]]
4172
+ name = "utoipa-gen"
4173
+ version = "5.4.0"
4174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4175
+ checksum = "6d79d08d92ab8af4c5e8a6da20c47ae3f61a0f1dabc1997cdf2d082b757ca08b"
4176
+ dependencies = [
4177
+ "proc-macro2",
4178
+ "quote",
4179
+ "regex",
4180
+ "syn",
4181
+ ]
4182
+
4183
+ [[package]]
4184
+ name = "uuid"
4185
+ version = "1.23.1"
4186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4187
+ checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
4188
+ dependencies = [
4189
+ "getrandom 0.4.2",
4190
+ "js-sys",
4191
+ "wasm-bindgen",
4192
+ ]
4193
+
4194
+ [[package]]
4195
+ name = "valuable"
4196
+ version = "0.1.1"
4197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4198
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
4199
+
4200
+ [[package]]
4201
+ name = "vcpkg"
4202
+ version = "0.2.15"
4203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4204
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
4205
+
4206
+ [[package]]
4207
+ name = "version_check"
4208
+ version = "0.9.5"
4209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4210
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
4211
+
4212
+ [[package]]
4213
+ name = "walkdir"
4214
+ version = "2.5.0"
4215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4216
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
4217
+ dependencies = [
4218
+ "same-file",
4219
+ "winapi-util",
4220
+ ]
4221
+
4222
+ [[package]]
4223
+ name = "want"
4224
+ version = "0.3.1"
4225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4226
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
4227
+ dependencies = [
4228
+ "try-lock",
4229
+ ]
4230
+
4231
+ [[package]]
4232
+ name = "wasi"
4233
+ version = "0.11.1+wasi-snapshot-preview1"
4234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4235
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
4236
+
4237
+ [[package]]
4238
+ name = "wasip2"
4239
+ version = "1.0.3+wasi-0.2.9"
4240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4241
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
4242
+ dependencies = [
4243
+ "wit-bindgen 0.57.1",
4244
+ ]
4245
+
4246
+ [[package]]
4247
+ name = "wasip3"
4248
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
4249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4250
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
4251
+ dependencies = [
4252
+ "wit-bindgen 0.51.0",
4253
+ ]
4254
+
4255
+ [[package]]
4256
+ name = "wasm-bindgen"
4257
+ version = "0.2.118"
4258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4259
+ checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
4260
+ dependencies = [
4261
+ "cfg-if",
4262
+ "once_cell",
4263
+ "rustversion",
4264
+ "wasm-bindgen-macro",
4265
+ "wasm-bindgen-shared",
4266
+ ]
4267
+
4268
+ [[package]]
4269
+ name = "wasm-bindgen-futures"
4270
+ version = "0.4.68"
4271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4272
+ checksum = "f371d383f2fb139252e0bfac3b81b265689bf45b6874af544ffa4c975ac1ebf8"
4273
+ dependencies = [
4274
+ "js-sys",
4275
+ "wasm-bindgen",
4276
+ ]
4277
+
4278
+ [[package]]
4279
+ name = "wasm-bindgen-macro"
4280
+ version = "0.2.118"
4281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4282
+ checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
4283
+ dependencies = [
4284
+ "quote",
4285
+ "wasm-bindgen-macro-support",
4286
+ ]
4287
+
4288
+ [[package]]
4289
+ name = "wasm-bindgen-macro-support"
4290
+ version = "0.2.118"
4291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4292
+ checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
4293
+ dependencies = [
4294
+ "bumpalo",
4295
+ "proc-macro2",
4296
+ "quote",
4297
+ "syn",
4298
+ "wasm-bindgen-shared",
4299
+ ]
4300
+
4301
+ [[package]]
4302
+ name = "wasm-bindgen-shared"
4303
+ version = "0.2.118"
4304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4305
+ checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
4306
+ dependencies = [
4307
+ "unicode-ident",
4308
+ ]
4309
+
4310
+ [[package]]
4311
+ name = "wasm-encoder"
4312
+ version = "0.244.0"
4313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4314
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
4315
+ dependencies = [
4316
+ "leb128fmt",
4317
+ "wasmparser",
4318
+ ]
4319
+
4320
+ [[package]]
4321
+ name = "wasm-metadata"
4322
+ version = "0.244.0"
4323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4324
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
4325
+ dependencies = [
4326
+ "anyhow",
4327
+ "indexmap",
4328
+ "wasm-encoder",
4329
+ "wasmparser",
4330
+ ]
4331
+
4332
+ [[package]]
4333
+ name = "wasm-streams"
4334
+ version = "0.5.0"
4335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4336
+ checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb"
4337
+ dependencies = [
4338
+ "futures-util",
4339
+ "js-sys",
4340
+ "wasm-bindgen",
4341
+ "wasm-bindgen-futures",
4342
+ "web-sys",
4343
+ ]
4344
+
4345
+ [[package]]
4346
+ name = "wasmparser"
4347
+ version = "0.244.0"
4348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4349
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
4350
+ dependencies = [
4351
+ "bitflags",
4352
+ "hashbrown 0.15.5",
4353
+ "indexmap",
4354
+ "semver",
4355
+ ]
4356
+
4357
+ [[package]]
4358
+ name = "web-sys"
4359
+ version = "0.3.95"
4360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4361
+ checksum = "4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d"
4362
+ dependencies = [
4363
+ "js-sys",
4364
+ "wasm-bindgen",
4365
+ ]
4366
+
4367
+ [[package]]
4368
+ name = "web-time"
4369
+ version = "1.1.0"
4370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4371
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
4372
+ dependencies = [
4373
+ "js-sys",
4374
+ "wasm-bindgen",
4375
+ ]
4376
+
4377
+ [[package]]
4378
+ name = "web_atoms"
4379
+ version = "0.2.4"
4380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4381
+ checksum = "d7cff6eef815df1834fd250e3a2ff436044d82a9f1bc1980ca1dbdf07effc538"
4382
+ dependencies = [
4383
+ "phf",
4384
+ "phf_codegen",
4385
+ "string_cache",
4386
+ "string_cache_codegen",
4387
+ ]
4388
+
4389
+ [[package]]
4390
+ name = "webpki-root-certs"
4391
+ version = "1.0.7"
4392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4393
+ checksum = "f31141ce3fc3e300ae89b78c0dd67f9708061d1d2eda54b8209346fd6be9a92c"
4394
+ dependencies = [
4395
+ "rustls-pki-types",
4396
+ ]
4397
+
4398
+ [[package]]
4399
+ name = "weezl"
4400
+ version = "0.1.12"
4401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4402
+ checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
4403
+
4404
+ [[package]]
4405
+ name = "which"
4406
+ version = "8.0.2"
4407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4408
+ checksum = "81995fafaaaf6ae47a7d0cc83c67caf92aeb7e5331650ae6ff856f7c0c60c459"
4409
+ dependencies = [
4410
+ "libc",
4411
+ ]
4412
+
4413
+ [[package]]
4414
+ name = "winapi-util"
4415
+ version = "0.1.11"
4416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4417
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
4418
+ dependencies = [
4419
+ "windows-sys 0.61.2",
4420
+ ]
4421
+
4422
+ [[package]]
4423
+ name = "windows-core"
4424
+ version = "0.62.2"
4425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4426
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
4427
+ dependencies = [
4428
+ "windows-implement",
4429
+ "windows-interface",
4430
+ "windows-link",
4431
+ "windows-result",
4432
+ "windows-strings",
4433
+ ]
4434
+
4435
+ [[package]]
4436
+ name = "windows-implement"
4437
+ version = "0.60.2"
4438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4439
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
4440
+ dependencies = [
4441
+ "proc-macro2",
4442
+ "quote",
4443
+ "syn",
4444
+ ]
4445
+
4446
+ [[package]]
4447
+ name = "windows-interface"
4448
+ version = "0.59.3"
4449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4450
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
4451
+ dependencies = [
4452
+ "proc-macro2",
4453
+ "quote",
4454
+ "syn",
4455
+ ]
4456
+
4457
+ [[package]]
4458
+ name = "windows-link"
4459
+ version = "0.2.1"
4460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4461
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
4462
+
4463
+ [[package]]
4464
+ name = "windows-registry"
4465
+ version = "0.6.1"
4466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4467
+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
4468
+ dependencies = [
4469
+ "windows-link",
4470
+ "windows-result",
4471
+ "windows-strings",
4472
+ ]
4473
+
4474
+ [[package]]
4475
+ name = "windows-result"
4476
+ version = "0.4.1"
4477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4478
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
4479
+ dependencies = [
4480
+ "windows-link",
4481
+ ]
4482
+
4483
+ [[package]]
4484
+ name = "windows-strings"
4485
+ version = "0.5.1"
4486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4487
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
4488
+ dependencies = [
4489
+ "windows-link",
4490
+ ]
4491
+
4492
+ [[package]]
4493
+ name = "windows-sys"
4494
+ version = "0.45.0"
4495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4496
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
4497
+ dependencies = [
4498
+ "windows-targets 0.42.2",
4499
+ ]
4500
+
4501
+ [[package]]
4502
+ name = "windows-sys"
4503
+ version = "0.52.0"
4504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4505
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4506
+ dependencies = [
4507
+ "windows-targets 0.52.6",
4508
+ ]
4509
+
4510
+ [[package]]
4511
+ name = "windows-sys"
4512
+ version = "0.60.2"
4513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4514
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4515
+ dependencies = [
4516
+ "windows-targets 0.53.5",
4517
+ ]
4518
+
4519
+ [[package]]
4520
+ name = "windows-sys"
4521
+ version = "0.61.2"
4522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4523
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
4524
+ dependencies = [
4525
+ "windows-link",
4526
+ ]
4527
+
4528
+ [[package]]
4529
+ name = "windows-targets"
4530
+ version = "0.42.2"
4531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4532
+ checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
4533
+ dependencies = [
4534
+ "windows_aarch64_gnullvm 0.42.2",
4535
+ "windows_aarch64_msvc 0.42.2",
4536
+ "windows_i686_gnu 0.42.2",
4537
+ "windows_i686_msvc 0.42.2",
4538
+ "windows_x86_64_gnu 0.42.2",
4539
+ "windows_x86_64_gnullvm 0.42.2",
4540
+ "windows_x86_64_msvc 0.42.2",
4541
+ ]
4542
+
4543
+ [[package]]
4544
+ name = "windows-targets"
4545
+ version = "0.52.6"
4546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4547
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4548
+ dependencies = [
4549
+ "windows_aarch64_gnullvm 0.52.6",
4550
+ "windows_aarch64_msvc 0.52.6",
4551
+ "windows_i686_gnu 0.52.6",
4552
+ "windows_i686_gnullvm 0.52.6",
4553
+ "windows_i686_msvc 0.52.6",
4554
+ "windows_x86_64_gnu 0.52.6",
4555
+ "windows_x86_64_gnullvm 0.52.6",
4556
+ "windows_x86_64_msvc 0.52.6",
4557
+ ]
4558
+
4559
+ [[package]]
4560
+ name = "windows-targets"
4561
+ version = "0.53.5"
4562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4563
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
4564
+ dependencies = [
4565
+ "windows-link",
4566
+ "windows_aarch64_gnullvm 0.53.1",
4567
+ "windows_aarch64_msvc 0.53.1",
4568
+ "windows_i686_gnu 0.53.1",
4569
+ "windows_i686_gnullvm 0.53.1",
4570
+ "windows_i686_msvc 0.53.1",
4571
+ "windows_x86_64_gnu 0.53.1",
4572
+ "windows_x86_64_gnullvm 0.53.1",
4573
+ "windows_x86_64_msvc 0.53.1",
4574
+ ]
4575
+
4576
+ [[package]]
4577
+ name = "windows_aarch64_gnullvm"
4578
+ version = "0.42.2"
4579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4580
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
4581
+
4582
+ [[package]]
4583
+ name = "windows_aarch64_gnullvm"
4584
+ version = "0.52.6"
4585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4586
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4587
+
4588
+ [[package]]
4589
+ name = "windows_aarch64_gnullvm"
4590
+ version = "0.53.1"
4591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4592
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
4593
+
4594
+ [[package]]
4595
+ name = "windows_aarch64_msvc"
4596
+ version = "0.42.2"
4597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4598
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
4599
+
4600
+ [[package]]
4601
+ name = "windows_aarch64_msvc"
4602
+ version = "0.52.6"
4603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4604
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4605
+
4606
+ [[package]]
4607
+ name = "windows_aarch64_msvc"
4608
+ version = "0.53.1"
4609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4610
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
4611
+
4612
+ [[package]]
4613
+ name = "windows_i686_gnu"
4614
+ version = "0.42.2"
4615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4616
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
4617
+
4618
+ [[package]]
4619
+ name = "windows_i686_gnu"
4620
+ version = "0.52.6"
4621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4622
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4623
+
4624
+ [[package]]
4625
+ name = "windows_i686_gnu"
4626
+ version = "0.53.1"
4627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4628
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
4629
+
4630
+ [[package]]
4631
+ name = "windows_i686_gnullvm"
4632
+ version = "0.52.6"
4633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4634
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4635
+
4636
+ [[package]]
4637
+ name = "windows_i686_gnullvm"
4638
+ version = "0.53.1"
4639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4640
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
4641
+
4642
+ [[package]]
4643
+ name = "windows_i686_msvc"
4644
+ version = "0.42.2"
4645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4646
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
4647
+
4648
+ [[package]]
4649
+ name = "windows_i686_msvc"
4650
+ version = "0.52.6"
4651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4652
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4653
+
4654
+ [[package]]
4655
+ name = "windows_i686_msvc"
4656
+ version = "0.53.1"
4657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4658
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
4659
+
4660
+ [[package]]
4661
+ name = "windows_x86_64_gnu"
4662
+ version = "0.42.2"
4663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4664
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
4665
+
4666
+ [[package]]
4667
+ name = "windows_x86_64_gnu"
4668
+ version = "0.52.6"
4669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4670
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4671
+
4672
+ [[package]]
4673
+ name = "windows_x86_64_gnu"
4674
+ version = "0.53.1"
4675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4676
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
4677
+
4678
+ [[package]]
4679
+ name = "windows_x86_64_gnullvm"
4680
+ version = "0.42.2"
4681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4682
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
4683
+
4684
+ [[package]]
4685
+ name = "windows_x86_64_gnullvm"
4686
+ version = "0.52.6"
4687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4688
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4689
+
4690
+ [[package]]
4691
+ name = "windows_x86_64_gnullvm"
4692
+ version = "0.53.1"
4693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4694
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
4695
+
4696
+ [[package]]
4697
+ name = "windows_x86_64_msvc"
4698
+ version = "0.42.2"
4699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4700
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
4701
+
4702
+ [[package]]
4703
+ name = "windows_x86_64_msvc"
4704
+ version = "0.52.6"
4705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4706
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4707
+
4708
+ [[package]]
4709
+ name = "windows_x86_64_msvc"
4710
+ version = "0.53.1"
4711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4712
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
4713
+
4714
+ [[package]]
4715
+ name = "winnow"
4716
+ version = "0.7.15"
4717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4718
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
4719
+
4720
+ [[package]]
4721
+ name = "winnow"
4722
+ version = "1.0.1"
4723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4724
+ checksum = "09dac053f1cd375980747450bfc7250c264eaae0583872e845c0c7cd578872b5"
4725
+
4726
+ [[package]]
4727
+ name = "wiremock"
4728
+ version = "0.6.5"
4729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4730
+ checksum = "08db1edfb05d9b3c1542e521aea074442088292f00b5f28e435c714a98f85031"
4731
+ dependencies = [
4732
+ "assert-json-diff",
4733
+ "base64",
4734
+ "deadpool",
4735
+ "futures",
4736
+ "http",
4737
+ "http-body-util",
4738
+ "hyper",
4739
+ "hyper-util",
4740
+ "log",
4741
+ "once_cell",
4742
+ "regex",
4743
+ "serde",
4744
+ "serde_json",
4745
+ "tokio",
4746
+ "url",
4747
+ ]
4748
+
4749
+ [[package]]
4750
+ name = "wit-bindgen"
4751
+ version = "0.51.0"
4752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4753
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
4754
+ dependencies = [
4755
+ "wit-bindgen-rust-macro",
4756
+ ]
4757
+
4758
+ [[package]]
4759
+ name = "wit-bindgen"
4760
+ version = "0.57.1"
4761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4762
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
4763
+
4764
+ [[package]]
4765
+ name = "wit-bindgen-core"
4766
+ version = "0.51.0"
4767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4768
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
4769
+ dependencies = [
4770
+ "anyhow",
4771
+ "heck",
4772
+ "wit-parser",
4773
+ ]
4774
+
4775
+ [[package]]
4776
+ name = "wit-bindgen-rust"
4777
+ version = "0.51.0"
4778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4779
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
4780
+ dependencies = [
4781
+ "anyhow",
4782
+ "heck",
4783
+ "indexmap",
4784
+ "prettyplease",
4785
+ "syn",
4786
+ "wasm-metadata",
4787
+ "wit-bindgen-core",
4788
+ "wit-component",
4789
+ ]
4790
+
4791
+ [[package]]
4792
+ name = "wit-bindgen-rust-macro"
4793
+ version = "0.51.0"
4794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4795
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
4796
+ dependencies = [
4797
+ "anyhow",
4798
+ "prettyplease",
4799
+ "proc-macro2",
4800
+ "quote",
4801
+ "syn",
4802
+ "wit-bindgen-core",
4803
+ "wit-bindgen-rust",
4804
+ ]
4805
+
4806
+ [[package]]
4807
+ name = "wit-component"
4808
+ version = "0.244.0"
4809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4810
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
4811
+ dependencies = [
4812
+ "anyhow",
4813
+ "bitflags",
4814
+ "indexmap",
4815
+ "log",
4816
+ "serde",
4817
+ "serde_derive",
4818
+ "serde_json",
4819
+ "wasm-encoder",
4820
+ "wasm-metadata",
4821
+ "wasmparser",
4822
+ "wit-parser",
4823
+ ]
4824
+
4825
+ [[package]]
4826
+ name = "wit-parser"
4827
+ version = "0.244.0"
4828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4829
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
4830
+ dependencies = [
4831
+ "anyhow",
4832
+ "id-arena",
4833
+ "indexmap",
4834
+ "log",
4835
+ "semver",
4836
+ "serde",
4837
+ "serde_derive",
4838
+ "serde_json",
4839
+ "unicode-xid",
4840
+ "wasmparser",
4841
+ ]
4842
+
4843
+ [[package]]
4844
+ name = "writeable"
4845
+ version = "0.6.3"
4846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4847
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
4848
+
4849
+ [[package]]
4850
+ name = "yoke"
4851
+ version = "0.8.2"
4852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4853
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
4854
+ dependencies = [
4855
+ "stable_deref_trait",
4856
+ "yoke-derive",
4857
+ "zerofrom",
4858
+ ]
4859
+
4860
+ [[package]]
4861
+ name = "yoke-derive"
4862
+ version = "0.8.2"
4863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4864
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
4865
+ dependencies = [
4866
+ "proc-macro2",
4867
+ "quote",
4868
+ "syn",
4869
+ "synstructure",
4870
+ ]
4871
+
4872
+ [[package]]
4873
+ name = "zerocopy"
4874
+ version = "0.8.48"
4875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4876
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
4877
+ dependencies = [
4878
+ "zerocopy-derive",
4879
+ ]
4880
+
4881
+ [[package]]
4882
+ name = "zerocopy-derive"
4883
+ version = "0.8.48"
4884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4885
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
4886
+ dependencies = [
4887
+ "proc-macro2",
4888
+ "quote",
4889
+ "syn",
4890
+ ]
4891
+
4892
+ [[package]]
4893
+ name = "zerofrom"
4894
+ version = "0.1.7"
4895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4896
+ checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
4897
+ dependencies = [
4898
+ "zerofrom-derive",
4899
+ ]
4900
+
4901
+ [[package]]
4902
+ name = "zerofrom-derive"
4903
+ version = "0.1.7"
4904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4905
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
4906
+ dependencies = [
4907
+ "proc-macro2",
4908
+ "quote",
4909
+ "syn",
4910
+ "synstructure",
4911
+ ]
4912
+
4913
+ [[package]]
4914
+ name = "zeroize"
4915
+ version = "1.8.2"
4916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4917
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
4918
+
4919
+ [[package]]
4920
+ name = "zerotrie"
4921
+ version = "0.2.4"
4922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4923
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
4924
+ dependencies = [
4925
+ "displaydoc",
4926
+ "yoke",
4927
+ "zerofrom",
4928
+ ]
4929
+
4930
+ [[package]]
4931
+ name = "zerovec"
4932
+ version = "0.11.6"
4933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4934
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
4935
+ dependencies = [
4936
+ "yoke",
4937
+ "zerofrom",
4938
+ "zerovec-derive",
4939
+ ]
4940
+
4941
+ [[package]]
4942
+ name = "zerovec-derive"
4943
+ version = "0.11.3"
4944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4945
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
4946
+ dependencies = [
4947
+ "proc-macro2",
4948
+ "quote",
4949
+ "syn",
4950
+ ]
4951
+
4952
+ [[package]]
4953
+ name = "zip"
4954
+ version = "8.5.1"
4955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4956
+ checksum = "dcab981e19633ebcf0b001ddd37dd802996098bc1864f90b7c5d970ce76c1d59"
4957
+ dependencies = [
4958
+ "aes",
4959
+ "bzip2",
4960
+ "constant_time_eq",
4961
+ "crc32fast",
4962
+ "deflate64",
4963
+ "flate2",
4964
+ "getrandom 0.4.2",
4965
+ "hmac",
4966
+ "indexmap",
4967
+ "lzma-rust2",
4968
+ "memchr",
4969
+ "pbkdf2",
4970
+ "ppmd-rust",
4971
+ "sha1",
4972
+ "time",
4973
+ "typed-path",
4974
+ "zeroize",
4975
+ "zopfli",
4976
+ "zstd",
4977
+ ]
4978
+
4979
+ [[package]]
4980
+ name = "zlib-rs"
4981
+ version = "0.6.3"
4982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4983
+ checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
4984
+
4985
+ [[package]]
4986
+ name = "zmij"
4987
+ version = "1.0.21"
4988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4989
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
4990
+
4991
+ [[package]]
4992
+ name = "zopfli"
4993
+ version = "0.8.3"
4994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4995
+ checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
4996
+ dependencies = [
4997
+ "bumpalo",
4998
+ "crc32fast",
4999
+ "log",
5000
+ "simd-adler32",
5001
+ ]
5002
+
5003
+ [[package]]
5004
+ name = "zstd"
5005
+ version = "0.13.3"
5006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5007
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
5008
+ dependencies = [
5009
+ "zstd-safe",
5010
+ ]
5011
+
5012
+ [[package]]
5013
+ name = "zstd-safe"
5014
+ version = "7.2.4"
5015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5016
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
5017
+ dependencies = [
5018
+ "zstd-sys",
5019
+ ]
5020
+
5021
+ [[package]]
5022
+ name = "zstd-sys"
5023
+ version = "2.0.16+zstd.1.5.7"
5024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5025
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
5026
+ dependencies = [
5027
+ "cc",
5028
+ "pkg-config",
5029
+ ]
5030
+
5031
+ [[package]]
5032
+ name = "zune-core"
5033
+ version = "0.5.1"
5034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5035
+ checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
5036
+
5037
+ [[package]]
5038
+ name = "zune-jpeg"
5039
+ version = "0.5.15"
5040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5041
+ checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296"
5042
+ dependencies = [
5043
+ "zune-core",
5044
+ ]