@super-protocol/addons-tee 0.9.7 → 0.9.9
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 +0 -27
- package/bindings/amd-sev-snp-napi-rs/index.js +1 -12
- package/bindings/sp-sev/.github/workflows/lint.yml +3 -3
- package/bindings/sp-sev/.github/workflows/test.yml +2 -163
- package/bindings/sp-sev/Cargo.lock +281 -521
- package/bindings/sp-sev/Cargo.toml +11 -11
- package/bindings/sp-sev/tests/api.rs +6 -9
- package/bindings/sp-sev/tests/certs.rs +5 -4
- package/bindings/sp-sev/tests/guest.rs +1 -2
- package/bindings/sp-sev/tests/id-block.rs +5 -9
- 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 +0 -1
- package/dist/sgx-native-module/index.js +1 -2
- package/dist/sgx-native-module/sev-snp-mrenclave.d.ts +1 -1
- package/dist/sgx-native-module/sev-snp-mrenclave.js +6 -38
- package/dist/sgx-native-module/sev-snp.d.ts +9 -21
- package/dist/sgx-native-module/sev-snp.js +91 -107
- package/package.json +2 -3
- package/dist/sgx-native-module/sev-snp-schema.d.ts +0 -22
- package/dist/sgx-native-module/sev-snp-schema.js +0 -24
|
@@ -17,12 +17,6 @@ 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
|
-
|
|
26
20
|
[[package]]
|
|
27
21
|
name = "autocfg"
|
|
28
22
|
version = "1.4.0"
|
|
@@ -50,6 +44,12 @@ version = "0.2.0"
|
|
|
50
44
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
45
|
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
|
|
52
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
53
|
[[package]]
|
|
54
54
|
name = "base64"
|
|
55
55
|
version = "0.22.1"
|
|
@@ -64,43 +64,18 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
|
|
|
64
64
|
|
|
65
65
|
[[package]]
|
|
66
66
|
name = "bincode"
|
|
67
|
-
version = "
|
|
67
|
+
version = "1.3.3"
|
|
68
68
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
-
checksum = "
|
|
69
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
70
70
|
dependencies = [
|
|
71
|
-
"bincode_derive",
|
|
72
71
|
"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",
|
|
83
72
|
]
|
|
84
73
|
|
|
85
74
|
[[package]]
|
|
86
75
|
name = "bitfield"
|
|
87
|
-
version = "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"
|
|
76
|
+
version = "0.15.0"
|
|
97
77
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
-
checksum = "
|
|
99
|
-
dependencies = [
|
|
100
|
-
"proc-macro2",
|
|
101
|
-
"quote",
|
|
102
|
-
"syn",
|
|
103
|
-
]
|
|
78
|
+
checksum = "c821a6e124197eb56d907ccc2188eab1038fb919c914f47976e64dd8dbc855d1"
|
|
104
79
|
|
|
105
80
|
[[package]]
|
|
106
81
|
name = "bitflags"
|
|
@@ -110,9 +85,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
110
85
|
|
|
111
86
|
[[package]]
|
|
112
87
|
name = "bitflags"
|
|
113
|
-
version = "2.
|
|
88
|
+
version = "2.6.0"
|
|
114
89
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
-
checksum = "
|
|
90
|
+
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
|
116
91
|
|
|
117
92
|
[[package]]
|
|
118
93
|
name = "block-buffer"
|
|
@@ -125,9 +100,9 @@ dependencies = [
|
|
|
125
100
|
|
|
126
101
|
[[package]]
|
|
127
102
|
name = "bumpalo"
|
|
128
|
-
version = "3.
|
|
103
|
+
version = "3.16.0"
|
|
129
104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
-
checksum = "
|
|
105
|
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
|
131
106
|
|
|
132
107
|
[[package]]
|
|
133
108
|
name = "byteorder"
|
|
@@ -137,15 +112,15 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
137
112
|
|
|
138
113
|
[[package]]
|
|
139
114
|
name = "bytes"
|
|
140
|
-
version = "1.
|
|
115
|
+
version = "1.8.0"
|
|
141
116
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
142
|
-
checksum = "
|
|
117
|
+
checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da"
|
|
143
118
|
|
|
144
119
|
[[package]]
|
|
145
120
|
name = "cc"
|
|
146
|
-
version = "1.2.
|
|
121
|
+
version = "1.2.1"
|
|
147
122
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
148
|
-
checksum = "
|
|
123
|
+
checksum = "fd9de9f2205d5ef3fd67e685b0df337994ddd4495e2a28d185500d0e1edfea47"
|
|
149
124
|
dependencies = [
|
|
150
125
|
"shlex",
|
|
151
126
|
]
|
|
@@ -186,9 +161,9 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
|
186
161
|
|
|
187
162
|
[[package]]
|
|
188
163
|
name = "cpufeatures"
|
|
189
|
-
version = "0.2.
|
|
164
|
+
version = "0.2.15"
|
|
190
165
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
-
checksum = "
|
|
166
|
+
checksum = "0ca741a962e1b0bff6d724a1a0958b686406e853bb14061f218562e1896f95e6"
|
|
192
167
|
dependencies = [
|
|
193
168
|
"libc",
|
|
194
169
|
]
|
|
@@ -253,23 +228,23 @@ dependencies = [
|
|
|
253
228
|
|
|
254
229
|
[[package]]
|
|
255
230
|
name = "dirs"
|
|
256
|
-
version = "
|
|
231
|
+
version = "5.0.1"
|
|
257
232
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
-
checksum = "
|
|
233
|
+
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
|
|
259
234
|
dependencies = [
|
|
260
235
|
"dirs-sys",
|
|
261
236
|
]
|
|
262
237
|
|
|
263
238
|
[[package]]
|
|
264
239
|
name = "dirs-sys"
|
|
265
|
-
version = "0.
|
|
240
|
+
version = "0.4.1"
|
|
266
241
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
-
checksum = "
|
|
242
|
+
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
|
|
268
243
|
dependencies = [
|
|
269
244
|
"libc",
|
|
270
245
|
"option-ext",
|
|
271
246
|
"redox_users",
|
|
272
|
-
"windows-sys 0.
|
|
247
|
+
"windows-sys 0.48.0",
|
|
273
248
|
]
|
|
274
249
|
|
|
275
250
|
[[package]]
|
|
@@ -329,31 +304,31 @@ dependencies = [
|
|
|
329
304
|
|
|
330
305
|
[[package]]
|
|
331
306
|
name = "equivalent"
|
|
332
|
-
version = "1.0.
|
|
307
|
+
version = "1.0.1"
|
|
333
308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
-
checksum = "
|
|
309
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
335
310
|
|
|
336
311
|
[[package]]
|
|
337
312
|
name = "errno"
|
|
338
|
-
version = "0.3.
|
|
313
|
+
version = "0.3.9"
|
|
339
314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
-
checksum = "
|
|
315
|
+
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
|
341
316
|
dependencies = [
|
|
342
317
|
"libc",
|
|
343
|
-
"windows-sys 0.
|
|
318
|
+
"windows-sys 0.52.0",
|
|
344
319
|
]
|
|
345
320
|
|
|
346
321
|
[[package]]
|
|
347
322
|
name = "fastrand"
|
|
348
|
-
version = "2.
|
|
323
|
+
version = "2.2.0"
|
|
349
324
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
350
|
-
checksum = "
|
|
325
|
+
checksum = "486f806e73c5707928240ddc295403b1b93c96a02038563881c4a2fd84b81ac4"
|
|
351
326
|
|
|
352
327
|
[[package]]
|
|
353
328
|
name = "ff"
|
|
354
|
-
version = "0.13.
|
|
329
|
+
version = "0.13.0"
|
|
355
330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
-
checksum = "
|
|
331
|
+
checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449"
|
|
357
332
|
dependencies = [
|
|
358
333
|
"rand_core",
|
|
359
334
|
"subtle",
|
|
@@ -361,9 +336,9 @@ dependencies = [
|
|
|
361
336
|
|
|
362
337
|
[[package]]
|
|
363
338
|
name = "flagset"
|
|
364
|
-
version = "0.4.
|
|
339
|
+
version = "0.4.6"
|
|
365
340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
-
checksum = "
|
|
341
|
+
checksum = "b3ea1ec5f8307826a5b71094dd91fc04d4ae75d5709b20ad351c7fb4815c86ec"
|
|
367
342
|
|
|
368
343
|
[[package]]
|
|
369
344
|
name = "fnv"
|
|
@@ -491,19 +466,7 @@ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
|
491
466
|
dependencies = [
|
|
492
467
|
"cfg-if",
|
|
493
468
|
"libc",
|
|
494
|
-
"wasi
|
|
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",
|
|
469
|
+
"wasi",
|
|
507
470
|
]
|
|
508
471
|
|
|
509
472
|
[[package]]
|
|
@@ -525,15 +488,15 @@ dependencies = [
|
|
|
525
488
|
|
|
526
489
|
[[package]]
|
|
527
490
|
name = "h2"
|
|
528
|
-
version = "0.
|
|
491
|
+
version = "0.3.26"
|
|
529
492
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
-
checksum = "
|
|
493
|
+
checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
|
|
531
494
|
dependencies = [
|
|
532
|
-
"atomic-waker",
|
|
533
495
|
"bytes",
|
|
534
496
|
"fnv",
|
|
535
497
|
"futures-core",
|
|
536
498
|
"futures-sink",
|
|
499
|
+
"futures-util",
|
|
537
500
|
"http",
|
|
538
501
|
"indexmap",
|
|
539
502
|
"slab",
|
|
@@ -544,9 +507,15 @@ dependencies = [
|
|
|
544
507
|
|
|
545
508
|
[[package]]
|
|
546
509
|
name = "hashbrown"
|
|
547
|
-
version = "0.15.
|
|
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"
|
|
548
517
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
-
checksum = "
|
|
518
|
+
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
|
550
519
|
|
|
551
520
|
[[package]]
|
|
552
521
|
name = "hex"
|
|
@@ -574,9 +543,9 @@ dependencies = [
|
|
|
574
543
|
|
|
575
544
|
[[package]]
|
|
576
545
|
name = "http"
|
|
577
|
-
version = "
|
|
546
|
+
version = "0.2.12"
|
|
578
547
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
-
checksum = "
|
|
548
|
+
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
|
580
549
|
dependencies = [
|
|
581
550
|
"bytes",
|
|
582
551
|
"fnv",
|
|
@@ -585,104 +554,62 @@ dependencies = [
|
|
|
585
554
|
|
|
586
555
|
[[package]]
|
|
587
556
|
name = "http-body"
|
|
588
|
-
version = "
|
|
557
|
+
version = "0.4.6"
|
|
589
558
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
590
|
-
checksum = "
|
|
559
|
+
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
|
591
560
|
dependencies = [
|
|
592
561
|
"bytes",
|
|
593
562
|
"http",
|
|
563
|
+
"pin-project-lite",
|
|
594
564
|
]
|
|
595
565
|
|
|
596
566
|
[[package]]
|
|
597
|
-
name = "
|
|
598
|
-
version = "
|
|
567
|
+
name = "httparse"
|
|
568
|
+
version = "1.9.5"
|
|
599
569
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
-
checksum = "
|
|
601
|
-
dependencies = [
|
|
602
|
-
"bytes",
|
|
603
|
-
"futures-core",
|
|
604
|
-
"http",
|
|
605
|
-
"http-body",
|
|
606
|
-
"pin-project-lite",
|
|
607
|
-
]
|
|
570
|
+
checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
|
|
608
571
|
|
|
609
572
|
[[package]]
|
|
610
|
-
name = "
|
|
611
|
-
version = "1.
|
|
573
|
+
name = "httpdate"
|
|
574
|
+
version = "1.0.3"
|
|
612
575
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
-
checksum = "
|
|
576
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
614
577
|
|
|
615
578
|
[[package]]
|
|
616
579
|
name = "hyper"
|
|
617
|
-
version = "
|
|
580
|
+
version = "0.14.31"
|
|
618
581
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
-
checksum = "
|
|
582
|
+
checksum = "8c08302e8fa335b151b788c775ff56e7a03ae64ff85c548ee820fecb70356e85"
|
|
620
583
|
dependencies = [
|
|
621
584
|
"bytes",
|
|
622
585
|
"futures-channel",
|
|
586
|
+
"futures-core",
|
|
623
587
|
"futures-util",
|
|
624
588
|
"h2",
|
|
625
589
|
"http",
|
|
626
590
|
"http-body",
|
|
627
591
|
"httparse",
|
|
592
|
+
"httpdate",
|
|
628
593
|
"itoa",
|
|
629
594
|
"pin-project-lite",
|
|
630
|
-
"
|
|
631
|
-
"tokio",
|
|
632
|
-
"want",
|
|
633
|
-
]
|
|
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",
|
|
595
|
+
"socket2",
|
|
647
596
|
"tokio",
|
|
648
|
-
"tokio-rustls",
|
|
649
597
|
"tower-service",
|
|
598
|
+
"tracing",
|
|
599
|
+
"want",
|
|
650
600
|
]
|
|
651
601
|
|
|
652
602
|
[[package]]
|
|
653
603
|
name = "hyper-tls"
|
|
654
|
-
version = "0.
|
|
604
|
+
version = "0.5.0"
|
|
655
605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
656
|
-
checksum = "
|
|
606
|
+
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
|
|
657
607
|
dependencies = [
|
|
658
608
|
"bytes",
|
|
659
|
-
"http-body-util",
|
|
660
609
|
"hyper",
|
|
661
|
-
"hyper-util",
|
|
662
610
|
"native-tls",
|
|
663
611
|
"tokio",
|
|
664
612
|
"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",
|
|
686
613
|
]
|
|
687
614
|
|
|
688
615
|
[[package]]
|
|
@@ -726,9 +653,9 @@ dependencies = [
|
|
|
726
653
|
|
|
727
654
|
[[package]]
|
|
728
655
|
name = "icu_locid_transform_data"
|
|
729
|
-
version = "1.5.
|
|
656
|
+
version = "1.5.0"
|
|
730
657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
-
checksum = "
|
|
658
|
+
checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
|
|
732
659
|
|
|
733
660
|
[[package]]
|
|
734
661
|
name = "icu_normalizer"
|
|
@@ -750,9 +677,9 @@ dependencies = [
|
|
|
750
677
|
|
|
751
678
|
[[package]]
|
|
752
679
|
name = "icu_normalizer_data"
|
|
753
|
-
version = "1.5.
|
|
680
|
+
version = "1.5.0"
|
|
754
681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
755
|
-
checksum = "
|
|
682
|
+
checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
|
|
756
683
|
|
|
757
684
|
[[package]]
|
|
758
685
|
name = "icu_properties"
|
|
@@ -771,9 +698,9 @@ dependencies = [
|
|
|
771
698
|
|
|
772
699
|
[[package]]
|
|
773
700
|
name = "icu_properties_data"
|
|
774
|
-
version = "1.5.
|
|
701
|
+
version = "1.5.0"
|
|
775
702
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
776
|
-
checksum = "
|
|
703
|
+
checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
|
|
777
704
|
|
|
778
705
|
[[package]]
|
|
779
706
|
name = "icu_provider"
|
|
@@ -826,9 +753,9 @@ dependencies = [
|
|
|
826
753
|
|
|
827
754
|
[[package]]
|
|
828
755
|
name = "indexmap"
|
|
829
|
-
version = "2.
|
|
756
|
+
version = "2.6.0"
|
|
830
757
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
831
|
-
checksum = "
|
|
758
|
+
checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
|
|
832
759
|
dependencies = [
|
|
833
760
|
"equivalent",
|
|
834
761
|
"hashbrown",
|
|
@@ -842,42 +769,41 @@ checksum = "d8972d5be69940353d5347a1344cb375d9b457d6809b428b05bb1ca2fb9ce007"
|
|
|
842
769
|
|
|
843
770
|
[[package]]
|
|
844
771
|
name = "ipnet"
|
|
845
|
-
version = "2.
|
|
772
|
+
version = "2.10.1"
|
|
846
773
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
-
checksum = "
|
|
774
|
+
checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708"
|
|
848
775
|
|
|
849
776
|
[[package]]
|
|
850
777
|
name = "itoa"
|
|
851
|
-
version = "1.0.
|
|
778
|
+
version = "1.0.13"
|
|
852
779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
853
|
-
checksum = "
|
|
780
|
+
checksum = "540654e97a3f4470a492cd30ff187bc95d89557a903a2bbf112e2fae98104ef2"
|
|
854
781
|
|
|
855
782
|
[[package]]
|
|
856
783
|
name = "js-sys"
|
|
857
|
-
version = "0.3.
|
|
784
|
+
version = "0.3.72"
|
|
858
785
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
859
|
-
checksum = "
|
|
786
|
+
checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
|
|
860
787
|
dependencies = [
|
|
861
|
-
"once_cell",
|
|
862
788
|
"wasm-bindgen",
|
|
863
789
|
]
|
|
864
790
|
|
|
865
791
|
[[package]]
|
|
866
792
|
name = "kvm-bindings"
|
|
867
|
-
version = "0.
|
|
793
|
+
version = "0.10.0"
|
|
868
794
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
-
checksum = "
|
|
795
|
+
checksum = "fa4933174d0cc4b77b958578cd45784071cc5ae212c2d78fbd755aaaa6dfa71a"
|
|
870
796
|
dependencies = [
|
|
871
797
|
"vmm-sys-util",
|
|
872
798
|
]
|
|
873
799
|
|
|
874
800
|
[[package]]
|
|
875
801
|
name = "kvm-ioctls"
|
|
876
|
-
version = "0.
|
|
802
|
+
version = "0.19.0"
|
|
877
803
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
-
checksum = "
|
|
804
|
+
checksum = "337d1afa126368bbd6a5c328048f71a69a737e9afe7e436b392a8f8d770c9171"
|
|
879
805
|
dependencies = [
|
|
880
|
-
"bitflags 2.
|
|
806
|
+
"bitflags 2.6.0",
|
|
881
807
|
"kvm-bindings",
|
|
882
808
|
"libc",
|
|
883
809
|
"vmm-sys-util",
|
|
@@ -894,9 +820,9 @@ dependencies = [
|
|
|
894
820
|
|
|
895
821
|
[[package]]
|
|
896
822
|
name = "libc"
|
|
897
|
-
version = "0.2.
|
|
823
|
+
version = "0.2.164"
|
|
898
824
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
-
checksum = "
|
|
825
|
+
checksum = "433bfe06b8c75da9b2e3fbea6e5329ff87748f0b144ef75306e674c3f6f7c13f"
|
|
900
826
|
|
|
901
827
|
[[package]]
|
|
902
828
|
name = "libm"
|
|
@@ -910,21 +836,21 @@ version = "0.1.3"
|
|
|
910
836
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
837
|
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
912
838
|
dependencies = [
|
|
913
|
-
"bitflags 2.
|
|
839
|
+
"bitflags 2.6.0",
|
|
914
840
|
"libc",
|
|
915
841
|
]
|
|
916
842
|
|
|
917
843
|
[[package]]
|
|
918
844
|
name = "linux-raw-sys"
|
|
919
|
-
version = "0.
|
|
845
|
+
version = "0.4.14"
|
|
920
846
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
921
|
-
checksum = "
|
|
847
|
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
|
922
848
|
|
|
923
849
|
[[package]]
|
|
924
850
|
name = "litemap"
|
|
925
|
-
version = "0.7.
|
|
851
|
+
version = "0.7.3"
|
|
926
852
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
927
|
-
checksum = "
|
|
853
|
+
checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704"
|
|
928
854
|
|
|
929
855
|
[[package]]
|
|
930
856
|
name = "lock_api"
|
|
@@ -938,9 +864,9 @@ dependencies = [
|
|
|
938
864
|
|
|
939
865
|
[[package]]
|
|
940
866
|
name = "log"
|
|
941
|
-
version = "0.4.
|
|
867
|
+
version = "0.4.22"
|
|
942
868
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
-
checksum = "
|
|
869
|
+
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
|
944
870
|
|
|
945
871
|
[[package]]
|
|
946
872
|
name = "memchr"
|
|
@@ -956,29 +882,30 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
|
956
882
|
|
|
957
883
|
[[package]]
|
|
958
884
|
name = "miniz_oxide"
|
|
959
|
-
version = "0.8.
|
|
885
|
+
version = "0.8.0"
|
|
960
886
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
-
checksum = "
|
|
887
|
+
checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
|
|
962
888
|
dependencies = [
|
|
963
889
|
"adler2",
|
|
964
890
|
]
|
|
965
891
|
|
|
966
892
|
[[package]]
|
|
967
893
|
name = "mio"
|
|
968
|
-
version = "1.0.
|
|
894
|
+
version = "1.0.2"
|
|
969
895
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
970
|
-
checksum = "
|
|
896
|
+
checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
|
|
971
897
|
dependencies = [
|
|
898
|
+
"hermit-abi",
|
|
972
899
|
"libc",
|
|
973
|
-
"wasi
|
|
900
|
+
"wasi",
|
|
974
901
|
"windows-sys 0.52.0",
|
|
975
902
|
]
|
|
976
903
|
|
|
977
904
|
[[package]]
|
|
978
905
|
name = "native-tls"
|
|
979
|
-
version = "0.2.
|
|
906
|
+
version = "0.2.12"
|
|
980
907
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
981
|
-
checksum = "
|
|
908
|
+
checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466"
|
|
982
909
|
dependencies = [
|
|
983
910
|
"libc",
|
|
984
911
|
"log",
|
|
@@ -1040,26 +967,26 @@ dependencies = [
|
|
|
1040
967
|
|
|
1041
968
|
[[package]]
|
|
1042
969
|
name = "object"
|
|
1043
|
-
version = "0.36.
|
|
970
|
+
version = "0.36.5"
|
|
1044
971
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
-
checksum = "
|
|
972
|
+
checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
|
|
1046
973
|
dependencies = [
|
|
1047
974
|
"memchr",
|
|
1048
975
|
]
|
|
1049
976
|
|
|
1050
977
|
[[package]]
|
|
1051
978
|
name = "once_cell"
|
|
1052
|
-
version = "1.
|
|
979
|
+
version = "1.20.2"
|
|
1053
980
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1054
|
-
checksum = "
|
|
981
|
+
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
|
1055
982
|
|
|
1056
983
|
[[package]]
|
|
1057
984
|
name = "openssl"
|
|
1058
|
-
version = "0.10.
|
|
985
|
+
version = "0.10.68"
|
|
1059
986
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1060
|
-
checksum = "
|
|
987
|
+
checksum = "6174bc48f102d208783c2c84bf931bb75927a617866870de8a4ea85597f871f5"
|
|
1061
988
|
dependencies = [
|
|
1062
|
-
"bitflags 2.
|
|
989
|
+
"bitflags 2.6.0",
|
|
1063
990
|
"cfg-if",
|
|
1064
991
|
"foreign-types",
|
|
1065
992
|
"libc",
|
|
@@ -1081,28 +1008,18 @@ dependencies = [
|
|
|
1081
1008
|
|
|
1082
1009
|
[[package]]
|
|
1083
1010
|
name = "openssl-probe"
|
|
1084
|
-
version = "0.1.
|
|
1085
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1086
|
-
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
1087
|
-
|
|
1088
|
-
[[package]]
|
|
1089
|
-
name = "openssl-src"
|
|
1090
|
-
version = "300.4.2+3.4.1"
|
|
1011
|
+
version = "0.1.5"
|
|
1091
1012
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1092
|
-
checksum = "
|
|
1093
|
-
dependencies = [
|
|
1094
|
-
"cc",
|
|
1095
|
-
]
|
|
1013
|
+
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
|
1096
1014
|
|
|
1097
1015
|
[[package]]
|
|
1098
1016
|
name = "openssl-sys"
|
|
1099
|
-
version = "0.9.
|
|
1017
|
+
version = "0.9.104"
|
|
1100
1018
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
-
checksum = "
|
|
1019
|
+
checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741"
|
|
1102
1020
|
dependencies = [
|
|
1103
1021
|
"cc",
|
|
1104
1022
|
"libc",
|
|
1105
|
-
"openssl-src",
|
|
1106
1023
|
"pkg-config",
|
|
1107
1024
|
"vcpkg",
|
|
1108
1025
|
]
|
|
@@ -1115,9 +1032,9 @@ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
|
1115
1032
|
|
|
1116
1033
|
[[package]]
|
|
1117
1034
|
name = "p384"
|
|
1118
|
-
version = "0.13.
|
|
1035
|
+
version = "0.13.0"
|
|
1119
1036
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1120
|
-
checksum = "
|
|
1037
|
+
checksum = "70786f51bcc69f6a4c0360e063a4cac5419ef7c5cd5b3c99ad70f3be5ba79209"
|
|
1121
1038
|
dependencies = [
|
|
1122
1039
|
"ecdsa",
|
|
1123
1040
|
"elliptic-curve",
|
|
@@ -1165,9 +1082,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
|
1165
1082
|
|
|
1166
1083
|
[[package]]
|
|
1167
1084
|
name = "pin-project-lite"
|
|
1168
|
-
version = "0.2.
|
|
1085
|
+
version = "0.2.15"
|
|
1169
1086
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1170
|
-
checksum = "
|
|
1087
|
+
checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
|
|
1171
1088
|
|
|
1172
1089
|
[[package]]
|
|
1173
1090
|
name = "pin-utils"
|
|
@@ -1198,15 +1115,15 @@ dependencies = [
|
|
|
1198
1115
|
|
|
1199
1116
|
[[package]]
|
|
1200
1117
|
name = "pkg-config"
|
|
1201
|
-
version = "0.3.
|
|
1118
|
+
version = "0.3.31"
|
|
1202
1119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1203
|
-
checksum = "
|
|
1120
|
+
checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
|
|
1204
1121
|
|
|
1205
1122
|
[[package]]
|
|
1206
1123
|
name = "ppv-lite86"
|
|
1207
|
-
version = "0.2.
|
|
1124
|
+
version = "0.2.20"
|
|
1208
1125
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
-
checksum = "
|
|
1126
|
+
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
|
|
1210
1127
|
dependencies = [
|
|
1211
1128
|
"zerocopy",
|
|
1212
1129
|
]
|
|
@@ -1222,28 +1139,22 @@ dependencies = [
|
|
|
1222
1139
|
|
|
1223
1140
|
[[package]]
|
|
1224
1141
|
name = "proc-macro2"
|
|
1225
|
-
version = "1.0.
|
|
1142
|
+
version = "1.0.89"
|
|
1226
1143
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1227
|
-
checksum = "
|
|
1144
|
+
checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e"
|
|
1228
1145
|
dependencies = [
|
|
1229
1146
|
"unicode-ident",
|
|
1230
1147
|
]
|
|
1231
1148
|
|
|
1232
1149
|
[[package]]
|
|
1233
1150
|
name = "quote"
|
|
1234
|
-
version = "1.0.
|
|
1151
|
+
version = "1.0.37"
|
|
1235
1152
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1236
|
-
checksum = "
|
|
1153
|
+
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
|
|
1237
1154
|
dependencies = [
|
|
1238
1155
|
"proc-macro2",
|
|
1239
1156
|
]
|
|
1240
1157
|
|
|
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
|
-
|
|
1247
1158
|
[[package]]
|
|
1248
1159
|
name = "rand"
|
|
1249
1160
|
version = "0.8.5"
|
|
@@ -1270,7 +1181,7 @@ version = "0.6.4"
|
|
|
1270
1181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1271
1182
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1272
1183
|
dependencies = [
|
|
1273
|
-
"getrandom
|
|
1184
|
+
"getrandom",
|
|
1274
1185
|
]
|
|
1275
1186
|
|
|
1276
1187
|
[[package]]
|
|
@@ -1284,44 +1195,40 @@ dependencies = [
|
|
|
1284
1195
|
|
|
1285
1196
|
[[package]]
|
|
1286
1197
|
name = "redox_syscall"
|
|
1287
|
-
version = "0.5.
|
|
1198
|
+
version = "0.5.7"
|
|
1288
1199
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1289
|
-
checksum = "
|
|
1200
|
+
checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
|
|
1290
1201
|
dependencies = [
|
|
1291
|
-
"bitflags 2.
|
|
1202
|
+
"bitflags 2.6.0",
|
|
1292
1203
|
]
|
|
1293
1204
|
|
|
1294
1205
|
[[package]]
|
|
1295
1206
|
name = "redox_users"
|
|
1296
|
-
version = "0.
|
|
1207
|
+
version = "0.4.6"
|
|
1297
1208
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1298
|
-
checksum = "
|
|
1209
|
+
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
1299
1210
|
dependencies = [
|
|
1300
|
-
"getrandom
|
|
1211
|
+
"getrandom",
|
|
1301
1212
|
"libredox",
|
|
1302
1213
|
"thiserror",
|
|
1303
1214
|
]
|
|
1304
1215
|
|
|
1305
1216
|
[[package]]
|
|
1306
1217
|
name = "reqwest"
|
|
1307
|
-
version = "0.
|
|
1218
|
+
version = "0.11.27"
|
|
1308
1219
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
|
-
checksum = "
|
|
1220
|
+
checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
|
|
1310
1221
|
dependencies = [
|
|
1311
|
-
"base64",
|
|
1222
|
+
"base64 0.21.7",
|
|
1312
1223
|
"bytes",
|
|
1313
1224
|
"encoding_rs",
|
|
1314
|
-
"futures-channel",
|
|
1315
1225
|
"futures-core",
|
|
1316
1226
|
"futures-util",
|
|
1317
1227
|
"h2",
|
|
1318
1228
|
"http",
|
|
1319
1229
|
"http-body",
|
|
1320
|
-
"http-body-util",
|
|
1321
1230
|
"hyper",
|
|
1322
|
-
"hyper-rustls",
|
|
1323
1231
|
"hyper-tls",
|
|
1324
|
-
"hyper-util",
|
|
1325
1232
|
"ipnet",
|
|
1326
1233
|
"js-sys",
|
|
1327
1234
|
"log",
|
|
@@ -1338,13 +1245,12 @@ dependencies = [
|
|
|
1338
1245
|
"system-configuration",
|
|
1339
1246
|
"tokio",
|
|
1340
1247
|
"tokio-native-tls",
|
|
1341
|
-
"tower",
|
|
1342
1248
|
"tower-service",
|
|
1343
1249
|
"url",
|
|
1344
1250
|
"wasm-bindgen",
|
|
1345
1251
|
"wasm-bindgen-futures",
|
|
1346
1252
|
"web-sys",
|
|
1347
|
-
"
|
|
1253
|
+
"winreg",
|
|
1348
1254
|
]
|
|
1349
1255
|
|
|
1350
1256
|
[[package]]
|
|
@@ -1357,25 +1263,11 @@ dependencies = [
|
|
|
1357
1263
|
"subtle",
|
|
1358
1264
|
]
|
|
1359
1265
|
|
|
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
|
-
|
|
1374
1266
|
[[package]]
|
|
1375
1267
|
name = "rsa"
|
|
1376
|
-
version = "0.9.
|
|
1268
|
+
version = "0.9.6"
|
|
1377
1269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1378
|
-
checksum = "
|
|
1270
|
+
checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc"
|
|
1379
1271
|
dependencies = [
|
|
1380
1272
|
"const-oid",
|
|
1381
1273
|
"digest",
|
|
@@ -1399,73 +1291,37 @@ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
|
1399
1291
|
|
|
1400
1292
|
[[package]]
|
|
1401
1293
|
name = "rustix"
|
|
1402
|
-
version = "
|
|
1294
|
+
version = "0.38.41"
|
|
1403
1295
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1404
|
-
checksum = "
|
|
1296
|
+
checksum = "d7f649912bc1495e167a6edee79151c84b1bad49748cb4f1f1167f459f6224f6"
|
|
1405
1297
|
dependencies = [
|
|
1406
|
-
"bitflags 2.
|
|
1298
|
+
"bitflags 2.6.0",
|
|
1407
1299
|
"errno",
|
|
1408
1300
|
"libc",
|
|
1409
1301
|
"linux-raw-sys",
|
|
1410
|
-
"windows-sys 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",
|
|
1302
|
+
"windows-sys 0.52.0",
|
|
1424
1303
|
]
|
|
1425
1304
|
|
|
1426
1305
|
[[package]]
|
|
1427
1306
|
name = "rustls-pemfile"
|
|
1428
|
-
version = "
|
|
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"
|
|
1438
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1439
|
-
checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
|
|
1440
|
-
|
|
1441
|
-
[[package]]
|
|
1442
|
-
name = "rustls-webpki"
|
|
1443
|
-
version = "0.103.1"
|
|
1307
|
+
version = "1.0.4"
|
|
1444
1308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1445
|
-
checksum = "
|
|
1309
|
+
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
|
|
1446
1310
|
dependencies = [
|
|
1447
|
-
"
|
|
1448
|
-
"rustls-pki-types",
|
|
1449
|
-
"untrusted",
|
|
1311
|
+
"base64 0.21.7",
|
|
1450
1312
|
]
|
|
1451
1313
|
|
|
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
|
-
|
|
1458
1314
|
[[package]]
|
|
1459
1315
|
name = "ryu"
|
|
1460
|
-
version = "1.0.
|
|
1316
|
+
version = "1.0.18"
|
|
1461
1317
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1462
|
-
checksum = "
|
|
1318
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
|
1463
1319
|
|
|
1464
1320
|
[[package]]
|
|
1465
1321
|
name = "scc"
|
|
1466
|
-
version = "2.
|
|
1322
|
+
version = "2.2.5"
|
|
1467
1323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1468
|
-
checksum = "
|
|
1324
|
+
checksum = "66b202022bb57c049555430e11fc22fea12909276a80a4c3d368da36ac1d88ed"
|
|
1469
1325
|
dependencies = [
|
|
1470
1326
|
"sdd",
|
|
1471
1327
|
]
|
|
@@ -1487,9 +1343,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
1487
1343
|
|
|
1488
1344
|
[[package]]
|
|
1489
1345
|
name = "sdd"
|
|
1490
|
-
version = "3.0.
|
|
1346
|
+
version = "3.0.4"
|
|
1491
1347
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1492
|
-
checksum = "
|
|
1348
|
+
checksum = "49c1eeaf4b6a87c7479688c6d52b9f1153cedd3c489300564f932b065c6eab95"
|
|
1493
1349
|
|
|
1494
1350
|
[[package]]
|
|
1495
1351
|
name = "sec1"
|
|
@@ -1511,7 +1367,7 @@ version = "2.11.1"
|
|
|
1511
1367
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1512
1368
|
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
|
1513
1369
|
dependencies = [
|
|
1514
|
-
"bitflags 2.
|
|
1370
|
+
"bitflags 2.6.0",
|
|
1515
1371
|
"core-foundation",
|
|
1516
1372
|
"core-foundation-sys",
|
|
1517
1373
|
"libc",
|
|
@@ -1520,9 +1376,9 @@ dependencies = [
|
|
|
1520
1376
|
|
|
1521
1377
|
[[package]]
|
|
1522
1378
|
name = "security-framework-sys"
|
|
1523
|
-
version = "2.
|
|
1379
|
+
version = "2.12.1"
|
|
1524
1380
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1525
|
-
checksum = "
|
|
1381
|
+
checksum = "fa39c7303dc58b5543c94d22c1766b0d31f2ee58306363ea622b10bbc075eaa2"
|
|
1526
1382
|
dependencies = [
|
|
1527
1383
|
"core-foundation-sys",
|
|
1528
1384
|
"libc",
|
|
@@ -1530,9 +1386,9 @@ dependencies = [
|
|
|
1530
1386
|
|
|
1531
1387
|
[[package]]
|
|
1532
1388
|
name = "serde"
|
|
1533
|
-
version = "1.0.
|
|
1389
|
+
version = "1.0.215"
|
|
1534
1390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1535
|
-
checksum = "
|
|
1391
|
+
checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f"
|
|
1536
1392
|
dependencies = [
|
|
1537
1393
|
"serde_derive",
|
|
1538
1394
|
]
|
|
@@ -1548,18 +1404,18 @@ dependencies = [
|
|
|
1548
1404
|
|
|
1549
1405
|
[[package]]
|
|
1550
1406
|
name = "serde_bytes"
|
|
1551
|
-
version = "0.11.
|
|
1407
|
+
version = "0.11.15"
|
|
1552
1408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1553
|
-
checksum = "
|
|
1409
|
+
checksum = "387cc504cb06bb40a96c8e04e951fe01854cf6bc921053c954e4a606d9675c6a"
|
|
1554
1410
|
dependencies = [
|
|
1555
1411
|
"serde",
|
|
1556
1412
|
]
|
|
1557
1413
|
|
|
1558
1414
|
[[package]]
|
|
1559
1415
|
name = "serde_derive"
|
|
1560
|
-
version = "1.0.
|
|
1416
|
+
version = "1.0.215"
|
|
1561
1417
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
-
checksum = "
|
|
1418
|
+
checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0"
|
|
1563
1419
|
dependencies = [
|
|
1564
1420
|
"proc-macro2",
|
|
1565
1421
|
"quote",
|
|
@@ -1568,9 +1424,9 @@ dependencies = [
|
|
|
1568
1424
|
|
|
1569
1425
|
[[package]]
|
|
1570
1426
|
name = "serde_json"
|
|
1571
|
-
version = "1.0.
|
|
1427
|
+
version = "1.0.133"
|
|
1572
1428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1573
|
-
checksum = "
|
|
1429
|
+
checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377"
|
|
1574
1430
|
dependencies = [
|
|
1575
1431
|
"itoa",
|
|
1576
1432
|
"memchr",
|
|
@@ -1617,12 +1473,12 @@ dependencies = [
|
|
|
1617
1473
|
|
|
1618
1474
|
[[package]]
|
|
1619
1475
|
name = "sev"
|
|
1620
|
-
version = "
|
|
1476
|
+
version = "5.0.0"
|
|
1621
1477
|
dependencies = [
|
|
1622
|
-
"base64",
|
|
1478
|
+
"base64 0.22.1",
|
|
1623
1479
|
"bincode",
|
|
1624
1480
|
"bitfield",
|
|
1625
|
-
"bitflags
|
|
1481
|
+
"bitflags 1.3.2",
|
|
1626
1482
|
"byteorder",
|
|
1627
1483
|
"codicon",
|
|
1628
1484
|
"dirs",
|
|
@@ -1686,15 +1542,15 @@ dependencies = [
|
|
|
1686
1542
|
|
|
1687
1543
|
[[package]]
|
|
1688
1544
|
name = "smallvec"
|
|
1689
|
-
version = "1.
|
|
1545
|
+
version = "1.13.2"
|
|
1690
1546
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1691
|
-
checksum = "
|
|
1547
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
1692
1548
|
|
|
1693
1549
|
[[package]]
|
|
1694
1550
|
name = "socket2"
|
|
1695
|
-
version = "0.5.
|
|
1551
|
+
version = "0.5.7"
|
|
1696
1552
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1697
|
-
checksum = "
|
|
1553
|
+
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
|
|
1698
1554
|
dependencies = [
|
|
1699
1555
|
"libc",
|
|
1700
1556
|
"windows-sys 0.52.0",
|
|
@@ -1736,9 +1592,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
1736
1592
|
|
|
1737
1593
|
[[package]]
|
|
1738
1594
|
name = "syn"
|
|
1739
|
-
version = "2.0.
|
|
1595
|
+
version = "2.0.87"
|
|
1740
1596
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1741
|
-
checksum = "
|
|
1597
|
+
checksum = "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d"
|
|
1742
1598
|
dependencies = [
|
|
1743
1599
|
"proc-macro2",
|
|
1744
1600
|
"quote",
|
|
@@ -1747,12 +1603,9 @@ dependencies = [
|
|
|
1747
1603
|
|
|
1748
1604
|
[[package]]
|
|
1749
1605
|
name = "sync_wrapper"
|
|
1750
|
-
version = "1.
|
|
1606
|
+
version = "0.1.2"
|
|
1751
1607
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1752
|
-
checksum = "
|
|
1753
|
-
dependencies = [
|
|
1754
|
-
"futures-core",
|
|
1755
|
-
]
|
|
1608
|
+
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
|
|
1756
1609
|
|
|
1757
1610
|
[[package]]
|
|
1758
1611
|
name = "synstructure"
|
|
@@ -1767,20 +1620,20 @@ dependencies = [
|
|
|
1767
1620
|
|
|
1768
1621
|
[[package]]
|
|
1769
1622
|
name = "system-configuration"
|
|
1770
|
-
version = "0.
|
|
1623
|
+
version = "0.5.1"
|
|
1771
1624
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1772
|
-
checksum = "
|
|
1625
|
+
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
|
|
1773
1626
|
dependencies = [
|
|
1774
|
-
"bitflags
|
|
1627
|
+
"bitflags 1.3.2",
|
|
1775
1628
|
"core-foundation",
|
|
1776
1629
|
"system-configuration-sys",
|
|
1777
1630
|
]
|
|
1778
1631
|
|
|
1779
1632
|
[[package]]
|
|
1780
1633
|
name = "system-configuration-sys"
|
|
1781
|
-
version = "0.
|
|
1634
|
+
version = "0.5.0"
|
|
1782
1635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1783
|
-
checksum = "
|
|
1636
|
+
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
|
|
1784
1637
|
dependencies = [
|
|
1785
1638
|
"core-foundation-sys",
|
|
1786
1639
|
"libc",
|
|
@@ -1788,12 +1641,12 @@ dependencies = [
|
|
|
1788
1641
|
|
|
1789
1642
|
[[package]]
|
|
1790
1643
|
name = "tempfile"
|
|
1791
|
-
version = "3.
|
|
1644
|
+
version = "3.14.0"
|
|
1792
1645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1793
|
-
checksum = "
|
|
1646
|
+
checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c"
|
|
1794
1647
|
dependencies = [
|
|
1648
|
+
"cfg-if",
|
|
1795
1649
|
"fastrand",
|
|
1796
|
-
"getrandom 0.3.2",
|
|
1797
1650
|
"once_cell",
|
|
1798
1651
|
"rustix",
|
|
1799
1652
|
"windows-sys 0.59.0",
|
|
@@ -1801,18 +1654,18 @@ dependencies = [
|
|
|
1801
1654
|
|
|
1802
1655
|
[[package]]
|
|
1803
1656
|
name = "thiserror"
|
|
1804
|
-
version = "
|
|
1657
|
+
version = "1.0.69"
|
|
1805
1658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1806
|
-
checksum = "
|
|
1659
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1807
1660
|
dependencies = [
|
|
1808
1661
|
"thiserror-impl",
|
|
1809
1662
|
]
|
|
1810
1663
|
|
|
1811
1664
|
[[package]]
|
|
1812
1665
|
name = "thiserror-impl"
|
|
1813
|
-
version = "
|
|
1666
|
+
version = "1.0.69"
|
|
1814
1667
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1815
|
-
checksum = "
|
|
1668
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1816
1669
|
dependencies = [
|
|
1817
1670
|
"proc-macro2",
|
|
1818
1671
|
"quote",
|
|
@@ -1831,9 +1684,9 @@ dependencies = [
|
|
|
1831
1684
|
|
|
1832
1685
|
[[package]]
|
|
1833
1686
|
name = "tls_codec"
|
|
1834
|
-
version = "0.4.
|
|
1687
|
+
version = "0.4.1"
|
|
1835
1688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1836
|
-
checksum = "
|
|
1689
|
+
checksum = "b5e78c9c330f8c85b2bae7c8368f2739157db9991235123aa1b15ef9502bfb6a"
|
|
1837
1690
|
dependencies = [
|
|
1838
1691
|
"tls_codec_derive",
|
|
1839
1692
|
"zeroize",
|
|
@@ -1841,9 +1694,9 @@ dependencies = [
|
|
|
1841
1694
|
|
|
1842
1695
|
[[package]]
|
|
1843
1696
|
name = "tls_codec_derive"
|
|
1844
|
-
version = "0.4.
|
|
1697
|
+
version = "0.4.1"
|
|
1845
1698
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1846
|
-
checksum = "
|
|
1699
|
+
checksum = "8d9ef545650e79f30233c0003bcc2504d7efac6dad25fca40744de773fe2049c"
|
|
1847
1700
|
dependencies = [
|
|
1848
1701
|
"proc-macro2",
|
|
1849
1702
|
"quote",
|
|
@@ -1852,9 +1705,9 @@ dependencies = [
|
|
|
1852
1705
|
|
|
1853
1706
|
[[package]]
|
|
1854
1707
|
name = "tokio"
|
|
1855
|
-
version = "1.
|
|
1708
|
+
version = "1.41.1"
|
|
1856
1709
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1857
|
-
checksum = "
|
|
1710
|
+
checksum = "22cfb5bee7a6a52939ca9224d6ac897bb669134078daa8735560897f69de4d33"
|
|
1858
1711
|
dependencies = [
|
|
1859
1712
|
"backtrace",
|
|
1860
1713
|
"bytes",
|
|
@@ -1875,21 +1728,11 @@ dependencies = [
|
|
|
1875
1728
|
"tokio",
|
|
1876
1729
|
]
|
|
1877
1730
|
|
|
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
|
-
|
|
1888
1731
|
[[package]]
|
|
1889
1732
|
name = "tokio-util"
|
|
1890
|
-
version = "0.7.
|
|
1733
|
+
version = "0.7.12"
|
|
1891
1734
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1892
|
-
checksum = "
|
|
1735
|
+
checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a"
|
|
1893
1736
|
dependencies = [
|
|
1894
1737
|
"bytes",
|
|
1895
1738
|
"futures-core",
|
|
@@ -1898,27 +1741,6 @@ dependencies = [
|
|
|
1898
1741
|
"tokio",
|
|
1899
1742
|
]
|
|
1900
1743
|
|
|
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
|
-
|
|
1922
1744
|
[[package]]
|
|
1923
1745
|
name = "tower-service"
|
|
1924
1746
|
version = "0.3.3"
|
|
@@ -1927,9 +1749,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
|
1927
1749
|
|
|
1928
1750
|
[[package]]
|
|
1929
1751
|
name = "tracing"
|
|
1930
|
-
version = "0.1.
|
|
1752
|
+
version = "0.1.40"
|
|
1931
1753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1932
|
-
checksum = "
|
|
1754
|
+
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
|
|
1933
1755
|
dependencies = [
|
|
1934
1756
|
"pin-project-lite",
|
|
1935
1757
|
"tracing-core",
|
|
@@ -1937,9 +1759,9 @@ dependencies = [
|
|
|
1937
1759
|
|
|
1938
1760
|
[[package]]
|
|
1939
1761
|
name = "tracing-core"
|
|
1940
|
-
version = "0.1.
|
|
1762
|
+
version = "0.1.32"
|
|
1941
1763
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1942
|
-
checksum = "
|
|
1764
|
+
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
|
|
1943
1765
|
dependencies = [
|
|
1944
1766
|
"once_cell",
|
|
1945
1767
|
]
|
|
@@ -1952,33 +1774,21 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
1952
1774
|
|
|
1953
1775
|
[[package]]
|
|
1954
1776
|
name = "typenum"
|
|
1955
|
-
version = "1.
|
|
1777
|
+
version = "1.17.0"
|
|
1956
1778
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1957
|
-
checksum = "
|
|
1779
|
+
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
1958
1780
|
|
|
1959
1781
|
[[package]]
|
|
1960
1782
|
name = "unicode-ident"
|
|
1961
|
-
version = "1.0.
|
|
1783
|
+
version = "1.0.14"
|
|
1962
1784
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1963
|
-
checksum = "
|
|
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"
|
|
1785
|
+
checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
|
|
1976
1786
|
|
|
1977
1787
|
[[package]]
|
|
1978
1788
|
name = "url"
|
|
1979
|
-
version = "2.5.
|
|
1789
|
+
version = "2.5.3"
|
|
1980
1790
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1981
|
-
checksum = "
|
|
1791
|
+
checksum = "8d157f1b96d14500ffdc1f10ba712e780825526c03d9a49b4d0324b0d9113ada"
|
|
1982
1792
|
dependencies = [
|
|
1983
1793
|
"form_urlencoded",
|
|
1984
1794
|
"idna",
|
|
@@ -1999,9 +1809,9 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
|
1999
1809
|
|
|
2000
1810
|
[[package]]
|
|
2001
1811
|
name = "uuid"
|
|
2002
|
-
version = "1.
|
|
1812
|
+
version = "1.11.0"
|
|
2003
1813
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2004
|
-
checksum = "
|
|
1814
|
+
checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a"
|
|
2005
1815
|
dependencies = [
|
|
2006
1816
|
"serde",
|
|
2007
1817
|
]
|
|
@@ -2018,12 +1828,6 @@ version = "0.9.5"
|
|
|
2018
1828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2019
1829
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
2020
1830
|
|
|
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
|
-
|
|
2027
1831
|
[[package]]
|
|
2028
1832
|
name = "vmm-sys-util"
|
|
2029
1833
|
version = "0.12.1"
|
|
@@ -2049,35 +1853,26 @@ version = "0.11.0+wasi-snapshot-preview1"
|
|
|
2049
1853
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2050
1854
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
2051
1855
|
|
|
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
|
-
|
|
2061
1856
|
[[package]]
|
|
2062
1857
|
name = "wasm-bindgen"
|
|
2063
|
-
version = "0.2.
|
|
1858
|
+
version = "0.2.95"
|
|
2064
1859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2065
|
-
checksum = "
|
|
1860
|
+
checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e"
|
|
2066
1861
|
dependencies = [
|
|
2067
1862
|
"cfg-if",
|
|
2068
1863
|
"once_cell",
|
|
2069
|
-
"rustversion",
|
|
2070
1864
|
"wasm-bindgen-macro",
|
|
2071
1865
|
]
|
|
2072
1866
|
|
|
2073
1867
|
[[package]]
|
|
2074
1868
|
name = "wasm-bindgen-backend"
|
|
2075
|
-
version = "0.2.
|
|
1869
|
+
version = "0.2.95"
|
|
2076
1870
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2077
|
-
checksum = "
|
|
1871
|
+
checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358"
|
|
2078
1872
|
dependencies = [
|
|
2079
1873
|
"bumpalo",
|
|
2080
1874
|
"log",
|
|
1875
|
+
"once_cell",
|
|
2081
1876
|
"proc-macro2",
|
|
2082
1877
|
"quote",
|
|
2083
1878
|
"syn",
|
|
@@ -2086,22 +1881,21 @@ dependencies = [
|
|
|
2086
1881
|
|
|
2087
1882
|
[[package]]
|
|
2088
1883
|
name = "wasm-bindgen-futures"
|
|
2089
|
-
version = "0.4.
|
|
1884
|
+
version = "0.4.45"
|
|
2090
1885
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2091
|
-
checksum = "
|
|
1886
|
+
checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b"
|
|
2092
1887
|
dependencies = [
|
|
2093
1888
|
"cfg-if",
|
|
2094
1889
|
"js-sys",
|
|
2095
|
-
"once_cell",
|
|
2096
1890
|
"wasm-bindgen",
|
|
2097
1891
|
"web-sys",
|
|
2098
1892
|
]
|
|
2099
1893
|
|
|
2100
1894
|
[[package]]
|
|
2101
1895
|
name = "wasm-bindgen-macro"
|
|
2102
|
-
version = "0.2.
|
|
1896
|
+
version = "0.2.95"
|
|
2103
1897
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2104
|
-
checksum = "
|
|
1898
|
+
checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56"
|
|
2105
1899
|
dependencies = [
|
|
2106
1900
|
"quote",
|
|
2107
1901
|
"wasm-bindgen-macro-support",
|
|
@@ -2109,9 +1903,9 @@ dependencies = [
|
|
|
2109
1903
|
|
|
2110
1904
|
[[package]]
|
|
2111
1905
|
name = "wasm-bindgen-macro-support"
|
|
2112
|
-
version = "0.2.
|
|
1906
|
+
version = "0.2.95"
|
|
2113
1907
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2114
|
-
checksum = "
|
|
1908
|
+
checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
|
|
2115
1909
|
dependencies = [
|
|
2116
1910
|
"proc-macro2",
|
|
2117
1911
|
"quote",
|
|
@@ -2122,56 +1916,27 @@ dependencies = [
|
|
|
2122
1916
|
|
|
2123
1917
|
[[package]]
|
|
2124
1918
|
name = "wasm-bindgen-shared"
|
|
2125
|
-
version = "0.2.
|
|
1919
|
+
version = "0.2.95"
|
|
2126
1920
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2127
|
-
checksum = "
|
|
2128
|
-
dependencies = [
|
|
2129
|
-
"unicode-ident",
|
|
2130
|
-
]
|
|
1921
|
+
checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
|
|
2131
1922
|
|
|
2132
1923
|
[[package]]
|
|
2133
1924
|
name = "web-sys"
|
|
2134
|
-
version = "0.3.
|
|
1925
|
+
version = "0.3.72"
|
|
2135
1926
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2136
|
-
checksum = "
|
|
1927
|
+
checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112"
|
|
2137
1928
|
dependencies = [
|
|
2138
1929
|
"js-sys",
|
|
2139
1930
|
"wasm-bindgen",
|
|
2140
1931
|
]
|
|
2141
1932
|
|
|
2142
1933
|
[[package]]
|
|
2143
|
-
name = "windows-
|
|
2144
|
-
version = "0.
|
|
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"
|
|
2151
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2152
|
-
checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
|
|
2153
|
-
dependencies = [
|
|
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"
|
|
1934
|
+
name = "windows-sys"
|
|
1935
|
+
version = "0.48.0"
|
|
2171
1936
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2172
|
-
checksum = "
|
|
1937
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
2173
1938
|
dependencies = [
|
|
2174
|
-
"windows-
|
|
1939
|
+
"windows-targets 0.48.5",
|
|
2175
1940
|
]
|
|
2176
1941
|
|
|
2177
1942
|
[[package]]
|
|
@@ -2192,6 +1957,21 @@ dependencies = [
|
|
|
2192
1957
|
"windows-targets 0.52.6",
|
|
2193
1958
|
]
|
|
2194
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
|
+
|
|
2195
1975
|
[[package]]
|
|
2196
1976
|
name = "windows-targets"
|
|
2197
1977
|
version = "0.52.6"
|
|
@@ -2201,7 +1981,7 @@ dependencies = [
|
|
|
2201
1981
|
"windows_aarch64_gnullvm 0.52.6",
|
|
2202
1982
|
"windows_aarch64_msvc 0.52.6",
|
|
2203
1983
|
"windows_i686_gnu 0.52.6",
|
|
2204
|
-
"windows_i686_gnullvm
|
|
1984
|
+
"windows_i686_gnullvm",
|
|
2205
1985
|
"windows_i686_msvc 0.52.6",
|
|
2206
1986
|
"windows_x86_64_gnu 0.52.6",
|
|
2207
1987
|
"windows_x86_64_gnullvm 0.52.6",
|
|
@@ -2209,20 +1989,10 @@ dependencies = [
|
|
|
2209
1989
|
]
|
|
2210
1990
|
|
|
2211
1991
|
[[package]]
|
|
2212
|
-
name = "
|
|
2213
|
-
version = "0.
|
|
1992
|
+
name = "windows_aarch64_gnullvm"
|
|
1993
|
+
version = "0.48.5"
|
|
2214
1994
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2215
|
-
checksum = "
|
|
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
|
-
]
|
|
1995
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
2226
1996
|
|
|
2227
1997
|
[[package]]
|
|
2228
1998
|
name = "windows_aarch64_gnullvm"
|
|
@@ -2231,10 +2001,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2231
2001
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2232
2002
|
|
|
2233
2003
|
[[package]]
|
|
2234
|
-
name = "
|
|
2235
|
-
version = "0.
|
|
2004
|
+
name = "windows_aarch64_msvc"
|
|
2005
|
+
version = "0.48.5"
|
|
2236
2006
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2237
|
-
checksum = "
|
|
2007
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
2238
2008
|
|
|
2239
2009
|
[[package]]
|
|
2240
2010
|
name = "windows_aarch64_msvc"
|
|
@@ -2243,10 +2013,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2243
2013
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2244
2014
|
|
|
2245
2015
|
[[package]]
|
|
2246
|
-
name = "
|
|
2247
|
-
version = "0.
|
|
2016
|
+
name = "windows_i686_gnu"
|
|
2017
|
+
version = "0.48.5"
|
|
2248
2018
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2249
|
-
checksum = "
|
|
2019
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
2250
2020
|
|
|
2251
2021
|
[[package]]
|
|
2252
2022
|
name = "windows_i686_gnu"
|
|
@@ -2254,12 +2024,6 @@ version = "0.52.6"
|
|
|
2254
2024
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2255
2025
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2256
2026
|
|
|
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
|
-
|
|
2263
2027
|
[[package]]
|
|
2264
2028
|
name = "windows_i686_gnullvm"
|
|
2265
2029
|
version = "0.52.6"
|
|
@@ -2267,10 +2031,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2267
2031
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2268
2032
|
|
|
2269
2033
|
[[package]]
|
|
2270
|
-
name = "
|
|
2271
|
-
version = "0.
|
|
2034
|
+
name = "windows_i686_msvc"
|
|
2035
|
+
version = "0.48.5"
|
|
2272
2036
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2273
|
-
checksum = "
|
|
2037
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
2274
2038
|
|
|
2275
2039
|
[[package]]
|
|
2276
2040
|
name = "windows_i686_msvc"
|
|
@@ -2279,10 +2043,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2279
2043
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2280
2044
|
|
|
2281
2045
|
[[package]]
|
|
2282
|
-
name = "
|
|
2283
|
-
version = "0.
|
|
2046
|
+
name = "windows_x86_64_gnu"
|
|
2047
|
+
version = "0.48.5"
|
|
2284
2048
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2285
|
-
checksum = "
|
|
2049
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
2286
2050
|
|
|
2287
2051
|
[[package]]
|
|
2288
2052
|
name = "windows_x86_64_gnu"
|
|
@@ -2291,10 +2055,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2291
2055
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2292
2056
|
|
|
2293
2057
|
[[package]]
|
|
2294
|
-
name = "
|
|
2295
|
-
version = "0.
|
|
2058
|
+
name = "windows_x86_64_gnullvm"
|
|
2059
|
+
version = "0.48.5"
|
|
2296
2060
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2297
|
-
checksum = "
|
|
2061
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
2298
2062
|
|
|
2299
2063
|
[[package]]
|
|
2300
2064
|
name = "windows_x86_64_gnullvm"
|
|
@@ -2303,10 +2067,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2303
2067
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2304
2068
|
|
|
2305
2069
|
[[package]]
|
|
2306
|
-
name = "
|
|
2307
|
-
version = "0.
|
|
2070
|
+
name = "windows_x86_64_msvc"
|
|
2071
|
+
version = "0.48.5"
|
|
2308
2072
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2309
|
-
checksum = "
|
|
2073
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
2310
2074
|
|
|
2311
2075
|
[[package]]
|
|
2312
2076
|
name = "windows_x86_64_msvc"
|
|
@@ -2315,18 +2079,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2315
2079
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2316
2080
|
|
|
2317
2081
|
[[package]]
|
|
2318
|
-
name = "
|
|
2319
|
-
version = "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"
|
|
2082
|
+
name = "winreg"
|
|
2083
|
+
version = "0.50.0"
|
|
2326
2084
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2327
|
-
checksum = "
|
|
2085
|
+
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
|
|
2328
2086
|
dependencies = [
|
|
2329
|
-
"
|
|
2087
|
+
"cfg-if",
|
|
2088
|
+
"windows-sys 0.48.0",
|
|
2330
2089
|
]
|
|
2331
2090
|
|
|
2332
2091
|
[[package]]
|
|
@@ -2355,9 +2114,9 @@ dependencies = [
|
|
|
2355
2114
|
|
|
2356
2115
|
[[package]]
|
|
2357
2116
|
name = "yoke"
|
|
2358
|
-
version = "0.7.
|
|
2117
|
+
version = "0.7.4"
|
|
2359
2118
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2360
|
-
checksum = "
|
|
2119
|
+
checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5"
|
|
2361
2120
|
dependencies = [
|
|
2362
2121
|
"serde",
|
|
2363
2122
|
"stable_deref_trait",
|
|
@@ -2367,9 +2126,9 @@ dependencies = [
|
|
|
2367
2126
|
|
|
2368
2127
|
[[package]]
|
|
2369
2128
|
name = "yoke-derive"
|
|
2370
|
-
version = "0.7.
|
|
2129
|
+
version = "0.7.4"
|
|
2371
2130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2372
|
-
checksum = "
|
|
2131
|
+
checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95"
|
|
2373
2132
|
dependencies = [
|
|
2374
2133
|
"proc-macro2",
|
|
2375
2134
|
"quote",
|
|
@@ -2379,18 +2138,19 @@ dependencies = [
|
|
|
2379
2138
|
|
|
2380
2139
|
[[package]]
|
|
2381
2140
|
name = "zerocopy"
|
|
2382
|
-
version = "0.
|
|
2141
|
+
version = "0.7.35"
|
|
2383
2142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2384
|
-
checksum = "
|
|
2143
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
|
2385
2144
|
dependencies = [
|
|
2145
|
+
"byteorder",
|
|
2386
2146
|
"zerocopy-derive",
|
|
2387
2147
|
]
|
|
2388
2148
|
|
|
2389
2149
|
[[package]]
|
|
2390
2150
|
name = "zerocopy-derive"
|
|
2391
|
-
version = "0.
|
|
2151
|
+
version = "0.7.35"
|
|
2392
2152
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2393
|
-
checksum = "
|
|
2153
|
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
2394
2154
|
dependencies = [
|
|
2395
2155
|
"proc-macro2",
|
|
2396
2156
|
"quote",
|
|
@@ -2399,18 +2159,18 @@ dependencies = [
|
|
|
2399
2159
|
|
|
2400
2160
|
[[package]]
|
|
2401
2161
|
name = "zerofrom"
|
|
2402
|
-
version = "0.1.
|
|
2162
|
+
version = "0.1.4"
|
|
2403
2163
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2404
|
-
checksum = "
|
|
2164
|
+
checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55"
|
|
2405
2165
|
dependencies = [
|
|
2406
2166
|
"zerofrom-derive",
|
|
2407
2167
|
]
|
|
2408
2168
|
|
|
2409
2169
|
[[package]]
|
|
2410
2170
|
name = "zerofrom-derive"
|
|
2411
|
-
version = "0.1.
|
|
2171
|
+
version = "0.1.4"
|
|
2412
2172
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2413
|
-
checksum = "
|
|
2173
|
+
checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5"
|
|
2414
2174
|
dependencies = [
|
|
2415
2175
|
"proc-macro2",
|
|
2416
2176
|
"quote",
|