feedparser-rs 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 (60) hide show
  1. feedparser_rs-0.1.0/Cargo.lock +2835 -0
  2. feedparser_rs-0.1.0/Cargo.toml +52 -0
  3. feedparser_rs-0.1.0/PKG-INFO +240 -0
  4. feedparser_rs-0.1.0/README.md +215 -0
  5. feedparser_rs-0.1.0/crates/feedparser-rs-core/Cargo.toml +41 -0
  6. feedparser_rs-0.1.0/crates/feedparser-rs-core/README.md +143 -0
  7. feedparser_rs-0.1.0/crates/feedparser-rs-core/benches/parsing.rs +52 -0
  8. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/compat/mod.rs +6 -0
  9. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/error.rs +99 -0
  10. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/http/client.rs +345 -0
  11. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/http/mod.rs +34 -0
  12. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/http/response.rs +76 -0
  13. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/http/validation.rs +382 -0
  14. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/lib.rs +296 -0
  15. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/limits.rs +396 -0
  16. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/namespace/content.rs +81 -0
  17. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/namespace/dublin_core.rs +247 -0
  18. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/namespace/media_rss.rs +161 -0
  19. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/namespace/mod.rs +141 -0
  20. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/parser/atom.rs +739 -0
  21. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/parser/common.rs +339 -0
  22. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/parser/detect.rs +287 -0
  23. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/parser/json.rs +504 -0
  24. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/parser/mod.rs +114 -0
  25. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/parser/namespace_detection.rs +227 -0
  26. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/parser/rss.rs +1105 -0
  27. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/types/common.rs +617 -0
  28. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/types/entry.rs +211 -0
  29. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/types/feed.rs +405 -0
  30. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/types/generics.rs +317 -0
  31. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/types/mod.rs +19 -0
  32. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/types/podcast.rs +495 -0
  33. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/types/version.rs +85 -0
  34. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/util/date.rs +285 -0
  35. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/util/encoding.rs +259 -0
  36. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/util/mod.rs +12 -0
  37. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/util/sanitize.rs +276 -0
  38. feedparser_rs-0.1.0/crates/feedparser-rs-core/src/util/text.rs +29 -0
  39. feedparser_rs-0.1.0/crates/feedparser-rs-core/tests/http_integration.rs +845 -0
  40. feedparser_rs-0.1.0/crates/feedparser-rs-core/tests/integration_tests.rs +234 -0
  41. feedparser_rs-0.1.0/crates/feedparser-rs-core/tests/namespace_edge_cases.rs +467 -0
  42. feedparser_rs-0.1.0/crates/feedparser-rs-core/tests/namespace_integration.rs +251 -0
  43. feedparser_rs-0.1.0/crates/feedparser-rs-py/Cargo.toml +25 -0
  44. feedparser_rs-0.1.0/crates/feedparser-rs-py/README.md +215 -0
  45. feedparser_rs-0.1.0/crates/feedparser-rs-py/python/feedparser_rs/__init__.py +35 -0
  46. feedparser_rs-0.1.0/crates/feedparser-rs-py/python/feedparser_rs/py.typed +1 -0
  47. feedparser_rs-0.1.0/crates/feedparser-rs-py/src/error.rs +21 -0
  48. feedparser_rs-0.1.0/crates/feedparser-rs-py/src/lib.rs +167 -0
  49. feedparser_rs-0.1.0/crates/feedparser-rs-py/src/limits.rs +197 -0
  50. feedparser_rs-0.1.0/crates/feedparser-rs-py/src/types/common.rs +390 -0
  51. feedparser_rs-0.1.0/crates/feedparser-rs-py/src/types/datetime.rs +44 -0
  52. feedparser_rs-0.1.0/crates/feedparser-rs-py/src/types/entry.rs +224 -0
  53. feedparser_rs-0.1.0/crates/feedparser-rs-py/src/types/feed_meta.rs +207 -0
  54. feedparser_rs-0.1.0/crates/feedparser-rs-py/src/types/mod.rs +8 -0
  55. feedparser_rs-0.1.0/crates/feedparser-rs-py/src/types/parsed_feed.rs +144 -0
  56. feedparser_rs-0.1.0/crates/feedparser-rs-py/src/types/podcast.rs +380 -0
  57. feedparser_rs-0.1.0/crates/feedparser-rs-py/tests/test_basic.py +240 -0
  58. feedparser_rs-0.1.0/pyproject.toml +37 -0
  59. feedparser_rs-0.1.0/python/feedparser_rs/__init__.py +35 -0
  60. feedparser_rs-0.1.0/python/feedparser_rs/py.typed +1 -0
