igapi-rs 0.1.3.dev0__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 (104) hide show
  1. igapi_rs-0.1.3.dev0/Cargo.lock +3988 -0
  2. igapi_rs-0.1.3.dev0/Cargo.toml +48 -0
  3. igapi_rs-0.1.3.dev0/PKG-INFO +314 -0
  4. igapi_rs-0.1.3.dev0/README.md +282 -0
  5. igapi_rs-0.1.3.dev0/pyproject.toml +57 -0
  6. igapi_rs-0.1.3.dev0/src/core/Cargo.toml +47 -0
  7. igapi_rs-0.1.3.dev0/src/core/examples/http_usage.rs +43 -0
  8. igapi_rs-0.1.3.dev0/src/core/examples/platform_demo.rs +138 -0
  9. igapi_rs-0.1.3.dev0/src/core/src/android/api/direct.rs +237 -0
  10. igapi_rs-0.1.3.dev0/src/core/src/android/api/feed.rs +4 -0
  11. igapi_rs-0.1.3.dev0/src/core/src/android/api/login.rs +9 -0
  12. igapi_rs-0.1.3.dev0/src/core/src/android/api/media.rs +4 -0
  13. igapi_rs-0.1.3.dev0/src/core/src/android/api/mod.rs +58 -0
  14. igapi_rs-0.1.3.dev0/src/core/src/android/api/upload.rs +4 -0
  15. igapi_rs-0.1.3.dev0/src/core/src/android/api/user.rs +4 -0
  16. igapi_rs-0.1.3.dev0/src/core/src/android/client.rs +59 -0
  17. igapi_rs-0.1.3.dev0/src/core/src/android/device.rs +131 -0
  18. igapi_rs-0.1.3.dev0/src/core/src/android/mod.rs +11 -0
  19. igapi_rs-0.1.3.dev0/src/core/src/android/platform.rs +289 -0
  20. igapi_rs-0.1.3.dev0/src/core/src/android/transport.rs +3 -0
  21. igapi_rs-0.1.3.dev0/src/core/src/common/api/feed.rs +83 -0
  22. igapi_rs-0.1.3.dev0/src/core/src/common/api/media.rs +80 -0
  23. igapi_rs-0.1.3.dev0/src/core/src/common/api/mod.rs +14 -0
  24. igapi_rs-0.1.3.dev0/src/core/src/common/api/upload.rs +851 -0
  25. igapi_rs-0.1.3.dev0/src/core/src/common/api/user.rs +245 -0
  26. igapi_rs-0.1.3.dev0/src/core/src/common/auth/challenge.rs +144 -0
  27. igapi_rs-0.1.3.dev0/src/core/src/common/auth/login.rs +160 -0
  28. igapi_rs-0.1.3.dev0/src/core/src/common/auth/mod.rs +13 -0
  29. igapi_rs-0.1.3.dev0/src/core/src/common/auth/session.rs +276 -0
  30. igapi_rs-0.1.3.dev0/src/core/src/common/auth/two_factor.rs +149 -0
  31. igapi_rs-0.1.3.dev0/src/core/src/common/client_core.rs +1770 -0
  32. igapi_rs-0.1.3.dev0/src/core/src/common/client_methods.rs +58 -0
  33. igapi_rs-0.1.3.dev0/src/core/src/common/extractors/media.rs +78 -0
  34. igapi_rs-0.1.3.dev0/src/core/src/common/extractors/mod.rs +7 -0
  35. igapi_rs-0.1.3.dev0/src/core/src/common/extractors/user.rs +96 -0
  36. igapi_rs-0.1.3.dev0/src/core/src/common/http/mod.rs +10 -0
  37. igapi_rs-0.1.3.dev0/src/core/src/common/http/rate_limit.rs +282 -0
  38. igapi_rs-0.1.3.dev0/src/core/src/common/http/request.rs +153 -0
  39. igapi_rs-0.1.3.dev0/src/core/src/common/http/reqwest_transport.rs +105 -0
  40. igapi_rs-0.1.3.dev0/src/core/src/common/http/response.rs +233 -0
  41. igapi_rs-0.1.3.dev0/src/core/src/common/http/transport.rs +86 -0
  42. igapi_rs-0.1.3.dev0/src/core/src/common/mod.rs +13 -0
  43. igapi_rs-0.1.3.dev0/src/core/src/constants.rs +217 -0
  44. igapi_rs-0.1.3.dev0/src/core/src/crypto/mod.rs +17 -0
  45. igapi_rs-0.1.3.dev0/src/core/src/crypto/password.rs +230 -0
  46. igapi_rs-0.1.3.dev0/src/core/src/crypto/signature.rs +338 -0
  47. igapi_rs-0.1.3.dev0/src/core/src/crypto/web_password.rs +250 -0
  48. igapi_rs-0.1.3.dev0/src/core/src/error.rs +156 -0
  49. igapi_rs-0.1.3.dev0/src/core/src/ios/api/feed.rs +3 -0
  50. igapi_rs-0.1.3.dev0/src/core/src/ios/api/login.rs +9 -0
  51. igapi_rs-0.1.3.dev0/src/core/src/ios/api/media.rs +3 -0
  52. igapi_rs-0.1.3.dev0/src/core/src/ios/api/mod.rs +51 -0
  53. igapi_rs-0.1.3.dev0/src/core/src/ios/api/upload.rs +3 -0
  54. igapi_rs-0.1.3.dev0/src/core/src/ios/api/user.rs +3 -0
  55. igapi_rs-0.1.3.dev0/src/core/src/ios/client.rs +39 -0
  56. igapi_rs-0.1.3.dev0/src/core/src/ios/device.rs +111 -0
  57. igapi_rs-0.1.3.dev0/src/core/src/ios/mod.rs +11 -0
  58. igapi_rs-0.1.3.dev0/src/core/src/ios/platform.rs +242 -0
  59. igapi_rs-0.1.3.dev0/src/core/src/ios/transport.rs +3 -0
  60. igapi_rs-0.1.3.dev0/src/core/src/lib.rs +35 -0
  61. igapi_rs-0.1.3.dev0/src/core/src/platform/mod.rs +81 -0
  62. igapi_rs-0.1.3.dev0/src/core/src/types/account.rs +1124 -0
  63. igapi_rs-0.1.3.dev0/src/core/src/types/auth.rs +237 -0
  64. igapi_rs-0.1.3.dev0/src/core/src/types/common.rs +272 -0
  65. igapi_rs-0.1.3.dev0/src/core/src/types/graphql.rs +400 -0
  66. igapi_rs-0.1.3.dev0/src/core/src/types/media.rs +261 -0
  67. igapi_rs-0.1.3.dev0/src/core/src/types/mod.rs +32 -0
  68. igapi_rs-0.1.3.dev0/src/core/src/types/response.rs +261 -0
  69. igapi_rs-0.1.3.dev0/src/core/src/types/user.rs +243 -0
  70. igapi_rs-0.1.3.dev0/src/core/src/upload/configure.rs +256 -0
  71. igapi_rs-0.1.3.dev0/src/core/src/upload/error.rs +206 -0
  72. igapi_rs-0.1.3.dev0/src/core/src/upload/image.rs +376 -0
  73. igapi_rs-0.1.3.dev0/src/core/src/upload/mod.rs +60 -0
  74. igapi_rs-0.1.3.dev0/src/core/src/upload/progress.rs +127 -0
  75. igapi_rs-0.1.3.dev0/src/core/src/upload/rupload.rs +196 -0
  76. igapi_rs-0.1.3.dev0/src/core/src/upload/types.rs +203 -0
  77. igapi_rs-0.1.3.dev0/src/core/src/web/api/direct.rs +1268 -0
  78. igapi_rs-0.1.3.dev0/src/core/src/web/api/feed.rs +3 -0
  79. igapi_rs-0.1.3.dev0/src/core/src/web/api/graphql.rs +3 -0
  80. igapi_rs-0.1.3.dev0/src/core/src/web/api/media.rs +3 -0
  81. igapi_rs-0.1.3.dev0/src/core/src/web/api/mod.rs +61 -0
  82. igapi_rs-0.1.3.dev0/src/core/src/web/api/post.rs +255 -0
  83. igapi_rs-0.1.3.dev0/src/core/src/web/api/upload.rs +3 -0
  84. igapi_rs-0.1.3.dev0/src/core/src/web/api/user.rs +3 -0
  85. igapi_rs-0.1.3.dev0/src/core/src/web/browser.rs +159 -0
  86. igapi_rs-0.1.3.dev0/src/core/src/web/client.rs +83 -0
  87. igapi_rs-0.1.3.dev0/src/core/src/web/mod.rs +12 -0
  88. igapi_rs-0.1.3.dev0/src/core/src/web/platform.rs +246 -0
  89. igapi_rs-0.1.3.dev0/src/core/src/web/transport.rs +165 -0
  90. igapi_rs-0.1.3.dev0/src/py/Cargo.toml +23 -0
  91. igapi_rs-0.1.3.dev0/src/py/README.md +282 -0
  92. igapi_rs-0.1.3.dev0/src/py/src/api/direct.rs +412 -0
  93. igapi_rs-0.1.3.dev0/src/py/src/api/feed.rs +109 -0
  94. igapi_rs-0.1.3.dev0/src/py/src/api/media.rs +92 -0
  95. igapi_rs-0.1.3.dev0/src/py/src/api/mod.rs +27 -0
  96. igapi_rs-0.1.3.dev0/src/py/src/api/post.rs +111 -0
  97. igapi_rs-0.1.3.dev0/src/py/src/api/upload.rs +208 -0
  98. igapi_rs-0.1.3.dev0/src/py/src/api/user.rs +210 -0
  99. igapi_rs-0.1.3.dev0/src/py/src/client.rs +177 -0
  100. igapi_rs-0.1.3.dev0/src/py/src/error.rs +127 -0
  101. igapi_rs-0.1.3.dev0/src/py/src/ios_client.rs +123 -0
  102. igapi_rs-0.1.3.dev0/src/py/src/lib.rs +91 -0
  103. igapi_rs-0.1.3.dev0/src/py/src/types.rs +669 -0
  104. igapi_rs-0.1.3.dev0/src/py/src/web_client.rs +334 -0
