@super-protocol/addons-tee 0.9.9 → 0.9.10
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.
- package/bindings/amd-sev-snp-napi-rs/amd-sev-snp-napi-rs.linux-x64-gnu.node +0 -0
- package/bindings/amd-sev-snp-napi-rs/index.d.ts +27 -0
- package/bindings/amd-sev-snp-napi-rs/index.js +12 -1
- package/bindings/sp-sev/.github/workflows/lint.yml +3 -3
- package/bindings/sp-sev/.github/workflows/test.yml +163 -2
- package/bindings/sp-sev/Cargo.lock +521 -281
- package/bindings/sp-sev/Cargo.toml +11 -11
- package/bindings/sp-sev/tests/api.rs +9 -6
- package/bindings/sp-sev/tests/certs.rs +4 -5
- package/bindings/sp-sev/tests/guest.rs +2 -1
- package/bindings/sp-sev/tests/id-block.rs +9 -5
- package/bindings/sp-sev/tests/snp_launch.rs +1 -1
- package/bindings/utils/virtee/libsev.so +0 -0
- package/bindings/utils/virtee/snpguest +0 -0
- package/dist/sgx-native-module/index.d.ts +1 -0
- package/dist/sgx-native-module/index.js +2 -1
- package/dist/sgx-native-module/sev-snp-mrenclave.d.ts +1 -1
- package/dist/sgx-native-module/sev-snp-mrenclave.js +38 -6
- package/dist/sgx-native-module/sev-snp-schema.d.ts +22 -0
- package/dist/sgx-native-module/sev-snp-schema.js +24 -0
- package/dist/sgx-native-module/sev-snp.d.ts +21 -9
- package/dist/sgx-native-module/sev-snp.js +105 -89
- package/package.json +3 -2
|
@@ -17,6 +17,12 @@ version = "2.0.0"
|
|
|
17
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
18
|
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
|
19
19
|
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "atomic-waker"
|
|
22
|
+
version = "1.1.2"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
25
|
+
|
|
20
26
|
[[package]]
|
|
21
27
|
name = "autocfg"
|
|
22
28
|
version = "1.4.0"
|
|
@@ -44,12 +50,6 @@ version = "0.2.0"
|
|
|
44
50
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
51
|
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
|
|
46
52
|
|
|
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
53
|
[[package]]
|
|
54
54
|
name = "base64"
|
|
55
55
|
version = "0.22.1"
|
|
@@ -64,18 +64,43 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
|
|
|
64
64
|
|
|
65
65
|
[[package]]
|
|
66
66
|
name = "bincode"
|
|
67
|
-
version = "
|
|
67
|
+
version = "2.0.1"
|
|
68
68
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
-
checksum = "
|
|
69
|
+
checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
|
|
70
70
|
dependencies = [
|
|
71
|
+
"bincode_derive",
|
|
71
72
|
"serde",
|
|
73
|
+
"unty",
|
|
74
|
+
]
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "bincode_derive"
|
|
78
|
+
version = "2.0.1"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
|
|
81
|
+
dependencies = [
|
|
82
|
+
"virtue",
|
|
72
83
|
]
|
|
73
84
|
|
|
74
85
|
[[package]]
|
|
75
86
|
name = "bitfield"
|
|
76
|
-
version = "0.
|
|
87
|
+
version = "0.19.0"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "786e53b0c071573a28956cec19a92653e42de34c683e2f6e86c197a349fba318"
|
|
90
|
+
dependencies = [
|
|
91
|
+
"bitfield-macros",
|
|
92
|
+
]
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "bitfield-macros"
|
|
96
|
+
version = "0.19.0"
|
|
77
97
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
78
|
-
checksum = "
|
|
98
|
+
checksum = "07805405d3f1f3a55aab895718b488821d40458f9188059909091ae0935c344a"
|
|
99
|
+
dependencies = [
|
|
100
|
+
"proc-macro2",
|
|
101
|
+
"quote",
|
|
102
|
+
"syn",
|
|
103
|
+
]
|
|
79
104
|
|
|
80
105
|
[[package]]
|
|
81
106
|
name = "bitflags"
|
|
@@ -85,9 +110,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
85
110
|
|
|
86
111
|
[[package]]
|
|
87
112
|
name = "bitflags"
|
|
88
|
-
version = "2.
|
|
113
|
+
version = "2.9.0"
|
|
89
114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
-
checksum = "
|
|
115
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
|
91
116
|
|
|
92
117
|
[[package]]
|
|
93
118
|
name = "block-buffer"
|
|
@@ -100,9 +125,9 @@ dependencies = [
|
|
|
100
125
|
|
|
101
126
|
[[package]]
|
|
102
127
|
name = "bumpalo"
|
|
103
|
-
version = "3.
|
|
128
|
+
version = "3.17.0"
|
|
104
129
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
105
|
-
checksum = "
|
|
130
|
+
checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
|
|
106
131
|
|
|
107
132
|
[[package]]
|
|
108
133
|
name = "byteorder"
|
|
@@ -112,15 +137,15 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
112
137
|
|
|
113
138
|
[[package]]
|
|
114
139
|
name = "bytes"
|
|
115
|
-
version = "1.
|
|
140
|
+
version = "1.10.1"
|
|
116
141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
-
checksum = "
|
|
142
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
118
143
|
|
|
119
144
|
[[package]]
|
|
120
145
|
name = "cc"
|
|
121
|
-
version = "1.2.
|
|
146
|
+
version = "1.2.18"
|
|
122
147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
-
checksum = "
|
|
148
|
+
checksum = "525046617d8376e3db1deffb079e91cef90a89fc3ca5c185bbf8c9ecdd15cd5c"
|
|
124
149
|
dependencies = [
|
|
125
150
|
"shlex",
|
|
126
151
|
]
|
|
@@ -161,9 +186,9 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
|
161
186
|
|
|
162
187
|
[[package]]
|
|
163
188
|
name = "cpufeatures"
|
|
164
|
-
version = "0.2.
|
|
189
|
+
version = "0.2.17"
|
|
165
190
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
-
checksum = "
|
|
191
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
167
192
|
dependencies = [
|
|
168
193
|
"libc",
|
|
169
194
|
]
|
|
@@ -228,23 +253,23 @@ dependencies = [
|
|
|
228
253
|
|
|
229
254
|
[[package]]
|
|
230
255
|
name = "dirs"
|
|
231
|
-
version = "
|
|
256
|
+
version = "6.0.0"
|
|
232
257
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
-
checksum = "
|
|
258
|
+
checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
|
|
234
259
|
dependencies = [
|
|
235
260
|
"dirs-sys",
|
|
236
261
|
]
|
|
237
262
|
|
|
238
263
|
[[package]]
|
|
239
264
|
name = "dirs-sys"
|
|
240
|
-
version = "0.
|
|
265
|
+
version = "0.5.0"
|
|
241
266
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
-
checksum = "
|
|
267
|
+
checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
|
|
243
268
|
dependencies = [
|
|
244
269
|
"libc",
|
|
245
270
|
"option-ext",
|
|
246
271
|
"redox_users",
|
|
247
|
-
"windows-sys 0.
|
|
272
|
+
"windows-sys 0.59.0",
|
|
248
273
|
]
|
|
249
274
|
|
|
250
275
|
[[package]]
|
|
@@ -304,31 +329,31 @@ dependencies = [
|
|
|
304
329
|
|
|
305
330
|
[[package]]
|
|
306
331
|
name = "equivalent"
|
|
307
|
-
version = "1.0.
|
|
332
|
+
version = "1.0.2"
|
|
308
333
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
309
|
-
checksum = "
|
|
334
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
310
335
|
|
|
311
336
|
[[package]]
|
|
312
337
|
name = "errno"
|
|
313
|
-
version = "0.3.
|
|
338
|
+
version = "0.3.11"
|
|
314
339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
|
-
checksum = "
|
|
340
|
+
checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
|
|
316
341
|
dependencies = [
|
|
317
342
|
"libc",
|
|
318
|
-
"windows-sys 0.
|
|
343
|
+
"windows-sys 0.59.0",
|
|
319
344
|
]
|
|
320
345
|
|
|
321
346
|
[[package]]
|
|
322
347
|
name = "fastrand"
|
|
323
|
-
version = "2.
|
|
348
|
+
version = "2.3.0"
|
|
324
349
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
325
|
-
checksum = "
|
|
350
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
326
351
|
|
|
327
352
|
[[package]]
|
|
328
353
|
name = "ff"
|
|
329
|
-
version = "0.13.
|
|
354
|
+
version = "0.13.1"
|
|
330
355
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
-
checksum = "
|
|
356
|
+
checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
|
|
332
357
|
dependencies = [
|
|
333
358
|
"rand_core",
|
|
334
359
|
"subtle",
|
|
@@ -336,9 +361,9 @@ dependencies = [
|
|
|
336
361
|
|
|
337
362
|
[[package]]
|
|
338
363
|
name = "flagset"
|
|
339
|
-
version = "0.4.
|
|
364
|
+
version = "0.4.7"
|
|
340
365
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
-
checksum = "
|
|
366
|
+
checksum = "b7ac824320a75a52197e8f2d787f6a38b6718bb6897a35142d749af3c0e8f4fe"
|
|
342
367
|
|
|
343
368
|
[[package]]
|
|
344
369
|
name = "fnv"
|
|
@@ -466,7 +491,19 @@ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
|
466
491
|
dependencies = [
|
|
467
492
|
"cfg-if",
|
|
468
493
|
"libc",
|
|
469
|
-
"wasi",
|
|
494
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
495
|
+
]
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "getrandom"
|
|
499
|
+
version = "0.3.2"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
|
|
502
|
+
dependencies = [
|
|
503
|
+
"cfg-if",
|
|
504
|
+
"libc",
|
|
505
|
+
"r-efi",
|
|
506
|
+
"wasi 0.14.2+wasi-0.2.4",
|
|
470
507
|
]
|
|
471
508
|
|
|
472
509
|
[[package]]
|
|
@@ -488,15 +525,15 @@ dependencies = [
|
|
|
488
525
|
|
|
489
526
|
[[package]]
|
|
490
527
|
name = "h2"
|
|
491
|
-
version = "0.
|
|
528
|
+
version = "0.4.8"
|
|
492
529
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
-
checksum = "
|
|
530
|
+
checksum = "5017294ff4bb30944501348f6f8e42e6ad28f42c8bbef7a74029aff064a4e3c2"
|
|
494
531
|
dependencies = [
|
|
532
|
+
"atomic-waker",
|
|
495
533
|
"bytes",
|
|
496
534
|
"fnv",
|
|
497
535
|
"futures-core",
|
|
498
536
|
"futures-sink",
|
|
499
|
-
"futures-util",
|
|
500
537
|
"http",
|
|
501
538
|
"indexmap",
|
|
502
539
|
"slab",
|
|
@@ -507,15 +544,9 @@ dependencies = [
|
|
|
507
544
|
|
|
508
545
|
[[package]]
|
|
509
546
|
name = "hashbrown"
|
|
510
|
-
version = "0.15.
|
|
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"
|
|
547
|
+
version = "0.15.2"
|
|
517
548
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
-
checksum = "
|
|
549
|
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
|
519
550
|
|
|
520
551
|
[[package]]
|
|
521
552
|
name = "hex"
|
|
@@ -543,9 +574,9 @@ dependencies = [
|
|
|
543
574
|
|
|
544
575
|
[[package]]
|
|
545
576
|
name = "http"
|
|
546
|
-
version = "
|
|
577
|
+
version = "1.3.1"
|
|
547
578
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
-
checksum = "
|
|
579
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
|
549
580
|
dependencies = [
|
|
550
581
|
"bytes",
|
|
551
582
|
"fnv",
|
|
@@ -554,62 +585,104 @@ dependencies = [
|
|
|
554
585
|
|
|
555
586
|
[[package]]
|
|
556
587
|
name = "http-body"
|
|
557
|
-
version = "0.
|
|
588
|
+
version = "1.0.1"
|
|
558
589
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
559
|
-
checksum = "
|
|
590
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
560
591
|
dependencies = [
|
|
561
592
|
"bytes",
|
|
562
593
|
"http",
|
|
563
|
-
"pin-project-lite",
|
|
564
594
|
]
|
|
565
595
|
|
|
566
596
|
[[package]]
|
|
567
|
-
name = "
|
|
568
|
-
version = "1.
|
|
597
|
+
name = "http-body-util"
|
|
598
|
+
version = "0.1.3"
|
|
569
599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
-
checksum = "
|
|
600
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
601
|
+
dependencies = [
|
|
602
|
+
"bytes",
|
|
603
|
+
"futures-core",
|
|
604
|
+
"http",
|
|
605
|
+
"http-body",
|
|
606
|
+
"pin-project-lite",
|
|
607
|
+
]
|
|
571
608
|
|
|
572
609
|
[[package]]
|
|
573
|
-
name = "
|
|
574
|
-
version = "1.
|
|
610
|
+
name = "httparse"
|
|
611
|
+
version = "1.10.1"
|
|
575
612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
-
checksum = "
|
|
613
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
577
614
|
|
|
578
615
|
[[package]]
|
|
579
616
|
name = "hyper"
|
|
580
|
-
version = "
|
|
617
|
+
version = "1.6.0"
|
|
581
618
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
-
checksum = "
|
|
619
|
+
checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
|
|
583
620
|
dependencies = [
|
|
584
621
|
"bytes",
|
|
585
622
|
"futures-channel",
|
|
586
|
-
"futures-core",
|
|
587
623
|
"futures-util",
|
|
588
624
|
"h2",
|
|
589
625
|
"http",
|
|
590
626
|
"http-body",
|
|
591
627
|
"httparse",
|
|
592
|
-
"httpdate",
|
|
593
628
|
"itoa",
|
|
594
629
|
"pin-project-lite",
|
|
595
|
-
"
|
|
630
|
+
"smallvec",
|
|
596
631
|
"tokio",
|
|
597
|
-
"tower-service",
|
|
598
|
-
"tracing",
|
|
599
632
|
"want",
|
|
600
633
|
]
|
|
601
634
|
|
|
635
|
+
[[package]]
|
|
636
|
+
name = "hyper-rustls"
|
|
637
|
+
version = "0.27.5"
|
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
+
checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
|
|
640
|
+
dependencies = [
|
|
641
|
+
"futures-util",
|
|
642
|
+
"http",
|
|
643
|
+
"hyper",
|
|
644
|
+
"hyper-util",
|
|
645
|
+
"rustls",
|
|
646
|
+
"rustls-pki-types",
|
|
647
|
+
"tokio",
|
|
648
|
+
"tokio-rustls",
|
|
649
|
+
"tower-service",
|
|
650
|
+
]
|
|
651
|
+
|
|
602
652
|
[[package]]
|
|
603
653
|
name = "hyper-tls"
|
|
604
|
-
version = "0.
|
|
654
|
+
version = "0.6.0"
|
|
605
655
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
-
checksum = "
|
|
656
|
+
checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
|
|
607
657
|
dependencies = [
|
|
608
658
|
"bytes",
|
|
659
|
+
"http-body-util",
|
|
609
660
|
"hyper",
|
|
661
|
+
"hyper-util",
|
|
610
662
|
"native-tls",
|
|
611
663
|
"tokio",
|
|
612
664
|
"tokio-native-tls",
|
|
665
|
+
"tower-service",
|
|
666
|
+
]
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "hyper-util"
|
|
670
|
+
version = "0.1.11"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
|
|
673
|
+
dependencies = [
|
|
674
|
+
"bytes",
|
|
675
|
+
"futures-channel",
|
|
676
|
+
"futures-util",
|
|
677
|
+
"http",
|
|
678
|
+
"http-body",
|
|
679
|
+
"hyper",
|
|
680
|
+
"libc",
|
|
681
|
+
"pin-project-lite",
|
|
682
|
+
"socket2",
|
|
683
|
+
"tokio",
|
|
684
|
+
"tower-service",
|
|
685
|
+
"tracing",
|
|
613
686
|
]
|
|
614
687
|
|
|
615
688
|
[[package]]
|
|
@@ -653,9 +726,9 @@ dependencies = [
|
|
|
653
726
|
|
|
654
727
|
[[package]]
|
|
655
728
|
name = "icu_locid_transform_data"
|
|
656
|
-
version = "1.5.
|
|
729
|
+
version = "1.5.1"
|
|
657
730
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
658
|
-
checksum = "
|
|
731
|
+
checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
|
|
659
732
|
|
|
660
733
|
[[package]]
|
|
661
734
|
name = "icu_normalizer"
|
|
@@ -677,9 +750,9 @@ dependencies = [
|
|
|
677
750
|
|
|
678
751
|
[[package]]
|
|
679
752
|
name = "icu_normalizer_data"
|
|
680
|
-
version = "1.5.
|
|
753
|
+
version = "1.5.1"
|
|
681
754
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
-
checksum = "
|
|
755
|
+
checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
|
|
683
756
|
|
|
684
757
|
[[package]]
|
|
685
758
|
name = "icu_properties"
|
|
@@ -698,9 +771,9 @@ dependencies = [
|
|
|
698
771
|
|
|
699
772
|
[[package]]
|
|
700
773
|
name = "icu_properties_data"
|
|
701
|
-
version = "1.5.
|
|
774
|
+
version = "1.5.1"
|
|
702
775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
-
checksum = "
|
|
776
|
+
checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
|
|
704
777
|
|
|
705
778
|
[[package]]
|
|
706
779
|
name = "icu_provider"
|
|
@@ -753,9 +826,9 @@ dependencies = [
|
|
|
753
826
|
|
|
754
827
|
[[package]]
|
|
755
828
|
name = "indexmap"
|
|
756
|
-
version = "2.
|
|
829
|
+
version = "2.9.0"
|
|
757
830
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
758
|
-
checksum = "
|
|
831
|
+
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
|
759
832
|
dependencies = [
|
|
760
833
|
"equivalent",
|
|
761
834
|
"hashbrown",
|
|
@@ -769,41 +842,42 @@ checksum = "d8972d5be69940353d5347a1344cb375d9b457d6809b428b05bb1ca2fb9ce007"
|
|
|
769
842
|
|
|
770
843
|
[[package]]
|
|
771
844
|
name = "ipnet"
|
|
772
|
-
version = "2.
|
|
845
|
+
version = "2.11.0"
|
|
773
846
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
774
|
-
checksum = "
|
|
847
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
775
848
|
|
|
776
849
|
[[package]]
|
|
777
850
|
name = "itoa"
|
|
778
|
-
version = "1.0.
|
|
851
|
+
version = "1.0.15"
|
|
779
852
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
-
checksum = "
|
|
853
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
781
854
|
|
|
782
855
|
[[package]]
|
|
783
856
|
name = "js-sys"
|
|
784
|
-
version = "0.3.
|
|
857
|
+
version = "0.3.77"
|
|
785
858
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
-
checksum = "
|
|
859
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
|
787
860
|
dependencies = [
|
|
861
|
+
"once_cell",
|
|
788
862
|
"wasm-bindgen",
|
|
789
863
|
]
|
|
790
864
|
|
|
791
865
|
[[package]]
|
|
792
866
|
name = "kvm-bindings"
|
|
793
|
-
version = "0.
|
|
867
|
+
version = "0.11.1"
|
|
794
868
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
-
checksum = "
|
|
869
|
+
checksum = "3b13baf7bdfda2e10bcb109fcb099ef40cff82374eb6b7cdcf4695bdec4e522c"
|
|
796
870
|
dependencies = [
|
|
797
871
|
"vmm-sys-util",
|
|
798
872
|
]
|
|
799
873
|
|
|
800
874
|
[[package]]
|
|
801
875
|
name = "kvm-ioctls"
|
|
802
|
-
version = "0.
|
|
876
|
+
version = "0.21.0"
|
|
803
877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
804
|
-
checksum = "
|
|
878
|
+
checksum = "083c460d5a272c2f22205973e319147b791d92a288d7d7a8d4c6194f95229440"
|
|
805
879
|
dependencies = [
|
|
806
|
-
"bitflags 2.
|
|
880
|
+
"bitflags 2.9.0",
|
|
807
881
|
"kvm-bindings",
|
|
808
882
|
"libc",
|
|
809
883
|
"vmm-sys-util",
|
|
@@ -820,9 +894,9 @@ dependencies = [
|
|
|
820
894
|
|
|
821
895
|
[[package]]
|
|
822
896
|
name = "libc"
|
|
823
|
-
version = "0.2.
|
|
897
|
+
version = "0.2.171"
|
|
824
898
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
-
checksum = "
|
|
899
|
+
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
|
|
826
900
|
|
|
827
901
|
[[package]]
|
|
828
902
|
name = "libm"
|
|
@@ -836,21 +910,21 @@ version = "0.1.3"
|
|
|
836
910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
911
|
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
838
912
|
dependencies = [
|
|
839
|
-
"bitflags 2.
|
|
913
|
+
"bitflags 2.9.0",
|
|
840
914
|
"libc",
|
|
841
915
|
]
|
|
842
916
|
|
|
843
917
|
[[package]]
|
|
844
918
|
name = "linux-raw-sys"
|
|
845
|
-
version = "0.
|
|
919
|
+
version = "0.9.3"
|
|
846
920
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
-
checksum = "
|
|
921
|
+
checksum = "fe7db12097d22ec582439daf8618b8fdd1a7bef6270e9af3b1ebcd30893cf413"
|
|
848
922
|
|
|
849
923
|
[[package]]
|
|
850
924
|
name = "litemap"
|
|
851
|
-
version = "0.7.
|
|
925
|
+
version = "0.7.4"
|
|
852
926
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
853
|
-
checksum = "
|
|
927
|
+
checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
|
|
854
928
|
|
|
855
929
|
[[package]]
|
|
856
930
|
name = "lock_api"
|
|
@@ -864,9 +938,9 @@ dependencies = [
|
|
|
864
938
|
|
|
865
939
|
[[package]]
|
|
866
940
|
name = "log"
|
|
867
|
-
version = "0.4.
|
|
941
|
+
version = "0.4.27"
|
|
868
942
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
-
checksum = "
|
|
943
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
870
944
|
|
|
871
945
|
[[package]]
|
|
872
946
|
name = "memchr"
|
|
@@ -882,30 +956,29 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
|
882
956
|
|
|
883
957
|
[[package]]
|
|
884
958
|
name = "miniz_oxide"
|
|
885
|
-
version = "0.8.
|
|
959
|
+
version = "0.8.8"
|
|
886
960
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
-
checksum = "
|
|
961
|
+
checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
|
|
888
962
|
dependencies = [
|
|
889
963
|
"adler2",
|
|
890
964
|
]
|
|
891
965
|
|
|
892
966
|
[[package]]
|
|
893
967
|
name = "mio"
|
|
894
|
-
version = "1.0.
|
|
968
|
+
version = "1.0.3"
|
|
895
969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
|
-
checksum = "
|
|
970
|
+
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
|
897
971
|
dependencies = [
|
|
898
|
-
"hermit-abi",
|
|
899
972
|
"libc",
|
|
900
|
-
"wasi",
|
|
973
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
901
974
|
"windows-sys 0.52.0",
|
|
902
975
|
]
|
|
903
976
|
|
|
904
977
|
[[package]]
|
|
905
978
|
name = "native-tls"
|
|
906
|
-
version = "0.2.
|
|
979
|
+
version = "0.2.14"
|
|
907
980
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
-
checksum = "
|
|
981
|
+
checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
|
|
909
982
|
dependencies = [
|
|
910
983
|
"libc",
|
|
911
984
|
"log",
|
|
@@ -967,26 +1040,26 @@ dependencies = [
|
|
|
967
1040
|
|
|
968
1041
|
[[package]]
|
|
969
1042
|
name = "object"
|
|
970
|
-
version = "0.36.
|
|
1043
|
+
version = "0.36.7"
|
|
971
1044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
972
|
-
checksum = "
|
|
1045
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
973
1046
|
dependencies = [
|
|
974
1047
|
"memchr",
|
|
975
1048
|
]
|
|
976
1049
|
|
|
977
1050
|
[[package]]
|
|
978
1051
|
name = "once_cell"
|
|
979
|
-
version = "1.
|
|
1052
|
+
version = "1.21.3"
|
|
980
1053
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
981
|
-
checksum = "
|
|
1054
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
982
1055
|
|
|
983
1056
|
[[package]]
|
|
984
1057
|
name = "openssl"
|
|
985
|
-
version = "0.10.
|
|
1058
|
+
version = "0.10.72"
|
|
986
1059
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
-
checksum = "
|
|
1060
|
+
checksum = "fedfea7d58a1f73118430a55da6a286e7b044961736ce96a16a17068ea25e5da"
|
|
988
1061
|
dependencies = [
|
|
989
|
-
"bitflags 2.
|
|
1062
|
+
"bitflags 2.9.0",
|
|
990
1063
|
"cfg-if",
|
|
991
1064
|
"foreign-types",
|
|
992
1065
|
"libc",
|
|
@@ -1008,18 +1081,28 @@ dependencies = [
|
|
|
1008
1081
|
|
|
1009
1082
|
[[package]]
|
|
1010
1083
|
name = "openssl-probe"
|
|
1011
|
-
version = "0.1.
|
|
1084
|
+
version = "0.1.6"
|
|
1012
1085
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
-
checksum = "
|
|
1086
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
1087
|
+
|
|
1088
|
+
[[package]]
|
|
1089
|
+
name = "openssl-src"
|
|
1090
|
+
version = "300.4.2+3.4.1"
|
|
1091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1092
|
+
checksum = "168ce4e058f975fe43e89d9ccf78ca668601887ae736090aacc23ae353c298e2"
|
|
1093
|
+
dependencies = [
|
|
1094
|
+
"cc",
|
|
1095
|
+
]
|
|
1014
1096
|
|
|
1015
1097
|
[[package]]
|
|
1016
1098
|
name = "openssl-sys"
|
|
1017
|
-
version = "0.9.
|
|
1099
|
+
version = "0.9.107"
|
|
1018
1100
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
-
checksum = "
|
|
1101
|
+
checksum = "8288979acd84749c744a9014b4382d42b8f7b2592847b5afb2ed29e5d16ede07"
|
|
1020
1102
|
dependencies = [
|
|
1021
1103
|
"cc",
|
|
1022
1104
|
"libc",
|
|
1105
|
+
"openssl-src",
|
|
1023
1106
|
"pkg-config",
|
|
1024
1107
|
"vcpkg",
|
|
1025
1108
|
]
|
|
@@ -1032,9 +1115,9 @@ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
|
1032
1115
|
|
|
1033
1116
|
[[package]]
|
|
1034
1117
|
name = "p384"
|
|
1035
|
-
version = "0.13.
|
|
1118
|
+
version = "0.13.1"
|
|
1036
1119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
-
checksum = "
|
|
1120
|
+
checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
|
|
1038
1121
|
dependencies = [
|
|
1039
1122
|
"ecdsa",
|
|
1040
1123
|
"elliptic-curve",
|
|
@@ -1082,9 +1165,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
|
1082
1165
|
|
|
1083
1166
|
[[package]]
|
|
1084
1167
|
name = "pin-project-lite"
|
|
1085
|
-
version = "0.2.
|
|
1168
|
+
version = "0.2.16"
|
|
1086
1169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1087
|
-
checksum = "
|
|
1170
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
1088
1171
|
|
|
1089
1172
|
[[package]]
|
|
1090
1173
|
name = "pin-utils"
|
|
@@ -1115,15 +1198,15 @@ dependencies = [
|
|
|
1115
1198
|
|
|
1116
1199
|
[[package]]
|
|
1117
1200
|
name = "pkg-config"
|
|
1118
|
-
version = "0.3.
|
|
1201
|
+
version = "0.3.32"
|
|
1119
1202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1120
|
-
checksum = "
|
|
1203
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
1121
1204
|
|
|
1122
1205
|
[[package]]
|
|
1123
1206
|
name = "ppv-lite86"
|
|
1124
|
-
version = "0.2.
|
|
1207
|
+
version = "0.2.21"
|
|
1125
1208
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1126
|
-
checksum = "
|
|
1209
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1127
1210
|
dependencies = [
|
|
1128
1211
|
"zerocopy",
|
|
1129
1212
|
]
|
|
@@ -1139,22 +1222,28 @@ dependencies = [
|
|
|
1139
1222
|
|
|
1140
1223
|
[[package]]
|
|
1141
1224
|
name = "proc-macro2"
|
|
1142
|
-
version = "1.0.
|
|
1225
|
+
version = "1.0.94"
|
|
1143
1226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1144
|
-
checksum = "
|
|
1227
|
+
checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
|
|
1145
1228
|
dependencies = [
|
|
1146
1229
|
"unicode-ident",
|
|
1147
1230
|
]
|
|
1148
1231
|
|
|
1149
1232
|
[[package]]
|
|
1150
1233
|
name = "quote"
|
|
1151
|
-
version = "1.0.
|
|
1234
|
+
version = "1.0.40"
|
|
1152
1235
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1153
|
-
checksum = "
|
|
1236
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
1154
1237
|
dependencies = [
|
|
1155
1238
|
"proc-macro2",
|
|
1156
1239
|
]
|
|
1157
1240
|
|
|
1241
|
+
[[package]]
|
|
1242
|
+
name = "r-efi"
|
|
1243
|
+
version = "5.2.0"
|
|
1244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1245
|
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
|
1246
|
+
|
|
1158
1247
|
[[package]]
|
|
1159
1248
|
name = "rand"
|
|
1160
1249
|
version = "0.8.5"
|
|
@@ -1181,7 +1270,7 @@ version = "0.6.4"
|
|
|
1181
1270
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1182
1271
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1183
1272
|
dependencies = [
|
|
1184
|
-
"getrandom",
|
|
1273
|
+
"getrandom 0.2.15",
|
|
1185
1274
|
]
|
|
1186
1275
|
|
|
1187
1276
|
[[package]]
|
|
@@ -1195,40 +1284,44 @@ dependencies = [
|
|
|
1195
1284
|
|
|
1196
1285
|
[[package]]
|
|
1197
1286
|
name = "redox_syscall"
|
|
1198
|
-
version = "0.5.
|
|
1287
|
+
version = "0.5.11"
|
|
1199
1288
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1200
|
-
checksum = "
|
|
1289
|
+
checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
|
|
1201
1290
|
dependencies = [
|
|
1202
|
-
"bitflags 2.
|
|
1291
|
+
"bitflags 2.9.0",
|
|
1203
1292
|
]
|
|
1204
1293
|
|
|
1205
1294
|
[[package]]
|
|
1206
1295
|
name = "redox_users"
|
|
1207
|
-
version = "0.
|
|
1296
|
+
version = "0.5.0"
|
|
1208
1297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
-
checksum = "
|
|
1298
|
+
checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b"
|
|
1210
1299
|
dependencies = [
|
|
1211
|
-
"getrandom",
|
|
1300
|
+
"getrandom 0.2.15",
|
|
1212
1301
|
"libredox",
|
|
1213
1302
|
"thiserror",
|
|
1214
1303
|
]
|
|
1215
1304
|
|
|
1216
1305
|
[[package]]
|
|
1217
1306
|
name = "reqwest"
|
|
1218
|
-
version = "0.
|
|
1307
|
+
version = "0.12.15"
|
|
1219
1308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1220
|
-
checksum = "
|
|
1309
|
+
checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
|
|
1221
1310
|
dependencies = [
|
|
1222
|
-
"base64
|
|
1311
|
+
"base64",
|
|
1223
1312
|
"bytes",
|
|
1224
1313
|
"encoding_rs",
|
|
1314
|
+
"futures-channel",
|
|
1225
1315
|
"futures-core",
|
|
1226
1316
|
"futures-util",
|
|
1227
1317
|
"h2",
|
|
1228
1318
|
"http",
|
|
1229
1319
|
"http-body",
|
|
1320
|
+
"http-body-util",
|
|
1230
1321
|
"hyper",
|
|
1322
|
+
"hyper-rustls",
|
|
1231
1323
|
"hyper-tls",
|
|
1324
|
+
"hyper-util",
|
|
1232
1325
|
"ipnet",
|
|
1233
1326
|
"js-sys",
|
|
1234
1327
|
"log",
|
|
@@ -1245,12 +1338,13 @@ dependencies = [
|
|
|
1245
1338
|
"system-configuration",
|
|
1246
1339
|
"tokio",
|
|
1247
1340
|
"tokio-native-tls",
|
|
1341
|
+
"tower",
|
|
1248
1342
|
"tower-service",
|
|
1249
1343
|
"url",
|
|
1250
1344
|
"wasm-bindgen",
|
|
1251
1345
|
"wasm-bindgen-futures",
|
|
1252
1346
|
"web-sys",
|
|
1253
|
-
"
|
|
1347
|
+
"windows-registry",
|
|
1254
1348
|
]
|
|
1255
1349
|
|
|
1256
1350
|
[[package]]
|
|
@@ -1263,11 +1357,25 @@ dependencies = [
|
|
|
1263
1357
|
"subtle",
|
|
1264
1358
|
]
|
|
1265
1359
|
|
|
1360
|
+
[[package]]
|
|
1361
|
+
name = "ring"
|
|
1362
|
+
version = "0.17.14"
|
|
1363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1364
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1365
|
+
dependencies = [
|
|
1366
|
+
"cc",
|
|
1367
|
+
"cfg-if",
|
|
1368
|
+
"getrandom 0.2.15",
|
|
1369
|
+
"libc",
|
|
1370
|
+
"untrusted",
|
|
1371
|
+
"windows-sys 0.52.0",
|
|
1372
|
+
]
|
|
1373
|
+
|
|
1266
1374
|
[[package]]
|
|
1267
1375
|
name = "rsa"
|
|
1268
|
-
version = "0.9.
|
|
1376
|
+
version = "0.9.8"
|
|
1269
1377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1270
|
-
checksum = "
|
|
1378
|
+
checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b"
|
|
1271
1379
|
dependencies = [
|
|
1272
1380
|
"const-oid",
|
|
1273
1381
|
"digest",
|
|
@@ -1291,37 +1399,73 @@ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
|
1291
1399
|
|
|
1292
1400
|
[[package]]
|
|
1293
1401
|
name = "rustix"
|
|
1294
|
-
version = "0.
|
|
1402
|
+
version = "1.0.5"
|
|
1295
1403
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1296
|
-
checksum = "
|
|
1404
|
+
checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
|
|
1297
1405
|
dependencies = [
|
|
1298
|
-
"bitflags 2.
|
|
1406
|
+
"bitflags 2.9.0",
|
|
1299
1407
|
"errno",
|
|
1300
1408
|
"libc",
|
|
1301
1409
|
"linux-raw-sys",
|
|
1302
|
-
"windows-sys 0.
|
|
1410
|
+
"windows-sys 0.59.0",
|
|
1411
|
+
]
|
|
1412
|
+
|
|
1413
|
+
[[package]]
|
|
1414
|
+
name = "rustls"
|
|
1415
|
+
version = "0.23.25"
|
|
1416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1417
|
+
checksum = "822ee9188ac4ec04a2f0531e55d035fb2de73f18b41a63c70c2712503b6fb13c"
|
|
1418
|
+
dependencies = [
|
|
1419
|
+
"once_cell",
|
|
1420
|
+
"rustls-pki-types",
|
|
1421
|
+
"rustls-webpki",
|
|
1422
|
+
"subtle",
|
|
1423
|
+
"zeroize",
|
|
1303
1424
|
]
|
|
1304
1425
|
|
|
1305
1426
|
[[package]]
|
|
1306
1427
|
name = "rustls-pemfile"
|
|
1307
|
-
version = "
|
|
1428
|
+
version = "2.2.0"
|
|
1429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1430
|
+
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
|
1431
|
+
dependencies = [
|
|
1432
|
+
"rustls-pki-types",
|
|
1433
|
+
]
|
|
1434
|
+
|
|
1435
|
+
[[package]]
|
|
1436
|
+
name = "rustls-pki-types"
|
|
1437
|
+
version = "1.11.0"
|
|
1308
1438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
|
-
checksum = "
|
|
1439
|
+
checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
|
|
1440
|
+
|
|
1441
|
+
[[package]]
|
|
1442
|
+
name = "rustls-webpki"
|
|
1443
|
+
version = "0.103.1"
|
|
1444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1445
|
+
checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
|
|
1310
1446
|
dependencies = [
|
|
1311
|
-
"
|
|
1447
|
+
"ring",
|
|
1448
|
+
"rustls-pki-types",
|
|
1449
|
+
"untrusted",
|
|
1312
1450
|
]
|
|
1313
1451
|
|
|
1452
|
+
[[package]]
|
|
1453
|
+
name = "rustversion"
|
|
1454
|
+
version = "1.0.20"
|
|
1455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1456
|
+
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
|
1457
|
+
|
|
1314
1458
|
[[package]]
|
|
1315
1459
|
name = "ryu"
|
|
1316
|
-
version = "1.0.
|
|
1460
|
+
version = "1.0.20"
|
|
1317
1461
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1318
|
-
checksum = "
|
|
1462
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
1319
1463
|
|
|
1320
1464
|
[[package]]
|
|
1321
1465
|
name = "scc"
|
|
1322
|
-
version = "2.
|
|
1466
|
+
version = "2.3.3"
|
|
1323
1467
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
-
checksum = "
|
|
1468
|
+
checksum = "ea091f6cac2595aa38993f04f4ee692ed43757035c36e67c180b6828356385b1"
|
|
1325
1469
|
dependencies = [
|
|
1326
1470
|
"sdd",
|
|
1327
1471
|
]
|
|
@@ -1343,9 +1487,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
1343
1487
|
|
|
1344
1488
|
[[package]]
|
|
1345
1489
|
name = "sdd"
|
|
1346
|
-
version = "3.0.
|
|
1490
|
+
version = "3.0.8"
|
|
1347
1491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1348
|
-
checksum = "
|
|
1492
|
+
checksum = "584e070911c7017da6cb2eb0788d09f43d789029b5877d3e5ecc8acf86ceee21"
|
|
1349
1493
|
|
|
1350
1494
|
[[package]]
|
|
1351
1495
|
name = "sec1"
|
|
@@ -1367,7 +1511,7 @@ version = "2.11.1"
|
|
|
1367
1511
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1368
1512
|
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
|
1369
1513
|
dependencies = [
|
|
1370
|
-
"bitflags 2.
|
|
1514
|
+
"bitflags 2.9.0",
|
|
1371
1515
|
"core-foundation",
|
|
1372
1516
|
"core-foundation-sys",
|
|
1373
1517
|
"libc",
|
|
@@ -1376,9 +1520,9 @@ dependencies = [
|
|
|
1376
1520
|
|
|
1377
1521
|
[[package]]
|
|
1378
1522
|
name = "security-framework-sys"
|
|
1379
|
-
version = "2.
|
|
1523
|
+
version = "2.14.0"
|
|
1380
1524
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1381
|
-
checksum = "
|
|
1525
|
+
checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
|
|
1382
1526
|
dependencies = [
|
|
1383
1527
|
"core-foundation-sys",
|
|
1384
1528
|
"libc",
|
|
@@ -1386,9 +1530,9 @@ dependencies = [
|
|
|
1386
1530
|
|
|
1387
1531
|
[[package]]
|
|
1388
1532
|
name = "serde"
|
|
1389
|
-
version = "1.0.
|
|
1533
|
+
version = "1.0.219"
|
|
1390
1534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1391
|
-
checksum = "
|
|
1535
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
1392
1536
|
dependencies = [
|
|
1393
1537
|
"serde_derive",
|
|
1394
1538
|
]
|
|
@@ -1404,18 +1548,18 @@ dependencies = [
|
|
|
1404
1548
|
|
|
1405
1549
|
[[package]]
|
|
1406
1550
|
name = "serde_bytes"
|
|
1407
|
-
version = "0.11.
|
|
1551
|
+
version = "0.11.17"
|
|
1408
1552
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1409
|
-
checksum = "
|
|
1553
|
+
checksum = "8437fd221bde2d4ca316d61b90e337e9e702b3820b87d63caa9ba6c02bd06d96"
|
|
1410
1554
|
dependencies = [
|
|
1411
1555
|
"serde",
|
|
1412
1556
|
]
|
|
1413
1557
|
|
|
1414
1558
|
[[package]]
|
|
1415
1559
|
name = "serde_derive"
|
|
1416
|
-
version = "1.0.
|
|
1560
|
+
version = "1.0.219"
|
|
1417
1561
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1418
|
-
checksum = "
|
|
1562
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
1419
1563
|
dependencies = [
|
|
1420
1564
|
"proc-macro2",
|
|
1421
1565
|
"quote",
|
|
@@ -1424,9 +1568,9 @@ dependencies = [
|
|
|
1424
1568
|
|
|
1425
1569
|
[[package]]
|
|
1426
1570
|
name = "serde_json"
|
|
1427
|
-
version = "1.0.
|
|
1571
|
+
version = "1.0.140"
|
|
1428
1572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1429
|
-
checksum = "
|
|
1573
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
|
1430
1574
|
dependencies = [
|
|
1431
1575
|
"itoa",
|
|
1432
1576
|
"memchr",
|
|
@@ -1473,12 +1617,12 @@ dependencies = [
|
|
|
1473
1617
|
|
|
1474
1618
|
[[package]]
|
|
1475
1619
|
name = "sev"
|
|
1476
|
-
version = "
|
|
1620
|
+
version = "6.2.1"
|
|
1477
1621
|
dependencies = [
|
|
1478
|
-
"base64
|
|
1622
|
+
"base64",
|
|
1479
1623
|
"bincode",
|
|
1480
1624
|
"bitfield",
|
|
1481
|
-
"bitflags
|
|
1625
|
+
"bitflags 2.9.0",
|
|
1482
1626
|
"byteorder",
|
|
1483
1627
|
"codicon",
|
|
1484
1628
|
"dirs",
|
|
@@ -1542,15 +1686,15 @@ dependencies = [
|
|
|
1542
1686
|
|
|
1543
1687
|
[[package]]
|
|
1544
1688
|
name = "smallvec"
|
|
1545
|
-
version = "1.
|
|
1689
|
+
version = "1.15.0"
|
|
1546
1690
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1547
|
-
checksum = "
|
|
1691
|
+
checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
|
1548
1692
|
|
|
1549
1693
|
[[package]]
|
|
1550
1694
|
name = "socket2"
|
|
1551
|
-
version = "0.5.
|
|
1695
|
+
version = "0.5.9"
|
|
1552
1696
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1553
|
-
checksum = "
|
|
1697
|
+
checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
|
|
1554
1698
|
dependencies = [
|
|
1555
1699
|
"libc",
|
|
1556
1700
|
"windows-sys 0.52.0",
|
|
@@ -1592,9 +1736,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
1592
1736
|
|
|
1593
1737
|
[[package]]
|
|
1594
1738
|
name = "syn"
|
|
1595
|
-
version = "2.0.
|
|
1739
|
+
version = "2.0.100"
|
|
1596
1740
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1597
|
-
checksum = "
|
|
1741
|
+
checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
|
|
1598
1742
|
dependencies = [
|
|
1599
1743
|
"proc-macro2",
|
|
1600
1744
|
"quote",
|
|
@@ -1603,9 +1747,12 @@ dependencies = [
|
|
|
1603
1747
|
|
|
1604
1748
|
[[package]]
|
|
1605
1749
|
name = "sync_wrapper"
|
|
1606
|
-
version = "0.
|
|
1750
|
+
version = "1.0.2"
|
|
1607
1751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1608
|
-
checksum = "
|
|
1752
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
1753
|
+
dependencies = [
|
|
1754
|
+
"futures-core",
|
|
1755
|
+
]
|
|
1609
1756
|
|
|
1610
1757
|
[[package]]
|
|
1611
1758
|
name = "synstructure"
|
|
@@ -1620,20 +1767,20 @@ dependencies = [
|
|
|
1620
1767
|
|
|
1621
1768
|
[[package]]
|
|
1622
1769
|
name = "system-configuration"
|
|
1623
|
-
version = "0.
|
|
1770
|
+
version = "0.6.1"
|
|
1624
1771
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1625
|
-
checksum = "
|
|
1772
|
+
checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
|
|
1626
1773
|
dependencies = [
|
|
1627
|
-
"bitflags
|
|
1774
|
+
"bitflags 2.9.0",
|
|
1628
1775
|
"core-foundation",
|
|
1629
1776
|
"system-configuration-sys",
|
|
1630
1777
|
]
|
|
1631
1778
|
|
|
1632
1779
|
[[package]]
|
|
1633
1780
|
name = "system-configuration-sys"
|
|
1634
|
-
version = "0.
|
|
1781
|
+
version = "0.6.0"
|
|
1635
1782
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1636
|
-
checksum = "
|
|
1783
|
+
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
|
|
1637
1784
|
dependencies = [
|
|
1638
1785
|
"core-foundation-sys",
|
|
1639
1786
|
"libc",
|
|
@@ -1641,12 +1788,12 @@ dependencies = [
|
|
|
1641
1788
|
|
|
1642
1789
|
[[package]]
|
|
1643
1790
|
name = "tempfile"
|
|
1644
|
-
version = "3.
|
|
1791
|
+
version = "3.19.1"
|
|
1645
1792
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1646
|
-
checksum = "
|
|
1793
|
+
checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
|
|
1647
1794
|
dependencies = [
|
|
1648
|
-
"cfg-if",
|
|
1649
1795
|
"fastrand",
|
|
1796
|
+
"getrandom 0.3.2",
|
|
1650
1797
|
"once_cell",
|
|
1651
1798
|
"rustix",
|
|
1652
1799
|
"windows-sys 0.59.0",
|
|
@@ -1654,18 +1801,18 @@ dependencies = [
|
|
|
1654
1801
|
|
|
1655
1802
|
[[package]]
|
|
1656
1803
|
name = "thiserror"
|
|
1657
|
-
version = "
|
|
1804
|
+
version = "2.0.12"
|
|
1658
1805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1659
|
-
checksum = "
|
|
1806
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
|
1660
1807
|
dependencies = [
|
|
1661
1808
|
"thiserror-impl",
|
|
1662
1809
|
]
|
|
1663
1810
|
|
|
1664
1811
|
[[package]]
|
|
1665
1812
|
name = "thiserror-impl"
|
|
1666
|
-
version = "
|
|
1813
|
+
version = "2.0.12"
|
|
1667
1814
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1668
|
-
checksum = "
|
|
1815
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
1669
1816
|
dependencies = [
|
|
1670
1817
|
"proc-macro2",
|
|
1671
1818
|
"quote",
|
|
@@ -1684,9 +1831,9 @@ dependencies = [
|
|
|
1684
1831
|
|
|
1685
1832
|
[[package]]
|
|
1686
1833
|
name = "tls_codec"
|
|
1687
|
-
version = "0.4.
|
|
1834
|
+
version = "0.4.2"
|
|
1688
1835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1689
|
-
checksum = "
|
|
1836
|
+
checksum = "0de2e01245e2bb89d6f05801c564fa27624dbd7b1846859876c7dad82e90bf6b"
|
|
1690
1837
|
dependencies = [
|
|
1691
1838
|
"tls_codec_derive",
|
|
1692
1839
|
"zeroize",
|
|
@@ -1694,9 +1841,9 @@ dependencies = [
|
|
|
1694
1841
|
|
|
1695
1842
|
[[package]]
|
|
1696
1843
|
name = "tls_codec_derive"
|
|
1697
|
-
version = "0.4.
|
|
1844
|
+
version = "0.4.2"
|
|
1698
1845
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1699
|
-
checksum = "
|
|
1846
|
+
checksum = "2d2e76690929402faae40aebdda620a2c0e25dd6d3b9afe48867dfd95991f4bd"
|
|
1700
1847
|
dependencies = [
|
|
1701
1848
|
"proc-macro2",
|
|
1702
1849
|
"quote",
|
|
@@ -1705,9 +1852,9 @@ dependencies = [
|
|
|
1705
1852
|
|
|
1706
1853
|
[[package]]
|
|
1707
1854
|
name = "tokio"
|
|
1708
|
-
version = "1.
|
|
1855
|
+
version = "1.44.2"
|
|
1709
1856
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1710
|
-
checksum = "
|
|
1857
|
+
checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
|
|
1711
1858
|
dependencies = [
|
|
1712
1859
|
"backtrace",
|
|
1713
1860
|
"bytes",
|
|
@@ -1728,11 +1875,21 @@ dependencies = [
|
|
|
1728
1875
|
"tokio",
|
|
1729
1876
|
]
|
|
1730
1877
|
|
|
1878
|
+
[[package]]
|
|
1879
|
+
name = "tokio-rustls"
|
|
1880
|
+
version = "0.26.2"
|
|
1881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1882
|
+
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
|
|
1883
|
+
dependencies = [
|
|
1884
|
+
"rustls",
|
|
1885
|
+
"tokio",
|
|
1886
|
+
]
|
|
1887
|
+
|
|
1731
1888
|
[[package]]
|
|
1732
1889
|
name = "tokio-util"
|
|
1733
|
-
version = "0.7.
|
|
1890
|
+
version = "0.7.14"
|
|
1734
1891
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1735
|
-
checksum = "
|
|
1892
|
+
checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034"
|
|
1736
1893
|
dependencies = [
|
|
1737
1894
|
"bytes",
|
|
1738
1895
|
"futures-core",
|
|
@@ -1741,6 +1898,27 @@ dependencies = [
|
|
|
1741
1898
|
"tokio",
|
|
1742
1899
|
]
|
|
1743
1900
|
|
|
1901
|
+
[[package]]
|
|
1902
|
+
name = "tower"
|
|
1903
|
+
version = "0.5.2"
|
|
1904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1905
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
|
1906
|
+
dependencies = [
|
|
1907
|
+
"futures-core",
|
|
1908
|
+
"futures-util",
|
|
1909
|
+
"pin-project-lite",
|
|
1910
|
+
"sync_wrapper",
|
|
1911
|
+
"tokio",
|
|
1912
|
+
"tower-layer",
|
|
1913
|
+
"tower-service",
|
|
1914
|
+
]
|
|
1915
|
+
|
|
1916
|
+
[[package]]
|
|
1917
|
+
name = "tower-layer"
|
|
1918
|
+
version = "0.3.3"
|
|
1919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1920
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
1921
|
+
|
|
1744
1922
|
[[package]]
|
|
1745
1923
|
name = "tower-service"
|
|
1746
1924
|
version = "0.3.3"
|
|
@@ -1749,9 +1927,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
|
1749
1927
|
|
|
1750
1928
|
[[package]]
|
|
1751
1929
|
name = "tracing"
|
|
1752
|
-
version = "0.1.
|
|
1930
|
+
version = "0.1.41"
|
|
1753
1931
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1754
|
-
checksum = "
|
|
1932
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
1755
1933
|
dependencies = [
|
|
1756
1934
|
"pin-project-lite",
|
|
1757
1935
|
"tracing-core",
|
|
@@ -1759,9 +1937,9 @@ dependencies = [
|
|
|
1759
1937
|
|
|
1760
1938
|
[[package]]
|
|
1761
1939
|
name = "tracing-core"
|
|
1762
|
-
version = "0.1.
|
|
1940
|
+
version = "0.1.33"
|
|
1763
1941
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1764
|
-
checksum = "
|
|
1942
|
+
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
|
1765
1943
|
dependencies = [
|
|
1766
1944
|
"once_cell",
|
|
1767
1945
|
]
|
|
@@ -1774,21 +1952,33 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
1774
1952
|
|
|
1775
1953
|
[[package]]
|
|
1776
1954
|
name = "typenum"
|
|
1777
|
-
version = "1.
|
|
1955
|
+
version = "1.18.0"
|
|
1778
1956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1779
|
-
checksum = "
|
|
1957
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
|
1780
1958
|
|
|
1781
1959
|
[[package]]
|
|
1782
1960
|
name = "unicode-ident"
|
|
1783
|
-
version = "1.0.
|
|
1961
|
+
version = "1.0.18"
|
|
1784
1962
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1785
|
-
checksum = "
|
|
1963
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
1964
|
+
|
|
1965
|
+
[[package]]
|
|
1966
|
+
name = "untrusted"
|
|
1967
|
+
version = "0.9.0"
|
|
1968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1969
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
1970
|
+
|
|
1971
|
+
[[package]]
|
|
1972
|
+
name = "unty"
|
|
1973
|
+
version = "0.0.4"
|
|
1974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1975
|
+
checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
|
|
1786
1976
|
|
|
1787
1977
|
[[package]]
|
|
1788
1978
|
name = "url"
|
|
1789
|
-
version = "2.5.
|
|
1979
|
+
version = "2.5.4"
|
|
1790
1980
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1791
|
-
checksum = "
|
|
1981
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
|
1792
1982
|
dependencies = [
|
|
1793
1983
|
"form_urlencoded",
|
|
1794
1984
|
"idna",
|
|
@@ -1809,9 +1999,9 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
|
1809
1999
|
|
|
1810
2000
|
[[package]]
|
|
1811
2001
|
name = "uuid"
|
|
1812
|
-
version = "1.
|
|
2002
|
+
version = "1.16.0"
|
|
1813
2003
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1814
|
-
checksum = "
|
|
2004
|
+
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
|
|
1815
2005
|
dependencies = [
|
|
1816
2006
|
"serde",
|
|
1817
2007
|
]
|
|
@@ -1828,6 +2018,12 @@ version = "0.9.5"
|
|
|
1828
2018
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1829
2019
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1830
2020
|
|
|
2021
|
+
[[package]]
|
|
2022
|
+
name = "virtue"
|
|
2023
|
+
version = "0.0.18"
|
|
2024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2025
|
+
checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
|
|
2026
|
+
|
|
1831
2027
|
[[package]]
|
|
1832
2028
|
name = "vmm-sys-util"
|
|
1833
2029
|
version = "0.12.1"
|
|
@@ -1853,26 +2049,35 @@ version = "0.11.0+wasi-snapshot-preview1"
|
|
|
1853
2049
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1854
2050
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
1855
2051
|
|
|
2052
|
+
[[package]]
|
|
2053
|
+
name = "wasi"
|
|
2054
|
+
version = "0.14.2+wasi-0.2.4"
|
|
2055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2056
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
|
2057
|
+
dependencies = [
|
|
2058
|
+
"wit-bindgen-rt",
|
|
2059
|
+
]
|
|
2060
|
+
|
|
1856
2061
|
[[package]]
|
|
1857
2062
|
name = "wasm-bindgen"
|
|
1858
|
-
version = "0.2.
|
|
2063
|
+
version = "0.2.100"
|
|
1859
2064
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1860
|
-
checksum = "
|
|
2065
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
1861
2066
|
dependencies = [
|
|
1862
2067
|
"cfg-if",
|
|
1863
2068
|
"once_cell",
|
|
2069
|
+
"rustversion",
|
|
1864
2070
|
"wasm-bindgen-macro",
|
|
1865
2071
|
]
|
|
1866
2072
|
|
|
1867
2073
|
[[package]]
|
|
1868
2074
|
name = "wasm-bindgen-backend"
|
|
1869
|
-
version = "0.2.
|
|
2075
|
+
version = "0.2.100"
|
|
1870
2076
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1871
|
-
checksum = "
|
|
2077
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
1872
2078
|
dependencies = [
|
|
1873
2079
|
"bumpalo",
|
|
1874
2080
|
"log",
|
|
1875
|
-
"once_cell",
|
|
1876
2081
|
"proc-macro2",
|
|
1877
2082
|
"quote",
|
|
1878
2083
|
"syn",
|
|
@@ -1881,21 +2086,22 @@ dependencies = [
|
|
|
1881
2086
|
|
|
1882
2087
|
[[package]]
|
|
1883
2088
|
name = "wasm-bindgen-futures"
|
|
1884
|
-
version = "0.4.
|
|
2089
|
+
version = "0.4.50"
|
|
1885
2090
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1886
|
-
checksum = "
|
|
2091
|
+
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
|
|
1887
2092
|
dependencies = [
|
|
1888
2093
|
"cfg-if",
|
|
1889
2094
|
"js-sys",
|
|
2095
|
+
"once_cell",
|
|
1890
2096
|
"wasm-bindgen",
|
|
1891
2097
|
"web-sys",
|
|
1892
2098
|
]
|
|
1893
2099
|
|
|
1894
2100
|
[[package]]
|
|
1895
2101
|
name = "wasm-bindgen-macro"
|
|
1896
|
-
version = "0.2.
|
|
2102
|
+
version = "0.2.100"
|
|
1897
2103
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1898
|
-
checksum = "
|
|
2104
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
|
1899
2105
|
dependencies = [
|
|
1900
2106
|
"quote",
|
|
1901
2107
|
"wasm-bindgen-macro-support",
|
|
@@ -1903,9 +2109,9 @@ dependencies = [
|
|
|
1903
2109
|
|
|
1904
2110
|
[[package]]
|
|
1905
2111
|
name = "wasm-bindgen-macro-support"
|
|
1906
|
-
version = "0.2.
|
|
2112
|
+
version = "0.2.100"
|
|
1907
2113
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1908
|
-
checksum = "
|
|
2114
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
1909
2115
|
dependencies = [
|
|
1910
2116
|
"proc-macro2",
|
|
1911
2117
|
"quote",
|
|
@@ -1916,27 +2122,56 @@ dependencies = [
|
|
|
1916
2122
|
|
|
1917
2123
|
[[package]]
|
|
1918
2124
|
name = "wasm-bindgen-shared"
|
|
1919
|
-
version = "0.2.
|
|
2125
|
+
version = "0.2.100"
|
|
1920
2126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1921
|
-
checksum = "
|
|
2127
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
2128
|
+
dependencies = [
|
|
2129
|
+
"unicode-ident",
|
|
2130
|
+
]
|
|
1922
2131
|
|
|
1923
2132
|
[[package]]
|
|
1924
2133
|
name = "web-sys"
|
|
1925
|
-
version = "0.3.
|
|
2134
|
+
version = "0.3.77"
|
|
1926
2135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1927
|
-
checksum = "
|
|
2136
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
|
1928
2137
|
dependencies = [
|
|
1929
2138
|
"js-sys",
|
|
1930
2139
|
"wasm-bindgen",
|
|
1931
2140
|
]
|
|
1932
2141
|
|
|
1933
2142
|
[[package]]
|
|
1934
|
-
name = "windows-
|
|
1935
|
-
version = "0.
|
|
2143
|
+
name = "windows-link"
|
|
2144
|
+
version = "0.1.1"
|
|
2145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2146
|
+
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
|
2147
|
+
|
|
2148
|
+
[[package]]
|
|
2149
|
+
name = "windows-registry"
|
|
2150
|
+
version = "0.4.0"
|
|
1936
2151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1937
|
-
checksum = "
|
|
2152
|
+
checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
|
|
1938
2153
|
dependencies = [
|
|
1939
|
-
"windows-
|
|
2154
|
+
"windows-result",
|
|
2155
|
+
"windows-strings",
|
|
2156
|
+
"windows-targets 0.53.0",
|
|
2157
|
+
]
|
|
2158
|
+
|
|
2159
|
+
[[package]]
|
|
2160
|
+
name = "windows-result"
|
|
2161
|
+
version = "0.3.2"
|
|
2162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2163
|
+
checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
|
|
2164
|
+
dependencies = [
|
|
2165
|
+
"windows-link",
|
|
2166
|
+
]
|
|
2167
|
+
|
|
2168
|
+
[[package]]
|
|
2169
|
+
name = "windows-strings"
|
|
2170
|
+
version = "0.3.1"
|
|
2171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2172
|
+
checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
|
|
2173
|
+
dependencies = [
|
|
2174
|
+
"windows-link",
|
|
1940
2175
|
]
|
|
1941
2176
|
|
|
1942
2177
|
[[package]]
|
|
@@ -1957,21 +2192,6 @@ dependencies = [
|
|
|
1957
2192
|
"windows-targets 0.52.6",
|
|
1958
2193
|
]
|
|
1959
2194
|
|
|
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
2195
|
[[package]]
|
|
1976
2196
|
name = "windows-targets"
|
|
1977
2197
|
version = "0.52.6"
|
|
@@ -1981,7 +2201,7 @@ dependencies = [
|
|
|
1981
2201
|
"windows_aarch64_gnullvm 0.52.6",
|
|
1982
2202
|
"windows_aarch64_msvc 0.52.6",
|
|
1983
2203
|
"windows_i686_gnu 0.52.6",
|
|
1984
|
-
"windows_i686_gnullvm",
|
|
2204
|
+
"windows_i686_gnullvm 0.52.6",
|
|
1985
2205
|
"windows_i686_msvc 0.52.6",
|
|
1986
2206
|
"windows_x86_64_gnu 0.52.6",
|
|
1987
2207
|
"windows_x86_64_gnullvm 0.52.6",
|
|
@@ -1989,10 +2209,20 @@ dependencies = [
|
|
|
1989
2209
|
]
|
|
1990
2210
|
|
|
1991
2211
|
[[package]]
|
|
1992
|
-
name = "
|
|
1993
|
-
version = "0.
|
|
2212
|
+
name = "windows-targets"
|
|
2213
|
+
version = "0.53.0"
|
|
1994
2214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1995
|
-
checksum = "
|
|
2215
|
+
checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
|
|
2216
|
+
dependencies = [
|
|
2217
|
+
"windows_aarch64_gnullvm 0.53.0",
|
|
2218
|
+
"windows_aarch64_msvc 0.53.0",
|
|
2219
|
+
"windows_i686_gnu 0.53.0",
|
|
2220
|
+
"windows_i686_gnullvm 0.53.0",
|
|
2221
|
+
"windows_i686_msvc 0.53.0",
|
|
2222
|
+
"windows_x86_64_gnu 0.53.0",
|
|
2223
|
+
"windows_x86_64_gnullvm 0.53.0",
|
|
2224
|
+
"windows_x86_64_msvc 0.53.0",
|
|
2225
|
+
]
|
|
1996
2226
|
|
|
1997
2227
|
[[package]]
|
|
1998
2228
|
name = "windows_aarch64_gnullvm"
|
|
@@ -2001,10 +2231,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2001
2231
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2002
2232
|
|
|
2003
2233
|
[[package]]
|
|
2004
|
-
name = "
|
|
2005
|
-
version = "0.
|
|
2234
|
+
name = "windows_aarch64_gnullvm"
|
|
2235
|
+
version = "0.53.0"
|
|
2006
2236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2007
|
-
checksum = "
|
|
2237
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
2008
2238
|
|
|
2009
2239
|
[[package]]
|
|
2010
2240
|
name = "windows_aarch64_msvc"
|
|
@@ -2013,10 +2243,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2013
2243
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2014
2244
|
|
|
2015
2245
|
[[package]]
|
|
2016
|
-
name = "
|
|
2017
|
-
version = "0.
|
|
2246
|
+
name = "windows_aarch64_msvc"
|
|
2247
|
+
version = "0.53.0"
|
|
2018
2248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2019
|
-
checksum = "
|
|
2249
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
2020
2250
|
|
|
2021
2251
|
[[package]]
|
|
2022
2252
|
name = "windows_i686_gnu"
|
|
@@ -2024,6 +2254,12 @@ version = "0.52.6"
|
|
|
2024
2254
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2025
2255
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2026
2256
|
|
|
2257
|
+
[[package]]
|
|
2258
|
+
name = "windows_i686_gnu"
|
|
2259
|
+
version = "0.53.0"
|
|
2260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2261
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
|
2262
|
+
|
|
2027
2263
|
[[package]]
|
|
2028
2264
|
name = "windows_i686_gnullvm"
|
|
2029
2265
|
version = "0.52.6"
|
|
@@ -2031,10 +2267,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2031
2267
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2032
2268
|
|
|
2033
2269
|
[[package]]
|
|
2034
|
-
name = "
|
|
2035
|
-
version = "0.
|
|
2270
|
+
name = "windows_i686_gnullvm"
|
|
2271
|
+
version = "0.53.0"
|
|
2036
2272
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2037
|
-
checksum = "
|
|
2273
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
2038
2274
|
|
|
2039
2275
|
[[package]]
|
|
2040
2276
|
name = "windows_i686_msvc"
|
|
@@ -2043,10 +2279,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2043
2279
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2044
2280
|
|
|
2045
2281
|
[[package]]
|
|
2046
|
-
name = "
|
|
2047
|
-
version = "0.
|
|
2282
|
+
name = "windows_i686_msvc"
|
|
2283
|
+
version = "0.53.0"
|
|
2048
2284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2049
|
-
checksum = "
|
|
2285
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
2050
2286
|
|
|
2051
2287
|
[[package]]
|
|
2052
2288
|
name = "windows_x86_64_gnu"
|
|
@@ -2055,10 +2291,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2055
2291
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2056
2292
|
|
|
2057
2293
|
[[package]]
|
|
2058
|
-
name = "
|
|
2059
|
-
version = "0.
|
|
2294
|
+
name = "windows_x86_64_gnu"
|
|
2295
|
+
version = "0.53.0"
|
|
2060
2296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2061
|
-
checksum = "
|
|
2297
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
2062
2298
|
|
|
2063
2299
|
[[package]]
|
|
2064
2300
|
name = "windows_x86_64_gnullvm"
|
|
@@ -2067,10 +2303,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2067
2303
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2068
2304
|
|
|
2069
2305
|
[[package]]
|
|
2070
|
-
name = "
|
|
2071
|
-
version = "0.
|
|
2306
|
+
name = "windows_x86_64_gnullvm"
|
|
2307
|
+
version = "0.53.0"
|
|
2072
2308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2073
|
-
checksum = "
|
|
2309
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
2074
2310
|
|
|
2075
2311
|
[[package]]
|
|
2076
2312
|
name = "windows_x86_64_msvc"
|
|
@@ -2079,13 +2315,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2079
2315
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2080
2316
|
|
|
2081
2317
|
[[package]]
|
|
2082
|
-
name = "
|
|
2083
|
-
version = "0.
|
|
2318
|
+
name = "windows_x86_64_msvc"
|
|
2319
|
+
version = "0.53.0"
|
|
2320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2321
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
2322
|
+
|
|
2323
|
+
[[package]]
|
|
2324
|
+
name = "wit-bindgen-rt"
|
|
2325
|
+
version = "0.39.0"
|
|
2084
2326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2085
|
-
checksum = "
|
|
2327
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
2086
2328
|
dependencies = [
|
|
2087
|
-
"
|
|
2088
|
-
"windows-sys 0.48.0",
|
|
2329
|
+
"bitflags 2.9.0",
|
|
2089
2330
|
]
|
|
2090
2331
|
|
|
2091
2332
|
[[package]]
|
|
@@ -2114,9 +2355,9 @@ dependencies = [
|
|
|
2114
2355
|
|
|
2115
2356
|
[[package]]
|
|
2116
2357
|
name = "yoke"
|
|
2117
|
-
version = "0.7.
|
|
2358
|
+
version = "0.7.5"
|
|
2118
2359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2119
|
-
checksum = "
|
|
2360
|
+
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
|
2120
2361
|
dependencies = [
|
|
2121
2362
|
"serde",
|
|
2122
2363
|
"stable_deref_trait",
|
|
@@ -2126,9 +2367,9 @@ dependencies = [
|
|
|
2126
2367
|
|
|
2127
2368
|
[[package]]
|
|
2128
2369
|
name = "yoke-derive"
|
|
2129
|
-
version = "0.7.
|
|
2370
|
+
version = "0.7.5"
|
|
2130
2371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2131
|
-
checksum = "
|
|
2372
|
+
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
2132
2373
|
dependencies = [
|
|
2133
2374
|
"proc-macro2",
|
|
2134
2375
|
"quote",
|
|
@@ -2138,19 +2379,18 @@ dependencies = [
|
|
|
2138
2379
|
|
|
2139
2380
|
[[package]]
|
|
2140
2381
|
name = "zerocopy"
|
|
2141
|
-
version = "0.
|
|
2382
|
+
version = "0.8.24"
|
|
2142
2383
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2143
|
-
checksum = "
|
|
2384
|
+
checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
|
|
2144
2385
|
dependencies = [
|
|
2145
|
-
"byteorder",
|
|
2146
2386
|
"zerocopy-derive",
|
|
2147
2387
|
]
|
|
2148
2388
|
|
|
2149
2389
|
[[package]]
|
|
2150
2390
|
name = "zerocopy-derive"
|
|
2151
|
-
version = "0.
|
|
2391
|
+
version = "0.8.24"
|
|
2152
2392
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2153
|
-
checksum = "
|
|
2393
|
+
checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
|
|
2154
2394
|
dependencies = [
|
|
2155
2395
|
"proc-macro2",
|
|
2156
2396
|
"quote",
|
|
@@ -2159,18 +2399,18 @@ dependencies = [
|
|
|
2159
2399
|
|
|
2160
2400
|
[[package]]
|
|
2161
2401
|
name = "zerofrom"
|
|
2162
|
-
version = "0.1.
|
|
2402
|
+
version = "0.1.5"
|
|
2163
2403
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2164
|
-
checksum = "
|
|
2404
|
+
checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
|
|
2165
2405
|
dependencies = [
|
|
2166
2406
|
"zerofrom-derive",
|
|
2167
2407
|
]
|
|
2168
2408
|
|
|
2169
2409
|
[[package]]
|
|
2170
2410
|
name = "zerofrom-derive"
|
|
2171
|
-
version = "0.1.
|
|
2411
|
+
version = "0.1.6"
|
|
2172
2412
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2173
|
-
checksum = "
|
|
2413
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
2174
2414
|
dependencies = [
|
|
2175
2415
|
"proc-macro2",
|
|
2176
2416
|
"quote",
|