hypixel-sdk 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 (61) hide show
  1. hypixel_sdk-0.1.0/Cargo.lock +1916 -0
  2. hypixel_sdk-0.1.0/Cargo.toml +27 -0
  3. hypixel_sdk-0.1.0/PKG-INFO +55 -0
  4. hypixel_sdk-0.1.0/README.md +31 -0
  5. hypixel_sdk-0.1.0/crates/hypixel/Cargo.toml +38 -0
  6. hypixel_sdk-0.1.0/crates/hypixel/LICENSE +21 -0
  7. hypixel_sdk-0.1.0/crates/hypixel/README.md +40 -0
  8. hypixel_sdk-0.1.0/crates/hypixel/examples/auctions.rs +42 -0
  9. hypixel_sdk-0.1.0/crates/hypixel/examples/bazaar.rs +22 -0
  10. hypixel_sdk-0.1.0/crates/hypixel/examples/networth.rs +56 -0
  11. hypixel_sdk-0.1.0/crates/hypixel/examples/player.rs +51 -0
  12. hypixel_sdk-0.1.0/crates/hypixel/examples/resources.rs +23 -0
  13. hypixel_sdk-0.1.0/crates/hypixel/examples/skyblock_profile.rs +122 -0
  14. hypixel_sdk-0.1.0/crates/hypixel/src/client.rs +164 -0
  15. hypixel_sdk-0.1.0/crates/hypixel/src/endpoints/general.rs +86 -0
  16. hypixel_sdk-0.1.0/crates/hypixel/src/endpoints/mod.rs +3 -0
  17. hypixel_sdk-0.1.0/crates/hypixel/src/endpoints/resources.rs +83 -0
  18. hypixel_sdk-0.1.0/crates/hypixel/src/endpoints/skyblock.rs +99 -0
  19. hypixel_sdk-0.1.0/crates/hypixel/src/error.rs +41 -0
  20. hypixel_sdk-0.1.0/crates/hypixel/src/lib.rs +30 -0
  21. hypixel_sdk-0.1.0/crates/hypixel/src/models/common.rs +35 -0
  22. hypixel_sdk-0.1.0/crates/hypixel/src/models/guild.rs +54 -0
  23. hypixel_sdk-0.1.0/crates/hypixel/src/models/misc.rs +110 -0
  24. hypixel_sdk-0.1.0/crates/hypixel/src/models/mod.rs +18 -0
  25. hypixel_sdk-0.1.0/crates/hypixel/src/models/player.rs +47 -0
  26. hypixel_sdk-0.1.0/crates/hypixel/src/models/resources.rs +139 -0
  27. hypixel_sdk-0.1.0/crates/hypixel/src/models/skyblock/auction.rs +99 -0
  28. hypixel_sdk-0.1.0/crates/hypixel/src/models/skyblock/bazaar.rs +63 -0
  29. hypixel_sdk-0.1.0/crates/hypixel/src/models/skyblock/extras.rs +106 -0
  30. hypixel_sdk-0.1.0/crates/hypixel/src/models/skyblock/mod.rs +15 -0
  31. hypixel_sdk-0.1.0/crates/hypixel/src/models/skyblock/profile.rs +84 -0
  32. hypixel_sdk-0.1.0/crates/hypixel/src/models/status.rs +46 -0
  33. hypixel_sdk-0.1.0/crates/hypixel/src/ratelimit.rs +51 -0
  34. hypixel_sdk-0.1.0/crates/hypixel/src/util/leveling.rs +97 -0
  35. hypixel_sdk-0.1.0/crates/hypixel/src/util/market.rs +94 -0
  36. hypixel_sdk-0.1.0/crates/hypixel/src/util/mod.rs +10 -0
  37. hypixel_sdk-0.1.0/crates/hypixel/src/util/nbt.rs +50 -0
  38. hypixel_sdk-0.1.0/crates/hypixel/src/util/networth.rs +171 -0
  39. hypixel_sdk-0.1.0/crates/hypixel/tests/fixtures/auctions.json +43 -0
  40. hypixel_sdk-0.1.0/crates/hypixel/tests/fixtures/bazaar.json +26 -0
  41. hypixel_sdk-0.1.0/crates/hypixel/tests/fixtures/status.json +10 -0
  42. hypixel_sdk-0.1.0/crates/hypixel/tests/integration.rs +116 -0
  43. hypixel_sdk-0.1.0/crates/hypixel-py/Cargo.toml +24 -0
  44. hypixel_sdk-0.1.0/crates/hypixel-py/LICENSE +21 -0
  45. hypixel_sdk-0.1.0/crates/hypixel-py/README.md +31 -0
  46. hypixel_sdk-0.1.0/crates/hypixel-py/src/async_client.rs +332 -0
  47. hypixel_sdk-0.1.0/crates/hypixel-py/src/client.rs +262 -0
  48. hypixel_sdk-0.1.0/crates/hypixel-py/src/convert.rs +30 -0
  49. hypixel_sdk-0.1.0/crates/hypixel-py/src/errors.rs +59 -0
  50. hypixel_sdk-0.1.0/crates/hypixel-py/src/lib.rs +37 -0
  51. hypixel_sdk-0.1.0/crates/hypixel-py/src/ratelimit.rs +29 -0
  52. hypixel_sdk-0.1.0/crates/hypixel-py/src/util.rs +26 -0
  53. hypixel_sdk-0.1.0/crates/hypixel-py/tests/conftest.py +56 -0
  54. hypixel_sdk-0.1.0/crates/hypixel-py/tests/test_client.py +41 -0
  55. hypixel_sdk-0.1.0/crates/hypixel-py/tests/test_util.py +32 -0
  56. hypixel_sdk-0.1.0/pyproject.toml +39 -0
  57. hypixel_sdk-0.1.0/python/hypixel/__init__.py +29 -0
  58. hypixel_sdk-0.1.0/python/hypixel/__init__.pyi +226 -0
  59. hypixel_sdk-0.1.0/python/hypixel/py.typed +0 -0
  60. hypixel_sdk-0.1.0/python/hypixel/util.py +5 -0
  61. hypixel_sdk-0.1.0/python/hypixel/util.pyi +12 -0