@@ -0,0 +1,3988 @@
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 = "aead"
13
+ version = "0.5.2"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
16
+ dependencies = [
17
+ "crypto-common",
18
+ "generic-array",
19
+ ]
20
+
21
+ [[package]]
22
+ name = "aes"
23
+ version = "0.8.4"
24
+ source = "registry+https://github.com/rust-lang/crates.io-index"
25
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
26
+ dependencies = [
27
+ "cfg-if",
28
+ "cipher",
29
+ "cpufeatures",
30
+ ]
31
+
32
+ [[package]]
33
+ name = "aes-gcm"
34
+ version = "0.10.3"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
37
+ dependencies = [
38
+ "aead",
39
+ "aes",
40
+ "cipher",
41
+ "ctr",
42
+ "ghash",
43
+ "subtle",
44
+ ]
45
+
46
+ [[package]]
47
+ name = "aho-corasick"
48
+ version = "1.1.4"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
51
+ dependencies = [
52
+ "memchr",
53
+ ]
54
+
55
+ [[package]]
56
+ name = "aligned"
57
+ version = "0.4.3"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "ee4508988c62edf04abd8d92897fca0c2995d907ce1dfeaf369dac3716a40685"
60
+ dependencies = [
61
+ "as-slice",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "aligned-vec"
66
+ version = "0.6.4"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b"
69
+ dependencies = [
70
+ "equator",
71
+ ]
72
+
73
+ [[package]]
74
+ name = "alloc-no-stdlib"
75
+ version = "2.0.4"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
78
+
79
+ [[package]]
80
+ name = "alloc-stdlib"
81
+ version = "0.2.4"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "0e76a019e91224d279006ff972f1e984179a6e9feb050adba6ce8274aef23195"
84
+ dependencies = [
85
+ "alloc-no-stdlib",
86
+ ]
87
+
88
+ [[package]]
89
+ name = "allocator-api2"
90
+ version = "0.2.21"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
93
+
94
+ [[package]]
95
+ name = "android_system_properties"
96
+ version = "0.1.5"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
99
+ dependencies = [
100
+ "libc",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "anstream"
105
+ version = "1.0.0"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
108
+ dependencies = [
109
+ "anstyle",
110
+ "anstyle-parse",
111
+ "anstyle-query",
112
+ "anstyle-wincon",
113
+ "colorchoice",
114
+ "is_terminal_polyfill",
115
+ "utf8parse",
116
+ ]
117
+
118
+ [[package]]
119
+ name = "anstyle"
120
+ version = "1.0.14"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
123
+
124
+ [[package]]
125
+ name = "anstyle-parse"
126
+ version = "1.0.0"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
129
+ dependencies = [
130
+ "utf8parse",
131
+ ]
132
+
133
+ [[package]]
134
+ name = "anstyle-query"
135
+ version = "1.1.5"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
138
+ dependencies = [
139
+ "windows-sys 0.61.2",
140
+ ]
141
+
142
+ [[package]]
143
+ name = "anstyle-wincon"
144
+ version = "3.0.11"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
147
+ dependencies = [
148
+ "anstyle",
149
+ "once_cell_polyfill",
150
+ "windows-sys 0.61.2",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "anyhow"
155
+ version = "1.0.103"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
158
+
159
+ [[package]]
160
+ name = "arbitrary"
161
+ version = "1.4.2"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
164
+
165
+ [[package]]
166
+ name = "arg_enum_proc_macro"
167
+ version = "0.3.4"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea"
170
+ dependencies = [
171
+ "proc-macro2",
172
+ "quote",
173
+ "syn",
174
+ ]
175
+
176
+ [[package]]
177
+ name = "arrayvec"
178
+ version = "0.7.7"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "f02882884d3e1bc524fb12c79f107f6ad0e1cfd498c536ffb494301740995dfe"
181
+
182
+ [[package]]
183
+ name = "as-slice"
184
+ version = "0.2.1"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "516b6b4f0e40d50dcda9365d53964ec74560ad4284da2e7fc97122cd83174516"
187
+ dependencies = [
188
+ "stable_deref_trait",
189
+ ]
190
+
191
+ [[package]]
192
+ name = "assert-json-diff"
193
+ version = "2.0.2"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
196
+ dependencies = [
197
+ "serde",
198
+ "serde_json",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "async-compression"
203
+ version = "0.4.42"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "e79b3f8a79cccc2898f31920fc69f304859b3bd567490f75ebf51ae1c792a9ac"
206
+ dependencies = [
207
+ "compression-codecs",
208
+ "compression-core",
209
+ "pin-project-lite",
210
+ "tokio",
211
+ ]
212
+
213
+ [[package]]
214
+ name = "async-trait"
215
+ version = "0.1.89"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
218
+ dependencies = [
219
+ "proc-macro2",
220
+ "quote",
221
+ "syn",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "atomic-waker"
226
+ version = "1.1.2"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
229
+
230
+ [[package]]
231
+ name = "autocfg"
232
+ version = "1.5.1"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
235
+
236
+ [[package]]
237
+ name = "av-scenechange"
238
+ version = "0.14.1"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "0f321d77c20e19b92c39e7471cf986812cbb46659d2af674adc4331ef3f18394"
241
+ dependencies = [
242
+ "aligned",
243
+ "anyhow",
244
+ "arg_enum_proc_macro",
245
+ "arrayvec",
246
+ "log",
247
+ "num-rational",
248
+ "num-traits",
249
+ "pastey",
250
+ "rayon",
251
+ "thiserror",
252
+ "v_frame",
253
+ "y4m",
254
+ ]
255
+
256
+ [[package]]
257
+ name = "av1-grain"
258
+ version = "0.2.5"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "8cfddb07216410377231960af4fcab838eaa12e013417781b78bd95ee22077f8"
261
+ dependencies = [
262
+ "anyhow",
263
+ "arrayvec",
264
+ "log",
265
+ "nom 8.0.0",
266
+ "num-rational",
267
+ "v_frame",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "avif-serialize"
272
+ version = "0.8.9"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "e7178fe5f7d460b13895ebb9dcb28a3a6216d2df2574a0806cb51b555d297f38"
275
+ dependencies = [
276
+ "arrayvec",
277
+ ]
278
+
279
+ [[package]]
280
+ name = "base32"
281
+ version = "0.5.1"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "022dfe9eb35f19ebbcb51e0b40a5ab759f46ad60cadf7297e0bd085afb50e076"
284
+
285
+ [[package]]
286
+ name = "base64"
287
+ version = "0.22.1"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
290
+
291
+ [[package]]
292
+ name = "base64ct"
293
+ version = "1.8.3"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
296
+
297
+ [[package]]
298
+ name = "bindgen"
299
+ version = "0.72.1"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
302
+ dependencies = [
303
+ "bitflags",
304
+ "cexpr",
305
+ "clang-sys",
306
+ "itertools 0.13.0",
307
+ "proc-macro2",
308
+ "quote",
309
+ "regex",
310
+ "rustc-hash",
311
+ "shlex 1.3.0",
312
+ "syn",
313
+ ]
314
+
315
+ [[package]]
316
+ name = "bit_field"
317
+ version = "0.10.3"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6"
320
+
321
+ [[package]]
322
+ name = "bitflags"
323
+ version = "2.13.0"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
326
+
327
+ [[package]]
328
+ name = "bitstream-io"
329
+ version = "4.10.0"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "7eff00be299a18769011411c9def0d827e8f2d7bf0c3dbf53633147a8867fd1f"
332
+ dependencies = [
333
+ "no_std_io2",
334
+ ]
335
+
336
+ [[package]]
337
+ name = "blake2"
338
+ version = "0.10.6"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
341
+ dependencies = [
342
+ "digest",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "block-buffer"
347
+ version = "0.10.4"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
350
+ dependencies = [
351
+ "generic-array",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "brotli"
356
+ version = "8.0.4"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "5cc91aac060a7a1e25823bdccbfb6af1875b88f17c6daac97894eed8207166b3"
359
+ dependencies = [
360
+ "alloc-no-stdlib",
361
+ "alloc-stdlib",
362
+ "brotli-decompressor",
363
+ ]
364
+
365
+ [[package]]
366
+ name = "brotli-decompressor"
367
+ version = "5.0.3"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "3a32acac15fe1967bc3986b2a6347dffc965602354ea6f450ad07e8bfd253583"
370
+ dependencies = [
371
+ "alloc-no-stdlib",
372
+ "alloc-stdlib",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "btls"
377
+ version = "0.5.6"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "2c5e60b8c8d282c86360cab651ded04ab0335a7b5390c8d34145cbeab8cacf5f"
380
+ dependencies = [
381
+ "bitflags",
382
+ "btls-sys",
383
+ "foreign-types",
384
+ "libc",
385
+ "openssl-macros",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "btls-sys"
390
+ version = "0.5.6"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "9b1b8638a2e1c38a5ae4efa90ae57e643baec35a30d03fc5b399b893adc4954b"
393
+ dependencies = [
394
+ "bindgen",
395
+ "cmake",
396
+ "fs_extra",
397
+ "fslock",
398
+ ]
399
+
400
+ [[package]]
401
+ name = "built"
402
+ version = "0.8.1"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "5c0e531d93d39c34eef561e929e8a7f86d77a5af08aac4f6d6e39976c51858e9"
405
+
406
+ [[package]]
407
+ name = "bumpalo"
408
+ version = "3.20.3"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
411
+
412
+ [[package]]
413
+ name = "bytemuck"
414
+ version = "1.25.0"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
417
+
418
+ [[package]]
419
+ name = "byteorder-lite"
420
+ version = "0.1.0"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
423
+
424
+ [[package]]
425
+ name = "bytes"
426
+ version = "1.12.0"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
429
+
430
+ [[package]]
431
+ name = "cc"
432
+ version = "1.2.65"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
435
+ dependencies = [
436
+ "find-msvc-tools",
437
+ "jobserver",
438
+ "libc",
439
+ "shlex 2.0.1",
440
+ ]
441
+
442
+ [[package]]
443
+ name = "cexpr"
444
+ version = "0.6.0"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
447
+ dependencies = [
448
+ "nom 7.1.3",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "cfg-if"
453
+ version = "1.0.4"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
456
+
457
+ [[package]]
458
+ name = "cfg_aliases"
459
+ version = "0.2.1"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
462
+
463
+ [[package]]
464
+ name = "chrono"
465
+ version = "0.4.45"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
468
+ dependencies = [
469
+ "iana-time-zone",
470
+ "js-sys",
471
+ "num-traits",
472
+ "serde",
473
+ "wasm-bindgen",
474
+ "windows-link",
475
+ ]
476
+
477
+ [[package]]
478
+ name = "cipher"
479
+ version = "0.4.4"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
482
+ dependencies = [
483
+ "crypto-common",
484
+ "inout",
485
+ "zeroize",
486
+ ]
487
+
488
+ [[package]]
489
+ name = "clang-sys"
490
+ version = "1.8.1"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
493
+ dependencies = [
494
+ "glob",
495
+ "libc",
496
+ "libloading",
497
+ ]
498
+
499
+ [[package]]
500
+ name = "clap"
501
+ version = "4.6.1"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
504
+ dependencies = [
505
+ "clap_builder",
506
+ "clap_derive",
507
+ ]
508
+
509
+ [[package]]
510
+ name = "clap_builder"
511
+ version = "4.6.0"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
514
+ dependencies = [
515
+ "anstream",
516
+ "anstyle",
517
+ "clap_lex",
518
+ "strsim",
519
+ ]
520
+
521
+ [[package]]
522
+ name = "clap_derive"
523
+ version = "4.6.1"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
526
+ dependencies = [
527
+ "heck",
528
+ "proc-macro2",
529
+ "quote",
530
+ "syn",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "clap_lex"
535
+ version = "1.1.0"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
538
+
539
+ [[package]]
540
+ name = "cmake"
541
+ version = "0.1.58"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
544
+ dependencies = [
545
+ "cc",
546
+ ]
547
+
548
+ [[package]]
549
+ name = "color_quant"
550
+ version = "1.1.0"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
553
+
554
+ [[package]]
555
+ name = "colorchoice"
556
+ version = "1.0.5"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
559
+
560
+ [[package]]
561
+ name = "compression-codecs"
562
+ version = "0.4.38"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "ce2548391e9c1929c21bf6aa2680af86fe4c1b33e6cea9ac1cfeec0bd11218cf"
565
+ dependencies = [
566
+ "brotli",
567
+ "compression-core",
568
+ "flate2",
569
+ "memchr",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "compression-core"
574
+ version = "0.4.32"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "cc14f565cf027a105f7a44ccf9e5b424348421a1d8952a8fc9d499d313107789"
577
+
578
+ [[package]]
579
+ name = "const-oid"
580
+ version = "0.9.6"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
583
+
584
+ [[package]]
585
+ name = "constant_time_eq"
586
+ version = "0.3.1"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
589
+
590
+ [[package]]
591
+ name = "cookie"
592
+ version = "0.18.1"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
595
+ dependencies = [
596
+ "percent-encoding",
597
+ "time",
598
+ "version_check",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "cookie_store"
603
+ version = "0.22.1"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "15b2c103cf610ec6cae3da84a766285b42fd16aad564758459e6ecf128c75206"
606
+ dependencies = [
607
+ "cookie",
608
+ "document-features",
609
+ "idna",
610
+ "log",
611
+ "publicsuffix",
612
+ "serde",
613
+ "serde_derive",
614
+ "serde_json",
615
+ "time",
616
+ "url",
617
+ ]
618
+
619
+ [[package]]
620
+ name = "core-foundation-sys"
621
+ version = "0.8.7"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
624
+
625
+ [[package]]
626
+ name = "cpufeatures"
627
+ version = "0.2.17"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
630
+ dependencies = [
631
+ "libc",
632
+ ]
633
+
634
+ [[package]]
635
+ name = "crc32fast"
636
+ version = "1.5.0"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
639
+ dependencies = [
640
+ "cfg-if",
641
+ ]
642
+
643
+ [[package]]
644
+ name = "crossbeam-deque"
645
+ version = "0.8.6"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
648
+ dependencies = [
649
+ "crossbeam-epoch",
650
+ "crossbeam-utils",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "crossbeam-epoch"
655
+ version = "0.9.18"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
658
+ dependencies = [
659
+ "crossbeam-utils",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "crossbeam-utils"
664
+ version = "0.8.21"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
667
+
668
+ [[package]]
669
+ name = "crunchy"
670
+ version = "0.2.4"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
673
+
674
+ [[package]]
675
+ name = "crypto-common"
676
+ version = "0.1.7"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
679
+ dependencies = [
680
+ "generic-array",
681
+ "rand_core 0.6.4",
682
+ "typenum",
683
+ ]
684
+
685
+ [[package]]
686
+ name = "crypto_box"
687
+ version = "0.9.1"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "16182b4f39a82ec8a6851155cc4c0cda3065bb1db33651726a29e1951de0f009"
690
+ dependencies = [
691
+ "aead",
692
+ "crypto_secretbox",
693
+ "curve25519-dalek",
694
+ "salsa20",
695
+ "subtle",
696
+ "zeroize",
697
+ ]
698
+
699
+ [[package]]
700
+ name = "crypto_secretbox"
701
+ version = "0.1.1"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "b9d6cf87adf719ddf43a805e92c6870a531aedda35ff640442cbaf8674e141e1"
704
+ dependencies = [
705
+ "aead",
706
+ "cipher",
707
+ "generic-array",
708
+ "poly1305",
709
+ "salsa20",
710
+ "subtle",
711
+ "zeroize",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "ctr"
716
+ version = "0.9.2"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
719
+ dependencies = [
720
+ "cipher",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "curve25519-dalek"
725
+ version = "4.1.3"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
728
+ dependencies = [
729
+ "cfg-if",
730
+ "cpufeatures",
731
+ "curve25519-dalek-derive",
732
+ "fiat-crypto",
733
+ "rustc_version",
734
+ "subtle",
735
+ "zeroize",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "curve25519-dalek-derive"
740
+ version = "0.1.1"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
743
+ dependencies = [
744
+ "proc-macro2",
745
+ "quote",
746
+ "syn",
747
+ ]
748
+
749
+ [[package]]
750
+ name = "deadpool"
751
+ version = "0.12.3"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "0be2b1d1d6ec8d846f05e137292d0b89133caf95ef33695424c09568bdd39b1b"
754
+ dependencies = [
755
+ "deadpool-runtime",
756
+ "lazy_static",
757
+ "num_cpus",
758
+ "tokio",
759
+ ]
760
+
761
+ [[package]]
762
+ name = "deadpool-runtime"
763
+ version = "0.1.4"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
766
+
767
+ [[package]]
768
+ name = "der"
769
+ version = "0.7.10"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
772
+ dependencies = [
773
+ "const-oid",
774
+ "pem-rfc7468",
775
+ "zeroize",
776
+ ]
777
+
778
+ [[package]]
779
+ name = "deranged"
780
+ version = "0.5.8"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
783
+
784
+ [[package]]
785
+ name = "digest"
786
+ version = "0.10.7"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
789
+ dependencies = [
790
+ "block-buffer",
791
+ "const-oid",
792
+ "crypto-common",
793
+ "subtle",
794
+ ]
795
+
796
+ [[package]]
797
+ name = "displaydoc"
798
+ version = "0.2.6"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
801
+ dependencies = [
802
+ "proc-macro2",
803
+ "quote",
804
+ "syn",
805
+ ]
806
+
807
+ [[package]]
808
+ name = "document-features"
809
+ version = "0.2.12"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
812
+ dependencies = [
813
+ "litrs",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "either"
818
+ version = "1.16.0"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
821
+
822
+ [[package]]
823
+ name = "equator"
824
+ version = "0.4.2"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
827
+ dependencies = [
828
+ "equator-macro",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "equator-macro"
833
+ version = "0.4.2"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
836
+ dependencies = [
837
+ "proc-macro2",
838
+ "quote",
839
+ "syn",
840
+ ]
841
+
842
+ [[package]]
843
+ name = "equivalent"
844
+ version = "1.0.2"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
847
+
848
+ [[package]]
849
+ name = "errno"
850
+ version = "0.3.14"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
853
+ dependencies = [
854
+ "libc",
855
+ "windows-sys 0.61.2",
856
+ ]
857
+
858
+ [[package]]
859
+ name = "exr"
860
+ version = "1.74.0"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "4300e043a56aa2cb633c01af81ca8f699a321879a7854d3896a0ba89056363be"
863
+ dependencies = [
864
+ "bit_field",
865
+ "half",
866
+ "lebe",
867
+ "miniz_oxide",
868
+ "rayon-core",
869
+ "smallvec",
870
+ "zune-inflate",
871
+ ]
872
+
873
+ [[package]]
874
+ name = "fax"
875
+ version = "0.2.7"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "caf1079563223d5d59d83c85886a56e586cfd5c1a26292e971a0fa266531ac5a"
878
+
879
+ [[package]]
880
+ name = "fdeflate"
881
+ version = "0.3.7"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
884
+ dependencies = [
885
+ "simd-adler32",
886
+ ]
887
+
888
+ [[package]]
889
+ name = "fiat-crypto"
890
+ version = "0.2.9"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
893
+
894
+ [[package]]
895
+ name = "find-msvc-tools"
896
+ version = "0.1.9"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
899
+
900
+ [[package]]
901
+ name = "flate2"
902
+ version = "1.1.9"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
905
+ dependencies = [
906
+ "crc32fast",
907
+ "miniz_oxide",
908
+ ]
909
+
910
+ [[package]]
911
+ name = "fnv"
912
+ version = "1.0.7"
913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
914
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
915
+
916
+ [[package]]
917
+ name = "foldhash"
918
+ version = "0.2.0"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
921
+
922
+ [[package]]
923
+ name = "foreign-types"
924
+ version = "0.5.0"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
927
+ dependencies = [
928
+ "foreign-types-macros",
929
+ "foreign-types-shared",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "foreign-types-macros"
934
+ version = "0.2.3"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
937
+ dependencies = [
938
+ "proc-macro2",
939
+ "quote",
940
+ "syn",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "foreign-types-shared"
945
+ version = "0.3.1"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
948
+
949
+ [[package]]
950
+ name = "form_urlencoded"
951
+ version = "1.2.2"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
954
+ dependencies = [
955
+ "percent-encoding",
956
+ ]
957
+
958
+ [[package]]
959
+ name = "fs_extra"
960
+ version = "1.3.0"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
963
+
964
+ [[package]]
965
+ name = "fslock"
966
+ version = "0.2.1"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "04412b8935272e3a9bae6f48c7bfff74c2911f60525404edfdd28e49884c3bfb"
969
+ dependencies = [
970
+ "libc",
971
+ "winapi",
972
+ ]
973
+
974
+ [[package]]
975
+ name = "futures"
976
+ version = "0.3.32"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
979
+ dependencies = [
980
+ "futures-channel",
981
+ "futures-core",
982
+ "futures-executor",
983
+ "futures-io",
984
+ "futures-sink",
985
+ "futures-task",
986
+ "futures-util",
987
+ ]
988
+
989
+ [[package]]
990
+ name = "futures-channel"
991
+ version = "0.3.32"
992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
993
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
994
+ dependencies = [
995
+ "futures-core",
996
+ "futures-sink",
997
+ ]
998
+
999
+ [[package]]
1000
+ name = "futures-core"
1001
+ version = "0.3.32"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
1004
+
1005
+ [[package]]
1006
+ name = "futures-executor"
1007
+ version = "0.3.32"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
1010
+ dependencies = [
1011
+ "futures-core",
1012
+ "futures-task",
1013
+ "futures-util",
1014
+ ]
1015
+
1016
+ [[package]]
1017
+ name = "futures-io"
1018
+ version = "0.3.32"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
1021
+
1022
+ [[package]]
1023
+ name = "futures-macro"
1024
+ version = "0.3.32"
1025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1026
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
1027
+ dependencies = [
1028
+ "proc-macro2",
1029
+ "quote",
1030
+ "syn",
1031
+ ]
1032
+
1033
+ [[package]]
1034
+ name = "futures-sink"
1035
+ version = "0.3.32"
1036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1037
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
1038
+
1039
+ [[package]]
1040
+ name = "futures-task"
1041
+ version = "0.3.32"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
1044
+
1045
+ [[package]]
1046
+ name = "futures-util"
1047
+ version = "0.3.32"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
1050
+ dependencies = [
1051
+ "futures-channel",
1052
+ "futures-core",
1053
+ "futures-io",
1054
+ "futures-macro",
1055
+ "futures-sink",
1056
+ "futures-task",
1057
+ "memchr",
1058
+ "pin-project-lite",
1059
+ "slab",
1060
+ ]
1061
+
1062
+ [[package]]
1063
+ name = "generic-array"
1064
+ version = "0.14.7"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1067
+ dependencies = [
1068
+ "typenum",
1069
+ "version_check",
1070
+ "zeroize",
1071
+ ]
1072
+
1073
+ [[package]]
1074
+ name = "getrandom"
1075
+ version = "0.2.17"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1078
+ dependencies = [
1079
+ "cfg-if",
1080
+ "js-sys",
1081
+ "libc",
1082
+ "wasi",
1083
+ "wasm-bindgen",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "getrandom"
1088
+ version = "0.3.4"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1091
+ dependencies = [
1092
+ "cfg-if",
1093
+ "js-sys",
1094
+ "libc",
1095
+ "r-efi 5.3.0",
1096
+ "wasip2",
1097
+ "wasm-bindgen",
1098
+ ]
1099
+
1100
+ [[package]]
1101
+ name = "getrandom"
1102
+ version = "0.4.3"
1103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1104
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
1105
+ dependencies = [
1106
+ "cfg-if",
1107
+ "libc",
1108
+ "r-efi 6.0.0",
1109
+ ]
1110
+
1111
+ [[package]]
1112
+ name = "ghash"
1113
+ version = "0.5.1"
1114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+ checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
1116
+ dependencies = [
1117
+ "opaque-debug",
1118
+ "polyval",
1119
+ ]
1120
+
1121
+ [[package]]
1122
+ name = "gif"
1123
+ version = "0.14.2"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "ee8cfcc411d9adbbaba82fb72661cc1bcca13e8bba98b364e62b2dba8f960159"
1126
+ dependencies = [
1127
+ "color_quant",
1128
+ "weezl",
1129
+ ]
1130
+
1131
+ [[package]]
1132
+ name = "glob"
1133
+ version = "0.3.3"
1134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1135
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1136
+
1137
+ [[package]]
1138
+ name = "h2"
1139
+ version = "0.4.15"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
1142
+ dependencies = [
1143
+ "atomic-waker",
1144
+ "bytes",
1145
+ "fnv",
1146
+ "futures-core",
1147
+ "futures-sink",
1148
+ "http",
1149
+ "indexmap",
1150
+ "slab",
1151
+ "tokio",
1152
+ "tokio-util",
1153
+ "tracing",
1154
+ ]
1155
+
1156
+ [[package]]
1157
+ name = "half"
1158
+ version = "2.7.1"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1161
+ dependencies = [
1162
+ "cfg-if",
1163
+ "crunchy",
1164
+ "zerocopy",
1165
+ ]
1166
+
1167
+ [[package]]
1168
+ name = "hashbrown"
1169
+ version = "0.17.1"
1170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1171
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1172
+ dependencies = [
1173
+ "allocator-api2",
1174
+ "equivalent",
1175
+ "foldhash",
1176
+ ]
1177
+
1178
+ [[package]]
1179
+ name = "heck"
1180
+ version = "0.5.0"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1183
+
1184
+ [[package]]
1185
+ name = "hermit-abi"
1186
+ version = "0.5.2"
1187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1189
+
1190
+ [[package]]
1191
+ name = "hex"
1192
+ version = "0.4.3"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1195
+
1196
+ [[package]]
1197
+ name = "hmac"
1198
+ version = "0.12.1"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1201
+ dependencies = [
1202
+ "digest",
1203
+ ]
1204
+
1205
+ [[package]]
1206
+ name = "http"
1207
+ version = "1.4.2"
1208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1209
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
1210
+ dependencies = [
1211
+ "bytes",
1212
+ "itoa",
1213
+ ]
1214
+
1215
+ [[package]]
1216
+ name = "http-body"
1217
+ version = "1.0.1"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1220
+ dependencies = [
1221
+ "bytes",
1222
+ "http",
1223
+ ]
1224
+
1225
+ [[package]]
1226
+ name = "http-body-util"
1227
+ version = "0.1.3"
1228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1229
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1230
+ dependencies = [
1231
+ "bytes",
1232
+ "futures-core",
1233
+ "http",
1234
+ "http-body",
1235
+ "pin-project-lite",
1236
+ ]
1237
+
1238
+ [[package]]
1239
+ name = "http2"
1240
+ version = "0.5.19"
1241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1242
+ checksum = "39fa01ed3820381df693c455ba2109d229c0cb02c95a51108ef45ddd758d91b9"
1243
+ dependencies = [
1244
+ "atomic-waker",
1245
+ "bytes",
1246
+ "fnv",
1247
+ "futures-core",
1248
+ "futures-sink",
1249
+ "http",
1250
+ "indexmap",
1251
+ "slab",
1252
+ "smallvec",
1253
+ "tokio",
1254
+ "tokio-util",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "httparse"
1259
+ version = "1.10.1"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1262
+
1263
+ [[package]]
1264
+ name = "httpdate"
1265
+ version = "1.0.3"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1268
+
1269
+ [[package]]
1270
+ name = "hyper"
1271
+ version = "1.10.1"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
1274
+ dependencies = [
1275
+ "atomic-waker",
1276
+ "bytes",
1277
+ "futures-channel",
1278
+ "futures-core",
1279
+ "h2",
1280
+ "http",
1281
+ "http-body",
1282
+ "httparse",
1283
+ "httpdate",
1284
+ "itoa",
1285
+ "pin-project-lite",
1286
+ "smallvec",
1287
+ "tokio",
1288
+ "want",
1289
+ ]
1290
+
1291
+ [[package]]
1292
+ name = "hyper-rustls"
1293
+ version = "0.27.9"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
1296
+ dependencies = [
1297
+ "http",
1298
+ "hyper",
1299
+ "hyper-util",
1300
+ "rustls",
1301
+ "tokio",
1302
+ "tokio-rustls",
1303
+ "tower-service",
1304
+ "webpki-roots",
1305
+ ]
1306
+
1307
+ [[package]]
1308
+ name = "hyper-util"
1309
+ version = "0.1.20"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1312
+ dependencies = [
1313
+ "base64",
1314
+ "bytes",
1315
+ "futures-channel",
1316
+ "futures-util",
1317
+ "http",
1318
+ "http-body",
1319
+ "hyper",
1320
+ "ipnet",
1321
+ "libc",
1322
+ "percent-encoding",
1323
+ "pin-project-lite",
1324
+ "socket2",
1325
+ "tokio",
1326
+ "tower-service",
1327
+ "tracing",
1328
+ ]
1329
+
1330
+ [[package]]
1331
+ name = "iana-time-zone"
1332
+ version = "0.1.65"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1335
+ dependencies = [
1336
+ "android_system_properties",
1337
+ "core-foundation-sys",
1338
+ "iana-time-zone-haiku",
1339
+ "js-sys",
1340
+ "log",
1341
+ "wasm-bindgen",
1342
+ "windows-core",
1343
+ ]
1344
+
1345
+ [[package]]
1346
+ name = "iana-time-zone-haiku"
1347
+ version = "0.1.2"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1350
+ dependencies = [
1351
+ "cc",
1352
+ ]
1353
+
1354
+ [[package]]
1355
+ name = "icu_collections"
1356
+ version = "2.2.0"
1357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1358
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1359
+ dependencies = [
1360
+ "displaydoc",
1361
+ "potential_utf",
1362
+ "utf8_iter",
1363
+ "yoke",
1364
+ "zerofrom",
1365
+ "zerovec",
1366
+ ]
1367
+
1368
+ [[package]]
1369
+ name = "icu_locale_core"
1370
+ version = "2.2.0"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1373
+ dependencies = [
1374
+ "displaydoc",
1375
+ "litemap",
1376
+ "tinystr",
1377
+ "writeable",
1378
+ "zerovec",
1379
+ ]
1380
+
1381
+ [[package]]
1382
+ name = "icu_normalizer"
1383
+ version = "2.2.0"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1386
+ dependencies = [
1387
+ "icu_collections",
1388
+ "icu_normalizer_data",
1389
+ "icu_properties",
1390
+ "icu_provider",
1391
+ "smallvec",
1392
+ "zerovec",
1393
+ ]
1394
+
1395
+ [[package]]
1396
+ name = "icu_normalizer_data"
1397
+ version = "2.2.0"
1398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1399
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1400
+
1401
+ [[package]]
1402
+ name = "icu_properties"
1403
+ version = "2.2.0"
1404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1405
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1406
+ dependencies = [
1407
+ "icu_collections",
1408
+ "icu_locale_core",
1409
+ "icu_properties_data",
1410
+ "icu_provider",
1411
+ "zerotrie",
1412
+ "zerovec",
1413
+ ]
1414
+
1415
+ [[package]]
1416
+ name = "icu_properties_data"
1417
+ version = "2.2.0"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1420
+
1421
+ [[package]]
1422
+ name = "icu_provider"
1423
+ version = "2.2.0"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1426
+ dependencies = [
1427
+ "displaydoc",
1428
+ "icu_locale_core",
1429
+ "writeable",
1430
+ "yoke",
1431
+ "zerofrom",
1432
+ "zerotrie",
1433
+ "zerovec",
1434
+ ]
1435
+
1436
+ [[package]]
1437
+ name = "idna"
1438
+ version = "1.1.0"
1439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1440
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1441
+ dependencies = [
1442
+ "idna_adapter",
1443
+ "smallvec",
1444
+ "utf8_iter",
1445
+ ]
1446
+
1447
+ [[package]]
1448
+ name = "idna_adapter"
1449
+ version = "1.2.2"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1452
+ dependencies = [
1453
+ "icu_normalizer",
1454
+ "icu_properties",
1455
+ ]
1456
+
1457
+ [[package]]
1458
+ name = "igapi-cli"
1459
+ version = "0.1.3-dev0"
1460
+ dependencies = [
1461
+ "clap",
1462
+ "igapi-core",
1463
+ "serde_json",
1464
+ "tokio",
1465
+ "tracing",
1466
+ "tracing-subscriber",
1467
+ ]
1468
+
1469
+ [[package]]
1470
+ name = "igapi-core"
1471
+ version = "0.1.3-dev0"
1472
+ dependencies = [
1473
+ "aes-gcm",
1474
+ "async-trait",
1475
+ "base64",
1476
+ "blake2",
1477
+ "bytes",
1478
+ "chrono",
1479
+ "crypto_box",
1480
+ "futures",
1481
+ "hex",
1482
+ "hmac",
1483
+ "http",
1484
+ "image",
1485
+ "rand 0.8.6",
1486
+ "reqwest",
1487
+ "rsa",
1488
+ "serde",
1489
+ "serde_json",
1490
+ "serde_repr",
1491
+ "sha2",
1492
+ "thiserror",
1493
+ "tokio",
1494
+ "totp-rs",
1495
+ "tracing",
1496
+ "tracing-subscriber",
1497
+ "url",
1498
+ "urlencoding",
1499
+ "uuid",
1500
+ "wiremock",
1501
+ "wreq",
1502
+ "wreq-util",
1503
+ ]
1504
+
1505
+ [[package]]
1506
+ name = "igapi-py"
1507
+ version = "0.1.3-dev0"
1508
+ dependencies = [
1509
+ "igapi-core",
1510
+ "pyo3",
1511
+ "pyo3-async-runtimes",
1512
+ "serde_json",
1513
+ "tokio",
1514
+ "totp-rs",
1515
+ ]
1516
+
1517
+ [[package]]
1518
+ name = "image"
1519
+ version = "0.25.10"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
1522
+ dependencies = [
1523
+ "bytemuck",
1524
+ "byteorder-lite",
1525
+ "color_quant",
1526
+ "exr",
1527
+ "gif",
1528
+ "image-webp",
1529
+ "moxcms",
1530
+ "num-traits",
1531
+ "png",
1532
+ "qoi",
1533
+ "ravif",
1534
+ "rayon",
1535
+ "rgb",
1536
+ "tiff",
1537
+ "zune-core",
1538
+ "zune-jpeg",
1539
+ ]
1540
+
1541
+ [[package]]
1542
+ name = "image-webp"
1543
+ version = "0.2.4"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
1546
+ dependencies = [
1547
+ "byteorder-lite",
1548
+ "quick-error",
1549
+ ]
1550
+
1551
+ [[package]]
1552
+ name = "imgref"
1553
+ version = "1.12.2"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "89194689a993ab15268672e99e7b0e19da2da3268ac682e8f02d29d4d1434cd7"
1556
+
1557
+ [[package]]
1558
+ name = "indexmap"
1559
+ version = "2.14.0"
1560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1561
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1562
+ dependencies = [
1563
+ "equivalent",
1564
+ "hashbrown",
1565
+ ]
1566
+
1567
+ [[package]]
1568
+ name = "indoc"
1569
+ version = "2.0.7"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1572
+ dependencies = [
1573
+ "rustversion",
1574
+ ]
1575
+
1576
+ [[package]]
1577
+ name = "inout"
1578
+ version = "0.1.4"
1579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1581
+ dependencies = [
1582
+ "generic-array",
1583
+ ]
1584
+
1585
+ [[package]]
1586
+ name = "interpolate_name"
1587
+ version = "0.2.4"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
1590
+ dependencies = [
1591
+ "proc-macro2",
1592
+ "quote",
1593
+ "syn",
1594
+ ]
1595
+
1596
+ [[package]]
1597
+ name = "ipnet"
1598
+ version = "2.12.0"
1599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1600
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1601
+
1602
+ [[package]]
1603
+ name = "is_terminal_polyfill"
1604
+ version = "1.70.2"
1605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1606
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1607
+
1608
+ [[package]]
1609
+ name = "itertools"
1610
+ version = "0.13.0"
1611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1612
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1613
+ dependencies = [
1614
+ "either",
1615
+ ]
1616
+
1617
+ [[package]]
1618
+ name = "itertools"
1619
+ version = "0.14.0"
1620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1621
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1622
+ dependencies = [
1623
+ "either",
1624
+ ]
1625
+
1626
+ [[package]]
1627
+ name = "itoa"
1628
+ version = "1.0.18"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1631
+
1632
+ [[package]]
1633
+ name = "jobserver"
1634
+ version = "0.1.34"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1637
+ dependencies = [
1638
+ "getrandom 0.3.4",
1639
+ "libc",
1640
+ ]
1641
+
1642
+ [[package]]
1643
+ name = "js-sys"
1644
+ version = "0.3.103"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
1647
+ dependencies = [
1648
+ "cfg-if",
1649
+ "futures-util",
1650
+ "wasm-bindgen",
1651
+ ]
1652
+
1653
+ [[package]]
1654
+ name = "lazy_static"
1655
+ version = "1.5.0"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1658
+ dependencies = [
1659
+ "spin",
1660
+ ]
1661
+
1662
+ [[package]]
1663
+ name = "lebe"
1664
+ version = "0.5.3"
1665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1666
+ checksum = "7a79a3332a6609480d7d0c9eab957bca6b455b91bb84e66d19f5ff66294b85b8"
1667
+
1668
+ [[package]]
1669
+ name = "libc"
1670
+ version = "0.2.186"
1671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1672
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1673
+
1674
+ [[package]]
1675
+ name = "libfuzzer-sys"
1676
+ version = "0.4.13"
1677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1678
+ checksum = "a9fd2f41a1cba099f79a0b6b6c35656cf7c03351a7bae8ff0f28f25270f929d2"
1679
+ dependencies = [
1680
+ "arbitrary",
1681
+ "cc",
1682
+ ]
1683
+
1684
+ [[package]]
1685
+ name = "libloading"
1686
+ version = "0.8.9"
1687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1688
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1689
+ dependencies = [
1690
+ "cfg-if",
1691
+ "windows-link",
1692
+ ]
1693
+
1694
+ [[package]]
1695
+ name = "libm"
1696
+ version = "0.2.16"
1697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1698
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1699
+
1700
+ [[package]]
1701
+ name = "litemap"
1702
+ version = "0.8.2"
1703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1704
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1705
+
1706
+ [[package]]
1707
+ name = "litrs"
1708
+ version = "1.0.0"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
1711
+
1712
+ [[package]]
1713
+ name = "lock_api"
1714
+ version = "0.4.14"
1715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1716
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1717
+ dependencies = [
1718
+ "scopeguard",
1719
+ ]
1720
+
1721
+ [[package]]
1722
+ name = "log"
1723
+ version = "0.4.33"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1726
+
1727
+ [[package]]
1728
+ name = "loop9"
1729
+ version = "0.1.5"
1730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1731
+ checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
1732
+ dependencies = [
1733
+ "imgref",
1734
+ ]
1735
+
1736
+ [[package]]
1737
+ name = "lru"
1738
+ version = "0.18.0"
1739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1740
+ checksum = "8a860605968fce16869fd239cf4237a82f3ac470723415db603b0e8b6c8d4fb9"
1741
+ dependencies = [
1742
+ "hashbrown",
1743
+ ]
1744
+
1745
+ [[package]]
1746
+ name = "lru-slab"
1747
+ version = "0.1.2"
1748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1749
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1750
+
1751
+ [[package]]
1752
+ name = "matchers"
1753
+ version = "0.2.0"
1754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1755
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1756
+ dependencies = [
1757
+ "regex-automata",
1758
+ ]
1759
+
1760
+ [[package]]
1761
+ name = "maybe-rayon"
1762
+ version = "0.1.1"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
1765
+ dependencies = [
1766
+ "cfg-if",
1767
+ "rayon",
1768
+ ]
1769
+
1770
+ [[package]]
1771
+ name = "memchr"
1772
+ version = "2.8.2"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
1775
+
1776
+ [[package]]
1777
+ name = "memoffset"
1778
+ version = "0.9.1"
1779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1780
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1781
+ dependencies = [
1782
+ "autocfg",
1783
+ ]
1784
+
1785
+ [[package]]
1786
+ name = "minimal-lexical"
1787
+ version = "0.2.1"
1788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1790
+
1791
+ [[package]]
1792
+ name = "miniz_oxide"
1793
+ version = "0.8.9"
1794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1795
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1796
+ dependencies = [
1797
+ "adler2",
1798
+ "simd-adler32",
1799
+ ]
1800
+
1801
+ [[package]]
1802
+ name = "mio"
1803
+ version = "1.2.1"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
1806
+ dependencies = [
1807
+ "libc",
1808
+ "wasi",
1809
+ "windows-sys 0.61.2",
1810
+ ]
1811
+
1812
+ [[package]]
1813
+ name = "moxcms"
1814
+ version = "0.8.1"
1815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1816
+ checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
1817
+ dependencies = [
1818
+ "num-traits",
1819
+ "pxfm",
1820
+ ]
1821
+
1822
+ [[package]]
1823
+ name = "new_debug_unreachable"
1824
+ version = "1.0.6"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
1827
+
1828
+ [[package]]
1829
+ name = "no_std_io2"
1830
+ version = "0.9.4"
1831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1832
+ checksum = "418abd1b6d34fbf6cae440dc874771b0525a604428704c76e48b29a5e67b8003"
1833
+ dependencies = [
1834
+ "memchr",
1835
+ ]
1836
+
1837
+ [[package]]
1838
+ name = "nom"
1839
+ version = "7.1.3"
1840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1841
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1842
+ dependencies = [
1843
+ "memchr",
1844
+ "minimal-lexical",
1845
+ ]
1846
+
1847
+ [[package]]
1848
+ name = "nom"
1849
+ version = "8.0.0"
1850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1851
+ checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
1852
+ dependencies = [
1853
+ "memchr",
1854
+ ]
1855
+
1856
+ [[package]]
1857
+ name = "noop_proc_macro"
1858
+ version = "0.3.0"
1859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1860
+ checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
1861
+
1862
+ [[package]]
1863
+ name = "nu-ansi-term"
1864
+ version = "0.50.3"
1865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1866
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1867
+ dependencies = [
1868
+ "windows-sys 0.61.2",
1869
+ ]
1870
+
1871
+ [[package]]
1872
+ name = "num-bigint"
1873
+ version = "0.4.6"
1874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1875
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1876
+ dependencies = [
1877
+ "num-integer",
1878
+ "num-traits",
1879
+ ]
1880
+
1881
+ [[package]]
1882
+ name = "num-bigint-dig"
1883
+ version = "0.8.6"
1884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1885
+ checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
1886
+ dependencies = [
1887
+ "lazy_static",
1888
+ "libm",
1889
+ "num-integer",
1890
+ "num-iter",
1891
+ "num-traits",
1892
+ "rand 0.8.6",
1893
+ "smallvec",
1894
+ "zeroize",
1895
+ ]
1896
+
1897
+ [[package]]
1898
+ name = "num-conv"
1899
+ version = "0.2.2"
1900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1901
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
1902
+
1903
+ [[package]]
1904
+ name = "num-derive"
1905
+ version = "0.4.2"
1906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1907
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
1908
+ dependencies = [
1909
+ "proc-macro2",
1910
+ "quote",
1911
+ "syn",
1912
+ ]
1913
+
1914
+ [[package]]
1915
+ name = "num-integer"
1916
+ version = "0.1.46"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1919
+ dependencies = [
1920
+ "num-traits",
1921
+ ]
1922
+
1923
+ [[package]]
1924
+ name = "num-iter"
1925
+ version = "0.1.45"
1926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1927
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1928
+ dependencies = [
1929
+ "autocfg",
1930
+ "num-integer",
1931
+ "num-traits",
1932
+ ]
1933
+
1934
+ [[package]]
1935
+ name = "num-rational"
1936
+ version = "0.4.2"
1937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1938
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
1939
+ dependencies = [
1940
+ "num-bigint",
1941
+ "num-integer",
1942
+ "num-traits",
1943
+ ]
1944
+
1945
+ [[package]]
1946
+ name = "num-traits"
1947
+ version = "0.2.19"
1948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1949
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1950
+ dependencies = [
1951
+ "autocfg",
1952
+ "libm",
1953
+ ]
1954
+
1955
+ [[package]]
1956
+ name = "num_cpus"
1957
+ version = "1.17.0"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
1960
+ dependencies = [
1961
+ "hermit-abi",
1962
+ "libc",
1963
+ ]
1964
+
1965
+ [[package]]
1966
+ name = "once_cell"
1967
+ version = "1.21.4"
1968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1969
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1970
+
1971
+ [[package]]
1972
+ name = "once_cell_polyfill"
1973
+ version = "1.70.2"
1974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1975
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1976
+
1977
+ [[package]]
1978
+ name = "opaque-debug"
1979
+ version = "0.3.1"
1980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1981
+ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
1982
+
1983
+ [[package]]
1984
+ name = "openssl-macros"
1985
+ version = "0.1.1"
1986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1987
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1988
+ dependencies = [
1989
+ "proc-macro2",
1990
+ "quote",
1991
+ "syn",
1992
+ ]
1993
+
1994
+ [[package]]
1995
+ name = "parking_lot"
1996
+ version = "0.12.5"
1997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1998
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1999
+ dependencies = [
2000
+ "lock_api",
2001
+ "parking_lot_core",
2002
+ ]
2003
+
2004
+ [[package]]
2005
+ name = "parking_lot_core"
2006
+ version = "0.9.12"
2007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2008
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2009
+ dependencies = [
2010
+ "cfg-if",
2011
+ "libc",
2012
+ "redox_syscall",
2013
+ "smallvec",
2014
+ "windows-link",
2015
+ ]
2016
+
2017
+ [[package]]
2018
+ name = "paste"
2019
+ version = "1.0.15"
2020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2021
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2022
+
2023
+ [[package]]
2024
+ name = "pastey"
2025
+ version = "0.1.1"
2026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2027
+ checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec"
2028
+
2029
+ [[package]]
2030
+ name = "pem-rfc7468"
2031
+ version = "0.7.0"
2032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2033
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
2034
+ dependencies = [
2035
+ "base64ct",
2036
+ ]
2037
+
2038
+ [[package]]
2039
+ name = "percent-encoding"
2040
+ version = "2.3.2"
2041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2042
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2043
+
2044
+ [[package]]
2045
+ name = "pin-project-lite"
2046
+ version = "0.2.17"
2047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2048
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
2049
+
2050
+ [[package]]
2051
+ name = "pkcs1"
2052
+ version = "0.7.5"
2053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2054
+ checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
2055
+ dependencies = [
2056
+ "der",
2057
+ "pkcs8",
2058
+ "spki",
2059
+ ]
2060
+
2061
+ [[package]]
2062
+ name = "pkcs8"
2063
+ version = "0.10.2"
2064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2065
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
2066
+ dependencies = [
2067
+ "der",
2068
+ "spki",
2069
+ ]
2070
+
2071
+ [[package]]
2072
+ name = "pkg-config"
2073
+ version = "0.3.33"
2074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2075
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
2076
+
2077
+ [[package]]
2078
+ name = "png"
2079
+ version = "0.18.1"
2080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2081
+ checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
2082
+ dependencies = [
2083
+ "bitflags",
2084
+ "crc32fast",
2085
+ "fdeflate",
2086
+ "flate2",
2087
+ "miniz_oxide",
2088
+ ]
2089
+
2090
+ [[package]]
2091
+ name = "poly1305"
2092
+ version = "0.8.0"
2093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2094
+ checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
2095
+ dependencies = [
2096
+ "cpufeatures",
2097
+ "opaque-debug",
2098
+ "universal-hash",
2099
+ ]
2100
+
2101
+ [[package]]
2102
+ name = "polyval"
2103
+ version = "0.6.2"
2104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2105
+ checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
2106
+ dependencies = [
2107
+ "cfg-if",
2108
+ "cpufeatures",
2109
+ "opaque-debug",
2110
+ "universal-hash",
2111
+ ]
2112
+
2113
+ [[package]]
2114
+ name = "portable-atomic"
2115
+ version = "1.13.1"
2116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2117
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2118
+
2119
+ [[package]]
2120
+ name = "potential_utf"
2121
+ version = "0.1.5"
2122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2123
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
2124
+ dependencies = [
2125
+ "zerovec",
2126
+ ]
2127
+
2128
+ [[package]]
2129
+ name = "powerfmt"
2130
+ version = "0.2.0"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2133
+
2134
+ [[package]]
2135
+ name = "ppv-lite86"
2136
+ version = "0.2.21"
2137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2138
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2139
+ dependencies = [
2140
+ "zerocopy",
2141
+ ]
2142
+
2143
+ [[package]]
2144
+ name = "proc-macro2"
2145
+ version = "1.0.106"
2146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2147
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2148
+ dependencies = [
2149
+ "unicode-ident",
2150
+ ]
2151
+
2152
+ [[package]]
2153
+ name = "profiling"
2154
+ version = "1.0.18"
2155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2156
+ checksum = "3d595e54a326bc53c1c197b32d295e14b169e3cfeaa8dc82b529f947fba6bcf5"
2157
+ dependencies = [
2158
+ "profiling-procmacros",
2159
+ ]
2160
+
2161
+ [[package]]
2162
+ name = "profiling-procmacros"
2163
+ version = "1.0.18"
2164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2165
+ checksum = "4488a4a36b9a4ba6b9334a32a39971f77c1436ec82c38707bce707699cc3bbcb"
2166
+ dependencies = [
2167
+ "quote",
2168
+ "syn",
2169
+ ]
2170
+
2171
+ [[package]]
2172
+ name = "psl-types"
2173
+ version = "2.0.11"
2174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2175
+ checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
2176
+
2177
+ [[package]]
2178
+ name = "publicsuffix"
2179
+ version = "2.3.0"
2180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2181
+ checksum = "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf"
2182
+ dependencies = [
2183
+ "idna",
2184
+ "psl-types",
2185
+ ]
2186
+
2187
+ [[package]]
2188
+ name = "pxfm"
2189
+ version = "0.1.29"
2190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2191
+ checksum = "e0c5ccf5294c6ccd63a74f1565028353830a9c2f5eb0c682c355c471726a6e3f"
2192
+
2193
+ [[package]]
2194
+ name = "pyo3"
2195
+ version = "0.22.6"
2196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2197
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
2198
+ dependencies = [
2199
+ "cfg-if",
2200
+ "indoc",
2201
+ "libc",
2202
+ "memoffset",
2203
+ "once_cell",
2204
+ "portable-atomic",
2205
+ "pyo3-build-config",
2206
+ "pyo3-ffi",
2207
+ "pyo3-macros",
2208
+ "unindent",
2209
+ ]
2210
+
2211
+ [[package]]
2212
+ name = "pyo3-async-runtimes"
2213
+ version = "0.22.0"
2214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2215
+ checksum = "2529f0be73ffd2be0cc43c013a640796558aa12d7ca0aab5cc14f375b4733031"
2216
+ dependencies = [
2217
+ "futures",
2218
+ "once_cell",
2219
+ "pin-project-lite",
2220
+ "pyo3",
2221
+ "tokio",
2222
+ ]
2223
+
2224
+ [[package]]
2225
+ name = "pyo3-build-config"
2226
+ version = "0.22.6"
2227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2228
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
2229
+ dependencies = [
2230
+ "once_cell",
2231
+ "target-lexicon",
2232
+ ]
2233
+
2234
+ [[package]]
2235
+ name = "pyo3-ffi"
2236
+ version = "0.22.6"
2237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2238
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
2239
+ dependencies = [
2240
+ "libc",
2241
+ "pyo3-build-config",
2242
+ ]
2243
+
2244
+ [[package]]
2245
+ name = "pyo3-macros"
2246
+ version = "0.22.6"
2247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2248
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
2249
+ dependencies = [
2250
+ "proc-macro2",
2251
+ "pyo3-macros-backend",
2252
+ "quote",
2253
+ "syn",
2254
+ ]
2255
+
2256
+ [[package]]
2257
+ name = "pyo3-macros-backend"
2258
+ version = "0.22.6"
2259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2260
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
2261
+ dependencies = [
2262
+ "heck",
2263
+ "proc-macro2",
2264
+ "pyo3-build-config",
2265
+ "quote",
2266
+ "syn",
2267
+ ]
2268
+
2269
+ [[package]]
2270
+ name = "qoi"
2271
+ version = "0.4.1"
2272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2273
+ checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
2274
+ dependencies = [
2275
+ "bytemuck",
2276
+ ]
2277
+
2278
+ [[package]]
2279
+ name = "quick-error"
2280
+ version = "2.0.1"
2281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2282
+ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
2283
+
2284
+ [[package]]
2285
+ name = "quinn"
2286
+ version = "0.11.11"
2287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2288
+ checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
2289
+ dependencies = [
2290
+ "bytes",
2291
+ "cfg_aliases",
2292
+ "pin-project-lite",
2293
+ "quinn-proto",
2294
+ "quinn-udp",
2295
+ "rustc-hash",
2296
+ "rustls",
2297
+ "socket2",
2298
+ "thiserror",
2299
+ "tokio",
2300
+ "tracing",
2301
+ "web-time",
2302
+ ]
2303
+
2304
+ [[package]]
2305
+ name = "quinn-proto"
2306
+ version = "0.11.15"
2307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2308
+ checksum = "4fcb935c5bec503c2f0e306bdd3e58bb9029dcb14fa8d9ac76e3a5256ac0763e"
2309
+ dependencies = [
2310
+ "bytes",
2311
+ "getrandom 0.3.4",
2312
+ "lru-slab",
2313
+ "rand 0.9.4",
2314
+ "ring",
2315
+ "rustc-hash",
2316
+ "rustls",
2317
+ "rustls-pki-types",
2318
+ "slab",
2319
+ "thiserror",
2320
+ "tinyvec",
2321
+ "tracing",
2322
+ "web-time",
2323
+ ]
2324
+
2325
+ [[package]]
2326
+ name = "quinn-udp"
2327
+ version = "0.5.14"
2328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2329
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2330
+ dependencies = [
2331
+ "cfg_aliases",
2332
+ "libc",
2333
+ "once_cell",
2334
+ "socket2",
2335
+ "tracing",
2336
+ "windows-sys 0.60.2",
2337
+ ]
2338
+
2339
+ [[package]]
2340
+ name = "quote"
2341
+ version = "1.0.46"
2342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2343
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
2344
+ dependencies = [
2345
+ "proc-macro2",
2346
+ ]
2347
+
2348
+ [[package]]
2349
+ name = "r-efi"
2350
+ version = "5.3.0"
2351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2352
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2353
+
2354
+ [[package]]
2355
+ name = "r-efi"
2356
+ version = "6.0.0"
2357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2358
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2359
+
2360
+ [[package]]
2361
+ name = "rand"
2362
+ version = "0.8.6"
2363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2364
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
2365
+ dependencies = [
2366
+ "libc",
2367
+ "rand_chacha 0.3.1",
2368
+ "rand_core 0.6.4",
2369
+ ]
2370
+
2371
+ [[package]]
2372
+ name = "rand"
2373
+ version = "0.9.4"
2374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2375
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
2376
+ dependencies = [
2377
+ "rand_chacha 0.9.0",
2378
+ "rand_core 0.9.5",
2379
+ ]
2380
+
2381
+ [[package]]
2382
+ name = "rand_chacha"
2383
+ version = "0.3.1"
2384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2385
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2386
+ dependencies = [
2387
+ "ppv-lite86",
2388
+ "rand_core 0.6.4",
2389
+ ]
2390
+
2391
+ [[package]]
2392
+ name = "rand_chacha"
2393
+ version = "0.9.0"
2394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2395
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2396
+ dependencies = [
2397
+ "ppv-lite86",
2398
+ "rand_core 0.9.5",
2399
+ ]
2400
+
2401
+ [[package]]
2402
+ name = "rand_core"
2403
+ version = "0.6.4"
2404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2405
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2406
+ dependencies = [
2407
+ "getrandom 0.2.17",
2408
+ ]
2409
+
2410
+ [[package]]
2411
+ name = "rand_core"
2412
+ version = "0.9.5"
2413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2414
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2415
+ dependencies = [
2416
+ "getrandom 0.3.4",
2417
+ ]
2418
+
2419
+ [[package]]
2420
+ name = "rav1e"
2421
+ version = "0.8.1"
2422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2423
+ checksum = "43b6dd56e85d9483277cde964fd1bdb0428de4fec5ebba7540995639a21cb32b"
2424
+ dependencies = [
2425
+ "aligned-vec",
2426
+ "arbitrary",
2427
+ "arg_enum_proc_macro",
2428
+ "arrayvec",
2429
+ "av-scenechange",
2430
+ "av1-grain",
2431
+ "bitstream-io",
2432
+ "built",
2433
+ "cfg-if",
2434
+ "interpolate_name",
2435
+ "itertools 0.14.0",
2436
+ "libc",
2437
+ "libfuzzer-sys",
2438
+ "log",
2439
+ "maybe-rayon",
2440
+ "new_debug_unreachable",
2441
+ "noop_proc_macro",
2442
+ "num-derive",
2443
+ "num-traits",
2444
+ "paste",
2445
+ "profiling",
2446
+ "rand 0.9.4",
2447
+ "rand_chacha 0.9.0",
2448
+ "simd_helpers",
2449
+ "thiserror",
2450
+ "v_frame",
2451
+ "wasm-bindgen",
2452
+ ]
2453
+
2454
+ [[package]]
2455
+ name = "ravif"
2456
+ version = "0.13.0"
2457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2458
+ checksum = "e52310197d971b0f5be7fe6b57530dcd27beb35c1b013f29d66c1ad73fbbcc45"
2459
+ dependencies = [
2460
+ "avif-serialize",
2461
+ "imgref",
2462
+ "loop9",
2463
+ "quick-error",
2464
+ "rav1e",
2465
+ "rayon",
2466
+ "rgb",
2467
+ ]
2468
+
2469
+ [[package]]
2470
+ name = "rayon"
2471
+ version = "1.12.0"
2472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2473
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
2474
+ dependencies = [
2475
+ "either",
2476
+ "rayon-core",
2477
+ ]
2478
+
2479
+ [[package]]
2480
+ name = "rayon-core"
2481
+ version = "1.13.0"
2482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2483
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2484
+ dependencies = [
2485
+ "crossbeam-deque",
2486
+ "crossbeam-utils",
2487
+ ]
2488
+
2489
+ [[package]]
2490
+ name = "redox_syscall"
2491
+ version = "0.5.18"
2492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2493
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2494
+ dependencies = [
2495
+ "bitflags",
2496
+ ]
2497
+
2498
+ [[package]]
2499
+ name = "regex"
2500
+ version = "1.12.4"
2501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2502
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
2503
+ dependencies = [
2504
+ "aho-corasick",
2505
+ "memchr",
2506
+ "regex-automata",
2507
+ "regex-syntax",
2508
+ ]
2509
+
2510
+ [[package]]
2511
+ name = "regex-automata"
2512
+ version = "0.4.14"
2513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2514
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2515
+ dependencies = [
2516
+ "aho-corasick",
2517
+ "memchr",
2518
+ "regex-syntax",
2519
+ ]
2520
+
2521
+ [[package]]
2522
+ name = "regex-syntax"
2523
+ version = "0.8.11"
2524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2525
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
2526
+
2527
+ [[package]]
2528
+ name = "reqwest"
2529
+ version = "0.12.28"
2530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2531
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2532
+ dependencies = [
2533
+ "base64",
2534
+ "bytes",
2535
+ "cookie",
2536
+ "cookie_store",
2537
+ "futures-core",
2538
+ "http",
2539
+ "http-body",
2540
+ "http-body-util",
2541
+ "hyper",
2542
+ "hyper-rustls",
2543
+ "hyper-util",
2544
+ "js-sys",
2545
+ "log",
2546
+ "percent-encoding",
2547
+ "pin-project-lite",
2548
+ "quinn",
2549
+ "rustls",
2550
+ "rustls-pki-types",
2551
+ "serde",
2552
+ "serde_json",
2553
+ "serde_urlencoded",
2554
+ "sync_wrapper",
2555
+ "tokio",
2556
+ "tokio-rustls",
2557
+ "tower",
2558
+ "tower-http",
2559
+ "tower-service",
2560
+ "url",
2561
+ "wasm-bindgen",
2562
+ "wasm-bindgen-futures",
2563
+ "web-sys",
2564
+ "webpki-roots",
2565
+ ]
2566
+
2567
+ [[package]]
2568
+ name = "rgb"
2569
+ version = "0.8.53"
2570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2571
+ checksum = "47b34b781b31e5d73e9fbc8689c70551fd1ade9a19e3e28cfec8580a79290cc4"
2572
+
2573
+ [[package]]
2574
+ name = "ring"
2575
+ version = "0.17.14"
2576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2577
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2578
+ dependencies = [
2579
+ "cc",
2580
+ "cfg-if",
2581
+ "getrandom 0.2.17",
2582
+ "libc",
2583
+ "untrusted",
2584
+ "windows-sys 0.52.0",
2585
+ ]
2586
+
2587
+ [[package]]
2588
+ name = "rsa"
2589
+ version = "0.9.10"
2590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2591
+ checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
2592
+ dependencies = [
2593
+ "const-oid",
2594
+ "digest",
2595
+ "num-bigint-dig",
2596
+ "num-integer",
2597
+ "num-traits",
2598
+ "pkcs1",
2599
+ "pkcs8",
2600
+ "rand_core 0.6.4",
2601
+ "sha2",
2602
+ "signature",
2603
+ "spki",
2604
+ "subtle",
2605
+ "zeroize",
2606
+ ]
2607
+
2608
+ [[package]]
2609
+ name = "rustc-hash"
2610
+ version = "2.1.2"
2611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2612
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
2613
+
2614
+ [[package]]
2615
+ name = "rustc_version"
2616
+ version = "0.4.1"
2617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2618
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2619
+ dependencies = [
2620
+ "semver",
2621
+ ]
2622
+
2623
+ [[package]]
2624
+ name = "rustls"
2625
+ version = "0.23.41"
2626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2627
+ checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
2628
+ dependencies = [
2629
+ "once_cell",
2630
+ "ring",
2631
+ "rustls-pki-types",
2632
+ "rustls-webpki",
2633
+ "subtle",
2634
+ "zeroize",
2635
+ ]
2636
+
2637
+ [[package]]
2638
+ name = "rustls-pki-types"
2639
+ version = "1.15.0"
2640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2641
+ checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
2642
+ dependencies = [
2643
+ "web-time",
2644
+ "zeroize",
2645
+ ]
2646
+
2647
+ [[package]]
2648
+ name = "rustls-webpki"
2649
+ version = "0.103.13"
2650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2651
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
2652
+ dependencies = [
2653
+ "ring",
2654
+ "rustls-pki-types",
2655
+ "untrusted",
2656
+ ]
2657
+
2658
+ [[package]]
2659
+ name = "rustversion"
2660
+ version = "1.0.22"
2661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2662
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2663
+
2664
+ [[package]]
2665
+ name = "ryu"
2666
+ version = "1.0.23"
2667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2668
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2669
+
2670
+ [[package]]
2671
+ name = "salsa20"
2672
+ version = "0.10.2"
2673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2674
+ checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
2675
+ dependencies = [
2676
+ "cipher",
2677
+ ]
2678
+
2679
+ [[package]]
2680
+ name = "scopeguard"
2681
+ version = "1.2.0"
2682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2683
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2684
+
2685
+ [[package]]
2686
+ name = "semver"
2687
+ version = "1.0.28"
2688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2689
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2690
+
2691
+ [[package]]
2692
+ name = "serde"
2693
+ version = "1.0.228"
2694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2695
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2696
+ dependencies = [
2697
+ "serde_core",
2698
+ "serde_derive",
2699
+ ]
2700
+
2701
+ [[package]]
2702
+ name = "serde_core"
2703
+ version = "1.0.228"
2704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2705
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2706
+ dependencies = [
2707
+ "serde_derive",
2708
+ ]
2709
+
2710
+ [[package]]
2711
+ name = "serde_derive"
2712
+ version = "1.0.228"
2713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2714
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2715
+ dependencies = [
2716
+ "proc-macro2",
2717
+ "quote",
2718
+ "syn",
2719
+ ]
2720
+
2721
+ [[package]]
2722
+ name = "serde_html_form"
2723
+ version = "0.4.1"
2724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2725
+ checksum = "8f0346d7a342ab90f405cfc08f25d15075f944f42fcabbc5eac923829fa6d228"
2726
+ dependencies = [
2727
+ "form_urlencoded",
2728
+ "indexmap",
2729
+ "itoa",
2730
+ "serde_core",
2731
+ "zmij",
2732
+ ]
2733
+
2734
+ [[package]]
2735
+ name = "serde_json"
2736
+ version = "1.0.150"
2737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2738
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
2739
+ dependencies = [
2740
+ "itoa",
2741
+ "memchr",
2742
+ "serde",
2743
+ "serde_core",
2744
+ "zmij",
2745
+ ]
2746
+
2747
+ [[package]]
2748
+ name = "serde_repr"
2749
+ version = "0.1.20"
2750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2751
+ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
2752
+ dependencies = [
2753
+ "proc-macro2",
2754
+ "quote",
2755
+ "syn",
2756
+ ]
2757
+
2758
+ [[package]]
2759
+ name = "serde_urlencoded"
2760
+ version = "0.7.1"
2761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2762
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2763
+ dependencies = [
2764
+ "form_urlencoded",
2765
+ "itoa",
2766
+ "ryu",
2767
+ "serde",
2768
+ ]
2769
+
2770
+ [[package]]
2771
+ name = "sha1"
2772
+ version = "0.10.6"
2773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2774
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2775
+ dependencies = [
2776
+ "cfg-if",
2777
+ "cpufeatures",
2778
+ "digest",
2779
+ ]
2780
+
2781
+ [[package]]
2782
+ name = "sha2"
2783
+ version = "0.10.9"
2784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2785
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2786
+ dependencies = [
2787
+ "cfg-if",
2788
+ "cpufeatures",
2789
+ "digest",
2790
+ ]
2791
+
2792
+ [[package]]
2793
+ name = "sharded-slab"
2794
+ version = "0.1.7"
2795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2796
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2797
+ dependencies = [
2798
+ "lazy_static",
2799
+ ]
2800
+
2801
+ [[package]]
2802
+ name = "shlex"
2803
+ version = "1.3.0"
2804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2805
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2806
+
2807
+ [[package]]
2808
+ name = "shlex"
2809
+ version = "2.0.1"
2810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2811
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
2812
+
2813
+ [[package]]
2814
+ name = "signal-hook-registry"
2815
+ version = "1.4.8"
2816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2817
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2818
+ dependencies = [
2819
+ "errno",
2820
+ "libc",
2821
+ ]
2822
+
2823
+ [[package]]
2824
+ name = "signature"
2825
+ version = "2.2.0"
2826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2827
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
2828
+ dependencies = [
2829
+ "digest",
2830
+ "rand_core 0.6.4",
2831
+ ]
2832
+
2833
+ [[package]]
2834
+ name = "simd-adler32"
2835
+ version = "0.3.9"
2836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2837
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
2838
+
2839
+ [[package]]
2840
+ name = "simd_helpers"
2841
+ version = "0.1.0"
2842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2843
+ checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
2844
+ dependencies = [
2845
+ "quote",
2846
+ ]
2847
+
2848
+ [[package]]
2849
+ name = "slab"
2850
+ version = "0.4.12"
2851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2852
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2853
+
2854
+ [[package]]
2855
+ name = "smallvec"
2856
+ version = "1.15.2"
2857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2858
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
2859
+
2860
+ [[package]]
2861
+ name = "socket2"
2862
+ version = "0.6.4"
2863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2864
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
2865
+ dependencies = [
2866
+ "libc",
2867
+ "windows-sys 0.61.2",
2868
+ ]
2869
+
2870
+ [[package]]
2871
+ name = "spin"
2872
+ version = "0.9.8"
2873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2874
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2875
+
2876
+ [[package]]
2877
+ name = "spki"
2878
+ version = "0.7.3"
2879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2880
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
2881
+ dependencies = [
2882
+ "base64ct",
2883
+ "der",
2884
+ ]
2885
+
2886
+ [[package]]
2887
+ name = "stable_deref_trait"
2888
+ version = "1.2.1"
2889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2890
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2891
+
2892
+ [[package]]
2893
+ name = "strsim"
2894
+ version = "0.11.1"
2895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2896
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2897
+
2898
+ [[package]]
2899
+ name = "subtle"
2900
+ version = "2.6.1"
2901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2902
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2903
+
2904
+ [[package]]
2905
+ name = "syn"
2906
+ version = "2.0.118"
2907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2908
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
2909
+ dependencies = [
2910
+ "proc-macro2",
2911
+ "quote",
2912
+ "unicode-ident",
2913
+ ]
2914
+
2915
+ [[package]]
2916
+ name = "sync_wrapper"
2917
+ version = "1.0.2"
2918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2919
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2920
+ dependencies = [
2921
+ "futures-core",
2922
+ ]
2923
+
2924
+ [[package]]
2925
+ name = "synstructure"
2926
+ version = "0.13.2"
2927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2928
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2929
+ dependencies = [
2930
+ "proc-macro2",
2931
+ "quote",
2932
+ "syn",
2933
+ ]
2934
+
2935
+ [[package]]
2936
+ name = "target-lexicon"
2937
+ version = "0.12.16"
2938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2939
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
2940
+
2941
+ [[package]]
2942
+ name = "thiserror"
2943
+ version = "2.0.18"
2944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2945
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2946
+ dependencies = [
2947
+ "thiserror-impl",
2948
+ ]
2949
+
2950
+ [[package]]
2951
+ name = "thiserror-impl"
2952
+ version = "2.0.18"
2953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2954
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2955
+ dependencies = [
2956
+ "proc-macro2",
2957
+ "quote",
2958
+ "syn",
2959
+ ]
2960
+
2961
+ [[package]]
2962
+ name = "thread_local"
2963
+ version = "1.1.9"
2964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2965
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2966
+ dependencies = [
2967
+ "cfg-if",
2968
+ ]
2969
+
2970
+ [[package]]
2971
+ name = "tiff"
2972
+ version = "0.11.3"
2973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2974
+ checksum = "b63feaf3343d35b6ca4d50483f94843803b0f51634937cc2ec519fc32232bc52"
2975
+ dependencies = [
2976
+ "fax",
2977
+ "flate2",
2978
+ "half",
2979
+ "quick-error",
2980
+ "weezl",
2981
+ "zune-jpeg",
2982
+ ]
2983
+
2984
+ [[package]]
2985
+ name = "time"
2986
+ version = "0.3.53"
2987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2988
+ checksum = "18dfaaeddcb932337b5e7866ee7d0ce9b76d2fd092997146f187ec09b4558a50"
2989
+ dependencies = [
2990
+ "deranged",
2991
+ "num-conv",
2992
+ "powerfmt",
2993
+ "serde_core",
2994
+ "time-core",
2995
+ "time-macros",
2996
+ ]
2997
+
2998
+ [[package]]
2999
+ name = "time-core"
3000
+ version = "0.1.9"
3001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3002
+ checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
3003
+
3004
+ [[package]]
3005
+ name = "time-macros"
3006
+ version = "0.2.31"
3007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3008
+ checksum = "c431b87111666e491a90baa837f914fb45cd5dc3c268591b0220ff5057f2085f"
3009
+ dependencies = [
3010
+ "num-conv",
3011
+ "time-core",
3012
+ ]
3013
+
3014
+ [[package]]
3015
+ name = "tinystr"
3016
+ version = "0.8.3"
3017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3018
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
3019
+ dependencies = [
3020
+ "displaydoc",
3021
+ "zerovec",
3022
+ ]
3023
+
3024
+ [[package]]
3025
+ name = "tinyvec"
3026
+ version = "1.11.0"
3027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3028
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
3029
+ dependencies = [
3030
+ "tinyvec_macros",
3031
+ ]
3032
+
3033
+ [[package]]
3034
+ name = "tinyvec_macros"
3035
+ version = "0.1.1"
3036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3037
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3038
+
3039
+ [[package]]
3040
+ name = "tokio"
3041
+ version = "1.52.3"
3042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3043
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
3044
+ dependencies = [
3045
+ "bytes",
3046
+ "libc",
3047
+ "mio",
3048
+ "parking_lot",
3049
+ "pin-project-lite",
3050
+ "signal-hook-registry",
3051
+ "socket2",
3052
+ "tokio-macros",
3053
+ "windows-sys 0.61.2",
3054
+ ]
3055
+
3056
+ [[package]]
3057
+ name = "tokio-btls"
3058
+ version = "0.5.6"
3059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3060
+ checksum = "2e1fd638ec35427faf3b8f412e0fdd6fae76591d79dba40f38fa667d22bc44dd"
3061
+ dependencies = [
3062
+ "btls",
3063
+ "tokio",
3064
+ ]
3065
+
3066
+ [[package]]
3067
+ name = "tokio-macros"
3068
+ version = "2.7.0"
3069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3070
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
3071
+ dependencies = [
3072
+ "proc-macro2",
3073
+ "quote",
3074
+ "syn",
3075
+ ]
3076
+
3077
+ [[package]]
3078
+ name = "tokio-rustls"
3079
+ version = "0.26.4"
3080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3081
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3082
+ dependencies = [
3083
+ "rustls",
3084
+ "tokio",
3085
+ ]
3086
+
3087
+ [[package]]
3088
+ name = "tokio-util"
3089
+ version = "0.7.18"
3090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3091
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
3092
+ dependencies = [
3093
+ "bytes",
3094
+ "futures-core",
3095
+ "futures-sink",
3096
+ "pin-project-lite",
3097
+ "tokio",
3098
+ ]
3099
+
3100
+ [[package]]
3101
+ name = "totp-rs"
3102
+ version = "5.7.2"
3103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3104
+ checksum = "50e69a15e21b2ff22c415446983978bded3244195f17d59cb113551c1e806f91"
3105
+ dependencies = [
3106
+ "base32",
3107
+ "constant_time_eq",
3108
+ "hmac",
3109
+ "rand 0.9.4",
3110
+ "sha1",
3111
+ "sha2",
3112
+ ]
3113
+
3114
+ [[package]]
3115
+ name = "tower"
3116
+ version = "0.5.3"
3117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3118
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3119
+ dependencies = [
3120
+ "futures-core",
3121
+ "futures-util",
3122
+ "pin-project-lite",
3123
+ "sync_wrapper",
3124
+ "tokio",
3125
+ "tower-layer",
3126
+ "tower-service",
3127
+ ]
3128
+
3129
+ [[package]]
3130
+ name = "tower-http"
3131
+ version = "0.6.11"
3132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3133
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
3134
+ dependencies = [
3135
+ "async-compression",
3136
+ "bitflags",
3137
+ "bytes",
3138
+ "futures-core",
3139
+ "futures-util",
3140
+ "http",
3141
+ "http-body",
3142
+ "http-body-util",
3143
+ "pin-project-lite",
3144
+ "tokio",
3145
+ "tokio-util",
3146
+ "tower",
3147
+ "tower-layer",
3148
+ "tower-service",
3149
+ "url",
3150
+ ]
3151
+
3152
+ [[package]]
3153
+ name = "tower-layer"
3154
+ version = "0.3.3"
3155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3156
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3157
+
3158
+ [[package]]
3159
+ name = "tower-service"
3160
+ version = "0.3.3"
3161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3162
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3163
+
3164
+ [[package]]
3165
+ name = "tracing"
3166
+ version = "0.1.44"
3167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3168
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3169
+ dependencies = [
3170
+ "pin-project-lite",
3171
+ "tracing-attributes",
3172
+ "tracing-core",
3173
+ ]
3174
+
3175
+ [[package]]
3176
+ name = "tracing-attributes"
3177
+ version = "0.1.31"
3178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3179
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
3180
+ dependencies = [
3181
+ "proc-macro2",
3182
+ "quote",
3183
+ "syn",
3184
+ ]
3185
+
3186
+ [[package]]
3187
+ name = "tracing-core"
3188
+ version = "0.1.36"
3189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3190
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3191
+ dependencies = [
3192
+ "once_cell",
3193
+ "valuable",
3194
+ ]
3195
+
3196
+ [[package]]
3197
+ name = "tracing-log"
3198
+ version = "0.2.0"
3199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3200
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3201
+ dependencies = [
3202
+ "log",
3203
+ "once_cell",
3204
+ "tracing-core",
3205
+ ]
3206
+
3207
+ [[package]]
3208
+ name = "tracing-subscriber"
3209
+ version = "0.3.23"
3210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3211
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
3212
+ dependencies = [
3213
+ "matchers",
3214
+ "nu-ansi-term",
3215
+ "once_cell",
3216
+ "regex-automata",
3217
+ "sharded-slab",
3218
+ "smallvec",
3219
+ "thread_local",
3220
+ "tracing",
3221
+ "tracing-core",
3222
+ "tracing-log",
3223
+ ]
3224
+
3225
+ [[package]]
3226
+ name = "try-lock"
3227
+ version = "0.2.5"
3228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3229
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3230
+
3231
+ [[package]]
3232
+ name = "typed-builder"
3233
+ version = "0.23.2"
3234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3235
+ checksum = "31aa81521b70f94402501d848ccc0ecaa8f93c8eb6999eb9747e72287757ffda"
3236
+ dependencies = [
3237
+ "typed-builder-macro",
3238
+ ]
3239
+
3240
+ [[package]]
3241
+ name = "typed-builder-macro"
3242
+ version = "0.23.2"
3243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3244
+ checksum = "076a02dc54dd46795c2e9c8282ed40bcfb1e22747e955de9389a1de28190fb26"
3245
+ dependencies = [
3246
+ "proc-macro2",
3247
+ "quote",
3248
+ "syn",
3249
+ ]
3250
+
3251
+ [[package]]
3252
+ name = "typenum"
3253
+ version = "1.20.1"
3254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3255
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
3256
+
3257
+ [[package]]
3258
+ name = "unicode-ident"
3259
+ version = "1.0.24"
3260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3261
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
3262
+
3263
+ [[package]]
3264
+ name = "unindent"
3265
+ version = "0.2.4"
3266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3267
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3268
+
3269
+ [[package]]
3270
+ name = "universal-hash"
3271
+ version = "0.5.1"
3272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3273
+ checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
3274
+ dependencies = [
3275
+ "crypto-common",
3276
+ "subtle",
3277
+ ]
3278
+
3279
+ [[package]]
3280
+ name = "untrusted"
3281
+ version = "0.9.0"
3282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3283
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3284
+
3285
+ [[package]]
3286
+ name = "url"
3287
+ version = "2.5.8"
3288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3289
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3290
+ dependencies = [
3291
+ "form_urlencoded",
3292
+ "idna",
3293
+ "percent-encoding",
3294
+ "serde",
3295
+ ]
3296
+
3297
+ [[package]]
3298
+ name = "urlencoding"
3299
+ version = "2.1.3"
3300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3301
+ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
3302
+
3303
+ [[package]]
3304
+ name = "utf8_iter"
3305
+ version = "1.0.4"
3306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3307
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3308
+
3309
+ [[package]]
3310
+ name = "utf8parse"
3311
+ version = "0.2.2"
3312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3313
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3314
+
3315
+ [[package]]
3316
+ name = "uuid"
3317
+ version = "1.23.4"
3318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3319
+ checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53"
3320
+ dependencies = [
3321
+ "getrandom 0.4.3",
3322
+ "js-sys",
3323
+ "wasm-bindgen",
3324
+ ]
3325
+
3326
+ [[package]]
3327
+ name = "v_frame"
3328
+ version = "0.3.9"
3329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3330
+ checksum = "666b7727c8875d6ab5db9533418d7c764233ac9c0cff1d469aec8fa127597be2"
3331
+ dependencies = [
3332
+ "aligned-vec",
3333
+ "num-traits",
3334
+ "wasm-bindgen",
3335
+ ]
3336
+
3337
+ [[package]]
3338
+ name = "valuable"
3339
+ version = "0.1.1"
3340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3341
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3342
+
3343
+ [[package]]
3344
+ name = "version_check"
3345
+ version = "0.9.5"
3346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3347
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3348
+
3349
+ [[package]]
3350
+ name = "want"
3351
+ version = "0.3.1"
3352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3353
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3354
+ dependencies = [
3355
+ "try-lock",
3356
+ ]
3357
+
3358
+ [[package]]
3359
+ name = "wasi"
3360
+ version = "0.11.1+wasi-snapshot-preview1"
3361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3362
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3363
+
3364
+ [[package]]
3365
+ name = "wasip2"
3366
+ version = "1.0.4+wasi-0.2.12"
3367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3368
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
3369
+ dependencies = [
3370
+ "wit-bindgen",
3371
+ ]
3372
+
3373
+ [[package]]
3374
+ name = "wasm-bindgen"
3375
+ version = "0.2.126"
3376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3377
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
3378
+ dependencies = [
3379
+ "cfg-if",
3380
+ "once_cell",
3381
+ "rustversion",
3382
+ "wasm-bindgen-macro",
3383
+ "wasm-bindgen-shared",
3384
+ ]
3385
+
3386
+ [[package]]
3387
+ name = "wasm-bindgen-futures"
3388
+ version = "0.4.76"
3389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3390
+ checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
3391
+ dependencies = [
3392
+ "js-sys",
3393
+ "wasm-bindgen",
3394
+ ]
3395
+
3396
+ [[package]]
3397
+ name = "wasm-bindgen-macro"
3398
+ version = "0.2.126"
3399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3400
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
3401
+ dependencies = [
3402
+ "quote",
3403
+ "wasm-bindgen-macro-support",
3404
+ ]
3405
+
3406
+ [[package]]
3407
+ name = "wasm-bindgen-macro-support"
3408
+ version = "0.2.126"
3409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3410
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
3411
+ dependencies = [
3412
+ "bumpalo",
3413
+ "proc-macro2",
3414
+ "quote",
3415
+ "syn",
3416
+ "wasm-bindgen-shared",
3417
+ ]
3418
+
3419
+ [[package]]
3420
+ name = "wasm-bindgen-shared"
3421
+ version = "0.2.126"
3422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3423
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
3424
+ dependencies = [
3425
+ "unicode-ident",
3426
+ ]
3427
+
3428
+ [[package]]
3429
+ name = "web-sys"
3430
+ version = "0.3.103"
3431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3432
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
3433
+ dependencies = [
3434
+ "js-sys",
3435
+ "wasm-bindgen",
3436
+ ]
3437
+
3438
+ [[package]]
3439
+ name = "web-time"
3440
+ version = "1.1.0"
3441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3442
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3443
+ dependencies = [
3444
+ "js-sys",
3445
+ "wasm-bindgen",
3446
+ ]
3447
+
3448
+ [[package]]
3449
+ name = "webpki-root-certs"
3450
+ version = "1.0.8"
3451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3452
+ checksum = "0d46a5a140e6f7afeccd8eae97eff335163939eac8b929834875168b29b3d267"
3453
+ dependencies = [
3454
+ "rustls-pki-types",
3455
+ ]
3456
+
3457
+ [[package]]
3458
+ name = "webpki-roots"
3459
+ version = "1.0.8"
3460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3461
+ checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf"
3462
+ dependencies = [
3463
+ "rustls-pki-types",
3464
+ ]
3465
+
3466
+ [[package]]
3467
+ name = "weezl"
3468
+ version = "0.1.12"
3469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3470
+ checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
3471
+
3472
+ [[package]]
3473
+ name = "winapi"
3474
+ version = "0.3.9"
3475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3476
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3477
+ dependencies = [
3478
+ "winapi-i686-pc-windows-gnu",
3479
+ "winapi-x86_64-pc-windows-gnu",
3480
+ ]
3481
+
3482
+ [[package]]
3483
+ name = "winapi-i686-pc-windows-gnu"
3484
+ version = "0.4.0"
3485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3486
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3487
+
3488
+ [[package]]
3489
+ name = "winapi-x86_64-pc-windows-gnu"
3490
+ version = "0.4.0"
3491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3492
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3493
+
3494
+ [[package]]
3495
+ name = "windows-core"
3496
+ version = "0.62.2"
3497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3498
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3499
+ dependencies = [
3500
+ "windows-implement",
3501
+ "windows-interface",
3502
+ "windows-link",
3503
+ "windows-result",
3504
+ "windows-strings",
3505
+ ]
3506
+
3507
+ [[package]]
3508
+ name = "windows-implement"
3509
+ version = "0.60.2"
3510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3511
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3512
+ dependencies = [
3513
+ "proc-macro2",
3514
+ "quote",
3515
+ "syn",
3516
+ ]
3517
+
3518
+ [[package]]
3519
+ name = "windows-interface"
3520
+ version = "0.59.3"
3521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3522
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3523
+ dependencies = [
3524
+ "proc-macro2",
3525
+ "quote",
3526
+ "syn",
3527
+ ]
3528
+
3529
+ [[package]]
3530
+ name = "windows-link"
3531
+ version = "0.2.1"
3532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3533
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3534
+
3535
+ [[package]]
3536
+ name = "windows-result"
3537
+ version = "0.4.1"
3538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3539
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3540
+ dependencies = [
3541
+ "windows-link",
3542
+ ]
3543
+
3544
+ [[package]]
3545
+ name = "windows-strings"
3546
+ version = "0.5.1"
3547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3548
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3549
+ dependencies = [
3550
+ "windows-link",
3551
+ ]
3552
+
3553
+ [[package]]
3554
+ name = "windows-sys"
3555
+ version = "0.52.0"
3556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3557
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3558
+ dependencies = [
3559
+ "windows-targets 0.52.6",
3560
+ ]
3561
+
3562
+ [[package]]
3563
+ name = "windows-sys"
3564
+ version = "0.60.2"
3565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3566
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3567
+ dependencies = [
3568
+ "windows-targets 0.53.5",
3569
+ ]
3570
+
3571
+ [[package]]
3572
+ name = "windows-sys"
3573
+ version = "0.61.2"
3574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3575
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3576
+ dependencies = [
3577
+ "windows-link",
3578
+ ]
3579
+
3580
+ [[package]]
3581
+ name = "windows-targets"
3582
+ version = "0.52.6"
3583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3584
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3585
+ dependencies = [
3586
+ "windows_aarch64_gnullvm 0.52.6",
3587
+ "windows_aarch64_msvc 0.52.6",
3588
+ "windows_i686_gnu 0.52.6",
3589
+ "windows_i686_gnullvm 0.52.6",
3590
+ "windows_i686_msvc 0.52.6",
3591
+ "windows_x86_64_gnu 0.52.6",
3592
+ "windows_x86_64_gnullvm 0.52.6",
3593
+ "windows_x86_64_msvc 0.52.6",
3594
+ ]
3595
+
3596
+ [[package]]
3597
+ name = "windows-targets"
3598
+ version = "0.53.5"
3599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3600
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3601
+ dependencies = [
3602
+ "windows-link",
3603
+ "windows_aarch64_gnullvm 0.53.1",
3604
+ "windows_aarch64_msvc 0.53.1",
3605
+ "windows_i686_gnu 0.53.1",
3606
+ "windows_i686_gnullvm 0.53.1",
3607
+ "windows_i686_msvc 0.53.1",
3608
+ "windows_x86_64_gnu 0.53.1",
3609
+ "windows_x86_64_gnullvm 0.53.1",
3610
+ "windows_x86_64_msvc 0.53.1",
3611
+ ]
3612
+
3613
+ [[package]]
3614
+ name = "windows_aarch64_gnullvm"
3615
+ version = "0.52.6"
3616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3617
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3618
+
3619
+ [[package]]
3620
+ name = "windows_aarch64_gnullvm"
3621
+ version = "0.53.1"
3622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3623
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3624
+
3625
+ [[package]]
3626
+ name = "windows_aarch64_msvc"
3627
+ version = "0.52.6"
3628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3629
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3630
+
3631
+ [[package]]
3632
+ name = "windows_aarch64_msvc"
3633
+ version = "0.53.1"
3634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3635
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3636
+
3637
+ [[package]]
3638
+ name = "windows_i686_gnu"
3639
+ version = "0.52.6"
3640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3641
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3642
+
3643
+ [[package]]
3644
+ name = "windows_i686_gnu"
3645
+ version = "0.53.1"
3646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3647
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3648
+
3649
+ [[package]]
3650
+ name = "windows_i686_gnullvm"
3651
+ version = "0.52.6"
3652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3653
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3654
+
3655
+ [[package]]
3656
+ name = "windows_i686_gnullvm"
3657
+ version = "0.53.1"
3658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3659
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3660
+
3661
+ [[package]]
3662
+ name = "windows_i686_msvc"
3663
+ version = "0.52.6"
3664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3665
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3666
+
3667
+ [[package]]
3668
+ name = "windows_i686_msvc"
3669
+ version = "0.53.1"
3670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3671
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3672
+
3673
+ [[package]]
3674
+ name = "windows_x86_64_gnu"
3675
+ version = "0.52.6"
3676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3677
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3678
+
3679
+ [[package]]
3680
+ name = "windows_x86_64_gnu"
3681
+ version = "0.53.1"
3682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3683
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3684
+
3685
+ [[package]]
3686
+ name = "windows_x86_64_gnullvm"
3687
+ version = "0.52.6"
3688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3689
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3690
+
3691
+ [[package]]
3692
+ name = "windows_x86_64_gnullvm"
3693
+ version = "0.53.1"
3694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3695
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3696
+
3697
+ [[package]]
3698
+ name = "windows_x86_64_msvc"
3699
+ version = "0.52.6"
3700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3701
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3702
+
3703
+ [[package]]
3704
+ name = "windows_x86_64_msvc"
3705
+ version = "0.53.1"
3706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3707
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3708
+
3709
+ [[package]]
3710
+ name = "wiremock"
3711
+ version = "0.6.5"
3712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3713
+ checksum = "08db1edfb05d9b3c1542e521aea074442088292f00b5f28e435c714a98f85031"
3714
+ dependencies = [
3715
+ "assert-json-diff",
3716
+ "base64",
3717
+ "deadpool",
3718
+ "futures",
3719
+ "http",
3720
+ "http-body-util",
3721
+ "hyper",
3722
+ "hyper-util",
3723
+ "log",
3724
+ "once_cell",
3725
+ "regex",
3726
+ "serde",
3727
+ "serde_json",
3728
+ "tokio",
3729
+ "url",
3730
+ ]
3731
+
3732
+ [[package]]
3733
+ name = "wit-bindgen"
3734
+ version = "0.57.1"
3735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3736
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
3737
+
3738
+ [[package]]
3739
+ name = "wreq"
3740
+ version = "6.0.0-rc.29"
3741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3742
+ checksum = "3f0eba5f5814a94e5f1a99156f187133464e525b66bdbc69a9627d46530af2e1"
3743
+ dependencies = [
3744
+ "btls",
3745
+ "btls-sys",
3746
+ "bytes",
3747
+ "cookie",
3748
+ "futures-util",
3749
+ "http",
3750
+ "http-body",
3751
+ "http-body-util",
3752
+ "http2",
3753
+ "httparse",
3754
+ "ipnet",
3755
+ "libc",
3756
+ "lru",
3757
+ "percent-encoding",
3758
+ "pin-project-lite",
3759
+ "serde",
3760
+ "serde_html_form",
3761
+ "serde_json",
3762
+ "socket2",
3763
+ "tokio",
3764
+ "tokio-btls",
3765
+ "tower",
3766
+ "tower-http",
3767
+ "url",
3768
+ "webpki-root-certs",
3769
+ "wreq-proto",
3770
+ "wreq-rt",
3771
+ ]
3772
+
3773
+ [[package]]
3774
+ name = "wreq-proto"
3775
+ version = "0.2.5"
3776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3777
+ checksum = "a43942f024bb303f1042c9aa3c87fa1d9149f507c65db6e5220a11ccdb207387"
3778
+ dependencies = [
3779
+ "bytes",
3780
+ "futures-channel",
3781
+ "futures-util",
3782
+ "http",
3783
+ "http-body",
3784
+ "http2",
3785
+ "httparse",
3786
+ "pin-project-lite",
3787
+ "smallvec",
3788
+ "tokio",
3789
+ "tokio-util",
3790
+ "want",
3791
+ ]
3792
+
3793
+ [[package]]
3794
+ name = "wreq-rt"
3795
+ version = "0.2.2-rc.4"
3796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3797
+ checksum = "99e9bce67a3fa3dd3f1503f066d86661c9caf399a763d3bd184da7afaf886c8b"
3798
+ dependencies = [
3799
+ "pin-project-lite",
3800
+ "tokio",
3801
+ "wreq-proto",
3802
+ ]
3803
+
3804
+ [[package]]
3805
+ name = "wreq-util"
3806
+ version = "3.0.0-rc.13"
3807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3808
+ checksum = "9c1565487def020541fed7fe1d2564770e78b9abab56fea1412623f1071eadfd"
3809
+ dependencies = [
3810
+ "brotli",
3811
+ "flate2",
3812
+ "typed-builder",
3813
+ "wreq",
3814
+ "zstd",
3815
+ ]
3816
+
3817
+ [[package]]
3818
+ name = "writeable"
3819
+ version = "0.6.3"
3820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3821
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
3822
+
3823
+ [[package]]
3824
+ name = "y4m"
3825
+ version = "0.8.0"
3826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3827
+ checksum = "7a5a4b21e1a62b67a2970e6831bc091d7b87e119e7f9791aef9702e3bef04448"
3828
+
3829
+ [[package]]
3830
+ name = "yoke"
3831
+ version = "0.8.3"
3832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3833
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
3834
+ dependencies = [
3835
+ "stable_deref_trait",
3836
+ "yoke-derive",
3837
+ "zerofrom",
3838
+ ]
3839
+
3840
+ [[package]]
3841
+ name = "yoke-derive"
3842
+ version = "0.8.2"
3843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3844
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
3845
+ dependencies = [
3846
+ "proc-macro2",
3847
+ "quote",
3848
+ "syn",
3849
+ "synstructure",
3850
+ ]
3851
+
3852
+ [[package]]
3853
+ name = "zerocopy"
3854
+ version = "0.8.52"
3855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3856
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
3857
+ dependencies = [
3858
+ "zerocopy-derive",
3859
+ ]
3860
+
3861
+ [[package]]
3862
+ name = "zerocopy-derive"
3863
+ version = "0.8.52"
3864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3865
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
3866
+ dependencies = [
3867
+ "proc-macro2",
3868
+ "quote",
3869
+ "syn",
3870
+ ]
3871
+
3872
+ [[package]]
3873
+ name = "zerofrom"
3874
+ version = "0.1.8"
3875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3876
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
3877
+ dependencies = [
3878
+ "zerofrom-derive",
3879
+ ]
3880
+
3881
+ [[package]]
3882
+ name = "zerofrom-derive"
3883
+ version = "0.1.7"
3884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3885
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
3886
+ dependencies = [
3887
+ "proc-macro2",
3888
+ "quote",
3889
+ "syn",
3890
+ "synstructure",
3891
+ ]
3892
+
3893
+ [[package]]
3894
+ name = "zeroize"
3895
+ version = "1.9.0"
3896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3897
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
3898
+
3899
+ [[package]]
3900
+ name = "zerotrie"
3901
+ version = "0.2.4"
3902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3903
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
3904
+ dependencies = [
3905
+ "displaydoc",
3906
+ "yoke",
3907
+ "zerofrom",
3908
+ ]
3909
+
3910
+ [[package]]
3911
+ name = "zerovec"
3912
+ version = "0.11.6"
3913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3914
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
3915
+ dependencies = [
3916
+ "yoke",
3917
+ "zerofrom",
3918
+ "zerovec-derive",
3919
+ ]
3920
+
3921
+ [[package]]
3922
+ name = "zerovec-derive"
3923
+ version = "0.11.3"
3924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3925
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3926
+ dependencies = [
3927
+ "proc-macro2",
3928
+ "quote",
3929
+ "syn",
3930
+ ]
3931
+
3932
+ [[package]]
3933
+ name = "zmij"
3934
+ version = "1.0.21"
3935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3936
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
3937
+
3938
+ [[package]]
3939
+ name = "zstd"
3940
+ version = "0.13.3"
3941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3942
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
3943
+ dependencies = [
3944
+ "zstd-safe",
3945
+ ]
3946
+
3947
+ [[package]]
3948
+ name = "zstd-safe"
3949
+ version = "7.2.4"
3950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3951
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
3952
+ dependencies = [
3953
+ "zstd-sys",
3954
+ ]
3955
+
3956
+ [[package]]
3957
+ name = "zstd-sys"
3958
+ version = "2.0.16+zstd.1.5.7"
3959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3960
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
3961
+ dependencies = [
3962
+ "cc",
3963
+ "pkg-config",
3964
+ ]
3965
+
3966
+ [[package]]
3967
+ name = "zune-core"
3968
+ version = "0.5.1"
3969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3970
+ checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
3971
+
3972
+ [[package]]
3973
+ name = "zune-inflate"
3974
+ version = "0.2.54"
3975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3976
+ checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
3977
+ dependencies = [
3978
+ "simd-adler32",
3979
+ ]
3980
+
3981
+ [[package]]
3982
+ name = "zune-jpeg"
3983
+ version = "0.5.15"
3984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3985
+ checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296"
3986
+ dependencies = [
3987
+ "zune-core",
3988
+ ]