@super-protocol/addons-tee 0.8.16 → 0.8.17-beta.2

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 (94) hide show
  1. package/README.md +1 -1
  2. package/bindings/amd-sev-snp-napi-rs/amd-sev-snp-napi-rs.linux-x64-gnu.node +0 -0
  3. package/bindings/amd-sev-snp-napi-rs/index.d.ts +24 -0
  4. package/bindings/amd-sev-snp-napi-rs/index.js +328 -0
  5. package/bindings/amd-sev-snp-napi-rs/package-lock.json +40 -0
  6. package/bindings/amd-sev-snp-napi-rs/package.json +31 -0
  7. package/bindings/sgx-native/build/Release/sgx_native.node +0 -0
  8. package/bindings/sp-sev/.github/auto_assign-issues.yml +5 -0
  9. package/bindings/sp-sev/.github/auto_assign.yml +21 -0
  10. package/bindings/sp-sev/.github/dependabot.yml +6 -0
  11. package/bindings/sp-sev/.github/workflows/dco.yml +10 -0
  12. package/bindings/sp-sev/.github/workflows/lint.yml +56 -0
  13. package/bindings/sp-sev/.github/workflows/test.yml +54 -0
  14. package/bindings/sp-sev/.rustfmt.toml +2 -0
  15. package/bindings/sp-sev/CODEOWNERS +1 -0
  16. package/bindings/sp-sev/Cargo.lock +2221 -0
  17. package/bindings/sp-sev/Cargo.toml +80 -0
  18. package/bindings/sp-sev/LICENSE +201 -0
  19. package/bindings/sp-sev/README.md +82 -0
  20. package/bindings/sp-sev/build.rs +17 -0
  21. package/bindings/sp-sev/docs/attestation/README.md +239 -0
  22. package/bindings/sp-sev/docs/attestation/certchain.dot +14 -0
  23. package/bindings/sp-sev/docs/attestation/certchain.dot.png +0 -0
  24. package/bindings/sp-sev/docs/attestation/prerequisites.md +6 -0
  25. package/bindings/sp-sev/docs/attestation/process.msc +60 -0
  26. package/bindings/sp-sev/docs/attestation/process.msc.png +0 -0
  27. package/bindings/sp-sev/docs/attestation/protections.md +53 -0
  28. package/bindings/sp-sev/package-version.py +11 -0
  29. package/bindings/sp-sev/tests/api.rs +191 -0
  30. package/bindings/sp-sev/tests/certs.rs +143 -0
  31. package/bindings/sp-sev/tests/certs_data/cert_chain_milan +74 -0
  32. package/bindings/sp-sev/tests/certs_data/cert_chain_turin +74 -0
  33. package/bindings/sp-sev/tests/certs_data/report_milan.hex +1 -0
  34. package/bindings/sp-sev/tests/certs_data/vcek_milan.der +0 -0
  35. package/bindings/sp-sev/tests/certs_data/vcek_turin.der +0 -0
  36. package/bindings/sp-sev/tests/guest.rs +56 -0
  37. package/bindings/sp-sev/tests/id-block.rs +168 -0
  38. package/bindings/sp-sev/tests/measurement/ovmf_AmdSev_suffix.bin +0 -0
  39. package/bindings/sp-sev/tests/measurement/ovmf_OvmfX64_suffix.bin +0 -0
  40. package/bindings/sp-sev/tests/measurement/test_auth_block.bin +0 -0
  41. package/bindings/sp-sev/tests/measurement/test_auth_key.pem +6 -0
  42. package/bindings/sp-sev/tests/measurement/test_auth_sig.bin +0 -0
  43. package/bindings/sp-sev/tests/measurement/test_id_key.pem +6 -0
  44. package/bindings/sp-sev/tests/measurement/test_id_sig.bin +0 -0
  45. package/bindings/sp-sev/tests/measurement.rs +510 -0
  46. package/bindings/sp-sev/tests/naples/ark.cert.bad +0 -0
  47. package/bindings/sp-sev/tests/naples/ark.cert.sig +0 -0
  48. package/bindings/sp-sev/tests/naples/ark.rs +38 -0
  49. package/bindings/sp-sev/tests/naples/ask.rs +29 -0
  50. package/bindings/sp-sev/tests/naples/cek.cert +0 -0
  51. package/bindings/sp-sev/tests/naples/cek.rs +30 -0
  52. package/bindings/sp-sev/tests/naples/mod.rs +20 -0
  53. package/bindings/sp-sev/tests/naples/oca.cert +0 -0
  54. package/bindings/sp-sev/tests/naples/oca.rs +45 -0
  55. package/bindings/sp-sev/tests/naples/pdh.cert +0 -0
  56. package/bindings/sp-sev/tests/naples/pdh.rs +28 -0
  57. package/bindings/sp-sev/tests/naples/pek.cert +0 -0
  58. package/bindings/sp-sev/tests/naples/pek.rs +32 -0
  59. package/bindings/sp-sev/tests/rome/ark.rs +33 -0
  60. package/bindings/sp-sev/tests/rome/ask.rs +29 -0
  61. package/bindings/sp-sev/tests/rome/cek.cert +0 -0
  62. package/bindings/sp-sev/tests/rome/cek.rs +29 -0
  63. package/bindings/sp-sev/tests/rome/mod.rs +16 -0
  64. package/bindings/sp-sev/tests/rome/oca.cert +0 -0
  65. package/bindings/sp-sev/tests/rome/oca.rs +45 -0
  66. package/bindings/sp-sev/tests/rome/pdh.cert +0 -0
  67. package/bindings/sp-sev/tests/rome/pdh.rs +28 -0
  68. package/bindings/sp-sev/tests/rome/pek.cert +0 -0
  69. package/bindings/sp-sev/tests/rome/pek.rs +32 -0
  70. package/bindings/sp-sev/tests/session.rs +39 -0
  71. package/bindings/sp-sev/tests/sev_launch.rs +120 -0
  72. package/bindings/sp-sev/tests/snp_launch.rs +108 -0
  73. package/bindings/utils/virtee/LICENSE +201 -0
  74. package/bindings/utils/virtee/libsev.so +0 -0
  75. package/bindings/utils/virtee/snpguest +0 -0
  76. package/dist/sgx-native-module/consts.d.ts +1 -1
  77. package/dist/sgx-native-module/consts.js +4 -4
  78. package/dist/sgx-native-module/dcap-quote-verify.service.js +1 -1
  79. package/dist/sgx-native-module/enclave.service.d.ts +5 -4
  80. package/dist/sgx-native-module/enclave.service.js +1 -1
  81. package/dist/sgx-native-module/errors.js +1 -1
  82. package/dist/sgx-native-module/index.d.ts +2 -0
  83. package/dist/sgx-native-module/index.js +3 -1
  84. package/dist/sgx-native-module/pki.service.d.ts +2 -2
  85. package/dist/sgx-native-module/pki.service.js +4 -4
  86. package/dist/sgx-native-module/sev-snp-mrenclave.d.ts +63 -0
  87. package/dist/sgx-native-module/sev-snp-mrenclave.js +290 -0
  88. package/dist/sgx-native-module/sev-snp.d.ts +134 -0
  89. package/dist/sgx-native-module/sev-snp.js +534 -0
  90. package/package.json +21 -14
  91. package/dist/sgx-native-module/sgx-tests.d.ts +0 -1
  92. package/dist/sgx-native-module/sgx-tests.js +0 -114
  93. package/dist/sgx-native-module/tdx-tests.d.ts +0 -1
  94. package/dist/sgx-native-module/tdx-tests.js +0 -64