@@ -0,0 +1,1916 @@
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 = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "android_system_properties"
22
+ version = "0.1.5"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
25
+ dependencies = [
26
+ "libc",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "assert-json-diff"
31
+ version = "2.0.2"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
34
+ dependencies = [
35
+ "serde",
36
+ "serde_json",
37
+ ]
38
+
39
+ [[package]]
40
+ name = "atomic-waker"
41
+ version = "1.1.2"
42
+ source = "registry+https://github.com/rust-lang/crates.io-index"
43
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
44
+
45
+ [[package]]
46
+ name = "autocfg"
47
+ version = "1.5.1"
48
+ source = "registry+https://github.com/rust-lang/crates.io-index"
49
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
50
+
51
+ [[package]]
52
+ name = "base64"
53
+ version = "0.22.1"
54
+ source = "registry+https://github.com/rust-lang/crates.io-index"
55
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
56
+
57
+ [[package]]
58
+ name = "bitflags"
59
+ version = "2.13.0"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
62
+
63
+ [[package]]
64
+ name = "bumpalo"
65
+ version = "3.20.3"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
68
+
69
+ [[package]]
70
+ name = "byteorder"
71
+ version = "1.5.0"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
74
+
75
+ [[package]]
76
+ name = "bytes"
77
+ version = "1.12.0"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
80
+
81
+ [[package]]
82
+ name = "cc"
83
+ version = "1.2.65"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
86
+ dependencies = [
87
+ "find-msvc-tools",
88
+ "shlex",
89
+ ]
90
+
91
+ [[package]]
92
+ name = "cesu8"
93
+ version = "1.1.0"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
96
+
97
+ [[package]]
98
+ name = "cfg-if"
99
+ version = "1.0.4"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
102
+
103
+ [[package]]
104
+ name = "cfg_aliases"
105
+ version = "0.2.1"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
108
+
109
+ [[package]]
110
+ name = "chrono"
111
+ version = "0.4.45"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
114
+ dependencies = [
115
+ "iana-time-zone",
116
+ "num-traits",
117
+ "serde",
118
+ "windows-link",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "core-foundation-sys"
123
+ version = "0.8.7"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
126
+
127
+ [[package]]
128
+ name = "crc32fast"
129
+ version = "1.5.0"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
132
+ dependencies = [
133
+ "cfg-if",
134
+ ]
135
+
136
+ [[package]]
137
+ name = "deadpool"
138
+ version = "0.12.3"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "0be2b1d1d6ec8d846f05e137292d0b89133caf95ef33695424c09568bdd39b1b"
141
+ dependencies = [
142
+ "deadpool-runtime",
143
+ "lazy_static",
144
+ "num_cpus",
145
+ "tokio",
146
+ ]
147
+
148
+ [[package]]
149
+ name = "deadpool-runtime"
150
+ version = "0.1.4"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
153
+
154
+ [[package]]
155
+ name = "displaydoc"
156
+ version = "0.2.6"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
159
+ dependencies = [
160
+ "proc-macro2",
161
+ "quote",
162
+ "syn",
163
+ ]
164
+
165
+ [[package]]
166
+ name = "dotenvy"
167
+ version = "0.15.7"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
170
+
171
+ [[package]]
172
+ name = "equivalent"
173
+ version = "1.0.2"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
176
+
177
+ [[package]]
178
+ name = "fastnbt"
179
+ version = "2.6.1"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "e2c4573fc9ea51f5ad19c47a16b78427b127f1c00b62808c6ab392beeb5f72c9"
182
+ dependencies = [
183
+ "byteorder",
184
+ "cesu8",
185
+ "serde",
186
+ "serde_bytes",
187
+ ]
188
+
189
+ [[package]]
190
+ name = "find-msvc-tools"
191
+ version = "0.1.9"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
194
+
195
+ [[package]]
196
+ name = "flate2"
197
+ version = "1.1.9"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
200
+ dependencies = [
201
+ "crc32fast",
202
+ "miniz_oxide",
203
+ ]
204
+
205
+ [[package]]
206
+ name = "fnv"
207
+ version = "1.0.7"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
210
+
211
+ [[package]]
212
+ name = "form_urlencoded"
213
+ version = "1.2.2"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
216
+ dependencies = [
217
+ "percent-encoding",
218
+ ]
219
+
220
+ [[package]]
221
+ name = "futures"
222
+ version = "0.3.32"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
225
+ dependencies = [
226
+ "futures-channel",
227
+ "futures-core",
228
+ "futures-executor",
229
+ "futures-io",
230
+ "futures-sink",
231
+ "futures-task",
232
+ "futures-util",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "futures-channel"
237
+ version = "0.3.32"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
240
+ dependencies = [
241
+ "futures-core",
242
+ "futures-sink",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "futures-core"
247
+ version = "0.3.32"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
250
+
251
+ [[package]]
252
+ name = "futures-executor"
253
+ version = "0.3.32"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
256
+ dependencies = [
257
+ "futures-core",
258
+ "futures-task",
259
+ "futures-util",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "futures-io"
264
+ version = "0.3.32"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
267
+
268
+ [[package]]
269
+ name = "futures-macro"
270
+ version = "0.3.32"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
273
+ dependencies = [
274
+ "proc-macro2",
275
+ "quote",
276
+ "syn",
277
+ ]
278
+
279
+ [[package]]
280
+ name = "futures-sink"
281
+ version = "0.3.32"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
284
+
285
+ [[package]]
286
+ name = "futures-task"
287
+ version = "0.3.32"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
290
+
291
+ [[package]]
292
+ name = "futures-util"
293
+ version = "0.3.32"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
296
+ dependencies = [
297
+ "futures-channel",
298
+ "futures-core",
299
+ "futures-io",
300
+ "futures-macro",
301
+ "futures-sink",
302
+ "futures-task",
303
+ "memchr",
304
+ "pin-project-lite",
305
+ "slab",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "getrandom"
310
+ version = "0.2.17"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
313
+ dependencies = [
314
+ "cfg-if",
315
+ "js-sys",
316
+ "libc",
317
+ "wasi",
318
+ "wasm-bindgen",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "getrandom"
323
+ version = "0.3.4"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
326
+ dependencies = [
327
+ "cfg-if",
328
+ "js-sys",
329
+ "libc",
330
+ "r-efi",
331
+ "wasip2",
332
+ "wasm-bindgen",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "h2"
337
+ version = "0.4.15"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
340
+ dependencies = [
341
+ "atomic-waker",
342
+ "bytes",
343
+ "fnv",
344
+ "futures-core",
345
+ "futures-sink",
346
+ "http",
347
+ "indexmap",
348
+ "slab",
349
+ "tokio",
350
+ "tokio-util",
351
+ "tracing",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "hashbrown"
356
+ version = "0.17.1"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
359
+
360
+ [[package]]
361
+ name = "heck"
362
+ version = "0.5.0"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
365
+
366
+ [[package]]
367
+ name = "hermit-abi"
368
+ version = "0.5.2"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
371
+
372
+ [[package]]
373
+ name = "http"
374
+ version = "1.4.2"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
377
+ dependencies = [
378
+ "bytes",
379
+ "itoa",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "http-body"
384
+ version = "1.0.1"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
387
+ dependencies = [
388
+ "bytes",
389
+ "http",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "http-body-util"
394
+ version = "0.1.3"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
397
+ dependencies = [
398
+ "bytes",
399
+ "futures-core",
400
+ "http",
401
+ "http-body",
402
+ "pin-project-lite",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "httparse"
407
+ version = "1.10.1"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
410
+
411
+ [[package]]
412
+ name = "httpdate"
413
+ version = "1.0.3"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
416
+
417
+ [[package]]
418
+ name = "hyper"
419
+ version = "1.10.1"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
422
+ dependencies = [
423
+ "atomic-waker",
424
+ "bytes",
425
+ "futures-channel",
426
+ "futures-core",
427
+ "h2",
428
+ "http",
429
+ "http-body",
430
+ "httparse",
431
+ "httpdate",
432
+ "itoa",
433
+ "pin-project-lite",
434
+ "smallvec",
435
+ "tokio",
436
+ "want",
437
+ ]
438
+
439
+ [[package]]
440
+ name = "hyper-rustls"
441
+ version = "0.27.9"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
444
+ dependencies = [
445
+ "http",
446
+ "hyper",
447
+ "hyper-util",
448
+ "rustls",
449
+ "tokio",
450
+ "tokio-rustls",
451
+ "tower-service",
452
+ "webpki-roots",
453
+ ]
454
+
455
+ [[package]]
456
+ name = "hyper-util"
457
+ version = "0.1.20"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
460
+ dependencies = [
461
+ "base64",
462
+ "bytes",
463
+ "futures-channel",
464
+ "futures-util",
465
+ "http",
466
+ "http-body",
467
+ "hyper",
468
+ "ipnet",
469
+ "libc",
470
+ "percent-encoding",
471
+ "pin-project-lite",
472
+ "socket2",
473
+ "tokio",
474
+ "tower-service",
475
+ "tracing",
476
+ ]
477
+
478
+ [[package]]
479
+ name = "hypixel-py"
480
+ version = "0.1.0"
481
+ dependencies = [
482
+ "hypixel-sdk",
483
+ "pyo3",
484
+ "pyo3-async-runtimes",
485
+ "pythonize",
486
+ "serde",
487
+ "serde_json",
488
+ "tokio",
489
+ ]
490
+
491
+ [[package]]
492
+ name = "hypixel-sdk"
493
+ version = "0.1.0"
494
+ dependencies = [
495
+ "base64",
496
+ "chrono",
497
+ "dotenvy",
498
+ "fastnbt",
499
+ "flate2",
500
+ "reqwest",
501
+ "serde",
502
+ "serde_json",
503
+ "thiserror",
504
+ "tokio",
505
+ "wiremock",
506
+ ]
507
+
508
+ [[package]]
509
+ name = "iana-time-zone"
510
+ version = "0.1.65"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
513
+ dependencies = [
514
+ "android_system_properties",
515
+ "core-foundation-sys",
516
+ "iana-time-zone-haiku",
517
+ "js-sys",
518
+ "log",
519
+ "wasm-bindgen",
520
+ "windows-core",
521
+ ]
522
+
523
+ [[package]]
524
+ name = "iana-time-zone-haiku"
525
+ version = "0.1.2"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
528
+ dependencies = [
529
+ "cc",
530
+ ]
531
+
532
+ [[package]]
533
+ name = "icu_collections"
534
+ version = "2.2.0"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
537
+ dependencies = [
538
+ "displaydoc",
539
+ "potential_utf",
540
+ "utf8_iter",
541
+ "yoke",
542
+ "zerofrom",
543
+ "zerovec",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "icu_locale_core"
548
+ version = "2.2.0"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
551
+ dependencies = [
552
+ "displaydoc",
553
+ "litemap",
554
+ "tinystr",
555
+ "writeable",
556
+ "zerovec",
557
+ ]
558
+
559
+ [[package]]
560
+ name = "icu_normalizer"
561
+ version = "2.2.0"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
564
+ dependencies = [
565
+ "icu_collections",
566
+ "icu_normalizer_data",
567
+ "icu_properties",
568
+ "icu_provider",
569
+ "smallvec",
570
+ "zerovec",
571
+ ]
572
+
573
+ [[package]]
574
+ name = "icu_normalizer_data"
575
+ version = "2.2.0"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
578
+
579
+ [[package]]
580
+ name = "icu_properties"
581
+ version = "2.2.0"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
584
+ dependencies = [
585
+ "icu_collections",
586
+ "icu_locale_core",
587
+ "icu_properties_data",
588
+ "icu_provider",
589
+ "zerotrie",
590
+ "zerovec",
591
+ ]
592
+
593
+ [[package]]
594
+ name = "icu_properties_data"
595
+ version = "2.2.0"
596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
597
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
598
+
599
+ [[package]]
600
+ name = "icu_provider"
601
+ version = "2.2.0"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
604
+ dependencies = [
605
+ "displaydoc",
606
+ "icu_locale_core",
607
+ "writeable",
608
+ "yoke",
609
+ "zerofrom",
610
+ "zerotrie",
611
+ "zerovec",
612
+ ]
613
+
614
+ [[package]]
615
+ name = "idna"
616
+ version = "1.1.0"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
619
+ dependencies = [
620
+ "idna_adapter",
621
+ "smallvec",
622
+ "utf8_iter",
623
+ ]
624
+
625
+ [[package]]
626
+ name = "idna_adapter"
627
+ version = "1.2.2"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
630
+ dependencies = [
631
+ "icu_normalizer",
632
+ "icu_properties",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "indexmap"
637
+ version = "2.14.0"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
640
+ dependencies = [
641
+ "equivalent",
642
+ "hashbrown",
643
+ ]
644
+
645
+ [[package]]
646
+ name = "ipnet"
647
+ version = "2.12.0"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
650
+
651
+ [[package]]
652
+ name = "itoa"
653
+ version = "1.0.18"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
656
+
657
+ [[package]]
658
+ name = "js-sys"
659
+ version = "0.3.103"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
662
+ dependencies = [
663
+ "cfg-if",
664
+ "futures-util",
665
+ "wasm-bindgen",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "lazy_static"
670
+ version = "1.5.0"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
673
+
674
+ [[package]]
675
+ name = "libc"
676
+ version = "0.2.186"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
679
+
680
+ [[package]]
681
+ name = "litemap"
682
+ version = "0.8.2"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
685
+
686
+ [[package]]
687
+ name = "log"
688
+ version = "0.4.33"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
691
+
692
+ [[package]]
693
+ name = "lru-slab"
694
+ version = "0.1.2"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
697
+
698
+ [[package]]
699
+ name = "memchr"
700
+ version = "2.8.2"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
703
+
704
+ [[package]]
705
+ name = "miniz_oxide"
706
+ version = "0.8.9"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
709
+ dependencies = [
710
+ "adler2",
711
+ "simd-adler32",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "mio"
716
+ version = "1.2.1"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
719
+ dependencies = [
720
+ "libc",
721
+ "wasi",
722
+ "windows-sys 0.61.2",
723
+ ]
724
+
725
+ [[package]]
726
+ name = "num-traits"
727
+ version = "0.2.19"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
730
+ dependencies = [
731
+ "autocfg",
732
+ ]
733
+
734
+ [[package]]
735
+ name = "num_cpus"
736
+ version = "1.17.0"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
739
+ dependencies = [
740
+ "hermit-abi",
741
+ "libc",
742
+ ]
743
+
744
+ [[package]]
745
+ name = "once_cell"
746
+ version = "1.21.4"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
749
+
750
+ [[package]]
751
+ name = "percent-encoding"
752
+ version = "2.3.2"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
755
+
756
+ [[package]]
757
+ name = "pin-project-lite"
758
+ version = "0.2.17"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
761
+
762
+ [[package]]
763
+ name = "portable-atomic"
764
+ version = "1.13.1"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
767
+
768
+ [[package]]
769
+ name = "potential_utf"
770
+ version = "0.1.5"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
773
+ dependencies = [
774
+ "zerovec",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "ppv-lite86"
779
+ version = "0.2.21"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
782
+ dependencies = [
783
+ "zerocopy",
784
+ ]
785
+
786
+ [[package]]
787
+ name = "proc-macro2"
788
+ version = "1.0.106"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
791
+ dependencies = [
792
+ "unicode-ident",
793
+ ]
794
+
795
+ [[package]]
796
+ name = "pyo3"
797
+ version = "0.29.0"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
800
+ dependencies = [
801
+ "libc",
802
+ "once_cell",
803
+ "portable-atomic",
804
+ "pyo3-build-config",
805
+ "pyo3-ffi",
806
+ "pyo3-macros",
807
+ ]
808
+
809
+ [[package]]
810
+ name = "pyo3-async-runtimes"
811
+ version = "0.29.0"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "b3ef68daa7316a3fac65e5e18b2203f010346de1c1c53456811a2624673ab046"
814
+ dependencies = [
815
+ "futures-channel",
816
+ "futures-util",
817
+ "once_cell",
818
+ "pin-project-lite",
819
+ "pyo3",
820
+ "tokio",
821
+ ]
822
+
823
+ [[package]]
824
+ name = "pyo3-build-config"
825
+ version = "0.29.0"
826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
828
+ dependencies = [
829
+ "target-lexicon",
830
+ ]
831
+
832
+ [[package]]
833
+ name = "pyo3-ffi"
834
+ version = "0.29.0"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
837
+ dependencies = [
838
+ "libc",
839
+ "pyo3-build-config",
840
+ ]
841
+
842
+ [[package]]
843
+ name = "pyo3-macros"
844
+ version = "0.29.0"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
847
+ dependencies = [
848
+ "proc-macro2",
849
+ "pyo3-macros-backend",
850
+ "quote",
851
+ "syn",
852
+ ]
853
+
854
+ [[package]]
855
+ name = "pyo3-macros-backend"
856
+ version = "0.29.0"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
859
+ dependencies = [
860
+ "heck",
861
+ "proc-macro2",
862
+ "quote",
863
+ "syn",
864
+ ]
865
+
866
+ [[package]]
867
+ name = "pythonize"
868
+ version = "0.29.0"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "6ec376e1216e0c929a74964ce2020012a1a39f32d80e78aa688721219ea7fb89"
871
+ dependencies = [
872
+ "pyo3",
873
+ "serde",
874
+ ]
875
+
876
+ [[package]]
877
+ name = "quinn"
878
+ version = "0.11.11"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
881
+ dependencies = [
882
+ "bytes",
883
+ "cfg_aliases",
884
+ "pin-project-lite",
885
+ "quinn-proto",
886
+ "quinn-udp",
887
+ "rustc-hash",
888
+ "rustls",
889
+ "socket2",
890
+ "thiserror",
891
+ "tokio",
892
+ "tracing",
893
+ "web-time",
894
+ ]
895
+
896
+ [[package]]
897
+ name = "quinn-proto"
898
+ version = "0.11.15"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "4fcb935c5bec503c2f0e306bdd3e58bb9029dcb14fa8d9ac76e3a5256ac0763e"
901
+ dependencies = [
902
+ "bytes",
903
+ "getrandom 0.3.4",
904
+ "lru-slab",
905
+ "rand",
906
+ "ring",
907
+ "rustc-hash",
908
+ "rustls",
909
+ "rustls-pki-types",
910
+ "slab",
911
+ "thiserror",
912
+ "tinyvec",
913
+ "tracing",
914
+ "web-time",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "quinn-udp"
919
+ version = "0.5.14"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
922
+ dependencies = [
923
+ "cfg_aliases",
924
+ "libc",
925
+ "once_cell",
926
+ "socket2",
927
+ "tracing",
928
+ "windows-sys 0.60.2",
929
+ ]
930
+
931
+ [[package]]
932
+ name = "quote"
933
+ version = "1.0.46"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
936
+ dependencies = [
937
+ "proc-macro2",
938
+ ]
939
+
940
+ [[package]]
941
+ name = "r-efi"
942
+ version = "5.3.0"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
945
+
946
+ [[package]]
947
+ name = "rand"
948
+ version = "0.9.4"
949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
950
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
951
+ dependencies = [
952
+ "rand_chacha",
953
+ "rand_core",
954
+ ]
955
+
956
+ [[package]]
957
+ name = "rand_chacha"
958
+ version = "0.9.0"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
961
+ dependencies = [
962
+ "ppv-lite86",
963
+ "rand_core",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "rand_core"
968
+ version = "0.9.5"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
971
+ dependencies = [
972
+ "getrandom 0.3.4",
973
+ ]
974
+
975
+ [[package]]
976
+ name = "regex"
977
+ version = "1.12.4"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
980
+ dependencies = [
981
+ "aho-corasick",
982
+ "memchr",
983
+ "regex-automata",
984
+ "regex-syntax",
985
+ ]
986
+
987
+ [[package]]
988
+ name = "regex-automata"
989
+ version = "0.4.14"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
992
+ dependencies = [
993
+ "aho-corasick",
994
+ "memchr",
995
+ "regex-syntax",
996
+ ]
997
+
998
+ [[package]]
999
+ name = "regex-syntax"
1000
+ version = "0.8.11"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1003
+
1004
+ [[package]]
1005
+ name = "reqwest"
1006
+ version = "0.12.28"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1009
+ dependencies = [
1010
+ "base64",
1011
+ "bytes",
1012
+ "futures-core",
1013
+ "http",
1014
+ "http-body",
1015
+ "http-body-util",
1016
+ "hyper",
1017
+ "hyper-rustls",
1018
+ "hyper-util",
1019
+ "js-sys",
1020
+ "log",
1021
+ "percent-encoding",
1022
+ "pin-project-lite",
1023
+ "quinn",
1024
+ "rustls",
1025
+ "rustls-pki-types",
1026
+ "serde",
1027
+ "serde_json",
1028
+ "serde_urlencoded",
1029
+ "sync_wrapper",
1030
+ "tokio",
1031
+ "tokio-rustls",
1032
+ "tower",
1033
+ "tower-http",
1034
+ "tower-service",
1035
+ "url",
1036
+ "wasm-bindgen",
1037
+ "wasm-bindgen-futures",
1038
+ "web-sys",
1039
+ "webpki-roots",
1040
+ ]
1041
+
1042
+ [[package]]
1043
+ name = "ring"
1044
+ version = "0.17.14"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1047
+ dependencies = [
1048
+ "cc",
1049
+ "cfg-if",
1050
+ "getrandom 0.2.17",
1051
+ "libc",
1052
+ "untrusted",
1053
+ "windows-sys 0.52.0",
1054
+ ]
1055
+
1056
+ [[package]]
1057
+ name = "rustc-hash"
1058
+ version = "2.1.2"
1059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1060
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1061
+
1062
+ [[package]]
1063
+ name = "rustls"
1064
+ version = "0.23.41"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
1067
+ dependencies = [
1068
+ "once_cell",
1069
+ "ring",
1070
+ "rustls-pki-types",
1071
+ "rustls-webpki",
1072
+ "subtle",
1073
+ "zeroize",
1074
+ ]
1075
+
1076
+ [[package]]
1077
+ name = "rustls-pki-types"
1078
+ version = "1.14.1"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
1081
+ dependencies = [
1082
+ "web-time",
1083
+ "zeroize",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "rustls-webpki"
1088
+ version = "0.103.13"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1091
+ dependencies = [
1092
+ "ring",
1093
+ "rustls-pki-types",
1094
+ "untrusted",
1095
+ ]
1096
+
1097
+ [[package]]
1098
+ name = "rustversion"
1099
+ version = "1.0.22"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1102
+
1103
+ [[package]]
1104
+ name = "ryu"
1105
+ version = "1.0.23"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1108
+
1109
+ [[package]]
1110
+ name = "serde"
1111
+ version = "1.0.228"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1114
+ dependencies = [
1115
+ "serde_core",
1116
+ "serde_derive",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "serde_bytes"
1121
+ version = "0.11.19"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8"
1124
+ dependencies = [
1125
+ "serde",
1126
+ "serde_core",
1127
+ ]
1128
+
1129
+ [[package]]
1130
+ name = "serde_core"
1131
+ version = "1.0.228"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1134
+ dependencies = [
1135
+ "serde_derive",
1136
+ ]
1137
+
1138
+ [[package]]
1139
+ name = "serde_derive"
1140
+ version = "1.0.228"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1143
+ dependencies = [
1144
+ "proc-macro2",
1145
+ "quote",
1146
+ "syn",
1147
+ ]
1148
+
1149
+ [[package]]
1150
+ name = "serde_json"
1151
+ version = "1.0.150"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1154
+ dependencies = [
1155
+ "itoa",
1156
+ "memchr",
1157
+ "serde",
1158
+ "serde_core",
1159
+ "zmij",
1160
+ ]
1161
+
1162
+ [[package]]
1163
+ name = "serde_urlencoded"
1164
+ version = "0.7.1"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1167
+ dependencies = [
1168
+ "form_urlencoded",
1169
+ "itoa",
1170
+ "ryu",
1171
+ "serde",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "shlex"
1176
+ version = "2.0.1"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1179
+
1180
+ [[package]]
1181
+ name = "simd-adler32"
1182
+ version = "0.3.9"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1185
+
1186
+ [[package]]
1187
+ name = "slab"
1188
+ version = "0.4.12"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1191
+
1192
+ [[package]]
1193
+ name = "smallvec"
1194
+ version = "1.15.2"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1197
+
1198
+ [[package]]
1199
+ name = "socket2"
1200
+ version = "0.6.4"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
1203
+ dependencies = [
1204
+ "libc",
1205
+ "windows-sys 0.61.2",
1206
+ ]
1207
+
1208
+ [[package]]
1209
+ name = "stable_deref_trait"
1210
+ version = "1.2.1"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1213
+
1214
+ [[package]]
1215
+ name = "subtle"
1216
+ version = "2.6.1"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1219
+
1220
+ [[package]]
1221
+ name = "syn"
1222
+ version = "2.0.118"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
1225
+ dependencies = [
1226
+ "proc-macro2",
1227
+ "quote",
1228
+ "unicode-ident",
1229
+ ]
1230
+
1231
+ [[package]]
1232
+ name = "sync_wrapper"
1233
+ version = "1.0.2"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1236
+ dependencies = [
1237
+ "futures-core",
1238
+ ]
1239
+
1240
+ [[package]]
1241
+ name = "synstructure"
1242
+ version = "0.13.2"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1245
+ dependencies = [
1246
+ "proc-macro2",
1247
+ "quote",
1248
+ "syn",
1249
+ ]
1250
+
1251
+ [[package]]
1252
+ name = "target-lexicon"
1253
+ version = "0.13.5"
1254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1255
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1256
+
1257
+ [[package]]
1258
+ name = "thiserror"
1259
+ version = "2.0.18"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1262
+ dependencies = [
1263
+ "thiserror-impl",
1264
+ ]
1265
+
1266
+ [[package]]
1267
+ name = "thiserror-impl"
1268
+ version = "2.0.18"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1271
+ dependencies = [
1272
+ "proc-macro2",
1273
+ "quote",
1274
+ "syn",
1275
+ ]
1276
+
1277
+ [[package]]
1278
+ name = "tinystr"
1279
+ version = "0.8.3"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1282
+ dependencies = [
1283
+ "displaydoc",
1284
+ "zerovec",
1285
+ ]
1286
+
1287
+ [[package]]
1288
+ name = "tinyvec"
1289
+ version = "1.11.0"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
1292
+ dependencies = [
1293
+ "tinyvec_macros",
1294
+ ]
1295
+
1296
+ [[package]]
1297
+ name = "tinyvec_macros"
1298
+ version = "0.1.1"
1299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1300
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1301
+
1302
+ [[package]]
1303
+ name = "tokio"
1304
+ version = "1.52.3"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
1307
+ dependencies = [
1308
+ "bytes",
1309
+ "libc",
1310
+ "mio",
1311
+ "pin-project-lite",
1312
+ "socket2",
1313
+ "tokio-macros",
1314
+ "windows-sys 0.61.2",
1315
+ ]
1316
+
1317
+ [[package]]
1318
+ name = "tokio-macros"
1319
+ version = "2.7.0"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
1322
+ dependencies = [
1323
+ "proc-macro2",
1324
+ "quote",
1325
+ "syn",
1326
+ ]
1327
+
1328
+ [[package]]
1329
+ name = "tokio-rustls"
1330
+ version = "0.26.4"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
1333
+ dependencies = [
1334
+ "rustls",
1335
+ "tokio",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "tokio-util"
1340
+ version = "0.7.18"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1343
+ dependencies = [
1344
+ "bytes",
1345
+ "futures-core",
1346
+ "futures-sink",
1347
+ "pin-project-lite",
1348
+ "tokio",
1349
+ ]
1350
+
1351
+ [[package]]
1352
+ name = "tower"
1353
+ version = "0.5.3"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1356
+ dependencies = [
1357
+ "futures-core",
1358
+ "futures-util",
1359
+ "pin-project-lite",
1360
+ "sync_wrapper",
1361
+ "tokio",
1362
+ "tower-layer",
1363
+ "tower-service",
1364
+ ]
1365
+
1366
+ [[package]]
1367
+ name = "tower-http"
1368
+ version = "0.6.11"
1369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1370
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
1371
+ dependencies = [
1372
+ "bitflags",
1373
+ "bytes",
1374
+ "futures-util",
1375
+ "http",
1376
+ "http-body",
1377
+ "pin-project-lite",
1378
+ "tower",
1379
+ "tower-layer",
1380
+ "tower-service",
1381
+ "url",
1382
+ ]
1383
+
1384
+ [[package]]
1385
+ name = "tower-layer"
1386
+ version = "0.3.3"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1389
+
1390
+ [[package]]
1391
+ name = "tower-service"
1392
+ version = "0.3.3"
1393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1394
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1395
+
1396
+ [[package]]
1397
+ name = "tracing"
1398
+ version = "0.1.44"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1401
+ dependencies = [
1402
+ "pin-project-lite",
1403
+ "tracing-core",
1404
+ ]
1405
+
1406
+ [[package]]
1407
+ name = "tracing-core"
1408
+ version = "0.1.36"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1411
+ dependencies = [
1412
+ "once_cell",
1413
+ ]
1414
+
1415
+ [[package]]
1416
+ name = "try-lock"
1417
+ version = "0.2.5"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1420
+
1421
+ [[package]]
1422
+ name = "unicode-ident"
1423
+ version = "1.0.24"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1426
+
1427
+ [[package]]
1428
+ name = "untrusted"
1429
+ version = "0.9.0"
1430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1432
+
1433
+ [[package]]
1434
+ name = "url"
1435
+ version = "2.5.8"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1438
+ dependencies = [
1439
+ "form_urlencoded",
1440
+ "idna",
1441
+ "percent-encoding",
1442
+ "serde",
1443
+ ]
1444
+
1445
+ [[package]]
1446
+ name = "utf8_iter"
1447
+ version = "1.0.4"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1450
+
1451
+ [[package]]
1452
+ name = "want"
1453
+ version = "0.3.1"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
1456
+ dependencies = [
1457
+ "try-lock",
1458
+ ]
1459
+
1460
+ [[package]]
1461
+ name = "wasi"
1462
+ version = "0.11.1+wasi-snapshot-preview1"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1465
+
1466
+ [[package]]
1467
+ name = "wasip2"
1468
+ version = "1.0.4+wasi-0.2.12"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
1471
+ dependencies = [
1472
+ "wit-bindgen",
1473
+ ]
1474
+
1475
+ [[package]]
1476
+ name = "wasm-bindgen"
1477
+ version = "0.2.126"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
1480
+ dependencies = [
1481
+ "cfg-if",
1482
+ "once_cell",
1483
+ "rustversion",
1484
+ "wasm-bindgen-macro",
1485
+ "wasm-bindgen-shared",
1486
+ ]
1487
+
1488
+ [[package]]
1489
+ name = "wasm-bindgen-futures"
1490
+ version = "0.4.76"
1491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1492
+ checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
1493
+ dependencies = [
1494
+ "js-sys",
1495
+ "wasm-bindgen",
1496
+ ]
1497
+
1498
+ [[package]]
1499
+ name = "wasm-bindgen-macro"
1500
+ version = "0.2.126"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
1503
+ dependencies = [
1504
+ "quote",
1505
+ "wasm-bindgen-macro-support",
1506
+ ]
1507
+
1508
+ [[package]]
1509
+ name = "wasm-bindgen-macro-support"
1510
+ version = "0.2.126"
1511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1512
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
1513
+ dependencies = [
1514
+ "bumpalo",
1515
+ "proc-macro2",
1516
+ "quote",
1517
+ "syn",
1518
+ "wasm-bindgen-shared",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "wasm-bindgen-shared"
1523
+ version = "0.2.126"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
1526
+ dependencies = [
1527
+ "unicode-ident",
1528
+ ]
1529
+
1530
+ [[package]]
1531
+ name = "web-sys"
1532
+ version = "0.3.103"
1533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1534
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
1535
+ dependencies = [
1536
+ "js-sys",
1537
+ "wasm-bindgen",
1538
+ ]
1539
+
1540
+ [[package]]
1541
+ name = "web-time"
1542
+ version = "1.1.0"
1543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1544
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
1545
+ dependencies = [
1546
+ "js-sys",
1547
+ "wasm-bindgen",
1548
+ ]
1549
+
1550
+ [[package]]
1551
+ name = "webpki-roots"
1552
+ version = "1.0.8"
1553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1554
+ checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf"
1555
+ dependencies = [
1556
+ "rustls-pki-types",
1557
+ ]
1558
+
1559
+ [[package]]
1560
+ name = "windows-core"
1561
+ version = "0.62.2"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1564
+ dependencies = [
1565
+ "windows-implement",
1566
+ "windows-interface",
1567
+ "windows-link",
1568
+ "windows-result",
1569
+ "windows-strings",
1570
+ ]
1571
+
1572
+ [[package]]
1573
+ name = "windows-implement"
1574
+ version = "0.60.2"
1575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1576
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1577
+ dependencies = [
1578
+ "proc-macro2",
1579
+ "quote",
1580
+ "syn",
1581
+ ]
1582
+
1583
+ [[package]]
1584
+ name = "windows-interface"
1585
+ version = "0.59.3"
1586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1588
+ dependencies = [
1589
+ "proc-macro2",
1590
+ "quote",
1591
+ "syn",
1592
+ ]
1593
+
1594
+ [[package]]
1595
+ name = "windows-link"
1596
+ version = "0.2.1"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1599
+
1600
+ [[package]]
1601
+ name = "windows-result"
1602
+ version = "0.4.1"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1605
+ dependencies = [
1606
+ "windows-link",
1607
+ ]
1608
+
1609
+ [[package]]
1610
+ name = "windows-strings"
1611
+ version = "0.5.1"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1614
+ dependencies = [
1615
+ "windows-link",
1616
+ ]
1617
+
1618
+ [[package]]
1619
+ name = "windows-sys"
1620
+ version = "0.52.0"
1621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1622
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1623
+ dependencies = [
1624
+ "windows-targets 0.52.6",
1625
+ ]
1626
+
1627
+ [[package]]
1628
+ name = "windows-sys"
1629
+ version = "0.60.2"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1632
+ dependencies = [
1633
+ "windows-targets 0.53.5",
1634
+ ]
1635
+
1636
+ [[package]]
1637
+ name = "windows-sys"
1638
+ version = "0.61.2"
1639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1641
+ dependencies = [
1642
+ "windows-link",
1643
+ ]
1644
+
1645
+ [[package]]
1646
+ name = "windows-targets"
1647
+ version = "0.52.6"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1650
+ dependencies = [
1651
+ "windows_aarch64_gnullvm 0.52.6",
1652
+ "windows_aarch64_msvc 0.52.6",
1653
+ "windows_i686_gnu 0.52.6",
1654
+ "windows_i686_gnullvm 0.52.6",
1655
+ "windows_i686_msvc 0.52.6",
1656
+ "windows_x86_64_gnu 0.52.6",
1657
+ "windows_x86_64_gnullvm 0.52.6",
1658
+ "windows_x86_64_msvc 0.52.6",
1659
+ ]
1660
+
1661
+ [[package]]
1662
+ name = "windows-targets"
1663
+ version = "0.53.5"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1666
+ dependencies = [
1667
+ "windows-link",
1668
+ "windows_aarch64_gnullvm 0.53.1",
1669
+ "windows_aarch64_msvc 0.53.1",
1670
+ "windows_i686_gnu 0.53.1",
1671
+ "windows_i686_gnullvm 0.53.1",
1672
+ "windows_i686_msvc 0.53.1",
1673
+ "windows_x86_64_gnu 0.53.1",
1674
+ "windows_x86_64_gnullvm 0.53.1",
1675
+ "windows_x86_64_msvc 0.53.1",
1676
+ ]
1677
+
1678
+ [[package]]
1679
+ name = "windows_aarch64_gnullvm"
1680
+ version = "0.52.6"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1683
+
1684
+ [[package]]
1685
+ name = "windows_aarch64_gnullvm"
1686
+ version = "0.53.1"
1687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1688
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1689
+
1690
+ [[package]]
1691
+ name = "windows_aarch64_msvc"
1692
+ version = "0.52.6"
1693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1694
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1695
+
1696
+ [[package]]
1697
+ name = "windows_aarch64_msvc"
1698
+ version = "0.53.1"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1701
+
1702
+ [[package]]
1703
+ name = "windows_i686_gnu"
1704
+ version = "0.52.6"
1705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1707
+
1708
+ [[package]]
1709
+ name = "windows_i686_gnu"
1710
+ version = "0.53.1"
1711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1713
+
1714
+ [[package]]
1715
+ name = "windows_i686_gnullvm"
1716
+ version = "0.52.6"
1717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1718
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1719
+
1720
+ [[package]]
1721
+ name = "windows_i686_gnullvm"
1722
+ version = "0.53.1"
1723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1724
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1725
+
1726
+ [[package]]
1727
+ name = "windows_i686_msvc"
1728
+ version = "0.52.6"
1729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1730
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1731
+
1732
+ [[package]]
1733
+ name = "windows_i686_msvc"
1734
+ version = "0.53.1"
1735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1736
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1737
+
1738
+ [[package]]
1739
+ name = "windows_x86_64_gnu"
1740
+ version = "0.52.6"
1741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1742
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1743
+
1744
+ [[package]]
1745
+ name = "windows_x86_64_gnu"
1746
+ version = "0.53.1"
1747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1748
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1749
+
1750
+ [[package]]
1751
+ name = "windows_x86_64_gnullvm"
1752
+ version = "0.52.6"
1753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1754
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1755
+
1756
+ [[package]]
1757
+ name = "windows_x86_64_gnullvm"
1758
+ version = "0.53.1"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1761
+
1762
+ [[package]]
1763
+ name = "windows_x86_64_msvc"
1764
+ version = "0.52.6"
1765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1766
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1767
+
1768
+ [[package]]
1769
+ name = "windows_x86_64_msvc"
1770
+ version = "0.53.1"
1771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1772
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
1773
+
1774
+ [[package]]
1775
+ name = "wiremock"
1776
+ version = "0.6.5"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "08db1edfb05d9b3c1542e521aea074442088292f00b5f28e435c714a98f85031"
1779
+ dependencies = [
1780
+ "assert-json-diff",
1781
+ "base64",
1782
+ "deadpool",
1783
+ "futures",
1784
+ "http",
1785
+ "http-body-util",
1786
+ "hyper",
1787
+ "hyper-util",
1788
+ "log",
1789
+ "once_cell",
1790
+ "regex",
1791
+ "serde",
1792
+ "serde_json",
1793
+ "tokio",
1794
+ "url",
1795
+ ]
1796
+
1797
+ [[package]]
1798
+ name = "wit-bindgen"
1799
+ version = "0.57.1"
1800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1801
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1802
+
1803
+ [[package]]
1804
+ name = "writeable"
1805
+ version = "0.6.3"
1806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1807
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
1808
+
1809
+ [[package]]
1810
+ name = "yoke"
1811
+ version = "0.8.3"
1812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1813
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
1814
+ dependencies = [
1815
+ "stable_deref_trait",
1816
+ "yoke-derive",
1817
+ "zerofrom",
1818
+ ]
1819
+
1820
+ [[package]]
1821
+ name = "yoke-derive"
1822
+ version = "0.8.2"
1823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1824
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
1825
+ dependencies = [
1826
+ "proc-macro2",
1827
+ "quote",
1828
+ "syn",
1829
+ "synstructure",
1830
+ ]
1831
+
1832
+ [[package]]
1833
+ name = "zerocopy"
1834
+ version = "0.8.52"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
1837
+ dependencies = [
1838
+ "zerocopy-derive",
1839
+ ]
1840
+
1841
+ [[package]]
1842
+ name = "zerocopy-derive"
1843
+ version = "0.8.52"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
1846
+ dependencies = [
1847
+ "proc-macro2",
1848
+ "quote",
1849
+ "syn",
1850
+ ]
1851
+
1852
+ [[package]]
1853
+ name = "zerofrom"
1854
+ version = "0.1.8"
1855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1856
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
1857
+ dependencies = [
1858
+ "zerofrom-derive",
1859
+ ]
1860
+
1861
+ [[package]]
1862
+ name = "zerofrom-derive"
1863
+ version = "0.1.7"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
1866
+ dependencies = [
1867
+ "proc-macro2",
1868
+ "quote",
1869
+ "syn",
1870
+ "synstructure",
1871
+ ]
1872
+
1873
+ [[package]]
1874
+ name = "zeroize"
1875
+ version = "1.9.0"
1876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1877
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
1878
+
1879
+ [[package]]
1880
+ name = "zerotrie"
1881
+ version = "0.2.4"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
1884
+ dependencies = [
1885
+ "displaydoc",
1886
+ "yoke",
1887
+ "zerofrom",
1888
+ ]
1889
+
1890
+ [[package]]
1891
+ name = "zerovec"
1892
+ version = "0.11.6"
1893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1894
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
1895
+ dependencies = [
1896
+ "yoke",
1897
+ "zerofrom",
1898
+ "zerovec-derive",
1899
+ ]
1900
+
1901
+ [[package]]
1902
+ name = "zerovec-derive"
1903
+ version = "0.11.3"
1904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1905
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
1906
+ dependencies = [
1907
+ "proc-macro2",
1908
+ "quote",
1909
+ "syn",
1910
+ ]
1911
+
1912
+ [[package]]
1913
+ name = "zmij"
1914
+ version = "1.0.21"
1915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1916
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"