@@ -0,0 +1,2835 @@
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 = "alloc-no-stdlib"
22
+ version = "2.0.4"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
25
+
26
+ [[package]]
27
+ name = "alloc-stdlib"
28
+ version = "0.2.2"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
31
+ dependencies = [
32
+ "alloc-no-stdlib",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "alloca"
37
+ version = "0.4.0"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
40
+ dependencies = [
41
+ "cc",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "ammonia"
46
+ version = "4.1.2"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "17e913097e1a2124b46746c980134e8c954bc17a6a59bb3fde96f088d126dde6"
49
+ dependencies = [
50
+ "cssparser",
51
+ "html5ever",
52
+ "maplit",
53
+ "tendril",
54
+ "url",
55
+ ]
56
+
57
+ [[package]]
58
+ name = "android_system_properties"
59
+ version = "0.1.5"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
62
+ dependencies = [
63
+ "libc",
64
+ ]
65
+
66
+ [[package]]
67
+ name = "anes"
68
+ version = "0.1.6"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
71
+
72
+ [[package]]
73
+ name = "anstyle"
74
+ version = "1.0.13"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
77
+
78
+ [[package]]
79
+ name = "anyhow"
80
+ version = "1.0.100"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
83
+
84
+ [[package]]
85
+ name = "assert-json-diff"
86
+ version = "2.0.2"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
89
+ dependencies = [
90
+ "serde",
91
+ "serde_json",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "async-compression"
96
+ version = "0.4.36"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "98ec5f6c2f8bc326c994cb9e241cc257ddaba9afa8555a43cffbb5dd86efaa37"
99
+ dependencies = [
100
+ "compression-codecs",
101
+ "compression-core",
102
+ "futures-core",
103
+ "pin-project-lite",
104
+ "tokio",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "atomic-waker"
109
+ version = "1.1.2"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
112
+
113
+ [[package]]
114
+ name = "autocfg"
115
+ version = "1.5.0"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
118
+
119
+ [[package]]
120
+ name = "base64"
121
+ version = "0.22.1"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
124
+
125
+ [[package]]
126
+ name = "bitflags"
127
+ version = "2.10.0"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
130
+
131
+ [[package]]
132
+ name = "brotli"
133
+ version = "8.0.2"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
136
+ dependencies = [
137
+ "alloc-no-stdlib",
138
+ "alloc-stdlib",
139
+ "brotli-decompressor",
140
+ ]
141
+
142
+ [[package]]
143
+ name = "brotli-decompressor"
144
+ version = "5.0.0"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
147
+ dependencies = [
148
+ "alloc-no-stdlib",
149
+ "alloc-stdlib",
150
+ ]
151
+
152
+ [[package]]
153
+ name = "bumpalo"
154
+ version = "3.19.0"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
157
+
158
+ [[package]]
159
+ name = "bytes"
160
+ version = "1.11.0"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
163
+
164
+ [[package]]
165
+ name = "cast"
166
+ version = "0.3.0"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
169
+
170
+ [[package]]
171
+ name = "cc"
172
+ version = "1.2.49"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "90583009037521a116abf44494efecd645ba48b6622457080f080b85544e2215"
175
+ dependencies = [
176
+ "find-msvc-tools",
177
+ "shlex",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "cfg-if"
182
+ version = "1.0.4"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
185
+
186
+ [[package]]
187
+ name = "chrono"
188
+ version = "0.4.42"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
191
+ dependencies = [
192
+ "iana-time-zone",
193
+ "num-traits",
194
+ "windows-link",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "ciborium"
199
+ version = "0.2.2"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
202
+ dependencies = [
203
+ "ciborium-io",
204
+ "ciborium-ll",
205
+ "serde",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "ciborium-io"
210
+ version = "0.2.2"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
213
+
214
+ [[package]]
215
+ name = "ciborium-ll"
216
+ version = "0.2.2"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
219
+ dependencies = [
220
+ "ciborium-io",
221
+ "half",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "clap"
226
+ version = "4.5.53"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
229
+ dependencies = [
230
+ "clap_builder",
231
+ ]
232
+
233
+ [[package]]
234
+ name = "clap_builder"
235
+ version = "4.5.53"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
238
+ dependencies = [
239
+ "anstyle",
240
+ "clap_lex",
241
+ ]
242
+
243
+ [[package]]
244
+ name = "clap_lex"
245
+ version = "0.7.6"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
248
+
249
+ [[package]]
250
+ name = "colored"
251
+ version = "3.0.0"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "fde0e0ec90c9dfb3b4b1a0891a7dcd0e2bffde2f7efed5fe7c9bb00e5bfb915e"
254
+ dependencies = [
255
+ "windows-sys 0.52.0",
256
+ ]
257
+
258
+ [[package]]
259
+ name = "compression-codecs"
260
+ version = "0.4.35"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "b0f7ac3e5b97fdce45e8922fb05cae2c37f7bbd63d30dd94821dacfd8f3f2bf2"
263
+ dependencies = [
264
+ "brotli",
265
+ "compression-core",
266
+ "flate2",
267
+ "memchr",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "compression-core"
272
+ version = "0.4.31"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d"
275
+
276
+ [[package]]
277
+ name = "convert_case"
278
+ version = "0.10.0"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
281
+ dependencies = [
282
+ "unicode-segmentation",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "core-foundation"
287
+ version = "0.9.4"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
290
+ dependencies = [
291
+ "core-foundation-sys",
292
+ "libc",
293
+ ]
294
+
295
+ [[package]]
296
+ name = "core-foundation-sys"
297
+ version = "0.8.7"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
300
+
301
+ [[package]]
302
+ name = "crc32fast"
303
+ version = "1.5.0"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
306
+ dependencies = [
307
+ "cfg-if",
308
+ ]
309
+
310
+ [[package]]
311
+ name = "criterion"
312
+ version = "0.8.1"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "4d883447757bb0ee46f233e9dc22eb84d93a9508c9b868687b274fc431d886bf"
315
+ dependencies = [
316
+ "alloca",
317
+ "anes",
318
+ "cast",
319
+ "ciborium",
320
+ "clap",
321
+ "criterion-plot",
322
+ "itertools",
323
+ "num-traits",
324
+ "oorandom",
325
+ "page_size",
326
+ "plotters",
327
+ "rayon",
328
+ "regex",
329
+ "serde",
330
+ "serde_json",
331
+ "tinytemplate",
332
+ "walkdir",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "criterion-plot"
337
+ version = "0.8.1"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "ed943f81ea2faa8dcecbbfa50164acf95d555afec96a27871663b300e387b2e4"
340
+ dependencies = [
341
+ "cast",
342
+ "itertools",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "crossbeam-deque"
347
+ version = "0.8.6"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
350
+ dependencies = [
351
+ "crossbeam-epoch",
352
+ "crossbeam-utils",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "crossbeam-epoch"
357
+ version = "0.9.18"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
360
+ dependencies = [
361
+ "crossbeam-utils",
362
+ ]
363
+
364
+ [[package]]
365
+ name = "crossbeam-utils"
366
+ version = "0.8.21"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
369
+
370
+ [[package]]
371
+ name = "crunchy"
372
+ version = "0.2.4"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
375
+
376
+ [[package]]
377
+ name = "cssparser"
378
+ version = "0.35.0"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "4e901edd733a1472f944a45116df3f846f54d37e67e68640ac8bb69689aca2aa"
381
+ dependencies = [
382
+ "cssparser-macros",
383
+ "dtoa-short",
384
+ "itoa",
385
+ "phf",
386
+ "smallvec",
387
+ ]
388
+
389
+ [[package]]
390
+ name = "cssparser-macros"
391
+ version = "0.6.1"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
394
+ dependencies = [
395
+ "quote",
396
+ "syn",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "ctor"
401
+ version = "0.6.3"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "424e0138278faeb2b401f174ad17e715c829512d74f3d1e81eb43365c2e0590e"
404
+ dependencies = [
405
+ "ctor-proc-macro",
406
+ "dtor",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "ctor-proc-macro"
411
+ version = "0.0.7"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
414
+
415
+ [[package]]
416
+ name = "displaydoc"
417
+ version = "0.2.5"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
420
+ dependencies = [
421
+ "proc-macro2",
422
+ "quote",
423
+ "syn",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "dtoa"
428
+ version = "1.0.10"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04"
431
+
432
+ [[package]]
433
+ name = "dtoa-short"
434
+ version = "0.3.5"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
437
+ dependencies = [
438
+ "dtoa",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "dtor"
443
+ version = "0.1.1"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "404d02eeb088a82cfd873006cb713fe411306c7d182c344905e101fb1167d301"
446
+ dependencies = [
447
+ "dtor-proc-macro",
448
+ ]
449
+
450
+ [[package]]
451
+ name = "dtor-proc-macro"
452
+ version = "0.0.6"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
455
+
456
+ [[package]]
457
+ name = "either"
458
+ version = "1.15.0"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
461
+
462
+ [[package]]
463
+ name = "encoding_rs"
464
+ version = "0.8.35"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
467
+ dependencies = [
468
+ "cfg-if",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "equivalent"
473
+ version = "1.0.2"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
476
+
477
+ [[package]]
478
+ name = "errno"
479
+ version = "0.3.14"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
482
+ dependencies = [
483
+ "libc",
484
+ "windows-sys 0.61.2",
485
+ ]
486
+
487
+ [[package]]
488
+ name = "fastrand"
489
+ version = "2.3.0"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
492
+
493
+ [[package]]
494
+ name = "feedparser-rs"
495
+ version = "0.1.0"
496
+ dependencies = [
497
+ "ammonia",
498
+ "chrono",
499
+ "criterion",
500
+ "encoding_rs",
501
+ "flate2",
502
+ "html-escape",
503
+ "memchr",
504
+ "mockito",
505
+ "quick-xml",
506
+ "regex",
507
+ "reqwest",
508
+ "serde",
509
+ "serde_json",
510
+ "thiserror",
511
+ "url",
512
+ ]
513
+
514
+ [[package]]
515
+ name = "feedparser-rs-node"
516
+ version = "0.1.0"
517
+ dependencies = [
518
+ "feedparser-rs",
519
+ "napi",
520
+ "napi-build",
521
+ "napi-derive",
522
+ ]
523
+
524
+ [[package]]
525
+ name = "feedparser-rs-py"
526
+ version = "0.1.0"
527
+ dependencies = [
528
+ "chrono",
529
+ "feedparser-rs",
530
+ "pyo3",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "find-msvc-tools"
535
+ version = "0.1.5"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
538
+
539
+ [[package]]
540
+ name = "flate2"
541
+ version = "1.1.5"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
544
+ dependencies = [
545
+ "crc32fast",
546
+ "miniz_oxide",
547
+ ]
548
+
549
+ [[package]]
550
+ name = "fnv"
551
+ version = "1.0.7"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
554
+
555
+ [[package]]
556
+ name = "foreign-types"
557
+ version = "0.3.2"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
560
+ dependencies = [
561
+ "foreign-types-shared",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "foreign-types-shared"
566
+ version = "0.1.1"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
569
+
570
+ [[package]]
571
+ name = "form_urlencoded"
572
+ version = "1.2.2"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
575
+ dependencies = [
576
+ "percent-encoding",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "futf"
581
+ version = "0.1.5"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
584
+ dependencies = [
585
+ "mac",
586
+ "new_debug_unreachable",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "futures"
591
+ version = "0.3.31"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
594
+ dependencies = [
595
+ "futures-channel",
596
+ "futures-core",
597
+ "futures-executor",
598
+ "futures-io",
599
+ "futures-sink",
600
+ "futures-task",
601
+ "futures-util",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "futures-channel"
606
+ version = "0.3.31"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
609
+ dependencies = [
610
+ "futures-core",
611
+ "futures-sink",
612
+ ]
613
+
614
+ [[package]]
615
+ name = "futures-core"
616
+ version = "0.3.31"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
619
+
620
+ [[package]]
621
+ name = "futures-executor"
622
+ version = "0.3.31"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
625
+ dependencies = [
626
+ "futures-core",
627
+ "futures-task",
628
+ "futures-util",
629
+ ]
630
+
631
+ [[package]]
632
+ name = "futures-io"
633
+ version = "0.3.31"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
636
+
637
+ [[package]]
638
+ name = "futures-macro"
639
+ version = "0.3.31"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
642
+ dependencies = [
643
+ "proc-macro2",
644
+ "quote",
645
+ "syn",
646
+ ]
647
+
648
+ [[package]]
649
+ name = "futures-sink"
650
+ version = "0.3.31"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
653
+
654
+ [[package]]
655
+ name = "futures-task"
656
+ version = "0.3.31"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
659
+
660
+ [[package]]
661
+ name = "futures-util"
662
+ version = "0.3.31"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
665
+ dependencies = [
666
+ "futures-channel",
667
+ "futures-core",
668
+ "futures-io",
669
+ "futures-macro",
670
+ "futures-sink",
671
+ "futures-task",
672
+ "memchr",
673
+ "pin-project-lite",
674
+ "pin-utils",
675
+ "slab",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "getrandom"
680
+ version = "0.2.16"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
683
+ dependencies = [
684
+ "cfg-if",
685
+ "libc",
686
+ "wasi",
687
+ ]
688
+
689
+ [[package]]
690
+ name = "getrandom"
691
+ version = "0.3.4"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
694
+ dependencies = [
695
+ "cfg-if",
696
+ "libc",
697
+ "r-efi",
698
+ "wasip2",
699
+ ]
700
+
701
+ [[package]]
702
+ name = "h2"
703
+ version = "0.4.12"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
706
+ dependencies = [
707
+ "atomic-waker",
708
+ "bytes",
709
+ "fnv",
710
+ "futures-core",
711
+ "futures-sink",
712
+ "http",
713
+ "indexmap",
714
+ "slab",
715
+ "tokio",
716
+ "tokio-util",
717
+ "tracing",
718
+ ]
719
+
720
+ [[package]]
721
+ name = "half"
722
+ version = "2.7.1"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
725
+ dependencies = [
726
+ "cfg-if",
727
+ "crunchy",
728
+ "zerocopy",
729
+ ]
730
+
731
+ [[package]]
732
+ name = "hashbrown"
733
+ version = "0.16.1"
734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
735
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
736
+
737
+ [[package]]
738
+ name = "heck"
739
+ version = "0.5.0"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
742
+
743
+ [[package]]
744
+ name = "html-escape"
745
+ version = "0.2.13"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
748
+ dependencies = [
749
+ "utf8-width",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "html5ever"
754
+ version = "0.35.0"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "55d958c2f74b664487a2035fe1dadb032c48718a03b63f3ab0b8537db8549ed4"
757
+ dependencies = [
758
+ "log",
759
+ "markup5ever",
760
+ "match_token",
761
+ ]
762
+
763
+ [[package]]
764
+ name = "http"
765
+ version = "1.4.0"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
768
+ dependencies = [
769
+ "bytes",
770
+ "itoa",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "http-body"
775
+ version = "1.0.1"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
778
+ dependencies = [
779
+ "bytes",
780
+ "http",
781
+ ]
782
+
783
+ [[package]]
784
+ name = "http-body-util"
785
+ version = "0.1.3"
786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
787
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
788
+ dependencies = [
789
+ "bytes",
790
+ "futures-core",
791
+ "http",
792
+ "http-body",
793
+ "pin-project-lite",
794
+ ]
795
+
796
+ [[package]]
797
+ name = "httparse"
798
+ version = "1.10.1"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
801
+
802
+ [[package]]
803
+ name = "httpdate"
804
+ version = "1.0.3"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
807
+
808
+ [[package]]
809
+ name = "hyper"
810
+ version = "1.8.1"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
813
+ dependencies = [
814
+ "atomic-waker",
815
+ "bytes",
816
+ "futures-channel",
817
+ "futures-core",
818
+ "h2",
819
+ "http",
820
+ "http-body",
821
+ "httparse",
822
+ "httpdate",
823
+ "itoa",
824
+ "pin-project-lite",
825
+ "pin-utils",
826
+ "smallvec",
827
+ "tokio",
828
+ "want",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "hyper-rustls"
833
+ version = "0.27.7"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
836
+ dependencies = [
837
+ "http",
838
+ "hyper",
839
+ "hyper-util",
840
+ "rustls",
841
+ "rustls-pki-types",
842
+ "tokio",
843
+ "tokio-rustls",
844
+ "tower-service",
845
+ ]
846
+
847
+ [[package]]
848
+ name = "hyper-tls"
849
+ version = "0.6.0"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
852
+ dependencies = [
853
+ "bytes",
854
+ "http-body-util",
855
+ "hyper",
856
+ "hyper-util",
857
+ "native-tls",
858
+ "tokio",
859
+ "tokio-native-tls",
860
+ "tower-service",
861
+ ]
862
+
863
+ [[package]]
864
+ name = "hyper-util"
865
+ version = "0.1.19"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
868
+ dependencies = [
869
+ "base64",
870
+ "bytes",
871
+ "futures-channel",
872
+ "futures-core",
873
+ "futures-util",
874
+ "http",
875
+ "http-body",
876
+ "hyper",
877
+ "ipnet",
878
+ "libc",
879
+ "percent-encoding",
880
+ "pin-project-lite",
881
+ "socket2",
882
+ "system-configuration",
883
+ "tokio",
884
+ "tower-service",
885
+ "tracing",
886
+ "windows-registry",
887
+ ]
888
+
889
+ [[package]]
890
+ name = "iana-time-zone"
891
+ version = "0.1.64"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
894
+ dependencies = [
895
+ "android_system_properties",
896
+ "core-foundation-sys",
897
+ "iana-time-zone-haiku",
898
+ "js-sys",
899
+ "log",
900
+ "wasm-bindgen",
901
+ "windows-core",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "iana-time-zone-haiku"
906
+ version = "0.1.2"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
909
+ dependencies = [
910
+ "cc",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "icu_collections"
915
+ version = "2.1.1"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
918
+ dependencies = [
919
+ "displaydoc",
920
+ "potential_utf",
921
+ "yoke",
922
+ "zerofrom",
923
+ "zerovec",
924
+ ]
925
+
926
+ [[package]]
927
+ name = "icu_locale_core"
928
+ version = "2.1.1"
929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
930
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
931
+ dependencies = [
932
+ "displaydoc",
933
+ "litemap",
934
+ "tinystr",
935
+ "writeable",
936
+ "zerovec",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "icu_normalizer"
941
+ version = "2.1.1"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
944
+ dependencies = [
945
+ "icu_collections",
946
+ "icu_normalizer_data",
947
+ "icu_properties",
948
+ "icu_provider",
949
+ "smallvec",
950
+ "zerovec",
951
+ ]
952
+
953
+ [[package]]
954
+ name = "icu_normalizer_data"
955
+ version = "2.1.1"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
958
+
959
+ [[package]]
960
+ name = "icu_properties"
961
+ version = "2.1.2"
962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
963
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
964
+ dependencies = [
965
+ "icu_collections",
966
+ "icu_locale_core",
967
+ "icu_properties_data",
968
+ "icu_provider",
969
+ "zerotrie",
970
+ "zerovec",
971
+ ]
972
+
973
+ [[package]]
974
+ name = "icu_properties_data"
975
+ version = "2.1.2"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
978
+
979
+ [[package]]
980
+ name = "icu_provider"
981
+ version = "2.1.1"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
984
+ dependencies = [
985
+ "displaydoc",
986
+ "icu_locale_core",
987
+ "writeable",
988
+ "yoke",
989
+ "zerofrom",
990
+ "zerotrie",
991
+ "zerovec",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "idna"
996
+ version = "1.1.0"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
999
+ dependencies = [
1000
+ "idna_adapter",
1001
+ "smallvec",
1002
+ "utf8_iter",
1003
+ ]
1004
+
1005
+ [[package]]
1006
+ name = "idna_adapter"
1007
+ version = "1.2.1"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1010
+ dependencies = [
1011
+ "icu_normalizer",
1012
+ "icu_properties",
1013
+ ]
1014
+
1015
+ [[package]]
1016
+ name = "indexmap"
1017
+ version = "2.12.1"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
1020
+ dependencies = [
1021
+ "equivalent",
1022
+ "hashbrown",
1023
+ ]
1024
+
1025
+ [[package]]
1026
+ name = "indoc"
1027
+ version = "2.0.7"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1030
+ dependencies = [
1031
+ "rustversion",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "ipnet"
1036
+ version = "2.11.0"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1039
+
1040
+ [[package]]
1041
+ name = "iri-string"
1042
+ version = "0.7.9"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397"
1045
+ dependencies = [
1046
+ "memchr",
1047
+ "serde",
1048
+ ]
1049
+
1050
+ [[package]]
1051
+ name = "itertools"
1052
+ version = "0.13.0"
1053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1054
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1055
+ dependencies = [
1056
+ "either",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "itoa"
1061
+ version = "1.0.15"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1064
+
1065
+ [[package]]
1066
+ name = "js-sys"
1067
+ version = "0.3.83"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
1070
+ dependencies = [
1071
+ "once_cell",
1072
+ "wasm-bindgen",
1073
+ ]
1074
+
1075
+ [[package]]
1076
+ name = "libc"
1077
+ version = "0.2.178"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
1080
+
1081
+ [[package]]
1082
+ name = "libloading"
1083
+ version = "0.9.0"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
1086
+ dependencies = [
1087
+ "cfg-if",
1088
+ "windows-link",
1089
+ ]
1090
+
1091
+ [[package]]
1092
+ name = "linux-raw-sys"
1093
+ version = "0.11.0"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1096
+
1097
+ [[package]]
1098
+ name = "litemap"
1099
+ version = "0.8.1"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1102
+
1103
+ [[package]]
1104
+ name = "lock_api"
1105
+ version = "0.4.14"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1108
+ dependencies = [
1109
+ "scopeguard",
1110
+ ]
1111
+
1112
+ [[package]]
1113
+ name = "log"
1114
+ version = "0.4.29"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1117
+
1118
+ [[package]]
1119
+ name = "mac"
1120
+ version = "0.1.1"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
1123
+
1124
+ [[package]]
1125
+ name = "maplit"
1126
+ version = "1.0.2"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
1129
+
1130
+ [[package]]
1131
+ name = "markup5ever"
1132
+ version = "0.35.0"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "311fe69c934650f8f19652b3946075f0fc41ad8757dbb68f1ca14e7900ecc1c3"
1135
+ dependencies = [
1136
+ "log",
1137
+ "tendril",
1138
+ "web_atoms",
1139
+ ]
1140
+
1141
+ [[package]]
1142
+ name = "match_token"
1143
+ version = "0.35.0"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "ac84fd3f360fcc43dc5f5d186f02a94192761a080e8bc58621ad4d12296a58cf"
1146
+ dependencies = [
1147
+ "proc-macro2",
1148
+ "quote",
1149
+ "syn",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "memchr"
1154
+ version = "2.7.6"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1157
+
1158
+ [[package]]
1159
+ name = "memoffset"
1160
+ version = "0.9.1"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1163
+ dependencies = [
1164
+ "autocfg",
1165
+ ]
1166
+
1167
+ [[package]]
1168
+ name = "mime"
1169
+ version = "0.3.17"
1170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1171
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1172
+
1173
+ [[package]]
1174
+ name = "miniz_oxide"
1175
+ version = "0.8.9"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1178
+ dependencies = [
1179
+ "adler2",
1180
+ "simd-adler32",
1181
+ ]
1182
+
1183
+ [[package]]
1184
+ name = "mio"
1185
+ version = "1.1.1"
1186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1188
+ dependencies = [
1189
+ "libc",
1190
+ "wasi",
1191
+ "windows-sys 0.61.2",
1192
+ ]
1193
+
1194
+ [[package]]
1195
+ name = "mockito"
1196
+ version = "1.7.1"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "7e0603425789b4a70fcc4ac4f5a46a566c116ee3e2a6b768dc623f7719c611de"
1199
+ dependencies = [
1200
+ "assert-json-diff",
1201
+ "bytes",
1202
+ "colored",
1203
+ "futures-core",
1204
+ "http",
1205
+ "http-body",
1206
+ "http-body-util",
1207
+ "hyper",
1208
+ "hyper-util",
1209
+ "log",
1210
+ "pin-project-lite",
1211
+ "rand 0.9.2",
1212
+ "regex",
1213
+ "serde_json",
1214
+ "serde_urlencoded",
1215
+ "similar",
1216
+ "tokio",
1217
+ ]
1218
+
1219
+ [[package]]
1220
+ name = "napi"
1221
+ version = "3.7.0"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "f27a163b545fd2184d2efdccf3d3df56acdb63465f2fcfebcaee0463c1e91783"
1224
+ dependencies = [
1225
+ "anyhow",
1226
+ "bitflags",
1227
+ "ctor",
1228
+ "futures",
1229
+ "napi-build",
1230
+ "napi-sys",
1231
+ "nohash-hasher",
1232
+ "rustc-hash",
1233
+ ]
1234
+
1235
+ [[package]]
1236
+ name = "napi-build"
1237
+ version = "2.3.1"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
1240
+
1241
+ [[package]]
1242
+ name = "napi-derive"
1243
+ version = "3.4.0"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "47cffa09ea668c4cc5d7b1198780882e28780ed1804a903b80680725426223d9"
1246
+ dependencies = [
1247
+ "convert_case",
1248
+ "ctor",
1249
+ "napi-derive-backend",
1250
+ "proc-macro2",
1251
+ "quote",
1252
+ "syn",
1253
+ ]
1254
+
1255
+ [[package]]
1256
+ name = "napi-derive-backend"
1257
+ version = "4.0.0"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "5e186227ec22f4675267a176d98dffecb27e6cc88926cbb7efb5427268565c0f"
1260
+ dependencies = [
1261
+ "convert_case",
1262
+ "proc-macro2",
1263
+ "quote",
1264
+ "semver",
1265
+ "syn",
1266
+ ]
1267
+
1268
+ [[package]]
1269
+ name = "napi-sys"
1270
+ version = "3.2.1"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "8eb602b84d7c1edae45e50bbf1374696548f36ae179dfa667f577e384bb90c2b"
1273
+ dependencies = [
1274
+ "libloading",
1275
+ ]
1276
+
1277
+ [[package]]
1278
+ name = "native-tls"
1279
+ version = "0.2.14"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
1282
+ dependencies = [
1283
+ "libc",
1284
+ "log",
1285
+ "openssl",
1286
+ "openssl-probe",
1287
+ "openssl-sys",
1288
+ "schannel",
1289
+ "security-framework",
1290
+ "security-framework-sys",
1291
+ "tempfile",
1292
+ ]
1293
+
1294
+ [[package]]
1295
+ name = "new_debug_unreachable"
1296
+ version = "1.0.6"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
1299
+
1300
+ [[package]]
1301
+ name = "nohash-hasher"
1302
+ version = "0.2.0"
1303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1304
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
1305
+
1306
+ [[package]]
1307
+ name = "num-traits"
1308
+ version = "0.2.19"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1311
+ dependencies = [
1312
+ "autocfg",
1313
+ ]
1314
+
1315
+ [[package]]
1316
+ name = "once_cell"
1317
+ version = "1.21.3"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1320
+
1321
+ [[package]]
1322
+ name = "oorandom"
1323
+ version = "11.1.5"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1326
+
1327
+ [[package]]
1328
+ name = "openssl"
1329
+ version = "0.10.75"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
1332
+ dependencies = [
1333
+ "bitflags",
1334
+ "cfg-if",
1335
+ "foreign-types",
1336
+ "libc",
1337
+ "once_cell",
1338
+ "openssl-macros",
1339
+ "openssl-sys",
1340
+ ]
1341
+
1342
+ [[package]]
1343
+ name = "openssl-macros"
1344
+ version = "0.1.1"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1347
+ dependencies = [
1348
+ "proc-macro2",
1349
+ "quote",
1350
+ "syn",
1351
+ ]
1352
+
1353
+ [[package]]
1354
+ name = "openssl-probe"
1355
+ version = "0.1.6"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1358
+
1359
+ [[package]]
1360
+ name = "openssl-sys"
1361
+ version = "0.9.111"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321"
1364
+ dependencies = [
1365
+ "cc",
1366
+ "libc",
1367
+ "pkg-config",
1368
+ "vcpkg",
1369
+ ]
1370
+
1371
+ [[package]]
1372
+ name = "page_size"
1373
+ version = "0.6.0"
1374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
1376
+ dependencies = [
1377
+ "libc",
1378
+ "winapi",
1379
+ ]
1380
+
1381
+ [[package]]
1382
+ name = "parking_lot"
1383
+ version = "0.12.5"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1386
+ dependencies = [
1387
+ "lock_api",
1388
+ "parking_lot_core",
1389
+ ]
1390
+
1391
+ [[package]]
1392
+ name = "parking_lot_core"
1393
+ version = "0.9.12"
1394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1395
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1396
+ dependencies = [
1397
+ "cfg-if",
1398
+ "libc",
1399
+ "redox_syscall",
1400
+ "smallvec",
1401
+ "windows-link",
1402
+ ]
1403
+
1404
+ [[package]]
1405
+ name = "percent-encoding"
1406
+ version = "2.3.2"
1407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1408
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1409
+
1410
+ [[package]]
1411
+ name = "phf"
1412
+ version = "0.11.3"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1415
+ dependencies = [
1416
+ "phf_macros",
1417
+ "phf_shared",
1418
+ ]
1419
+
1420
+ [[package]]
1421
+ name = "phf_codegen"
1422
+ version = "0.11.3"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
1425
+ dependencies = [
1426
+ "phf_generator",
1427
+ "phf_shared",
1428
+ ]
1429
+
1430
+ [[package]]
1431
+ name = "phf_generator"
1432
+ version = "0.11.3"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
1435
+ dependencies = [
1436
+ "phf_shared",
1437
+ "rand 0.8.5",
1438
+ ]
1439
+
1440
+ [[package]]
1441
+ name = "phf_macros"
1442
+ version = "0.11.3"
1443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1444
+ checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
1445
+ dependencies = [
1446
+ "phf_generator",
1447
+ "phf_shared",
1448
+ "proc-macro2",
1449
+ "quote",
1450
+ "syn",
1451
+ ]
1452
+
1453
+ [[package]]
1454
+ name = "phf_shared"
1455
+ version = "0.11.3"
1456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1457
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1458
+ dependencies = [
1459
+ "siphasher",
1460
+ ]
1461
+
1462
+ [[package]]
1463
+ name = "pin-project-lite"
1464
+ version = "0.2.16"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1467
+
1468
+ [[package]]
1469
+ name = "pin-utils"
1470
+ version = "0.1.0"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1473
+
1474
+ [[package]]
1475
+ name = "pkg-config"
1476
+ version = "0.3.32"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1479
+
1480
+ [[package]]
1481
+ name = "plotters"
1482
+ version = "0.3.7"
1483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1484
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1485
+ dependencies = [
1486
+ "num-traits",
1487
+ "plotters-backend",
1488
+ "plotters-svg",
1489
+ "wasm-bindgen",
1490
+ "web-sys",
1491
+ ]
1492
+
1493
+ [[package]]
1494
+ name = "plotters-backend"
1495
+ version = "0.3.7"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1498
+
1499
+ [[package]]
1500
+ name = "plotters-svg"
1501
+ version = "0.3.7"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1504
+ dependencies = [
1505
+ "plotters-backend",
1506
+ ]
1507
+
1508
+ [[package]]
1509
+ name = "portable-atomic"
1510
+ version = "1.11.1"
1511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1512
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1513
+
1514
+ [[package]]
1515
+ name = "potential_utf"
1516
+ version = "0.1.4"
1517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1518
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1519
+ dependencies = [
1520
+ "zerovec",
1521
+ ]
1522
+
1523
+ [[package]]
1524
+ name = "ppv-lite86"
1525
+ version = "0.2.21"
1526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1527
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1528
+ dependencies = [
1529
+ "zerocopy",
1530
+ ]
1531
+
1532
+ [[package]]
1533
+ name = "precomputed-hash"
1534
+ version = "0.1.1"
1535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1536
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
1537
+
1538
+ [[package]]
1539
+ name = "proc-macro2"
1540
+ version = "1.0.103"
1541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1542
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
1543
+ dependencies = [
1544
+ "unicode-ident",
1545
+ ]
1546
+
1547
+ [[package]]
1548
+ name = "pyo3"
1549
+ version = "0.27.2"
1550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1551
+ checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
1552
+ dependencies = [
1553
+ "chrono",
1554
+ "indoc",
1555
+ "libc",
1556
+ "memoffset",
1557
+ "once_cell",
1558
+ "portable-atomic",
1559
+ "pyo3-build-config",
1560
+ "pyo3-ffi",
1561
+ "pyo3-macros",
1562
+ "unindent",
1563
+ ]
1564
+
1565
+ [[package]]
1566
+ name = "pyo3-build-config"
1567
+ version = "0.27.2"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
1570
+ dependencies = [
1571
+ "target-lexicon",
1572
+ ]
1573
+
1574
+ [[package]]
1575
+ name = "pyo3-ffi"
1576
+ version = "0.27.2"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
1579
+ dependencies = [
1580
+ "libc",
1581
+ "pyo3-build-config",
1582
+ ]
1583
+
1584
+ [[package]]
1585
+ name = "pyo3-macros"
1586
+ version = "0.27.2"
1587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1588
+ checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
1589
+ dependencies = [
1590
+ "proc-macro2",
1591
+ "pyo3-macros-backend",
1592
+ "quote",
1593
+ "syn",
1594
+ ]
1595
+
1596
+ [[package]]
1597
+ name = "pyo3-macros-backend"
1598
+ version = "0.27.2"
1599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1600
+ checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
1601
+ dependencies = [
1602
+ "heck",
1603
+ "proc-macro2",
1604
+ "pyo3-build-config",
1605
+ "quote",
1606
+ "syn",
1607
+ ]
1608
+
1609
+ [[package]]
1610
+ name = "quick-xml"
1611
+ version = "0.38.4"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c"
1614
+ dependencies = [
1615
+ "memchr",
1616
+ ]
1617
+
1618
+ [[package]]
1619
+ name = "quote"
1620
+ version = "1.0.42"
1621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1622
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
1623
+ dependencies = [
1624
+ "proc-macro2",
1625
+ ]
1626
+
1627
+ [[package]]
1628
+ name = "r-efi"
1629
+ version = "5.3.0"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1632
+
1633
+ [[package]]
1634
+ name = "rand"
1635
+ version = "0.8.5"
1636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1637
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1638
+ dependencies = [
1639
+ "rand_core 0.6.4",
1640
+ ]
1641
+
1642
+ [[package]]
1643
+ name = "rand"
1644
+ version = "0.9.2"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1647
+ dependencies = [
1648
+ "rand_chacha",
1649
+ "rand_core 0.9.3",
1650
+ ]
1651
+
1652
+ [[package]]
1653
+ name = "rand_chacha"
1654
+ version = "0.9.0"
1655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1656
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1657
+ dependencies = [
1658
+ "ppv-lite86",
1659
+ "rand_core 0.9.3",
1660
+ ]
1661
+
1662
+ [[package]]
1663
+ name = "rand_core"
1664
+ version = "0.6.4"
1665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1666
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1667
+
1668
+ [[package]]
1669
+ name = "rand_core"
1670
+ version = "0.9.3"
1671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1672
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
1673
+ dependencies = [
1674
+ "getrandom 0.3.4",
1675
+ ]
1676
+
1677
+ [[package]]
1678
+ name = "rayon"
1679
+ version = "1.11.0"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1682
+ dependencies = [
1683
+ "either",
1684
+ "rayon-core",
1685
+ ]
1686
+
1687
+ [[package]]
1688
+ name = "rayon-core"
1689
+ version = "1.13.0"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1692
+ dependencies = [
1693
+ "crossbeam-deque",
1694
+ "crossbeam-utils",
1695
+ ]
1696
+
1697
+ [[package]]
1698
+ name = "redox_syscall"
1699
+ version = "0.5.18"
1700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1701
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1702
+ dependencies = [
1703
+ "bitflags",
1704
+ ]
1705
+
1706
+ [[package]]
1707
+ name = "regex"
1708
+ version = "1.12.2"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
1711
+ dependencies = [
1712
+ "aho-corasick",
1713
+ "memchr",
1714
+ "regex-automata",
1715
+ "regex-syntax",
1716
+ ]
1717
+
1718
+ [[package]]
1719
+ name = "regex-automata"
1720
+ version = "0.4.13"
1721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1722
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
1723
+ dependencies = [
1724
+ "aho-corasick",
1725
+ "memchr",
1726
+ "regex-syntax",
1727
+ ]
1728
+
1729
+ [[package]]
1730
+ name = "regex-syntax"
1731
+ version = "0.8.8"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
1734
+
1735
+ [[package]]
1736
+ name = "reqwest"
1737
+ version = "0.12.26"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "3b4c14b2d9afca6a60277086b0cc6a6ae0b568f6f7916c943a8cdc79f8be240f"
1740
+ dependencies = [
1741
+ "base64",
1742
+ "bytes",
1743
+ "encoding_rs",
1744
+ "futures-channel",
1745
+ "futures-core",
1746
+ "futures-util",
1747
+ "h2",
1748
+ "http",
1749
+ "http-body",
1750
+ "http-body-util",
1751
+ "hyper",
1752
+ "hyper-rustls",
1753
+ "hyper-tls",
1754
+ "hyper-util",
1755
+ "js-sys",
1756
+ "log",
1757
+ "mime",
1758
+ "native-tls",
1759
+ "percent-encoding",
1760
+ "pin-project-lite",
1761
+ "rustls-pki-types",
1762
+ "serde",
1763
+ "serde_json",
1764
+ "serde_urlencoded",
1765
+ "sync_wrapper",
1766
+ "tokio",
1767
+ "tokio-native-tls",
1768
+ "tower",
1769
+ "tower-http",
1770
+ "tower-service",
1771
+ "url",
1772
+ "wasm-bindgen",
1773
+ "wasm-bindgen-futures",
1774
+ "web-sys",
1775
+ ]
1776
+
1777
+ [[package]]
1778
+ name = "ring"
1779
+ version = "0.17.14"
1780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1781
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1782
+ dependencies = [
1783
+ "cc",
1784
+ "cfg-if",
1785
+ "getrandom 0.2.16",
1786
+ "libc",
1787
+ "untrusted",
1788
+ "windows-sys 0.52.0",
1789
+ ]
1790
+
1791
+ [[package]]
1792
+ name = "rustc-hash"
1793
+ version = "2.1.1"
1794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1795
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1796
+
1797
+ [[package]]
1798
+ name = "rustix"
1799
+ version = "1.1.2"
1800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1801
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
1802
+ dependencies = [
1803
+ "bitflags",
1804
+ "errno",
1805
+ "libc",
1806
+ "linux-raw-sys",
1807
+ "windows-sys 0.61.2",
1808
+ ]
1809
+
1810
+ [[package]]
1811
+ name = "rustls"
1812
+ version = "0.23.35"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
1815
+ dependencies = [
1816
+ "once_cell",
1817
+ "rustls-pki-types",
1818
+ "rustls-webpki",
1819
+ "subtle",
1820
+ "zeroize",
1821
+ ]
1822
+
1823
+ [[package]]
1824
+ name = "rustls-pki-types"
1825
+ version = "1.13.1"
1826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1827
+ checksum = "708c0f9d5f54ba0272468c1d306a52c495b31fa155e91bc25371e6df7996908c"
1828
+ dependencies = [
1829
+ "zeroize",
1830
+ ]
1831
+
1832
+ [[package]]
1833
+ name = "rustls-webpki"
1834
+ version = "0.103.8"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
1837
+ dependencies = [
1838
+ "ring",
1839
+ "rustls-pki-types",
1840
+ "untrusted",
1841
+ ]
1842
+
1843
+ [[package]]
1844
+ name = "rustversion"
1845
+ version = "1.0.22"
1846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1847
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1848
+
1849
+ [[package]]
1850
+ name = "ryu"
1851
+ version = "1.0.20"
1852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1853
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1854
+
1855
+ [[package]]
1856
+ name = "same-file"
1857
+ version = "1.0.6"
1858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1859
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1860
+ dependencies = [
1861
+ "winapi-util",
1862
+ ]
1863
+
1864
+ [[package]]
1865
+ name = "schannel"
1866
+ version = "0.1.28"
1867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1868
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
1869
+ dependencies = [
1870
+ "windows-sys 0.61.2",
1871
+ ]
1872
+
1873
+ [[package]]
1874
+ name = "scopeguard"
1875
+ version = "1.2.0"
1876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1877
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1878
+
1879
+ [[package]]
1880
+ name = "security-framework"
1881
+ version = "2.11.1"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
1884
+ dependencies = [
1885
+ "bitflags",
1886
+ "core-foundation",
1887
+ "core-foundation-sys",
1888
+ "libc",
1889
+ "security-framework-sys",
1890
+ ]
1891
+
1892
+ [[package]]
1893
+ name = "security-framework-sys"
1894
+ version = "2.15.0"
1895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1896
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
1897
+ dependencies = [
1898
+ "core-foundation-sys",
1899
+ "libc",
1900
+ ]
1901
+
1902
+ [[package]]
1903
+ name = "semver"
1904
+ version = "1.0.27"
1905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1906
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
1907
+
1908
+ [[package]]
1909
+ name = "serde"
1910
+ version = "1.0.228"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1913
+ dependencies = [
1914
+ "serde_core",
1915
+ "serde_derive",
1916
+ ]
1917
+
1918
+ [[package]]
1919
+ name = "serde_core"
1920
+ version = "1.0.228"
1921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1922
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1923
+ dependencies = [
1924
+ "serde_derive",
1925
+ ]
1926
+
1927
+ [[package]]
1928
+ name = "serde_derive"
1929
+ version = "1.0.228"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1932
+ dependencies = [
1933
+ "proc-macro2",
1934
+ "quote",
1935
+ "syn",
1936
+ ]
1937
+
1938
+ [[package]]
1939
+ name = "serde_json"
1940
+ version = "1.0.145"
1941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1942
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
1943
+ dependencies = [
1944
+ "itoa",
1945
+ "memchr",
1946
+ "ryu",
1947
+ "serde",
1948
+ "serde_core",
1949
+ ]
1950
+
1951
+ [[package]]
1952
+ name = "serde_urlencoded"
1953
+ version = "0.7.1"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1956
+ dependencies = [
1957
+ "form_urlencoded",
1958
+ "itoa",
1959
+ "ryu",
1960
+ "serde",
1961
+ ]
1962
+
1963
+ [[package]]
1964
+ name = "shlex"
1965
+ version = "1.3.0"
1966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1967
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1968
+
1969
+ [[package]]
1970
+ name = "simd-adler32"
1971
+ version = "0.3.8"
1972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1973
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
1974
+
1975
+ [[package]]
1976
+ name = "similar"
1977
+ version = "2.7.0"
1978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1979
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
1980
+
1981
+ [[package]]
1982
+ name = "siphasher"
1983
+ version = "1.0.1"
1984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1985
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
1986
+
1987
+ [[package]]
1988
+ name = "slab"
1989
+ version = "0.4.11"
1990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1991
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
1992
+
1993
+ [[package]]
1994
+ name = "smallvec"
1995
+ version = "1.15.1"
1996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1997
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1998
+
1999
+ [[package]]
2000
+ name = "socket2"
2001
+ version = "0.6.1"
2002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2003
+ checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
2004
+ dependencies = [
2005
+ "libc",
2006
+ "windows-sys 0.60.2",
2007
+ ]
2008
+
2009
+ [[package]]
2010
+ name = "stable_deref_trait"
2011
+ version = "1.2.1"
2012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2013
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2014
+
2015
+ [[package]]
2016
+ name = "string_cache"
2017
+ version = "0.8.9"
2018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+ checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
2020
+ dependencies = [
2021
+ "new_debug_unreachable",
2022
+ "parking_lot",
2023
+ "phf_shared",
2024
+ "precomputed-hash",
2025
+ "serde",
2026
+ ]
2027
+
2028
+ [[package]]
2029
+ name = "string_cache_codegen"
2030
+ version = "0.5.4"
2031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2032
+ checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0"
2033
+ dependencies = [
2034
+ "phf_generator",
2035
+ "phf_shared",
2036
+ "proc-macro2",
2037
+ "quote",
2038
+ ]
2039
+
2040
+ [[package]]
2041
+ name = "subtle"
2042
+ version = "2.6.1"
2043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2044
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2045
+
2046
+ [[package]]
2047
+ name = "syn"
2048
+ version = "2.0.111"
2049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2050
+ checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
2051
+ dependencies = [
2052
+ "proc-macro2",
2053
+ "quote",
2054
+ "unicode-ident",
2055
+ ]
2056
+
2057
+ [[package]]
2058
+ name = "sync_wrapper"
2059
+ version = "1.0.2"
2060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2061
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2062
+ dependencies = [
2063
+ "futures-core",
2064
+ ]
2065
+
2066
+ [[package]]
2067
+ name = "synstructure"
2068
+ version = "0.13.2"
2069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2070
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2071
+ dependencies = [
2072
+ "proc-macro2",
2073
+ "quote",
2074
+ "syn",
2075
+ ]
2076
+
2077
+ [[package]]
2078
+ name = "system-configuration"
2079
+ version = "0.6.1"
2080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2081
+ checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
2082
+ dependencies = [
2083
+ "bitflags",
2084
+ "core-foundation",
2085
+ "system-configuration-sys",
2086
+ ]
2087
+
2088
+ [[package]]
2089
+ name = "system-configuration-sys"
2090
+ version = "0.6.0"
2091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2092
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2093
+ dependencies = [
2094
+ "core-foundation-sys",
2095
+ "libc",
2096
+ ]
2097
+
2098
+ [[package]]
2099
+ name = "target-lexicon"
2100
+ version = "0.13.3"
2101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2102
+ checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
2103
+
2104
+ [[package]]
2105
+ name = "tempfile"
2106
+ version = "3.23.0"
2107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2108
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
2109
+ dependencies = [
2110
+ "fastrand",
2111
+ "getrandom 0.3.4",
2112
+ "once_cell",
2113
+ "rustix",
2114
+ "windows-sys 0.61.2",
2115
+ ]
2116
+
2117
+ [[package]]
2118
+ name = "tendril"
2119
+ version = "0.4.3"
2120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2121
+ checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
2122
+ dependencies = [
2123
+ "futf",
2124
+ "mac",
2125
+ "utf-8",
2126
+ ]
2127
+
2128
+ [[package]]
2129
+ name = "thiserror"
2130
+ version = "2.0.17"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
2133
+ dependencies = [
2134
+ "thiserror-impl",
2135
+ ]
2136
+
2137
+ [[package]]
2138
+ name = "thiserror-impl"
2139
+ version = "2.0.17"
2140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2141
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
2142
+ dependencies = [
2143
+ "proc-macro2",
2144
+ "quote",
2145
+ "syn",
2146
+ ]
2147
+
2148
+ [[package]]
2149
+ name = "tinystr"
2150
+ version = "0.8.2"
2151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2152
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2153
+ dependencies = [
2154
+ "displaydoc",
2155
+ "zerovec",
2156
+ ]
2157
+
2158
+ [[package]]
2159
+ name = "tinytemplate"
2160
+ version = "1.2.1"
2161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2162
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2163
+ dependencies = [
2164
+ "serde",
2165
+ "serde_json",
2166
+ ]
2167
+
2168
+ [[package]]
2169
+ name = "tokio"
2170
+ version = "1.48.0"
2171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2172
+ checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
2173
+ dependencies = [
2174
+ "bytes",
2175
+ "libc",
2176
+ "mio",
2177
+ "parking_lot",
2178
+ "pin-project-lite",
2179
+ "socket2",
2180
+ "windows-sys 0.61.2",
2181
+ ]
2182
+
2183
+ [[package]]
2184
+ name = "tokio-native-tls"
2185
+ version = "0.3.1"
2186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2187
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2188
+ dependencies = [
2189
+ "native-tls",
2190
+ "tokio",
2191
+ ]
2192
+
2193
+ [[package]]
2194
+ name = "tokio-rustls"
2195
+ version = "0.26.4"
2196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2197
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2198
+ dependencies = [
2199
+ "rustls",
2200
+ "tokio",
2201
+ ]
2202
+
2203
+ [[package]]
2204
+ name = "tokio-util"
2205
+ version = "0.7.17"
2206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2207
+ checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594"
2208
+ dependencies = [
2209
+ "bytes",
2210
+ "futures-core",
2211
+ "futures-sink",
2212
+ "pin-project-lite",
2213
+ "tokio",
2214
+ ]
2215
+
2216
+ [[package]]
2217
+ name = "tower"
2218
+ version = "0.5.2"
2219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2220
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
2221
+ dependencies = [
2222
+ "futures-core",
2223
+ "futures-util",
2224
+ "pin-project-lite",
2225
+ "sync_wrapper",
2226
+ "tokio",
2227
+ "tower-layer",
2228
+ "tower-service",
2229
+ ]
2230
+
2231
+ [[package]]
2232
+ name = "tower-http"
2233
+ version = "0.6.8"
2234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2235
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
2236
+ dependencies = [
2237
+ "async-compression",
2238
+ "bitflags",
2239
+ "bytes",
2240
+ "futures-core",
2241
+ "futures-util",
2242
+ "http",
2243
+ "http-body",
2244
+ "http-body-util",
2245
+ "iri-string",
2246
+ "pin-project-lite",
2247
+ "tokio",
2248
+ "tokio-util",
2249
+ "tower",
2250
+ "tower-layer",
2251
+ "tower-service",
2252
+ ]
2253
+
2254
+ [[package]]
2255
+ name = "tower-layer"
2256
+ version = "0.3.3"
2257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2258
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2259
+
2260
+ [[package]]
2261
+ name = "tower-service"
2262
+ version = "0.3.3"
2263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2264
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2265
+
2266
+ [[package]]
2267
+ name = "tracing"
2268
+ version = "0.1.43"
2269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2270
+ checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647"
2271
+ dependencies = [
2272
+ "pin-project-lite",
2273
+ "tracing-core",
2274
+ ]
2275
+
2276
+ [[package]]
2277
+ name = "tracing-core"
2278
+ version = "0.1.35"
2279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2280
+ checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c"
2281
+ dependencies = [
2282
+ "once_cell",
2283
+ ]
2284
+
2285
+ [[package]]
2286
+ name = "try-lock"
2287
+ version = "0.2.5"
2288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2289
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2290
+
2291
+ [[package]]
2292
+ name = "unicode-ident"
2293
+ version = "1.0.22"
2294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2295
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
2296
+
2297
+ [[package]]
2298
+ name = "unicode-segmentation"
2299
+ version = "1.12.0"
2300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2301
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
2302
+
2303
+ [[package]]
2304
+ name = "unindent"
2305
+ version = "0.2.4"
2306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2307
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2308
+
2309
+ [[package]]
2310
+ name = "untrusted"
2311
+ version = "0.9.0"
2312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2313
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2314
+
2315
+ [[package]]
2316
+ name = "url"
2317
+ version = "2.5.7"
2318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2319
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
2320
+ dependencies = [
2321
+ "form_urlencoded",
2322
+ "idna",
2323
+ "percent-encoding",
2324
+ "serde",
2325
+ ]
2326
+
2327
+ [[package]]
2328
+ name = "utf-8"
2329
+ version = "0.7.6"
2330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2331
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2332
+
2333
+ [[package]]
2334
+ name = "utf8-width"
2335
+ version = "0.1.8"
2336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2337
+ checksum = "1292c0d970b54115d14f2492fe0170adf21d68a1de108eebc51c1df4f346a091"
2338
+
2339
+ [[package]]
2340
+ name = "utf8_iter"
2341
+ version = "1.0.4"
2342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2343
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2344
+
2345
+ [[package]]
2346
+ name = "vcpkg"
2347
+ version = "0.2.15"
2348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2349
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2350
+
2351
+ [[package]]
2352
+ name = "walkdir"
2353
+ version = "2.5.0"
2354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2355
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2356
+ dependencies = [
2357
+ "same-file",
2358
+ "winapi-util",
2359
+ ]
2360
+
2361
+ [[package]]
2362
+ name = "want"
2363
+ version = "0.3.1"
2364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2365
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2366
+ dependencies = [
2367
+ "try-lock",
2368
+ ]
2369
+
2370
+ [[package]]
2371
+ name = "wasi"
2372
+ version = "0.11.1+wasi-snapshot-preview1"
2373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2374
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2375
+
2376
+ [[package]]
2377
+ name = "wasip2"
2378
+ version = "1.0.1+wasi-0.2.4"
2379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2380
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
2381
+ dependencies = [
2382
+ "wit-bindgen",
2383
+ ]
2384
+
2385
+ [[package]]
2386
+ name = "wasm-bindgen"
2387
+ version = "0.2.106"
2388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2389
+ checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
2390
+ dependencies = [
2391
+ "cfg-if",
2392
+ "once_cell",
2393
+ "rustversion",
2394
+ "wasm-bindgen-macro",
2395
+ "wasm-bindgen-shared",
2396
+ ]
2397
+
2398
+ [[package]]
2399
+ name = "wasm-bindgen-futures"
2400
+ version = "0.4.56"
2401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2402
+ checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
2403
+ dependencies = [
2404
+ "cfg-if",
2405
+ "js-sys",
2406
+ "once_cell",
2407
+ "wasm-bindgen",
2408
+ "web-sys",
2409
+ ]
2410
+
2411
+ [[package]]
2412
+ name = "wasm-bindgen-macro"
2413
+ version = "0.2.106"
2414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2415
+ checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
2416
+ dependencies = [
2417
+ "quote",
2418
+ "wasm-bindgen-macro-support",
2419
+ ]
2420
+
2421
+ [[package]]
2422
+ name = "wasm-bindgen-macro-support"
2423
+ version = "0.2.106"
2424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2425
+ checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
2426
+ dependencies = [
2427
+ "bumpalo",
2428
+ "proc-macro2",
2429
+ "quote",
2430
+ "syn",
2431
+ "wasm-bindgen-shared",
2432
+ ]
2433
+
2434
+ [[package]]
2435
+ name = "wasm-bindgen-shared"
2436
+ version = "0.2.106"
2437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2438
+ checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
2439
+ dependencies = [
2440
+ "unicode-ident",
2441
+ ]
2442
+
2443
+ [[package]]
2444
+ name = "web-sys"
2445
+ version = "0.3.83"
2446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2447
+ checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
2448
+ dependencies = [
2449
+ "js-sys",
2450
+ "wasm-bindgen",
2451
+ ]
2452
+
2453
+ [[package]]
2454
+ name = "web_atoms"
2455
+ version = "0.1.3"
2456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2457
+ checksum = "57ffde1dc01240bdf9992e3205668b235e59421fd085e8a317ed98da0178d414"
2458
+ dependencies = [
2459
+ "phf",
2460
+ "phf_codegen",
2461
+ "string_cache",
2462
+ "string_cache_codegen",
2463
+ ]
2464
+
2465
+ [[package]]
2466
+ name = "winapi"
2467
+ version = "0.3.9"
2468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2469
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2470
+ dependencies = [
2471
+ "winapi-i686-pc-windows-gnu",
2472
+ "winapi-x86_64-pc-windows-gnu",
2473
+ ]
2474
+
2475
+ [[package]]
2476
+ name = "winapi-i686-pc-windows-gnu"
2477
+ version = "0.4.0"
2478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2479
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2480
+
2481
+ [[package]]
2482
+ name = "winapi-util"
2483
+ version = "0.1.11"
2484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2485
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2486
+ dependencies = [
2487
+ "windows-sys 0.61.2",
2488
+ ]
2489
+
2490
+ [[package]]
2491
+ name = "winapi-x86_64-pc-windows-gnu"
2492
+ version = "0.4.0"
2493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2494
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2495
+
2496
+ [[package]]
2497
+ name = "windows-core"
2498
+ version = "0.62.2"
2499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2500
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2501
+ dependencies = [
2502
+ "windows-implement",
2503
+ "windows-interface",
2504
+ "windows-link",
2505
+ "windows-result",
2506
+ "windows-strings",
2507
+ ]
2508
+
2509
+ [[package]]
2510
+ name = "windows-implement"
2511
+ version = "0.60.2"
2512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2513
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2514
+ dependencies = [
2515
+ "proc-macro2",
2516
+ "quote",
2517
+ "syn",
2518
+ ]
2519
+
2520
+ [[package]]
2521
+ name = "windows-interface"
2522
+ version = "0.59.3"
2523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2524
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2525
+ dependencies = [
2526
+ "proc-macro2",
2527
+ "quote",
2528
+ "syn",
2529
+ ]
2530
+
2531
+ [[package]]
2532
+ name = "windows-link"
2533
+ version = "0.2.1"
2534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2535
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2536
+
2537
+ [[package]]
2538
+ name = "windows-registry"
2539
+ version = "0.6.1"
2540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2541
+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
2542
+ dependencies = [
2543
+ "windows-link",
2544
+ "windows-result",
2545
+ "windows-strings",
2546
+ ]
2547
+
2548
+ [[package]]
2549
+ name = "windows-result"
2550
+ version = "0.4.1"
2551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2552
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2553
+ dependencies = [
2554
+ "windows-link",
2555
+ ]
2556
+
2557
+ [[package]]
2558
+ name = "windows-strings"
2559
+ version = "0.5.1"
2560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2561
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2562
+ dependencies = [
2563
+ "windows-link",
2564
+ ]
2565
+
2566
+ [[package]]
2567
+ name = "windows-sys"
2568
+ version = "0.52.0"
2569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2570
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2571
+ dependencies = [
2572
+ "windows-targets 0.52.6",
2573
+ ]
2574
+
2575
+ [[package]]
2576
+ name = "windows-sys"
2577
+ version = "0.60.2"
2578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2579
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2580
+ dependencies = [
2581
+ "windows-targets 0.53.5",
2582
+ ]
2583
+
2584
+ [[package]]
2585
+ name = "windows-sys"
2586
+ version = "0.61.2"
2587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2588
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2589
+ dependencies = [
2590
+ "windows-link",
2591
+ ]
2592
+
2593
+ [[package]]
2594
+ name = "windows-targets"
2595
+ version = "0.52.6"
2596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2597
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2598
+ dependencies = [
2599
+ "windows_aarch64_gnullvm 0.52.6",
2600
+ "windows_aarch64_msvc 0.52.6",
2601
+ "windows_i686_gnu 0.52.6",
2602
+ "windows_i686_gnullvm 0.52.6",
2603
+ "windows_i686_msvc 0.52.6",
2604
+ "windows_x86_64_gnu 0.52.6",
2605
+ "windows_x86_64_gnullvm 0.52.6",
2606
+ "windows_x86_64_msvc 0.52.6",
2607
+ ]
2608
+
2609
+ [[package]]
2610
+ name = "windows-targets"
2611
+ version = "0.53.5"
2612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2613
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
2614
+ dependencies = [
2615
+ "windows-link",
2616
+ "windows_aarch64_gnullvm 0.53.1",
2617
+ "windows_aarch64_msvc 0.53.1",
2618
+ "windows_i686_gnu 0.53.1",
2619
+ "windows_i686_gnullvm 0.53.1",
2620
+ "windows_i686_msvc 0.53.1",
2621
+ "windows_x86_64_gnu 0.53.1",
2622
+ "windows_x86_64_gnullvm 0.53.1",
2623
+ "windows_x86_64_msvc 0.53.1",
2624
+ ]
2625
+
2626
+ [[package]]
2627
+ name = "windows_aarch64_gnullvm"
2628
+ version = "0.52.6"
2629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2630
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2631
+
2632
+ [[package]]
2633
+ name = "windows_aarch64_gnullvm"
2634
+ version = "0.53.1"
2635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2636
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
2637
+
2638
+ [[package]]
2639
+ name = "windows_aarch64_msvc"
2640
+ version = "0.52.6"
2641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2642
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2643
+
2644
+ [[package]]
2645
+ name = "windows_aarch64_msvc"
2646
+ version = "0.53.1"
2647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2648
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
2649
+
2650
+ [[package]]
2651
+ name = "windows_i686_gnu"
2652
+ version = "0.52.6"
2653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2654
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2655
+
2656
+ [[package]]
2657
+ name = "windows_i686_gnu"
2658
+ version = "0.53.1"
2659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2660
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
2661
+
2662
+ [[package]]
2663
+ name = "windows_i686_gnullvm"
2664
+ version = "0.52.6"
2665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2666
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2667
+
2668
+ [[package]]
2669
+ name = "windows_i686_gnullvm"
2670
+ version = "0.53.1"
2671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2672
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
2673
+
2674
+ [[package]]
2675
+ name = "windows_i686_msvc"
2676
+ version = "0.52.6"
2677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2678
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2679
+
2680
+ [[package]]
2681
+ name = "windows_i686_msvc"
2682
+ version = "0.53.1"
2683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2684
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
2685
+
2686
+ [[package]]
2687
+ name = "windows_x86_64_gnu"
2688
+ version = "0.52.6"
2689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2690
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2691
+
2692
+ [[package]]
2693
+ name = "windows_x86_64_gnu"
2694
+ version = "0.53.1"
2695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2696
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
2697
+
2698
+ [[package]]
2699
+ name = "windows_x86_64_gnullvm"
2700
+ version = "0.52.6"
2701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2702
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2703
+
2704
+ [[package]]
2705
+ name = "windows_x86_64_gnullvm"
2706
+ version = "0.53.1"
2707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2708
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2709
+
2710
+ [[package]]
2711
+ name = "windows_x86_64_msvc"
2712
+ version = "0.52.6"
2713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2714
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2715
+
2716
+ [[package]]
2717
+ name = "windows_x86_64_msvc"
2718
+ version = "0.53.1"
2719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2720
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2721
+
2722
+ [[package]]
2723
+ name = "wit-bindgen"
2724
+ version = "0.46.0"
2725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2726
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
2727
+
2728
+ [[package]]
2729
+ name = "writeable"
2730
+ version = "0.6.2"
2731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2732
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
2733
+
2734
+ [[package]]
2735
+ name = "yoke"
2736
+ version = "0.8.1"
2737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2738
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
2739
+ dependencies = [
2740
+ "stable_deref_trait",
2741
+ "yoke-derive",
2742
+ "zerofrom",
2743
+ ]
2744
+
2745
+ [[package]]
2746
+ name = "yoke-derive"
2747
+ version = "0.8.1"
2748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2749
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
2750
+ dependencies = [
2751
+ "proc-macro2",
2752
+ "quote",
2753
+ "syn",
2754
+ "synstructure",
2755
+ ]
2756
+
2757
+ [[package]]
2758
+ name = "zerocopy"
2759
+ version = "0.8.31"
2760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2761
+ checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
2762
+ dependencies = [
2763
+ "zerocopy-derive",
2764
+ ]
2765
+
2766
+ [[package]]
2767
+ name = "zerocopy-derive"
2768
+ version = "0.8.31"
2769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2770
+ checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
2771
+ dependencies = [
2772
+ "proc-macro2",
2773
+ "quote",
2774
+ "syn",
2775
+ ]
2776
+
2777
+ [[package]]
2778
+ name = "zerofrom"
2779
+ version = "0.1.6"
2780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2781
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2782
+ dependencies = [
2783
+ "zerofrom-derive",
2784
+ ]
2785
+
2786
+ [[package]]
2787
+ name = "zerofrom-derive"
2788
+ version = "0.1.6"
2789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2790
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2791
+ dependencies = [
2792
+ "proc-macro2",
2793
+ "quote",
2794
+ "syn",
2795
+ "synstructure",
2796
+ ]
2797
+
2798
+ [[package]]
2799
+ name = "zeroize"
2800
+ version = "1.8.2"
2801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2802
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
2803
+
2804
+ [[package]]
2805
+ name = "zerotrie"
2806
+ version = "0.2.3"
2807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2808
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
2809
+ dependencies = [
2810
+ "displaydoc",
2811
+ "yoke",
2812
+ "zerofrom",
2813
+ ]
2814
+
2815
+ [[package]]
2816
+ name = "zerovec"
2817
+ version = "0.11.5"
2818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2819
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
2820
+ dependencies = [
2821
+ "yoke",
2822
+ "zerofrom",
2823
+ "zerovec-derive",
2824
+ ]
2825
+
2826
+ [[package]]
2827
+ name = "zerovec-derive"
2828
+ version = "0.11.2"
2829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2830
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
2831
+ dependencies = [
2832
+ "proc-macro2",
2833
+ "quote",
2834
+ "syn",
2835
+ ]