@@ -0,0 +1,2221 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.24.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "adler2"
16
+ version = "2.0.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
19
+
20
+ [[package]]
21
+ name = "autocfg"
22
+ version = "1.4.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
25
+
26
+ [[package]]
27
+ name = "backtrace"
28
+ version = "0.3.74"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
31
+ dependencies = [
32
+ "addr2line",
33
+ "cfg-if",
34
+ "libc",
35
+ "miniz_oxide",
36
+ "object",
37
+ "rustc-demangle",
38
+ "windows-targets 0.52.6",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "base16ct"
43
+ version = "0.2.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
46
+
47
+ [[package]]
48
+ name = "base64"
49
+ version = "0.21.7"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
52
+
53
+ [[package]]
54
+ name = "base64"
55
+ version = "0.22.1"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
58
+
59
+ [[package]]
60
+ name = "base64ct"
61
+ version = "1.6.0"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
64
+
65
+ [[package]]
66
+ name = "bincode"
67
+ version = "1.3.3"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
70
+ dependencies = [
71
+ "serde",
72
+ ]
73
+
74
+ [[package]]
75
+ name = "bitfield"
76
+ version = "0.15.0"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "c821a6e124197eb56d907ccc2188eab1038fb919c914f47976e64dd8dbc855d1"
79
+
80
+ [[package]]
81
+ name = "bitflags"
82
+ version = "1.3.2"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
85
+
86
+ [[package]]
87
+ name = "bitflags"
88
+ version = "2.6.0"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
91
+
92
+ [[package]]
93
+ name = "block-buffer"
94
+ version = "0.10.4"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
97
+ dependencies = [
98
+ "generic-array",
99
+ ]
100
+
101
+ [[package]]
102
+ name = "bumpalo"
103
+ version = "3.16.0"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
106
+
107
+ [[package]]
108
+ name = "byteorder"
109
+ version = "1.5.0"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
112
+
113
+ [[package]]
114
+ name = "bytes"
115
+ version = "1.8.0"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da"
118
+
119
+ [[package]]
120
+ name = "cc"
121
+ version = "1.2.1"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "fd9de9f2205d5ef3fd67e685b0df337994ddd4495e2a28d185500d0e1edfea47"
124
+ dependencies = [
125
+ "shlex",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "cfg-if"
130
+ version = "1.0.0"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
133
+
134
+ [[package]]
135
+ name = "codicon"
136
+ version = "3.0.0"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "12170080f3533d6f09a19f81596f836854d0fa4867dc32c8172b8474b4e9de61"
139
+
140
+ [[package]]
141
+ name = "const-oid"
142
+ version = "0.9.6"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
145
+
146
+ [[package]]
147
+ name = "core-foundation"
148
+ version = "0.9.4"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
151
+ dependencies = [
152
+ "core-foundation-sys",
153
+ "libc",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "core-foundation-sys"
158
+ version = "0.8.7"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
161
+
162
+ [[package]]
163
+ name = "cpufeatures"
164
+ version = "0.2.15"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "0ca741a962e1b0bff6d724a1a0958b686406e853bb14061f218562e1896f95e6"
167
+ dependencies = [
168
+ "libc",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "crypto-bigint"
173
+ version = "0.5.5"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
176
+ dependencies = [
177
+ "generic-array",
178
+ "rand_core",
179
+ "subtle",
180
+ "zeroize",
181
+ ]
182
+
183
+ [[package]]
184
+ name = "crypto-common"
185
+ version = "0.1.6"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
188
+ dependencies = [
189
+ "generic-array",
190
+ "typenum",
191
+ ]
192
+
193
+ [[package]]
194
+ name = "der"
195
+ version = "0.7.9"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0"
198
+ dependencies = [
199
+ "const-oid",
200
+ "der_derive",
201
+ "flagset",
202
+ "pem-rfc7468",
203
+ "zeroize",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "der_derive"
208
+ version = "0.7.3"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18"
211
+ dependencies = [
212
+ "proc-macro2",
213
+ "quote",
214
+ "syn",
215
+ ]
216
+
217
+ [[package]]
218
+ name = "digest"
219
+ version = "0.10.7"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
222
+ dependencies = [
223
+ "block-buffer",
224
+ "const-oid",
225
+ "crypto-common",
226
+ "subtle",
227
+ ]
228
+
229
+ [[package]]
230
+ name = "dirs"
231
+ version = "5.0.1"
232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
233
+ checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
234
+ dependencies = [
235
+ "dirs-sys",
236
+ ]
237
+
238
+ [[package]]
239
+ name = "dirs-sys"
240
+ version = "0.4.1"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
243
+ dependencies = [
244
+ "libc",
245
+ "option-ext",
246
+ "redox_users",
247
+ "windows-sys 0.48.0",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "displaydoc"
252
+ version = "0.2.5"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
255
+ dependencies = [
256
+ "proc-macro2",
257
+ "quote",
258
+ "syn",
259
+ ]
260
+
261
+ [[package]]
262
+ name = "ecdsa"
263
+ version = "0.16.9"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
266
+ dependencies = [
267
+ "der",
268
+ "digest",
269
+ "elliptic-curve",
270
+ "rfc6979",
271
+ "signature",
272
+ "spki",
273
+ ]
274
+
275
+ [[package]]
276
+ name = "elliptic-curve"
277
+ version = "0.13.8"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
280
+ dependencies = [
281
+ "base16ct",
282
+ "crypto-bigint",
283
+ "digest",
284
+ "ff",
285
+ "generic-array",
286
+ "group",
287
+ "hkdf",
288
+ "pem-rfc7468",
289
+ "pkcs8",
290
+ "rand_core",
291
+ "sec1",
292
+ "subtle",
293
+ "zeroize",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "encoding_rs"
298
+ version = "0.8.35"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
301
+ dependencies = [
302
+ "cfg-if",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "equivalent"
307
+ version = "1.0.1"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
310
+
311
+ [[package]]
312
+ name = "errno"
313
+ version = "0.3.9"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
316
+ dependencies = [
317
+ "libc",
318
+ "windows-sys 0.52.0",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "fastrand"
323
+ version = "2.2.0"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "486f806e73c5707928240ddc295403b1b93c96a02038563881c4a2fd84b81ac4"
326
+
327
+ [[package]]
328
+ name = "ff"
329
+ version = "0.13.0"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449"
332
+ dependencies = [
333
+ "rand_core",
334
+ "subtle",
335
+ ]
336
+
337
+ [[package]]
338
+ name = "flagset"
339
+ version = "0.4.6"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "b3ea1ec5f8307826a5b71094dd91fc04d4ae75d5709b20ad351c7fb4815c86ec"
342
+
343
+ [[package]]
344
+ name = "fnv"
345
+ version = "1.0.7"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
348
+
349
+ [[package]]
350
+ name = "foreign-types"
351
+ version = "0.3.2"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
354
+ dependencies = [
355
+ "foreign-types-shared",
356
+ ]
357
+
358
+ [[package]]
359
+ name = "foreign-types-shared"
360
+ version = "0.1.1"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
363
+
364
+ [[package]]
365
+ name = "form_urlencoded"
366
+ version = "1.2.1"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
369
+ dependencies = [
370
+ "percent-encoding",
371
+ ]
372
+
373
+ [[package]]
374
+ name = "futures"
375
+ version = "0.3.31"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
378
+ dependencies = [
379
+ "futures-channel",
380
+ "futures-core",
381
+ "futures-executor",
382
+ "futures-io",
383
+ "futures-sink",
384
+ "futures-task",
385
+ "futures-util",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "futures-channel"
390
+ version = "0.3.31"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
393
+ dependencies = [
394
+ "futures-core",
395
+ "futures-sink",
396
+ ]
397
+
398
+ [[package]]
399
+ name = "futures-core"
400
+ version = "0.3.31"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
403
+
404
+ [[package]]
405
+ name = "futures-executor"
406
+ version = "0.3.31"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
409
+ dependencies = [
410
+ "futures-core",
411
+ "futures-task",
412
+ "futures-util",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "futures-io"
417
+ version = "0.3.31"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
420
+
421
+ [[package]]
422
+ name = "futures-sink"
423
+ version = "0.3.31"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
426
+
427
+ [[package]]
428
+ name = "futures-task"
429
+ version = "0.3.31"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
432
+
433
+ [[package]]
434
+ name = "futures-util"
435
+ version = "0.3.31"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
438
+ dependencies = [
439
+ "futures-channel",
440
+ "futures-core",
441
+ "futures-io",
442
+ "futures-sink",
443
+ "futures-task",
444
+ "memchr",
445
+ "pin-project-lite",
446
+ "pin-utils",
447
+ "slab",
448
+ ]
449
+
450
+ [[package]]
451
+ name = "generic-array"
452
+ version = "0.14.7"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
455
+ dependencies = [
456
+ "typenum",
457
+ "version_check",
458
+ "zeroize",
459
+ ]
460
+
461
+ [[package]]
462
+ name = "getrandom"
463
+ version = "0.2.15"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
466
+ dependencies = [
467
+ "cfg-if",
468
+ "libc",
469
+ "wasi",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "gimli"
474
+ version = "0.31.1"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
477
+
478
+ [[package]]
479
+ name = "group"
480
+ version = "0.13.0"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
483
+ dependencies = [
484
+ "ff",
485
+ "rand_core",
486
+ "subtle",
487
+ ]
488
+
489
+ [[package]]
490
+ name = "h2"
491
+ version = "0.3.26"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
494
+ dependencies = [
495
+ "bytes",
496
+ "fnv",
497
+ "futures-core",
498
+ "futures-sink",
499
+ "futures-util",
500
+ "http",
501
+ "indexmap",
502
+ "slab",
503
+ "tokio",
504
+ "tokio-util",
505
+ "tracing",
506
+ ]
507
+
508
+ [[package]]
509
+ name = "hashbrown"
510
+ version = "0.15.1"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "3a9bfc1af68b1726ea47d3d5109de126281def866b33970e10fbab11b5dafab3"
513
+
514
+ [[package]]
515
+ name = "hermit-abi"
516
+ version = "0.3.9"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
519
+
520
+ [[package]]
521
+ name = "hex"
522
+ version = "0.4.3"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
525
+
526
+ [[package]]
527
+ name = "hkdf"
528
+ version = "0.12.4"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
531
+ dependencies = [
532
+ "hmac",
533
+ ]
534
+
535
+ [[package]]
536
+ name = "hmac"
537
+ version = "0.12.1"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
540
+ dependencies = [
541
+ "digest",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "http"
546
+ version = "0.2.12"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
549
+ dependencies = [
550
+ "bytes",
551
+ "fnv",
552
+ "itoa",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "http-body"
557
+ version = "0.4.6"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
560
+ dependencies = [
561
+ "bytes",
562
+ "http",
563
+ "pin-project-lite",
564
+ ]
565
+
566
+ [[package]]
567
+ name = "httparse"
568
+ version = "1.9.5"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
571
+
572
+ [[package]]
573
+ name = "httpdate"
574
+ version = "1.0.3"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
577
+
578
+ [[package]]
579
+ name = "hyper"
580
+ version = "0.14.31"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "8c08302e8fa335b151b788c775ff56e7a03ae64ff85c548ee820fecb70356e85"
583
+ dependencies = [
584
+ "bytes",
585
+ "futures-channel",
586
+ "futures-core",
587
+ "futures-util",
588
+ "h2",
589
+ "http",
590
+ "http-body",
591
+ "httparse",
592
+ "httpdate",
593
+ "itoa",
594
+ "pin-project-lite",
595
+ "socket2",
596
+ "tokio",
597
+ "tower-service",
598
+ "tracing",
599
+ "want",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "hyper-tls"
604
+ version = "0.5.0"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
607
+ dependencies = [
608
+ "bytes",
609
+ "hyper",
610
+ "native-tls",
611
+ "tokio",
612
+ "tokio-native-tls",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "icu_collections"
617
+ version = "1.5.0"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
620
+ dependencies = [
621
+ "displaydoc",
622
+ "yoke",
623
+ "zerofrom",
624
+ "zerovec",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "icu_locid"
629
+ version = "1.5.0"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
632
+ dependencies = [
633
+ "displaydoc",
634
+ "litemap",
635
+ "tinystr",
636
+ "writeable",
637
+ "zerovec",
638
+ ]
639
+
640
+ [[package]]
641
+ name = "icu_locid_transform"
642
+ version = "1.5.0"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
645
+ dependencies = [
646
+ "displaydoc",
647
+ "icu_locid",
648
+ "icu_locid_transform_data",
649
+ "icu_provider",
650
+ "tinystr",
651
+ "zerovec",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "icu_locid_transform_data"
656
+ version = "1.5.0"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
659
+
660
+ [[package]]
661
+ name = "icu_normalizer"
662
+ version = "1.5.0"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
665
+ dependencies = [
666
+ "displaydoc",
667
+ "icu_collections",
668
+ "icu_normalizer_data",
669
+ "icu_properties",
670
+ "icu_provider",
671
+ "smallvec",
672
+ "utf16_iter",
673
+ "utf8_iter",
674
+ "write16",
675
+ "zerovec",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "icu_normalizer_data"
680
+ version = "1.5.0"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
683
+
684
+ [[package]]
685
+ name = "icu_properties"
686
+ version = "1.5.1"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
689
+ dependencies = [
690
+ "displaydoc",
691
+ "icu_collections",
692
+ "icu_locid_transform",
693
+ "icu_properties_data",
694
+ "icu_provider",
695
+ "tinystr",
696
+ "zerovec",
697
+ ]
698
+
699
+ [[package]]
700
+ name = "icu_properties_data"
701
+ version = "1.5.0"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
704
+
705
+ [[package]]
706
+ name = "icu_provider"
707
+ version = "1.5.0"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
710
+ dependencies = [
711
+ "displaydoc",
712
+ "icu_locid",
713
+ "icu_provider_macros",
714
+ "stable_deref_trait",
715
+ "tinystr",
716
+ "writeable",
717
+ "yoke",
718
+ "zerofrom",
719
+ "zerovec",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "icu_provider_macros"
724
+ version = "1.5.0"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
727
+ dependencies = [
728
+ "proc-macro2",
729
+ "quote",
730
+ "syn",
731
+ ]
732
+
733
+ [[package]]
734
+ name = "idna"
735
+ version = "1.0.3"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
738
+ dependencies = [
739
+ "idna_adapter",
740
+ "smallvec",
741
+ "utf8_iter",
742
+ ]
743
+
744
+ [[package]]
745
+ name = "idna_adapter"
746
+ version = "1.2.0"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
749
+ dependencies = [
750
+ "icu_normalizer",
751
+ "icu_properties",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "indexmap"
756
+ version = "2.6.0"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
759
+ dependencies = [
760
+ "equivalent",
761
+ "hashbrown",
762
+ ]
763
+
764
+ [[package]]
765
+ name = "iocuddle"
766
+ version = "0.1.1"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "d8972d5be69940353d5347a1344cb375d9b457d6809b428b05bb1ca2fb9ce007"
769
+
770
+ [[package]]
771
+ name = "ipnet"
772
+ version = "2.10.1"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708"
775
+
776
+ [[package]]
777
+ name = "itoa"
778
+ version = "1.0.13"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "540654e97a3f4470a492cd30ff187bc95d89557a903a2bbf112e2fae98104ef2"
781
+
782
+ [[package]]
783
+ name = "js-sys"
784
+ version = "0.3.72"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
787
+ dependencies = [
788
+ "wasm-bindgen",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "kvm-bindings"
793
+ version = "0.10.0"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "fa4933174d0cc4b77b958578cd45784071cc5ae212c2d78fbd755aaaa6dfa71a"
796
+ dependencies = [
797
+ "vmm-sys-util",
798
+ ]
799
+
800
+ [[package]]
801
+ name = "kvm-ioctls"
802
+ version = "0.19.0"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "337d1afa126368bbd6a5c328048f71a69a737e9afe7e436b392a8f8d770c9171"
805
+ dependencies = [
806
+ "bitflags 2.6.0",
807
+ "kvm-bindings",
808
+ "libc",
809
+ "vmm-sys-util",
810
+ ]
811
+
812
+ [[package]]
813
+ name = "lazy_static"
814
+ version = "1.5.0"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
817
+ dependencies = [
818
+ "spin",
819
+ ]
820
+
821
+ [[package]]
822
+ name = "libc"
823
+ version = "0.2.164"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "433bfe06b8c75da9b2e3fbea6e5329ff87748f0b144ef75306e674c3f6f7c13f"
826
+
827
+ [[package]]
828
+ name = "libm"
829
+ version = "0.2.11"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
832
+
833
+ [[package]]
834
+ name = "libredox"
835
+ version = "0.1.3"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
838
+ dependencies = [
839
+ "bitflags 2.6.0",
840
+ "libc",
841
+ ]
842
+
843
+ [[package]]
844
+ name = "linux-raw-sys"
845
+ version = "0.4.14"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
848
+
849
+ [[package]]
850
+ name = "litemap"
851
+ version = "0.7.3"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704"
854
+
855
+ [[package]]
856
+ name = "lock_api"
857
+ version = "0.4.12"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
860
+ dependencies = [
861
+ "autocfg",
862
+ "scopeguard",
863
+ ]
864
+
865
+ [[package]]
866
+ name = "log"
867
+ version = "0.4.22"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
870
+
871
+ [[package]]
872
+ name = "memchr"
873
+ version = "2.7.4"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
876
+
877
+ [[package]]
878
+ name = "mime"
879
+ version = "0.3.17"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
882
+
883
+ [[package]]
884
+ name = "miniz_oxide"
885
+ version = "0.8.0"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
888
+ dependencies = [
889
+ "adler2",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "mio"
894
+ version = "1.0.2"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
897
+ dependencies = [
898
+ "hermit-abi",
899
+ "libc",
900
+ "wasi",
901
+ "windows-sys 0.52.0",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "native-tls"
906
+ version = "0.2.12"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466"
909
+ dependencies = [
910
+ "libc",
911
+ "log",
912
+ "openssl",
913
+ "openssl-probe",
914
+ "openssl-sys",
915
+ "schannel",
916
+ "security-framework",
917
+ "security-framework-sys",
918
+ "tempfile",
919
+ ]
920
+
921
+ [[package]]
922
+ name = "num-bigint-dig"
923
+ version = "0.8.4"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
926
+ dependencies = [
927
+ "byteorder",
928
+ "lazy_static",
929
+ "libm",
930
+ "num-integer",
931
+ "num-iter",
932
+ "num-traits",
933
+ "rand",
934
+ "smallvec",
935
+ "zeroize",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "num-integer"
940
+ version = "0.1.46"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
943
+ dependencies = [
944
+ "num-traits",
945
+ ]
946
+
947
+ [[package]]
948
+ name = "num-iter"
949
+ version = "0.1.45"
950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
951
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
952
+ dependencies = [
953
+ "autocfg",
954
+ "num-integer",
955
+ "num-traits",
956
+ ]
957
+
958
+ [[package]]
959
+ name = "num-traits"
960
+ version = "0.2.19"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
963
+ dependencies = [
964
+ "autocfg",
965
+ "libm",
966
+ ]
967
+
968
+ [[package]]
969
+ name = "object"
970
+ version = "0.36.5"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
973
+ dependencies = [
974
+ "memchr",
975
+ ]
976
+
977
+ [[package]]
978
+ name = "once_cell"
979
+ version = "1.20.2"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
982
+
983
+ [[package]]
984
+ name = "openssl"
985
+ version = "0.10.68"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "6174bc48f102d208783c2c84bf931bb75927a617866870de8a4ea85597f871f5"
988
+ dependencies = [
989
+ "bitflags 2.6.0",
990
+ "cfg-if",
991
+ "foreign-types",
992
+ "libc",
993
+ "once_cell",
994
+ "openssl-macros",
995
+ "openssl-sys",
996
+ ]
997
+
998
+ [[package]]
999
+ name = "openssl-macros"
1000
+ version = "0.1.1"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1003
+ dependencies = [
1004
+ "proc-macro2",
1005
+ "quote",
1006
+ "syn",
1007
+ ]
1008
+
1009
+ [[package]]
1010
+ name = "openssl-probe"
1011
+ version = "0.1.5"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
1014
+
1015
+ [[package]]
1016
+ name = "openssl-sys"
1017
+ version = "0.9.104"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741"
1020
+ dependencies = [
1021
+ "cc",
1022
+ "libc",
1023
+ "pkg-config",
1024
+ "vcpkg",
1025
+ ]
1026
+
1027
+ [[package]]
1028
+ name = "option-ext"
1029
+ version = "0.2.0"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1032
+
1033
+ [[package]]
1034
+ name = "p384"
1035
+ version = "0.13.0"
1036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1037
+ checksum = "70786f51bcc69f6a4c0360e063a4cac5419ef7c5cd5b3c99ad70f3be5ba79209"
1038
+ dependencies = [
1039
+ "ecdsa",
1040
+ "elliptic-curve",
1041
+ "primeorder",
1042
+ "sha2",
1043
+ ]
1044
+
1045
+ [[package]]
1046
+ name = "parking_lot"
1047
+ version = "0.12.3"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
1050
+ dependencies = [
1051
+ "lock_api",
1052
+ "parking_lot_core",
1053
+ ]
1054
+
1055
+ [[package]]
1056
+ name = "parking_lot_core"
1057
+ version = "0.9.10"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
1060
+ dependencies = [
1061
+ "cfg-if",
1062
+ "libc",
1063
+ "redox_syscall",
1064
+ "smallvec",
1065
+ "windows-targets 0.52.6",
1066
+ ]
1067
+
1068
+ [[package]]
1069
+ name = "pem-rfc7468"
1070
+ version = "0.7.0"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
1073
+ dependencies = [
1074
+ "base64ct",
1075
+ ]
1076
+
1077
+ [[package]]
1078
+ name = "percent-encoding"
1079
+ version = "2.3.1"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1082
+
1083
+ [[package]]
1084
+ name = "pin-project-lite"
1085
+ version = "0.2.15"
1086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1087
+ checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
1088
+
1089
+ [[package]]
1090
+ name = "pin-utils"
1091
+ version = "0.1.0"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1094
+
1095
+ [[package]]
1096
+ name = "pkcs1"
1097
+ version = "0.7.5"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
1100
+ dependencies = [
1101
+ "der",
1102
+ "pkcs8",
1103
+ "spki",
1104
+ ]
1105
+
1106
+ [[package]]
1107
+ name = "pkcs8"
1108
+ version = "0.10.2"
1109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1110
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
1111
+ dependencies = [
1112
+ "der",
1113
+ "spki",
1114
+ ]
1115
+
1116
+ [[package]]
1117
+ name = "pkg-config"
1118
+ version = "0.3.31"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
1121
+
1122
+ [[package]]
1123
+ name = "ppv-lite86"
1124
+ version = "0.2.20"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
1127
+ dependencies = [
1128
+ "zerocopy",
1129
+ ]
1130
+
1131
+ [[package]]
1132
+ name = "primeorder"
1133
+ version = "0.13.6"
1134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1135
+ checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
1136
+ dependencies = [
1137
+ "elliptic-curve",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "proc-macro2"
1142
+ version = "1.0.89"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e"
1145
+ dependencies = [
1146
+ "unicode-ident",
1147
+ ]
1148
+
1149
+ [[package]]
1150
+ name = "quote"
1151
+ version = "1.0.37"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
1154
+ dependencies = [
1155
+ "proc-macro2",
1156
+ ]
1157
+
1158
+ [[package]]
1159
+ name = "rand"
1160
+ version = "0.8.5"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1163
+ dependencies = [
1164
+ "rand_chacha",
1165
+ "rand_core",
1166
+ ]
1167
+
1168
+ [[package]]
1169
+ name = "rand_chacha"
1170
+ version = "0.3.1"
1171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1172
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1173
+ dependencies = [
1174
+ "ppv-lite86",
1175
+ "rand_core",
1176
+ ]
1177
+
1178
+ [[package]]
1179
+ name = "rand_core"
1180
+ version = "0.6.4"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1183
+ dependencies = [
1184
+ "getrandom",
1185
+ ]
1186
+
1187
+ [[package]]
1188
+ name = "rdrand"
1189
+ version = "0.8.3"
1190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1191
+ checksum = "d92195228612ac8eed47adbc2ed0f04e513a4ccb98175b6f2bd04d963b533655"
1192
+ dependencies = [
1193
+ "rand_core",
1194
+ ]
1195
+
1196
+ [[package]]
1197
+ name = "redox_syscall"
1198
+ version = "0.5.7"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
1201
+ dependencies = [
1202
+ "bitflags 2.6.0",
1203
+ ]
1204
+
1205
+ [[package]]
1206
+ name = "redox_users"
1207
+ version = "0.4.6"
1208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1209
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
1210
+ dependencies = [
1211
+ "getrandom",
1212
+ "libredox",
1213
+ "thiserror",
1214
+ ]
1215
+
1216
+ [[package]]
1217
+ name = "reqwest"
1218
+ version = "0.11.27"
1219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1220
+ checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
1221
+ dependencies = [
1222
+ "base64 0.21.7",
1223
+ "bytes",
1224
+ "encoding_rs",
1225
+ "futures-core",
1226
+ "futures-util",
1227
+ "h2",
1228
+ "http",
1229
+ "http-body",
1230
+ "hyper",
1231
+ "hyper-tls",
1232
+ "ipnet",
1233
+ "js-sys",
1234
+ "log",
1235
+ "mime",
1236
+ "native-tls",
1237
+ "once_cell",
1238
+ "percent-encoding",
1239
+ "pin-project-lite",
1240
+ "rustls-pemfile",
1241
+ "serde",
1242
+ "serde_json",
1243
+ "serde_urlencoded",
1244
+ "sync_wrapper",
1245
+ "system-configuration",
1246
+ "tokio",
1247
+ "tokio-native-tls",
1248
+ "tower-service",
1249
+ "url",
1250
+ "wasm-bindgen",
1251
+ "wasm-bindgen-futures",
1252
+ "web-sys",
1253
+ "winreg",
1254
+ ]
1255
+
1256
+ [[package]]
1257
+ name = "rfc6979"
1258
+ version = "0.4.0"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
1261
+ dependencies = [
1262
+ "hmac",
1263
+ "subtle",
1264
+ ]
1265
+
1266
+ [[package]]
1267
+ name = "rsa"
1268
+ version = "0.9.6"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc"
1271
+ dependencies = [
1272
+ "const-oid",
1273
+ "digest",
1274
+ "num-bigint-dig",
1275
+ "num-integer",
1276
+ "num-traits",
1277
+ "pkcs1",
1278
+ "pkcs8",
1279
+ "rand_core",
1280
+ "signature",
1281
+ "spki",
1282
+ "subtle",
1283
+ "zeroize",
1284
+ ]
1285
+
1286
+ [[package]]
1287
+ name = "rustc-demangle"
1288
+ version = "0.1.24"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
1291
+
1292
+ [[package]]
1293
+ name = "rustix"
1294
+ version = "0.38.41"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "d7f649912bc1495e167a6edee79151c84b1bad49748cb4f1f1167f459f6224f6"
1297
+ dependencies = [
1298
+ "bitflags 2.6.0",
1299
+ "errno",
1300
+ "libc",
1301
+ "linux-raw-sys",
1302
+ "windows-sys 0.52.0",
1303
+ ]
1304
+
1305
+ [[package]]
1306
+ name = "rustls-pemfile"
1307
+ version = "1.0.4"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
1310
+ dependencies = [
1311
+ "base64 0.21.7",
1312
+ ]
1313
+
1314
+ [[package]]
1315
+ name = "ryu"
1316
+ version = "1.0.18"
1317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1318
+ checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
1319
+
1320
+ [[package]]
1321
+ name = "scc"
1322
+ version = "2.2.5"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "66b202022bb57c049555430e11fc22fea12909276a80a4c3d368da36ac1d88ed"
1325
+ dependencies = [
1326
+ "sdd",
1327
+ ]
1328
+
1329
+ [[package]]
1330
+ name = "schannel"
1331
+ version = "0.1.27"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
1334
+ dependencies = [
1335
+ "windows-sys 0.59.0",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "scopeguard"
1340
+ version = "1.2.0"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1343
+
1344
+ [[package]]
1345
+ name = "sdd"
1346
+ version = "3.0.4"
1347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1348
+ checksum = "49c1eeaf4b6a87c7479688c6d52b9f1153cedd3c489300564f932b065c6eab95"
1349
+
1350
+ [[package]]
1351
+ name = "sec1"
1352
+ version = "0.7.3"
1353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1354
+ checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
1355
+ dependencies = [
1356
+ "base16ct",
1357
+ "der",
1358
+ "generic-array",
1359
+ "pkcs8",
1360
+ "subtle",
1361
+ "zeroize",
1362
+ ]
1363
+
1364
+ [[package]]
1365
+ name = "security-framework"
1366
+ version = "2.11.1"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
1369
+ dependencies = [
1370
+ "bitflags 2.6.0",
1371
+ "core-foundation",
1372
+ "core-foundation-sys",
1373
+ "libc",
1374
+ "security-framework-sys",
1375
+ ]
1376
+
1377
+ [[package]]
1378
+ name = "security-framework-sys"
1379
+ version = "2.12.1"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "fa39c7303dc58b5543c94d22c1766b0d31f2ee58306363ea622b10bbc075eaa2"
1382
+ dependencies = [
1383
+ "core-foundation-sys",
1384
+ "libc",
1385
+ ]
1386
+
1387
+ [[package]]
1388
+ name = "serde"
1389
+ version = "1.0.215"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f"
1392
+ dependencies = [
1393
+ "serde_derive",
1394
+ ]
1395
+
1396
+ [[package]]
1397
+ name = "serde-big-array"
1398
+ version = "0.5.1"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "11fc7cc2c76d73e0f27ee52abbd64eec84d46f370c88371120433196934e4b7f"
1401
+ dependencies = [
1402
+ "serde",
1403
+ ]
1404
+
1405
+ [[package]]
1406
+ name = "serde_bytes"
1407
+ version = "0.11.15"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "387cc504cb06bb40a96c8e04e951fe01854cf6bc921053c954e4a606d9675c6a"
1410
+ dependencies = [
1411
+ "serde",
1412
+ ]
1413
+
1414
+ [[package]]
1415
+ name = "serde_derive"
1416
+ version = "1.0.215"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0"
1419
+ dependencies = [
1420
+ "proc-macro2",
1421
+ "quote",
1422
+ "syn",
1423
+ ]
1424
+
1425
+ [[package]]
1426
+ name = "serde_json"
1427
+ version = "1.0.133"
1428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1429
+ checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377"
1430
+ dependencies = [
1431
+ "itoa",
1432
+ "memchr",
1433
+ "ryu",
1434
+ "serde",
1435
+ ]
1436
+
1437
+ [[package]]
1438
+ name = "serde_urlencoded"
1439
+ version = "0.7.1"
1440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1441
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1442
+ dependencies = [
1443
+ "form_urlencoded",
1444
+ "itoa",
1445
+ "ryu",
1446
+ "serde",
1447
+ ]
1448
+
1449
+ [[package]]
1450
+ name = "serial_test"
1451
+ version = "3.2.0"
1452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+ checksum = "1b258109f244e1d6891bf1053a55d63a5cd4f8f4c30cf9a1280989f80e7a1fa9"
1454
+ dependencies = [
1455
+ "futures",
1456
+ "log",
1457
+ "once_cell",
1458
+ "parking_lot",
1459
+ "scc",
1460
+ "serial_test_derive",
1461
+ ]
1462
+
1463
+ [[package]]
1464
+ name = "serial_test_derive"
1465
+ version = "3.2.0"
1466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1467
+ checksum = "5d69265a08751de7844521fd15003ae0a888e035773ba05695c5c759a6f89eef"
1468
+ dependencies = [
1469
+ "proc-macro2",
1470
+ "quote",
1471
+ "syn",
1472
+ ]
1473
+
1474
+ [[package]]
1475
+ name = "sev"
1476
+ version = "5.0.0"
1477
+ dependencies = [
1478
+ "base64 0.22.1",
1479
+ "bincode",
1480
+ "bitfield",
1481
+ "bitflags 1.3.2",
1482
+ "byteorder",
1483
+ "codicon",
1484
+ "dirs",
1485
+ "hex",
1486
+ "iocuddle",
1487
+ "kvm-bindings",
1488
+ "kvm-ioctls",
1489
+ "lazy_static",
1490
+ "libc",
1491
+ "openssl",
1492
+ "p384",
1493
+ "rdrand",
1494
+ "reqwest",
1495
+ "rsa",
1496
+ "serde",
1497
+ "serde-big-array",
1498
+ "serde_bytes",
1499
+ "serial_test",
1500
+ "sha2",
1501
+ "static_assertions",
1502
+ "tokio",
1503
+ "uuid",
1504
+ "x509-cert",
1505
+ ]
1506
+
1507
+ [[package]]
1508
+ name = "sha2"
1509
+ version = "0.10.8"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
1512
+ dependencies = [
1513
+ "cfg-if",
1514
+ "cpufeatures",
1515
+ "digest",
1516
+ ]
1517
+
1518
+ [[package]]
1519
+ name = "shlex"
1520
+ version = "1.3.0"
1521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1522
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1523
+
1524
+ [[package]]
1525
+ name = "signature"
1526
+ version = "2.2.0"
1527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1528
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
1529
+ dependencies = [
1530
+ "digest",
1531
+ "rand_core",
1532
+ ]
1533
+
1534
+ [[package]]
1535
+ name = "slab"
1536
+ version = "0.4.9"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
1539
+ dependencies = [
1540
+ "autocfg",
1541
+ ]
1542
+
1543
+ [[package]]
1544
+ name = "smallvec"
1545
+ version = "1.13.2"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
1548
+
1549
+ [[package]]
1550
+ name = "socket2"
1551
+ version = "0.5.7"
1552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1553
+ checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
1554
+ dependencies = [
1555
+ "libc",
1556
+ "windows-sys 0.52.0",
1557
+ ]
1558
+
1559
+ [[package]]
1560
+ name = "spin"
1561
+ version = "0.9.8"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
1564
+
1565
+ [[package]]
1566
+ name = "spki"
1567
+ version = "0.7.3"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
1570
+ dependencies = [
1571
+ "base64ct",
1572
+ "der",
1573
+ ]
1574
+
1575
+ [[package]]
1576
+ name = "stable_deref_trait"
1577
+ version = "1.2.0"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
1580
+
1581
+ [[package]]
1582
+ name = "static_assertions"
1583
+ version = "1.1.0"
1584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1585
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1586
+
1587
+ [[package]]
1588
+ name = "subtle"
1589
+ version = "2.6.1"
1590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1591
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1592
+
1593
+ [[package]]
1594
+ name = "syn"
1595
+ version = "2.0.87"
1596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1597
+ checksum = "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d"
1598
+ dependencies = [
1599
+ "proc-macro2",
1600
+ "quote",
1601
+ "unicode-ident",
1602
+ ]
1603
+
1604
+ [[package]]
1605
+ name = "sync_wrapper"
1606
+ version = "0.1.2"
1607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1608
+ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
1609
+
1610
+ [[package]]
1611
+ name = "synstructure"
1612
+ version = "0.13.1"
1613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1614
+ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
1615
+ dependencies = [
1616
+ "proc-macro2",
1617
+ "quote",
1618
+ "syn",
1619
+ ]
1620
+
1621
+ [[package]]
1622
+ name = "system-configuration"
1623
+ version = "0.5.1"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
1626
+ dependencies = [
1627
+ "bitflags 1.3.2",
1628
+ "core-foundation",
1629
+ "system-configuration-sys",
1630
+ ]
1631
+
1632
+ [[package]]
1633
+ name = "system-configuration-sys"
1634
+ version = "0.5.0"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
1637
+ dependencies = [
1638
+ "core-foundation-sys",
1639
+ "libc",
1640
+ ]
1641
+
1642
+ [[package]]
1643
+ name = "tempfile"
1644
+ version = "3.14.0"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c"
1647
+ dependencies = [
1648
+ "cfg-if",
1649
+ "fastrand",
1650
+ "once_cell",
1651
+ "rustix",
1652
+ "windows-sys 0.59.0",
1653
+ ]
1654
+
1655
+ [[package]]
1656
+ name = "thiserror"
1657
+ version = "1.0.69"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1660
+ dependencies = [
1661
+ "thiserror-impl",
1662
+ ]
1663
+
1664
+ [[package]]
1665
+ name = "thiserror-impl"
1666
+ version = "1.0.69"
1667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1668
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1669
+ dependencies = [
1670
+ "proc-macro2",
1671
+ "quote",
1672
+ "syn",
1673
+ ]
1674
+
1675
+ [[package]]
1676
+ name = "tinystr"
1677
+ version = "0.7.6"
1678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1679
+ checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
1680
+ dependencies = [
1681
+ "displaydoc",
1682
+ "zerovec",
1683
+ ]
1684
+
1685
+ [[package]]
1686
+ name = "tls_codec"
1687
+ version = "0.4.1"
1688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1689
+ checksum = "b5e78c9c330f8c85b2bae7c8368f2739157db9991235123aa1b15ef9502bfb6a"
1690
+ dependencies = [
1691
+ "tls_codec_derive",
1692
+ "zeroize",
1693
+ ]
1694
+
1695
+ [[package]]
1696
+ name = "tls_codec_derive"
1697
+ version = "0.4.1"
1698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1699
+ checksum = "8d9ef545650e79f30233c0003bcc2504d7efac6dad25fca40744de773fe2049c"
1700
+ dependencies = [
1701
+ "proc-macro2",
1702
+ "quote",
1703
+ "syn",
1704
+ ]
1705
+
1706
+ [[package]]
1707
+ name = "tokio"
1708
+ version = "1.41.1"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "22cfb5bee7a6a52939ca9224d6ac897bb669134078daa8735560897f69de4d33"
1711
+ dependencies = [
1712
+ "backtrace",
1713
+ "bytes",
1714
+ "libc",
1715
+ "mio",
1716
+ "pin-project-lite",
1717
+ "socket2",
1718
+ "windows-sys 0.52.0",
1719
+ ]
1720
+
1721
+ [[package]]
1722
+ name = "tokio-native-tls"
1723
+ version = "0.3.1"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
1726
+ dependencies = [
1727
+ "native-tls",
1728
+ "tokio",
1729
+ ]
1730
+
1731
+ [[package]]
1732
+ name = "tokio-util"
1733
+ version = "0.7.12"
1734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1735
+ checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a"
1736
+ dependencies = [
1737
+ "bytes",
1738
+ "futures-core",
1739
+ "futures-sink",
1740
+ "pin-project-lite",
1741
+ "tokio",
1742
+ ]
1743
+
1744
+ [[package]]
1745
+ name = "tower-service"
1746
+ version = "0.3.3"
1747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1748
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1749
+
1750
+ [[package]]
1751
+ name = "tracing"
1752
+ version = "0.1.40"
1753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1754
+ checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
1755
+ dependencies = [
1756
+ "pin-project-lite",
1757
+ "tracing-core",
1758
+ ]
1759
+
1760
+ [[package]]
1761
+ name = "tracing-core"
1762
+ version = "0.1.32"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
1765
+ dependencies = [
1766
+ "once_cell",
1767
+ ]
1768
+
1769
+ [[package]]
1770
+ name = "try-lock"
1771
+ version = "0.2.5"
1772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1773
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1774
+
1775
+ [[package]]
1776
+ name = "typenum"
1777
+ version = "1.17.0"
1778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1779
+ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
1780
+
1781
+ [[package]]
1782
+ name = "unicode-ident"
1783
+ version = "1.0.14"
1784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1785
+ checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
1786
+
1787
+ [[package]]
1788
+ name = "url"
1789
+ version = "2.5.3"
1790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1791
+ checksum = "8d157f1b96d14500ffdc1f10ba712e780825526c03d9a49b4d0324b0d9113ada"
1792
+ dependencies = [
1793
+ "form_urlencoded",
1794
+ "idna",
1795
+ "percent-encoding",
1796
+ ]
1797
+
1798
+ [[package]]
1799
+ name = "utf16_iter"
1800
+ version = "1.0.5"
1801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1802
+ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
1803
+
1804
+ [[package]]
1805
+ name = "utf8_iter"
1806
+ version = "1.0.4"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1809
+
1810
+ [[package]]
1811
+ name = "uuid"
1812
+ version = "1.11.0"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a"
1815
+ dependencies = [
1816
+ "serde",
1817
+ ]
1818
+
1819
+ [[package]]
1820
+ name = "vcpkg"
1821
+ version = "0.2.15"
1822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1823
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1824
+
1825
+ [[package]]
1826
+ name = "version_check"
1827
+ version = "0.9.5"
1828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1829
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1830
+
1831
+ [[package]]
1832
+ name = "vmm-sys-util"
1833
+ version = "0.12.1"
1834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1835
+ checksum = "1d1435039746e20da4f8d507a72ee1b916f7b4b05af7a91c093d2c6561934ede"
1836
+ dependencies = [
1837
+ "bitflags 1.3.2",
1838
+ "libc",
1839
+ ]
1840
+
1841
+ [[package]]
1842
+ name = "want"
1843
+ version = "0.3.1"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
1846
+ dependencies = [
1847
+ "try-lock",
1848
+ ]
1849
+
1850
+ [[package]]
1851
+ name = "wasi"
1852
+ version = "0.11.0+wasi-snapshot-preview1"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1855
+
1856
+ [[package]]
1857
+ name = "wasm-bindgen"
1858
+ version = "0.2.95"
1859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1860
+ checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e"
1861
+ dependencies = [
1862
+ "cfg-if",
1863
+ "once_cell",
1864
+ "wasm-bindgen-macro",
1865
+ ]
1866
+
1867
+ [[package]]
1868
+ name = "wasm-bindgen-backend"
1869
+ version = "0.2.95"
1870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1871
+ checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358"
1872
+ dependencies = [
1873
+ "bumpalo",
1874
+ "log",
1875
+ "once_cell",
1876
+ "proc-macro2",
1877
+ "quote",
1878
+ "syn",
1879
+ "wasm-bindgen-shared",
1880
+ ]
1881
+
1882
+ [[package]]
1883
+ name = "wasm-bindgen-futures"
1884
+ version = "0.4.45"
1885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1886
+ checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b"
1887
+ dependencies = [
1888
+ "cfg-if",
1889
+ "js-sys",
1890
+ "wasm-bindgen",
1891
+ "web-sys",
1892
+ ]
1893
+
1894
+ [[package]]
1895
+ name = "wasm-bindgen-macro"
1896
+ version = "0.2.95"
1897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1898
+ checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56"
1899
+ dependencies = [
1900
+ "quote",
1901
+ "wasm-bindgen-macro-support",
1902
+ ]
1903
+
1904
+ [[package]]
1905
+ name = "wasm-bindgen-macro-support"
1906
+ version = "0.2.95"
1907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+ checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
1909
+ dependencies = [
1910
+ "proc-macro2",
1911
+ "quote",
1912
+ "syn",
1913
+ "wasm-bindgen-backend",
1914
+ "wasm-bindgen-shared",
1915
+ ]
1916
+
1917
+ [[package]]
1918
+ name = "wasm-bindgen-shared"
1919
+ version = "0.2.95"
1920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1921
+ checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
1922
+
1923
+ [[package]]
1924
+ name = "web-sys"
1925
+ version = "0.3.72"
1926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1927
+ checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112"
1928
+ dependencies = [
1929
+ "js-sys",
1930
+ "wasm-bindgen",
1931
+ ]
1932
+
1933
+ [[package]]
1934
+ name = "windows-sys"
1935
+ version = "0.48.0"
1936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1937
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1938
+ dependencies = [
1939
+ "windows-targets 0.48.5",
1940
+ ]
1941
+
1942
+ [[package]]
1943
+ name = "windows-sys"
1944
+ version = "0.52.0"
1945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1946
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1947
+ dependencies = [
1948
+ "windows-targets 0.52.6",
1949
+ ]
1950
+
1951
+ [[package]]
1952
+ name = "windows-sys"
1953
+ version = "0.59.0"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1956
+ dependencies = [
1957
+ "windows-targets 0.52.6",
1958
+ ]
1959
+
1960
+ [[package]]
1961
+ name = "windows-targets"
1962
+ version = "0.48.5"
1963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1964
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
1965
+ dependencies = [
1966
+ "windows_aarch64_gnullvm 0.48.5",
1967
+ "windows_aarch64_msvc 0.48.5",
1968
+ "windows_i686_gnu 0.48.5",
1969
+ "windows_i686_msvc 0.48.5",
1970
+ "windows_x86_64_gnu 0.48.5",
1971
+ "windows_x86_64_gnullvm 0.48.5",
1972
+ "windows_x86_64_msvc 0.48.5",
1973
+ ]
1974
+
1975
+ [[package]]
1976
+ name = "windows-targets"
1977
+ version = "0.52.6"
1978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1979
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1980
+ dependencies = [
1981
+ "windows_aarch64_gnullvm 0.52.6",
1982
+ "windows_aarch64_msvc 0.52.6",
1983
+ "windows_i686_gnu 0.52.6",
1984
+ "windows_i686_gnullvm",
1985
+ "windows_i686_msvc 0.52.6",
1986
+ "windows_x86_64_gnu 0.52.6",
1987
+ "windows_x86_64_gnullvm 0.52.6",
1988
+ "windows_x86_64_msvc 0.52.6",
1989
+ ]
1990
+
1991
+ [[package]]
1992
+ name = "windows_aarch64_gnullvm"
1993
+ version = "0.48.5"
1994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1995
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1996
+
1997
+ [[package]]
1998
+ name = "windows_aarch64_gnullvm"
1999
+ version = "0.52.6"
2000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2001
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2002
+
2003
+ [[package]]
2004
+ name = "windows_aarch64_msvc"
2005
+ version = "0.48.5"
2006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2007
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2008
+
2009
+ [[package]]
2010
+ name = "windows_aarch64_msvc"
2011
+ version = "0.52.6"
2012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2013
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2014
+
2015
+ [[package]]
2016
+ name = "windows_i686_gnu"
2017
+ version = "0.48.5"
2018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2020
+
2021
+ [[package]]
2022
+ name = "windows_i686_gnu"
2023
+ version = "0.52.6"
2024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2025
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2026
+
2027
+ [[package]]
2028
+ name = "windows_i686_gnullvm"
2029
+ version = "0.52.6"
2030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2031
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2032
+
2033
+ [[package]]
2034
+ name = "windows_i686_msvc"
2035
+ version = "0.48.5"
2036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2037
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2038
+
2039
+ [[package]]
2040
+ name = "windows_i686_msvc"
2041
+ version = "0.52.6"
2042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2043
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2044
+
2045
+ [[package]]
2046
+ name = "windows_x86_64_gnu"
2047
+ version = "0.48.5"
2048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2049
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2050
+
2051
+ [[package]]
2052
+ name = "windows_x86_64_gnu"
2053
+ version = "0.52.6"
2054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2055
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2056
+
2057
+ [[package]]
2058
+ name = "windows_x86_64_gnullvm"
2059
+ version = "0.48.5"
2060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2061
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2062
+
2063
+ [[package]]
2064
+ name = "windows_x86_64_gnullvm"
2065
+ version = "0.52.6"
2066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2067
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2068
+
2069
+ [[package]]
2070
+ name = "windows_x86_64_msvc"
2071
+ version = "0.48.5"
2072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2073
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2074
+
2075
+ [[package]]
2076
+ name = "windows_x86_64_msvc"
2077
+ version = "0.52.6"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2080
+
2081
+ [[package]]
2082
+ name = "winreg"
2083
+ version = "0.50.0"
2084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2085
+ checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
2086
+ dependencies = [
2087
+ "cfg-if",
2088
+ "windows-sys 0.48.0",
2089
+ ]
2090
+
2091
+ [[package]]
2092
+ name = "write16"
2093
+ version = "1.0.0"
2094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2095
+ checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
2096
+
2097
+ [[package]]
2098
+ name = "writeable"
2099
+ version = "0.5.5"
2100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2101
+ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
2102
+
2103
+ [[package]]
2104
+ name = "x509-cert"
2105
+ version = "0.2.5"
2106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2107
+ checksum = "1301e935010a701ae5f8655edc0ad17c44bad3ac5ce8c39185f75453b720ae94"
2108
+ dependencies = [
2109
+ "const-oid",
2110
+ "der",
2111
+ "spki",
2112
+ "tls_codec",
2113
+ ]
2114
+
2115
+ [[package]]
2116
+ name = "yoke"
2117
+ version = "0.7.4"
2118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2119
+ checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5"
2120
+ dependencies = [
2121
+ "serde",
2122
+ "stable_deref_trait",
2123
+ "yoke-derive",
2124
+ "zerofrom",
2125
+ ]
2126
+
2127
+ [[package]]
2128
+ name = "yoke-derive"
2129
+ version = "0.7.4"
2130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2131
+ checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95"
2132
+ dependencies = [
2133
+ "proc-macro2",
2134
+ "quote",
2135
+ "syn",
2136
+ "synstructure",
2137
+ ]
2138
+
2139
+ [[package]]
2140
+ name = "zerocopy"
2141
+ version = "0.7.35"
2142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2143
+ checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
2144
+ dependencies = [
2145
+ "byteorder",
2146
+ "zerocopy-derive",
2147
+ ]
2148
+
2149
+ [[package]]
2150
+ name = "zerocopy-derive"
2151
+ version = "0.7.35"
2152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2153
+ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
2154
+ dependencies = [
2155
+ "proc-macro2",
2156
+ "quote",
2157
+ "syn",
2158
+ ]
2159
+
2160
+ [[package]]
2161
+ name = "zerofrom"
2162
+ version = "0.1.4"
2163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55"
2165
+ dependencies = [
2166
+ "zerofrom-derive",
2167
+ ]
2168
+
2169
+ [[package]]
2170
+ name = "zerofrom-derive"
2171
+ version = "0.1.4"
2172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2173
+ checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5"
2174
+ dependencies = [
2175
+ "proc-macro2",
2176
+ "quote",
2177
+ "syn",
2178
+ "synstructure",
2179
+ ]
2180
+
2181
+ [[package]]
2182
+ name = "zeroize"
2183
+ version = "1.8.1"
2184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2185
+ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
2186
+ dependencies = [
2187
+ "zeroize_derive",
2188
+ ]
2189
+
2190
+ [[package]]
2191
+ name = "zeroize_derive"
2192
+ version = "1.4.2"
2193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2194
+ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
2195
+ dependencies = [
2196
+ "proc-macro2",
2197
+ "quote",
2198
+ "syn",
2199
+ ]
2200
+
2201
+ [[package]]
2202
+ name = "zerovec"
2203
+ version = "0.10.4"
2204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2205
+ checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
2206
+ dependencies = [
2207
+ "yoke",
2208
+ "zerofrom",
2209
+ "zerovec-derive",
2210
+ ]
2211
+
2212
+ [[package]]
2213
+ name = "zerovec-derive"
2214
+ version = "0.10.3"
2215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2216
+ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
2217
+ dependencies = [
2218
+ "proc-macro2",
2219
+ "quote",
2220
+ "syn",
2221
+ ]