act-cli 0.7.2__tar.gz → 0.7.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {act_cli-0.7.2 → act_cli-0.7.4}/Cargo.lock +408 -464
- {act_cli-0.7.2 → act_cli-0.7.4}/Cargo.toml +2 -2
- {act_cli-0.7.2 → act_cli-0.7.4}/PKG-INFO +18 -1
- {act_cli-0.7.2/act-cli → act_cli-0.7.4}/README.md +17 -0
- {act_cli-0.7.2 → act_cli-0.7.4}/act-cli/Cargo.toml +13 -13
- {act_cli-0.7.2 → act_cli-0.7.4/act-cli}/README.md +17 -0
- {act_cli-0.7.2 → act_cli-0.7.4}/act-cli/src/config.rs +247 -0
- {act_cli-0.7.2 → act_cli-0.7.4}/act-cli/src/main.rs +40 -5
- {act_cli-0.7.2 → act_cli-0.7.4}/act-cli/src/resolve.rs +78 -11
- {act_cli-0.7.2 → act_cli-0.7.4}/act-cli/src/rmcp_bridge.rs +221 -27
- {act_cli-0.7.2 → act_cli-0.7.4}/act-cli/src/runtime/effective.rs +219 -0
- {act_cli-0.7.2 → act_cli-0.7.4}/act-cli/src/runtime/http_client.rs +0 -3
- {act_cli-0.7.2 → act_cli-0.7.4}/act-cli/src/runtime/http_policy.rs +0 -2
- {act_cli-0.7.2 → act_cli-0.7.4}/act-cli/src/runtime/mod.rs +13 -2
- act_cli-0.7.4/act-cli/src/runtime/sockets_policy.rs +385 -0
- {act_cli-0.7.2 → act_cli-0.7.4}/act-cli/build.rs +0 -0
- {act_cli-0.7.2 → act_cli-0.7.4}/act-cli/src/format.rs +0 -0
- {act_cli-0.7.2 → act_cli-0.7.4}/act-cli/src/http.rs +15 -15
- {act_cli-0.7.2 → act_cli-0.7.4}/act-cli/src/runtime/bindings/mod.rs +0 -0
- {act_cli-0.7.2 → act_cli-0.7.4}/act-cli/src/runtime/fs_matcher.rs +0 -0
- {act_cli-0.7.2 → act_cli-0.7.4}/act-cli/src/runtime/fs_policy.rs +0 -0
- {act_cli-0.7.2 → act_cli-0.7.4}/act-cli/src/runtime/network.rs +0 -0
- {act_cli-0.7.2 → act_cli-0.7.4}/act-cli/src/runtime/sessions.rs +0 -0
- {act_cli-0.7.2 → act_cli-0.7.4}/act-cli/wit/deps/act-core/act-core.wit +0 -0
- {act_cli-0.7.2 → act_cli-0.7.4}/act-cli/wit/deps/act-tools/act-tools.wit +0 -0
- {act_cli-0.7.2 → act_cli-0.7.4}/act-cli/wit/deps.lock +0 -0
- {act_cli-0.7.2 → act_cli-0.7.4}/act-cli/wit/deps.toml +0 -0
- {act_cli-0.7.2 → act_cli-0.7.4}/act-cli/wit/world.wit +0 -0
- {act_cli-0.7.2 → act_cli-0.7.4}/pyproject.toml +0 -0
|
@@ -4,28 +4,38 @@ version = 4
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "act-build"
|
|
7
|
-
version = "0.7.
|
|
7
|
+
version = "0.7.4"
|
|
8
8
|
dependencies = [
|
|
9
9
|
"act-types",
|
|
10
10
|
"anyhow",
|
|
11
|
+
"base64",
|
|
11
12
|
"ciborium",
|
|
12
13
|
"clap",
|
|
14
|
+
"dirs",
|
|
15
|
+
"flate2",
|
|
13
16
|
"globset",
|
|
17
|
+
"include_dir",
|
|
14
18
|
"json-patch",
|
|
19
|
+
"minijinja",
|
|
20
|
+
"oci-client",
|
|
21
|
+
"reqwest",
|
|
15
22
|
"serde",
|
|
16
23
|
"serde_json",
|
|
24
|
+
"sha2 0.11.0",
|
|
17
25
|
"tar",
|
|
18
26
|
"tempfile",
|
|
27
|
+
"tokio",
|
|
19
28
|
"toml 1.1.2+spec-1.1.0",
|
|
20
29
|
"tracing",
|
|
21
30
|
"tracing-subscriber",
|
|
22
|
-
"
|
|
23
|
-
"
|
|
31
|
+
"walkdir",
|
|
32
|
+
"wasm-encoder 0.250.0",
|
|
33
|
+
"wasmparser 0.250.0",
|
|
24
34
|
]
|
|
25
35
|
|
|
26
36
|
[[package]]
|
|
27
37
|
name = "act-cli"
|
|
28
|
-
version = "0.7.
|
|
38
|
+
version = "0.7.4"
|
|
29
39
|
dependencies = [
|
|
30
40
|
"act-types",
|
|
31
41
|
"anyhow",
|
|
@@ -62,7 +72,7 @@ dependencies = [
|
|
|
62
72
|
"tracing",
|
|
63
73
|
"tracing-subscriber",
|
|
64
74
|
"url",
|
|
65
|
-
"wasmparser 0.
|
|
75
|
+
"wasmparser 0.250.0",
|
|
66
76
|
"wasmtime",
|
|
67
77
|
"wasmtime-wasi",
|
|
68
78
|
"wasmtime-wasi-http",
|
|
@@ -70,9 +80,9 @@ dependencies = [
|
|
|
70
80
|
|
|
71
81
|
[[package]]
|
|
72
82
|
name = "act-types"
|
|
73
|
-
version = "0.7.
|
|
83
|
+
version = "0.7.1"
|
|
74
84
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
-
checksum = "
|
|
85
|
+
checksum = "40744091fc7b75e2f694d0df62476f5dea36c72fc6bf3bed86364ffb1a52c691"
|
|
76
86
|
dependencies = [
|
|
77
87
|
"base64",
|
|
78
88
|
"ciborium",
|
|
@@ -90,6 +100,12 @@ dependencies = [
|
|
|
90
100
|
"gimli",
|
|
91
101
|
]
|
|
92
102
|
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "adler2"
|
|
105
|
+
version = "2.0.1"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
108
|
+
|
|
93
109
|
[[package]]
|
|
94
110
|
name = "aho-corasick"
|
|
95
111
|
version = "1.1.4"
|
|
@@ -201,25 +217,26 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
|
201
217
|
|
|
202
218
|
[[package]]
|
|
203
219
|
name = "autocfg"
|
|
204
|
-
version = "1.5.
|
|
220
|
+
version = "1.5.1"
|
|
205
221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
-
checksum = "
|
|
222
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
207
223
|
|
|
208
224
|
[[package]]
|
|
209
225
|
name = "aws-lc-rs"
|
|
210
|
-
version = "1.
|
|
226
|
+
version = "1.17.0"
|
|
211
227
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
-
checksum = "
|
|
228
|
+
checksum = "5ec2f1fc3ec205783a5da9a7e6c1509cc69dedf09a1949e412c1e18469326d00"
|
|
213
229
|
dependencies = [
|
|
214
230
|
"aws-lc-sys",
|
|
231
|
+
"untrusted 0.7.1",
|
|
215
232
|
"zeroize",
|
|
216
233
|
]
|
|
217
234
|
|
|
218
235
|
[[package]]
|
|
219
236
|
name = "aws-lc-sys"
|
|
220
|
-
version = "0.
|
|
237
|
+
version = "0.41.0"
|
|
221
238
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
-
checksum = "
|
|
239
|
+
checksum = "1a2f9779ce85b93ab6170dd940ad0169b5766ff848247aff13bb788b832fe3f4"
|
|
223
240
|
dependencies = [
|
|
224
241
|
"cc",
|
|
225
242
|
"cmake",
|
|
@@ -291,15 +308,6 @@ version = "2.11.1"
|
|
|
291
308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
309
|
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
293
310
|
|
|
294
|
-
[[package]]
|
|
295
|
-
name = "bitmaps"
|
|
296
|
-
version = "2.1.0"
|
|
297
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
-
checksum = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2"
|
|
299
|
-
dependencies = [
|
|
300
|
-
"typenum",
|
|
301
|
-
]
|
|
302
|
-
|
|
303
311
|
[[package]]
|
|
304
312
|
name = "block-buffer"
|
|
305
313
|
version = "0.10.4"
|
|
@@ -318,6 +326,15 @@ dependencies = [
|
|
|
318
326
|
"hybrid-array",
|
|
319
327
|
]
|
|
320
328
|
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "bs58"
|
|
331
|
+
version = "0.5.1"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
|
|
334
|
+
dependencies = [
|
|
335
|
+
"tinyvec",
|
|
336
|
+
]
|
|
337
|
+
|
|
321
338
|
[[package]]
|
|
322
339
|
name = "bstr"
|
|
323
340
|
version = "1.12.1"
|
|
@@ -330,9 +347,9 @@ dependencies = [
|
|
|
330
347
|
|
|
331
348
|
[[package]]
|
|
332
349
|
name = "bumpalo"
|
|
333
|
-
version = "3.20.
|
|
350
|
+
version = "3.20.3"
|
|
334
351
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
-
checksum = "
|
|
352
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
336
353
|
dependencies = [
|
|
337
354
|
"allocator-api2",
|
|
338
355
|
]
|
|
@@ -363,7 +380,7 @@ checksum = "20a158160765c6a7d0d8c072a53d772e4cb243f38b04bfcf6b4939cfbe7482e7"
|
|
|
363
380
|
dependencies = [
|
|
364
381
|
"cap-primitives",
|
|
365
382
|
"cap-std",
|
|
366
|
-
"rustix
|
|
383
|
+
"rustix",
|
|
367
384
|
"smallvec",
|
|
368
385
|
]
|
|
369
386
|
|
|
@@ -379,22 +396,12 @@ dependencies = [
|
|
|
379
396
|
"io-lifetimes",
|
|
380
397
|
"ipnet",
|
|
381
398
|
"maybe-owned",
|
|
382
|
-
"rustix
|
|
399
|
+
"rustix",
|
|
383
400
|
"rustix-linux-procfs",
|
|
384
401
|
"windows-sys 0.59.0",
|
|
385
402
|
"winx",
|
|
386
403
|
]
|
|
387
404
|
|
|
388
|
-
[[package]]
|
|
389
|
-
name = "cap-rand"
|
|
390
|
-
version = "3.4.5"
|
|
391
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
-
checksum = "d8144c22e24bbcf26ade86cb6501a0916c46b7e4787abdb0045a467eb1645a1d"
|
|
393
|
-
dependencies = [
|
|
394
|
-
"ambient-authority",
|
|
395
|
-
"rand 0.8.6",
|
|
396
|
-
]
|
|
397
|
-
|
|
398
405
|
[[package]]
|
|
399
406
|
name = "cap-std"
|
|
400
407
|
version = "3.4.5"
|
|
@@ -404,7 +411,7 @@ dependencies = [
|
|
|
404
411
|
"cap-primitives",
|
|
405
412
|
"io-extras",
|
|
406
413
|
"io-lifetimes",
|
|
407
|
-
"rustix
|
|
414
|
+
"rustix",
|
|
408
415
|
]
|
|
409
416
|
|
|
410
417
|
[[package]]
|
|
@@ -417,15 +424,15 @@ dependencies = [
|
|
|
417
424
|
"cap-primitives",
|
|
418
425
|
"iana-time-zone",
|
|
419
426
|
"once_cell",
|
|
420
|
-
"rustix
|
|
427
|
+
"rustix",
|
|
421
428
|
"winx",
|
|
422
429
|
]
|
|
423
430
|
|
|
424
431
|
[[package]]
|
|
425
432
|
name = "cc"
|
|
426
|
-
version = "1.2.
|
|
433
|
+
version = "1.2.62"
|
|
427
434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
428
|
-
checksum = "
|
|
435
|
+
checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
|
|
429
436
|
dependencies = [
|
|
430
437
|
"find-msvc-tools",
|
|
431
438
|
"jobserver",
|
|
@@ -433,12 +440,6 @@ dependencies = [
|
|
|
433
440
|
"shlex",
|
|
434
441
|
]
|
|
435
442
|
|
|
436
|
-
[[package]]
|
|
437
|
-
name = "cesu8"
|
|
438
|
-
version = "1.1.0"
|
|
439
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
-
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
441
|
-
|
|
442
443
|
[[package]]
|
|
443
444
|
name = "cfg-if"
|
|
444
445
|
version = "1.0.4"
|
|
@@ -451,6 +452,17 @@ version = "0.2.1"
|
|
|
451
452
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
453
|
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
453
454
|
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "chacha20"
|
|
457
|
+
version = "0.10.0"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"cfg-if",
|
|
462
|
+
"cpufeatures 0.3.0",
|
|
463
|
+
"rand_core 0.10.1",
|
|
464
|
+
]
|
|
465
|
+
|
|
454
466
|
[[package]]
|
|
455
467
|
name = "chrono"
|
|
456
468
|
version = "0.4.44"
|
|
@@ -656,27 +668,27 @@ dependencies = [
|
|
|
656
668
|
|
|
657
669
|
[[package]]
|
|
658
670
|
name = "cranelift-assembler-x64"
|
|
659
|
-
version = "0.
|
|
671
|
+
version = "0.132.0"
|
|
660
672
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
-
checksum = "
|
|
673
|
+
checksum = "8c80cf55a351448317210f26c434be761bcb25e7b36116ec92f89540b73e2833"
|
|
662
674
|
dependencies = [
|
|
663
675
|
"cranelift-assembler-x64-meta",
|
|
664
676
|
]
|
|
665
677
|
|
|
666
678
|
[[package]]
|
|
667
679
|
name = "cranelift-assembler-x64-meta"
|
|
668
|
-
version = "0.
|
|
680
|
+
version = "0.132.0"
|
|
669
681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
-
checksum = "
|
|
682
|
+
checksum = "07937ca8617b340162fe3a4716be885b5847e9b56d6c7a89abbe4d42340fdc91"
|
|
671
683
|
dependencies = [
|
|
672
684
|
"cranelift-srcgen",
|
|
673
685
|
]
|
|
674
686
|
|
|
675
687
|
[[package]]
|
|
676
688
|
name = "cranelift-bforest"
|
|
677
|
-
version = "0.
|
|
689
|
+
version = "0.132.0"
|
|
678
690
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
-
checksum = "
|
|
691
|
+
checksum = "88217b08180882436d54c0133274885c590698ae854e352bede1cda041230800"
|
|
680
692
|
dependencies = [
|
|
681
693
|
"cranelift-entity",
|
|
682
694
|
"wasmtime-internal-core",
|
|
@@ -684,9 +696,9 @@ dependencies = [
|
|
|
684
696
|
|
|
685
697
|
[[package]]
|
|
686
698
|
name = "cranelift-bitset"
|
|
687
|
-
version = "0.
|
|
699
|
+
version = "0.132.0"
|
|
688
700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
-
checksum = "
|
|
701
|
+
checksum = "d5c3cf7ba29fa56e56040848e34835d4e45988b2760ef212413409af95ffd8c1"
|
|
690
702
|
dependencies = [
|
|
691
703
|
"serde",
|
|
692
704
|
"serde_derive",
|
|
@@ -695,9 +707,9 @@ dependencies = [
|
|
|
695
707
|
|
|
696
708
|
[[package]]
|
|
697
709
|
name = "cranelift-codegen"
|
|
698
|
-
version = "0.
|
|
710
|
+
version = "0.132.0"
|
|
699
711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
-
checksum = "
|
|
712
|
+
checksum = "ebe1aac2efd4cba2047845fce38a68519935a30e20c8a6294ba7e2f448fe722d"
|
|
701
713
|
dependencies = [
|
|
702
714
|
"bumpalo",
|
|
703
715
|
"cranelift-assembler-x64",
|
|
@@ -709,7 +721,7 @@ dependencies = [
|
|
|
709
721
|
"cranelift-entity",
|
|
710
722
|
"cranelift-isle",
|
|
711
723
|
"gimli",
|
|
712
|
-
"hashbrown 0.
|
|
724
|
+
"hashbrown 0.17.1",
|
|
713
725
|
"libm",
|
|
714
726
|
"log",
|
|
715
727
|
"pulley-interpreter",
|
|
@@ -723,9 +735,9 @@ dependencies = [
|
|
|
723
735
|
|
|
724
736
|
[[package]]
|
|
725
737
|
name = "cranelift-codegen-meta"
|
|
726
|
-
version = "0.
|
|
738
|
+
version = "0.132.0"
|
|
727
739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
-
checksum = "
|
|
740
|
+
checksum = "0909eaf9d6f18f5bf802d50608cb4368ac340fbd03cc44f2888d1cfcc3faa64e"
|
|
729
741
|
dependencies = [
|
|
730
742
|
"cranelift-assembler-x64-meta",
|
|
731
743
|
"cranelift-codegen-shared",
|
|
@@ -736,24 +748,24 @@ dependencies = [
|
|
|
736
748
|
|
|
737
749
|
[[package]]
|
|
738
750
|
name = "cranelift-codegen-shared"
|
|
739
|
-
version = "0.
|
|
751
|
+
version = "0.132.0"
|
|
740
752
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
-
checksum = "
|
|
753
|
+
checksum = "c95a8da8be283f49cda7d0ef228c94f10d791e517b27b0c7e282dadd2e79ce45"
|
|
742
754
|
|
|
743
755
|
[[package]]
|
|
744
756
|
name = "cranelift-control"
|
|
745
|
-
version = "0.
|
|
757
|
+
version = "0.132.0"
|
|
746
758
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
-
checksum = "
|
|
759
|
+
checksum = "f5b19c81145146da1f7afda2e7f52111842fe6793512e740ad5cf3f5639e6212"
|
|
748
760
|
dependencies = [
|
|
749
761
|
"arbitrary",
|
|
750
762
|
]
|
|
751
763
|
|
|
752
764
|
[[package]]
|
|
753
765
|
name = "cranelift-entity"
|
|
754
|
-
version = "0.
|
|
766
|
+
version = "0.132.0"
|
|
755
767
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
-
checksum = "
|
|
768
|
+
checksum = "4a55309b47e6633ab05821304206cb1e92952e845b1224985562bb7ac1e92323"
|
|
757
769
|
dependencies = [
|
|
758
770
|
"cranelift-bitset",
|
|
759
771
|
"serde",
|
|
@@ -763,9 +775,9 @@ dependencies = [
|
|
|
763
775
|
|
|
764
776
|
[[package]]
|
|
765
777
|
name = "cranelift-frontend"
|
|
766
|
-
version = "0.
|
|
778
|
+
version = "0.132.0"
|
|
767
779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
768
|
-
checksum = "
|
|
780
|
+
checksum = "064d2d3533d9608f1cf44c8899cf2f7f33feb70300b0fb83e687b0d9e7b91147"
|
|
769
781
|
dependencies = [
|
|
770
782
|
"cranelift-codegen",
|
|
771
783
|
"log",
|
|
@@ -775,15 +787,15 @@ dependencies = [
|
|
|
775
787
|
|
|
776
788
|
[[package]]
|
|
777
789
|
name = "cranelift-isle"
|
|
778
|
-
version = "0.
|
|
790
|
+
version = "0.132.0"
|
|
779
791
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
-
checksum = "
|
|
792
|
+
checksum = "1ac4e0bc095b2dab2212d1e99d7a74b62afc1485db023f1c0cb34a68758f7bd1"
|
|
781
793
|
|
|
782
794
|
[[package]]
|
|
783
795
|
name = "cranelift-native"
|
|
784
|
-
version = "0.
|
|
796
|
+
version = "0.132.0"
|
|
785
797
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
-
checksum = "
|
|
798
|
+
checksum = "09a40053f5cb925451dd1d57393d14ad3145c8e0786701c27b5415ebb9a3ba4f"
|
|
787
799
|
dependencies = [
|
|
788
800
|
"cranelift-codegen",
|
|
789
801
|
"libc",
|
|
@@ -792,9 +804,9 @@ dependencies = [
|
|
|
792
804
|
|
|
793
805
|
[[package]]
|
|
794
806
|
name = "cranelift-srcgen"
|
|
795
|
-
version = "0.
|
|
807
|
+
version = "0.132.0"
|
|
796
808
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
|
-
checksum = "
|
|
809
|
+
checksum = "a3ceab9a53f7d362c89841fbaa8e63e44d47c40e91dc96ee6f777fca5d6b323b"
|
|
798
810
|
|
|
799
811
|
[[package]]
|
|
800
812
|
name = "crc32fast"
|
|
@@ -848,9 +860,9 @@ dependencies = [
|
|
|
848
860
|
|
|
849
861
|
[[package]]
|
|
850
862
|
name = "crypto-common"
|
|
851
|
-
version = "0.2.
|
|
863
|
+
version = "0.2.2"
|
|
852
864
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
853
|
-
checksum = "
|
|
865
|
+
checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
|
|
854
866
|
dependencies = [
|
|
855
867
|
"hybrid-array",
|
|
856
868
|
]
|
|
@@ -986,13 +998,13 @@ dependencies = [
|
|
|
986
998
|
|
|
987
999
|
[[package]]
|
|
988
1000
|
name = "digest"
|
|
989
|
-
version = "0.11.
|
|
1001
|
+
version = "0.11.3"
|
|
990
1002
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
-
checksum = "
|
|
1003
|
+
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
992
1004
|
dependencies = [
|
|
993
1005
|
"block-buffer 0.12.0",
|
|
994
1006
|
"const-oid",
|
|
995
|
-
"crypto-common 0.2.
|
|
1007
|
+
"crypto-common 0.2.2",
|
|
996
1008
|
]
|
|
997
1009
|
|
|
998
1010
|
[[package]]
|
|
@@ -1062,9 +1074,9 @@ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
|
1062
1074
|
|
|
1063
1075
|
[[package]]
|
|
1064
1076
|
name = "either"
|
|
1065
|
-
version = "1.
|
|
1077
|
+
version = "1.16.0"
|
|
1066
1078
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1067
|
-
checksum = "
|
|
1079
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
1068
1080
|
|
|
1069
1081
|
[[package]]
|
|
1070
1082
|
name = "embed-manifest"
|
|
@@ -1121,26 +1133,14 @@ version = "2.4.1"
|
|
|
1121
1133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
1134
|
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
1123
1135
|
|
|
1124
|
-
[[package]]
|
|
1125
|
-
name = "fd-lock"
|
|
1126
|
-
version = "4.0.4"
|
|
1127
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
-
checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78"
|
|
1129
|
-
dependencies = [
|
|
1130
|
-
"cfg-if",
|
|
1131
|
-
"rustix 1.1.4",
|
|
1132
|
-
"windows-sys 0.59.0",
|
|
1133
|
-
]
|
|
1134
|
-
|
|
1135
1136
|
[[package]]
|
|
1136
1137
|
name = "filetime"
|
|
1137
|
-
version = "0.2.
|
|
1138
|
+
version = "0.2.29"
|
|
1138
1139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1139
|
-
checksum = "
|
|
1140
|
+
checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
|
|
1140
1141
|
dependencies = [
|
|
1141
1142
|
"cfg-if",
|
|
1142
1143
|
"libc",
|
|
1143
|
-
"libredox",
|
|
1144
1144
|
]
|
|
1145
1145
|
|
|
1146
1146
|
[[package]]
|
|
@@ -1155,6 +1155,16 @@ version = "0.4.2"
|
|
|
1155
1155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
1156
|
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
1157
1157
|
|
|
1158
|
+
[[package]]
|
|
1159
|
+
name = "flate2"
|
|
1160
|
+
version = "1.1.9"
|
|
1161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1162
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
1163
|
+
dependencies = [
|
|
1164
|
+
"crc32fast",
|
|
1165
|
+
"miniz_oxide",
|
|
1166
|
+
]
|
|
1167
|
+
|
|
1158
1168
|
[[package]]
|
|
1159
1169
|
name = "fnv"
|
|
1160
1170
|
version = "1.0.7"
|
|
@@ -1189,7 +1199,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1189
1199
|
checksum = "94e7099f6313ecacbe1256e8ff9d617b75d1bcb16a6fddef94866d225a01a14a"
|
|
1190
1200
|
dependencies = [
|
|
1191
1201
|
"io-lifetimes",
|
|
1192
|
-
"rustix
|
|
1202
|
+
"rustix",
|
|
1193
1203
|
"windows-sys 0.59.0",
|
|
1194
1204
|
]
|
|
1195
1205
|
|
|
@@ -1347,6 +1357,7 @@ dependencies = [
|
|
|
1347
1357
|
"cfg-if",
|
|
1348
1358
|
"libc",
|
|
1349
1359
|
"r-efi 6.0.0",
|
|
1360
|
+
"rand_core 0.10.1",
|
|
1350
1361
|
"wasip2",
|
|
1351
1362
|
"wasip3",
|
|
1352
1363
|
]
|
|
@@ -1390,9 +1401,9 @@ dependencies = [
|
|
|
1390
1401
|
|
|
1391
1402
|
[[package]]
|
|
1392
1403
|
name = "h2"
|
|
1393
|
-
version = "0.4.
|
|
1404
|
+
version = "0.4.14"
|
|
1394
1405
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1395
|
-
checksum = "
|
|
1406
|
+
checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733"
|
|
1396
1407
|
dependencies = [
|
|
1397
1408
|
"atomic-waker",
|
|
1398
1409
|
"bytes",
|
|
@@ -1466,17 +1477,12 @@ name = "hashbrown"
|
|
|
1466
1477
|
version = "0.16.1"
|
|
1467
1478
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1468
1479
|
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1469
|
-
dependencies = [
|
|
1470
|
-
"foldhash 0.2.0",
|
|
1471
|
-
"serde",
|
|
1472
|
-
"serde_core",
|
|
1473
|
-
]
|
|
1474
1480
|
|
|
1475
1481
|
[[package]]
|
|
1476
1482
|
name = "hashbrown"
|
|
1477
|
-
version = "0.17.
|
|
1483
|
+
version = "0.17.1"
|
|
1478
1484
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1479
|
-
checksum = "
|
|
1485
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
1480
1486
|
dependencies = [
|
|
1481
1487
|
"foldhash 0.2.0",
|
|
1482
1488
|
"serde",
|
|
@@ -1557,9 +1563,9 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
|
1557
1563
|
|
|
1558
1564
|
[[package]]
|
|
1559
1565
|
name = "hybrid-array"
|
|
1560
|
-
version = "0.4.
|
|
1566
|
+
version = "0.4.12"
|
|
1561
1567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
-
checksum = "
|
|
1568
|
+
checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da"
|
|
1563
1569
|
dependencies = [
|
|
1564
1570
|
"typenum",
|
|
1565
1571
|
]
|
|
@@ -1755,26 +1761,31 @@ dependencies = [
|
|
|
1755
1761
|
|
|
1756
1762
|
[[package]]
|
|
1757
1763
|
name = "idna_adapter"
|
|
1758
|
-
version = "1.2.
|
|
1764
|
+
version = "1.2.2"
|
|
1759
1765
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1760
|
-
checksum = "
|
|
1766
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
1761
1767
|
dependencies = [
|
|
1762
1768
|
"icu_normalizer",
|
|
1763
1769
|
"icu_properties",
|
|
1764
1770
|
]
|
|
1765
1771
|
|
|
1766
1772
|
[[package]]
|
|
1767
|
-
name = "
|
|
1768
|
-
version = "
|
|
1773
|
+
name = "include_dir"
|
|
1774
|
+
version = "0.7.4"
|
|
1769
1775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1770
|
-
checksum = "
|
|
1776
|
+
checksum = "923d117408f1e49d914f1a379a309cffe4f18c05cf4e3d12e613a15fc81bd0dd"
|
|
1771
1777
|
dependencies = [
|
|
1772
|
-
"
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
"
|
|
1777
|
-
"
|
|
1778
|
+
"include_dir_macros",
|
|
1779
|
+
]
|
|
1780
|
+
|
|
1781
|
+
[[package]]
|
|
1782
|
+
name = "include_dir_macros"
|
|
1783
|
+
version = "0.7.4"
|
|
1784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1785
|
+
checksum = "7cab85a7ed0bd5f0e76d93846e0147172bed2e2d3f859bcc33a8d9699cad1a75"
|
|
1786
|
+
dependencies = [
|
|
1787
|
+
"proc-macro2",
|
|
1788
|
+
"quote",
|
|
1778
1789
|
]
|
|
1779
1790
|
|
|
1780
1791
|
[[package]]
|
|
@@ -1795,7 +1806,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1795
1806
|
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
1796
1807
|
dependencies = [
|
|
1797
1808
|
"equivalent",
|
|
1798
|
-
"hashbrown 0.17.
|
|
1809
|
+
"hashbrown 0.17.1",
|
|
1799
1810
|
"serde",
|
|
1800
1811
|
"serde_core",
|
|
1801
1812
|
]
|
|
@@ -1835,16 +1846,6 @@ version = "2.12.0"
|
|
|
1835
1846
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1836
1847
|
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
1837
1848
|
|
|
1838
|
-
[[package]]
|
|
1839
|
-
name = "iri-string"
|
|
1840
|
-
version = "0.7.12"
|
|
1841
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1842
|
-
checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
|
|
1843
|
-
dependencies = [
|
|
1844
|
-
"memchr",
|
|
1845
|
-
"serde",
|
|
1846
|
-
]
|
|
1847
|
-
|
|
1848
1849
|
[[package]]
|
|
1849
1850
|
name = "is-terminal"
|
|
1850
1851
|
version = "0.4.17"
|
|
@@ -1905,27 +1906,32 @@ dependencies = [
|
|
|
1905
1906
|
|
|
1906
1907
|
[[package]]
|
|
1907
1908
|
name = "jni"
|
|
1908
|
-
version = "0.
|
|
1909
|
+
version = "0.22.4"
|
|
1909
1910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1910
|
-
checksum = "
|
|
1911
|
+
checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
|
|
1911
1912
|
dependencies = [
|
|
1912
|
-
"cesu8",
|
|
1913
1913
|
"cfg-if",
|
|
1914
1914
|
"combine",
|
|
1915
|
-
"jni-
|
|
1915
|
+
"jni-macros",
|
|
1916
|
+
"jni-sys",
|
|
1916
1917
|
"log",
|
|
1917
|
-
"
|
|
1918
|
+
"simd_cesu8",
|
|
1919
|
+
"thiserror 2.0.18",
|
|
1918
1920
|
"walkdir",
|
|
1919
|
-
"windows-
|
|
1921
|
+
"windows-link",
|
|
1920
1922
|
]
|
|
1921
1923
|
|
|
1922
1924
|
[[package]]
|
|
1923
|
-
name = "jni-
|
|
1924
|
-
version = "0.
|
|
1925
|
+
name = "jni-macros"
|
|
1926
|
+
version = "0.22.4"
|
|
1925
1927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1926
|
-
checksum = "
|
|
1928
|
+
checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
|
|
1927
1929
|
dependencies = [
|
|
1928
|
-
"
|
|
1930
|
+
"proc-macro2",
|
|
1931
|
+
"quote",
|
|
1932
|
+
"rustc_version",
|
|
1933
|
+
"simd_cesu8",
|
|
1934
|
+
"syn",
|
|
1929
1935
|
]
|
|
1930
1936
|
|
|
1931
1937
|
[[package]]
|
|
@@ -1959,9 +1965,9 @@ dependencies = [
|
|
|
1959
1965
|
|
|
1960
1966
|
[[package]]
|
|
1961
1967
|
name = "js-sys"
|
|
1962
|
-
version = "0.3.
|
|
1968
|
+
version = "0.3.99"
|
|
1963
1969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1964
|
-
checksum = "
|
|
1970
|
+
checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
|
|
1965
1971
|
dependencies = [
|
|
1966
1972
|
"cfg-if",
|
|
1967
1973
|
"futures-util",
|
|
@@ -1971,14 +1977,14 @@ dependencies = [
|
|
|
1971
1977
|
|
|
1972
1978
|
[[package]]
|
|
1973
1979
|
name = "json-patch"
|
|
1974
|
-
version = "4.
|
|
1980
|
+
version = "4.2.0"
|
|
1975
1981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1976
|
-
checksum = "
|
|
1982
|
+
checksum = "7421438de105a0827e44fadd05377727847d717c80ce29a229f85fd04c427b72"
|
|
1977
1983
|
dependencies = [
|
|
1978
1984
|
"jsonptr",
|
|
1979
1985
|
"serde",
|
|
1980
1986
|
"serde_json",
|
|
1981
|
-
"thiserror
|
|
1987
|
+
"thiserror 2.0.18",
|
|
1982
1988
|
]
|
|
1983
1989
|
|
|
1984
1990
|
[[package]]
|
|
@@ -1993,16 +1999,18 @@ dependencies = [
|
|
|
1993
1999
|
|
|
1994
2000
|
[[package]]
|
|
1995
2001
|
name = "jsonwebtoken"
|
|
1996
|
-
version = "10.
|
|
2002
|
+
version = "10.4.0"
|
|
1997
2003
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1998
|
-
checksum = "
|
|
2004
|
+
checksum = "eba32bfb4ffdeaca3e34431072faf01745c9b26d25504aa7a6cf5684334fc4fc"
|
|
1999
2005
|
dependencies = [
|
|
2006
|
+
"aws-lc-rs",
|
|
2000
2007
|
"base64",
|
|
2001
2008
|
"getrandom 0.2.17",
|
|
2002
2009
|
"js-sys",
|
|
2003
2010
|
"serde",
|
|
2004
2011
|
"serde_json",
|
|
2005
2012
|
"signature",
|
|
2013
|
+
"zeroize",
|
|
2006
2014
|
]
|
|
2007
2015
|
|
|
2008
2016
|
[[package]]
|
|
@@ -2034,9 +2042,9 @@ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
|
2034
2042
|
|
|
2035
2043
|
[[package]]
|
|
2036
2044
|
name = "libc"
|
|
2037
|
-
version = "0.2.
|
|
2045
|
+
version = "0.2.186"
|
|
2038
2046
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2039
|
-
checksum = "
|
|
2047
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
2040
2048
|
|
|
2041
2049
|
[[package]]
|
|
2042
2050
|
name = "libm"
|
|
@@ -2050,18 +2058,9 @@ version = "0.1.16"
|
|
|
2050
2058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2051
2059
|
checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
|
|
2052
2060
|
dependencies = [
|
|
2053
|
-
"bitflags",
|
|
2054
2061
|
"libc",
|
|
2055
|
-
"plain",
|
|
2056
|
-
"redox_syscall 0.7.4",
|
|
2057
2062
|
]
|
|
2058
2063
|
|
|
2059
|
-
[[package]]
|
|
2060
|
-
name = "linux-raw-sys"
|
|
2061
|
-
version = "0.4.15"
|
|
2062
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2063
|
-
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
2064
|
-
|
|
2065
2064
|
[[package]]
|
|
2066
2065
|
name = "linux-raw-sys"
|
|
2067
2066
|
version = "0.12.1"
|
|
@@ -2137,15 +2136,41 @@ version = "0.6.5"
|
|
|
2137
2136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2138
2137
|
checksum = "ad38eb12aea514a0466ea40a80fd8cc83637065948eb4a426e4aa46261175227"
|
|
2139
2138
|
dependencies = [
|
|
2140
|
-
"rustix
|
|
2139
|
+
"rustix",
|
|
2141
2140
|
]
|
|
2142
2141
|
|
|
2142
|
+
[[package]]
|
|
2143
|
+
name = "memo-map"
|
|
2144
|
+
version = "0.3.3"
|
|
2145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2146
|
+
checksum = "38d1115007560874e373613744c6fba374c17688327a71c1476d1a5954cc857b"
|
|
2147
|
+
|
|
2143
2148
|
[[package]]
|
|
2144
2149
|
name = "mime"
|
|
2145
2150
|
version = "0.3.17"
|
|
2146
2151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2147
2152
|
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
2148
2153
|
|
|
2154
|
+
[[package]]
|
|
2155
|
+
name = "minijinja"
|
|
2156
|
+
version = "2.20.0"
|
|
2157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2158
|
+
checksum = "2929e494b2280e1e18959bb2e121da03347ae896896fdfaceaab43c88a02803f"
|
|
2159
|
+
dependencies = [
|
|
2160
|
+
"memo-map",
|
|
2161
|
+
"serde",
|
|
2162
|
+
]
|
|
2163
|
+
|
|
2164
|
+
[[package]]
|
|
2165
|
+
name = "miniz_oxide"
|
|
2166
|
+
version = "0.8.9"
|
|
2167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2168
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
2169
|
+
dependencies = [
|
|
2170
|
+
"adler2",
|
|
2171
|
+
"simd-adler32",
|
|
2172
|
+
]
|
|
2173
|
+
|
|
2149
2174
|
[[package]]
|
|
2150
2175
|
name = "mio"
|
|
2151
2176
|
version = "1.2.0"
|
|
@@ -2159,9 +2184,9 @@ dependencies = [
|
|
|
2159
2184
|
|
|
2160
2185
|
[[package]]
|
|
2161
2186
|
name = "nix"
|
|
2162
|
-
version = "0.31.
|
|
2187
|
+
version = "0.31.3"
|
|
2163
2188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2164
|
-
checksum = "
|
|
2189
|
+
checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
|
|
2165
2190
|
dependencies = [
|
|
2166
2191
|
"bitflags",
|
|
2167
2192
|
"cfg-if",
|
|
@@ -2180,9 +2205,9 @@ dependencies = [
|
|
|
2180
2205
|
|
|
2181
2206
|
[[package]]
|
|
2182
2207
|
name = "num-conv"
|
|
2183
|
-
version = "0.2.
|
|
2208
|
+
version = "0.2.2"
|
|
2184
2209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2185
|
-
checksum = "
|
|
2210
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
2186
2211
|
|
|
2187
2212
|
[[package]]
|
|
2188
2213
|
name = "num-traits"
|
|
@@ -2195,25 +2220,26 @@ dependencies = [
|
|
|
2195
2220
|
|
|
2196
2221
|
[[package]]
|
|
2197
2222
|
name = "object"
|
|
2198
|
-
version = "0.
|
|
2223
|
+
version = "0.39.1"
|
|
2199
2224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2200
|
-
checksum = "
|
|
2225
|
+
checksum = "2e5a6c098c7a3b6547378093f5cc30bc54fd361ce711e05293a5cc589562739b"
|
|
2201
2226
|
dependencies = [
|
|
2202
2227
|
"crc32fast",
|
|
2203
|
-
"hashbrown 0.
|
|
2228
|
+
"hashbrown 0.17.1",
|
|
2204
2229
|
"indexmap 2.14.0",
|
|
2205
2230
|
"memchr",
|
|
2206
2231
|
]
|
|
2207
2232
|
|
|
2208
2233
|
[[package]]
|
|
2209
2234
|
name = "oci-client"
|
|
2210
|
-
version = "0.
|
|
2235
|
+
version = "0.17.0"
|
|
2211
2236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2212
|
-
checksum = "
|
|
2237
|
+
checksum = "5261a7fb43d9c53b8e63e6d5e86860719dad253d015d022066c72d585125aed8"
|
|
2213
2238
|
dependencies = [
|
|
2214
2239
|
"bytes",
|
|
2215
2240
|
"chrono",
|
|
2216
2241
|
"futures-util",
|
|
2242
|
+
"hex",
|
|
2217
2243
|
"http",
|
|
2218
2244
|
"http-auth",
|
|
2219
2245
|
"jsonwebtoken",
|
|
@@ -2224,7 +2250,7 @@ dependencies = [
|
|
|
2224
2250
|
"reqwest",
|
|
2225
2251
|
"serde",
|
|
2226
2252
|
"serde_json",
|
|
2227
|
-
"sha2 0.
|
|
2253
|
+
"sha2 0.11.0",
|
|
2228
2254
|
"thiserror 2.0.18",
|
|
2229
2255
|
"tokio",
|
|
2230
2256
|
"tracing",
|
|
@@ -2311,16 +2337,16 @@ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
|
2311
2337
|
dependencies = [
|
|
2312
2338
|
"cfg-if",
|
|
2313
2339
|
"libc",
|
|
2314
|
-
"redox_syscall
|
|
2340
|
+
"redox_syscall",
|
|
2315
2341
|
"smallvec",
|
|
2316
2342
|
"windows-link",
|
|
2317
2343
|
]
|
|
2318
2344
|
|
|
2319
2345
|
[[package]]
|
|
2320
2346
|
name = "pastey"
|
|
2321
|
-
version = "0.2.
|
|
2347
|
+
version = "0.2.3"
|
|
2322
2348
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2323
|
-
checksum = "
|
|
2349
|
+
checksum = "2ee67f1008b1ba2321834326597b8e186293b049a023cdef258527550b9935b4"
|
|
2324
2350
|
|
|
2325
2351
|
[[package]]
|
|
2326
2352
|
name = "path-clean"
|
|
@@ -2356,12 +2382,6 @@ version = "0.3.33"
|
|
|
2356
2382
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2357
2383
|
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
2358
2384
|
|
|
2359
|
-
[[package]]
|
|
2360
|
-
name = "plain"
|
|
2361
|
-
version = "0.2.3"
|
|
2362
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2363
|
-
checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
|
|
2364
|
-
|
|
2365
2385
|
[[package]]
|
|
2366
2386
|
name = "portable-atomic"
|
|
2367
2387
|
version = "1.13.1"
|
|
@@ -2461,9 +2481,9 @@ dependencies = [
|
|
|
2461
2481
|
|
|
2462
2482
|
[[package]]
|
|
2463
2483
|
name = "pulley-interpreter"
|
|
2464
|
-
version = "
|
|
2484
|
+
version = "45.0.0"
|
|
2465
2485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2466
|
-
checksum = "
|
|
2486
|
+
checksum = "e9204ad9435f2a6fe3bd13bba52389fb8488fa20ba497e35c5d2db638166019d"
|
|
2467
2487
|
dependencies = [
|
|
2468
2488
|
"cranelift-bitset",
|
|
2469
2489
|
"log",
|
|
@@ -2473,9 +2493,9 @@ dependencies = [
|
|
|
2473
2493
|
|
|
2474
2494
|
[[package]]
|
|
2475
2495
|
name = "pulley-macros"
|
|
2476
|
-
version = "
|
|
2496
|
+
version = "45.0.0"
|
|
2477
2497
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2478
|
-
checksum = "
|
|
2498
|
+
checksum = "53009b033747e0d79a76549a744da58e84c9da8076492c7e6d491fdc6cc41b95"
|
|
2479
2499
|
dependencies = [
|
|
2480
2500
|
"proc-macro2",
|
|
2481
2501
|
"quote",
|
|
@@ -2560,35 +2580,25 @@ version = "6.0.0"
|
|
|
2560
2580
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2561
2581
|
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
2562
2582
|
|
|
2563
|
-
[[package]]
|
|
2564
|
-
name = "rand"
|
|
2565
|
-
version = "0.8.6"
|
|
2566
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2567
|
-
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
2568
|
-
dependencies = [
|
|
2569
|
-
"libc",
|
|
2570
|
-
"rand_chacha 0.3.1",
|
|
2571
|
-
"rand_core 0.6.4",
|
|
2572
|
-
]
|
|
2573
|
-
|
|
2574
2583
|
[[package]]
|
|
2575
2584
|
name = "rand"
|
|
2576
2585
|
version = "0.9.4"
|
|
2577
2586
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2578
2587
|
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
2579
2588
|
dependencies = [
|
|
2580
|
-
"rand_chacha
|
|
2589
|
+
"rand_chacha",
|
|
2581
2590
|
"rand_core 0.9.5",
|
|
2582
2591
|
]
|
|
2583
2592
|
|
|
2584
2593
|
[[package]]
|
|
2585
|
-
name = "
|
|
2586
|
-
version = "0.
|
|
2594
|
+
name = "rand"
|
|
2595
|
+
version = "0.10.1"
|
|
2587
2596
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2588
|
-
checksum = "
|
|
2597
|
+
checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
|
|
2589
2598
|
dependencies = [
|
|
2590
|
-
"
|
|
2591
|
-
"
|
|
2599
|
+
"chacha20",
|
|
2600
|
+
"getrandom 0.4.2",
|
|
2601
|
+
"rand_core 0.10.1",
|
|
2592
2602
|
]
|
|
2593
2603
|
|
|
2594
2604
|
[[package]]
|
|
@@ -2620,13 +2630,10 @@ dependencies = [
|
|
|
2620
2630
|
]
|
|
2621
2631
|
|
|
2622
2632
|
[[package]]
|
|
2623
|
-
name = "
|
|
2624
|
-
version = "0.
|
|
2633
|
+
name = "rand_core"
|
|
2634
|
+
version = "0.10.1"
|
|
2625
2635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2626
|
-
checksum = "
|
|
2627
|
-
dependencies = [
|
|
2628
|
-
"rand_core 0.6.4",
|
|
2629
|
-
]
|
|
2636
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
2630
2637
|
|
|
2631
2638
|
[[package]]
|
|
2632
2639
|
name = "rayon"
|
|
@@ -2657,15 +2664,6 @@ dependencies = [
|
|
|
2657
2664
|
"bitflags",
|
|
2658
2665
|
]
|
|
2659
2666
|
|
|
2660
|
-
[[package]]
|
|
2661
|
-
name = "redox_syscall"
|
|
2662
|
-
version = "0.7.4"
|
|
2663
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2664
|
-
checksum = "f450ad9c3b1da563fb6948a8e0fb0fb9269711c9c73d9ea1de5058c79c8d643a"
|
|
2665
|
-
dependencies = [
|
|
2666
|
-
"bitflags",
|
|
2667
|
-
]
|
|
2668
|
-
|
|
2669
2667
|
[[package]]
|
|
2670
2668
|
name = "redox_users"
|
|
2671
2669
|
version = "0.4.6"
|
|
@@ -2716,7 +2714,7 @@ checksum = "de2c52737737f8609e94f975dee22854a2d5c125772d4b1cf292120f4d45c186"
|
|
|
2716
2714
|
dependencies = [
|
|
2717
2715
|
"allocator-api2",
|
|
2718
2716
|
"bumpalo",
|
|
2719
|
-
"hashbrown 0.17.
|
|
2717
|
+
"hashbrown 0.17.1",
|
|
2720
2718
|
"log",
|
|
2721
2719
|
"rustc-hash",
|
|
2722
2720
|
"smallvec",
|
|
@@ -2753,9 +2751,9 @@ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
|
2753
2751
|
|
|
2754
2752
|
[[package]]
|
|
2755
2753
|
name = "reqwest"
|
|
2756
|
-
version = "0.13.
|
|
2754
|
+
version = "0.13.3"
|
|
2757
2755
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2758
|
-
checksum = "
|
|
2756
|
+
checksum = "62e0021ea2c22aed41653bc7e1419abb2c97e038ff2c33d0e1309e49a97deec0"
|
|
2759
2757
|
dependencies = [
|
|
2760
2758
|
"base64",
|
|
2761
2759
|
"bytes",
|
|
@@ -2805,39 +2803,47 @@ dependencies = [
|
|
|
2805
2803
|
"cfg-if",
|
|
2806
2804
|
"getrandom 0.2.17",
|
|
2807
2805
|
"libc",
|
|
2808
|
-
"untrusted",
|
|
2806
|
+
"untrusted 0.9.0",
|
|
2809
2807
|
"windows-sys 0.52.0",
|
|
2810
2808
|
]
|
|
2811
2809
|
|
|
2812
2810
|
[[package]]
|
|
2813
2811
|
name = "rmcp"
|
|
2814
|
-
version = "1.
|
|
2812
|
+
version = "1.7.0"
|
|
2815
2813
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2816
|
-
checksum = "
|
|
2814
|
+
checksum = "0810a9f717d9828f475fe1f629f4c305c8464b7f496c3a854b58d29e65f4058e"
|
|
2817
2815
|
dependencies = [
|
|
2818
2816
|
"async-trait",
|
|
2819
2817
|
"base64",
|
|
2818
|
+
"bytes",
|
|
2820
2819
|
"chrono",
|
|
2821
2820
|
"futures",
|
|
2821
|
+
"http",
|
|
2822
|
+
"http-body",
|
|
2823
|
+
"http-body-util",
|
|
2822
2824
|
"pastey",
|
|
2823
2825
|
"pin-project-lite",
|
|
2824
2826
|
"process-wrap",
|
|
2827
|
+
"rand 0.10.1",
|
|
2825
2828
|
"rmcp-macros",
|
|
2826
2829
|
"schemars 1.2.1",
|
|
2827
2830
|
"serde",
|
|
2828
2831
|
"serde_json",
|
|
2832
|
+
"sse-stream",
|
|
2829
2833
|
"thiserror 2.0.18",
|
|
2830
2834
|
"tokio",
|
|
2831
2835
|
"tokio-stream",
|
|
2832
2836
|
"tokio-util",
|
|
2837
|
+
"tower-service",
|
|
2833
2838
|
"tracing",
|
|
2839
|
+
"uuid",
|
|
2834
2840
|
]
|
|
2835
2841
|
|
|
2836
2842
|
[[package]]
|
|
2837
2843
|
name = "rmcp-macros"
|
|
2838
|
-
version = "1.
|
|
2844
|
+
version = "1.7.0"
|
|
2839
2845
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2840
|
-
checksum = "
|
|
2846
|
+
checksum = "6aefac48c364756e97f04c0401ba3231e8607882c7c1d92da0437dc16307904d"
|
|
2841
2847
|
dependencies = [
|
|
2842
2848
|
"darling 0.23.0",
|
|
2843
2849
|
"proc-macro2",
|
|
@@ -2859,16 +2865,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2859
2865
|
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
2860
2866
|
|
|
2861
2867
|
[[package]]
|
|
2862
|
-
name = "
|
|
2863
|
-
version = "0.
|
|
2868
|
+
name = "rustc_version"
|
|
2869
|
+
version = "0.4.1"
|
|
2864
2870
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2865
|
-
checksum = "
|
|
2871
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2866
2872
|
dependencies = [
|
|
2867
|
-
"
|
|
2868
|
-
"errno",
|
|
2869
|
-
"libc",
|
|
2870
|
-
"linux-raw-sys 0.4.15",
|
|
2871
|
-
"windows-sys 0.59.0",
|
|
2873
|
+
"semver",
|
|
2872
2874
|
]
|
|
2873
2875
|
|
|
2874
2876
|
[[package]]
|
|
@@ -2880,7 +2882,7 @@ dependencies = [
|
|
|
2880
2882
|
"bitflags",
|
|
2881
2883
|
"errno",
|
|
2882
2884
|
"libc",
|
|
2883
|
-
"linux-raw-sys
|
|
2885
|
+
"linux-raw-sys",
|
|
2884
2886
|
"windows-sys 0.61.2",
|
|
2885
2887
|
]
|
|
2886
2888
|
|
|
@@ -2891,14 +2893,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2891
2893
|
checksum = "2fc84bf7e9aa16c4f2c758f27412dc9841341e16aa682d9c7ac308fe3ee12056"
|
|
2892
2894
|
dependencies = [
|
|
2893
2895
|
"once_cell",
|
|
2894
|
-
"rustix
|
|
2896
|
+
"rustix",
|
|
2895
2897
|
]
|
|
2896
2898
|
|
|
2897
2899
|
[[package]]
|
|
2898
2900
|
name = "rustls"
|
|
2899
|
-
version = "0.23.
|
|
2901
|
+
version = "0.23.40"
|
|
2900
2902
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2901
|
-
checksum = "
|
|
2903
|
+
checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
|
|
2902
2904
|
dependencies = [
|
|
2903
2905
|
"aws-lc-rs",
|
|
2904
2906
|
"once_cell",
|
|
@@ -2922,9 +2924,9 @@ dependencies = [
|
|
|
2922
2924
|
|
|
2923
2925
|
[[package]]
|
|
2924
2926
|
name = "rustls-pki-types"
|
|
2925
|
-
version = "1.14.
|
|
2927
|
+
version = "1.14.1"
|
|
2926
2928
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2927
|
-
checksum = "
|
|
2929
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
2928
2930
|
dependencies = [
|
|
2929
2931
|
"web-time",
|
|
2930
2932
|
"zeroize",
|
|
@@ -2932,9 +2934,9 @@ dependencies = [
|
|
|
2932
2934
|
|
|
2933
2935
|
[[package]]
|
|
2934
2936
|
name = "rustls-platform-verifier"
|
|
2935
|
-
version = "0.
|
|
2937
|
+
version = "0.7.0"
|
|
2936
2938
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2937
|
-
checksum = "
|
|
2939
|
+
checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
|
|
2938
2940
|
dependencies = [
|
|
2939
2941
|
"core-foundation",
|
|
2940
2942
|
"core-foundation-sys",
|
|
@@ -2959,14 +2961,14 @@ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
|
2959
2961
|
|
|
2960
2962
|
[[package]]
|
|
2961
2963
|
name = "rustls-webpki"
|
|
2962
|
-
version = "0.103.
|
|
2964
|
+
version = "0.103.13"
|
|
2963
2965
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2964
|
-
checksum = "
|
|
2966
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
2965
2967
|
dependencies = [
|
|
2966
2968
|
"aws-lc-rs",
|
|
2967
2969
|
"ring",
|
|
2968
2970
|
"rustls-pki-types",
|
|
2969
|
-
"untrusted",
|
|
2971
|
+
"untrusted 0.9.0",
|
|
2970
2972
|
]
|
|
2971
2973
|
|
|
2972
2974
|
[[package]]
|
|
@@ -3119,9 +3121,9 @@ dependencies = [
|
|
|
3119
3121
|
|
|
3120
3122
|
[[package]]
|
|
3121
3123
|
name = "serde_json"
|
|
3122
|
-
version = "1.0.
|
|
3124
|
+
version = "1.0.150"
|
|
3123
3125
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3124
|
-
checksum = "
|
|
3126
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
3125
3127
|
dependencies = [
|
|
3126
3128
|
"itoa",
|
|
3127
3129
|
"memchr",
|
|
@@ -3164,11 +3166,12 @@ dependencies = [
|
|
|
3164
3166
|
|
|
3165
3167
|
[[package]]
|
|
3166
3168
|
name = "serde_with"
|
|
3167
|
-
version = "3.
|
|
3169
|
+
version = "3.20.0"
|
|
3168
3170
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3169
|
-
checksum = "
|
|
3171
|
+
checksum = "e72c1c2cb7b223fafb600a619537a871c2818583d619401b785e7c0b746ccde2"
|
|
3170
3172
|
dependencies = [
|
|
3171
3173
|
"base64",
|
|
3174
|
+
"bs58",
|
|
3172
3175
|
"chrono",
|
|
3173
3176
|
"hex",
|
|
3174
3177
|
"indexmap 1.9.3",
|
|
@@ -3183,9 +3186,9 @@ dependencies = [
|
|
|
3183
3186
|
|
|
3184
3187
|
[[package]]
|
|
3185
3188
|
name = "serde_with_macros"
|
|
3186
|
-
version = "3.
|
|
3189
|
+
version = "3.20.0"
|
|
3187
3190
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3188
|
-
checksum = "
|
|
3191
|
+
checksum = "b90c488738ecb4fb0262f41f43bc40efc5868d9fb744319ddf5f5317f417bfac"
|
|
3189
3192
|
dependencies = [
|
|
3190
3193
|
"darling 0.23.0",
|
|
3191
3194
|
"proc-macro2",
|
|
@@ -3193,19 +3196,6 @@ dependencies = [
|
|
|
3193
3196
|
"syn",
|
|
3194
3197
|
]
|
|
3195
3198
|
|
|
3196
|
-
[[package]]
|
|
3197
|
-
name = "serde_yaml"
|
|
3198
|
-
version = "0.9.34+deprecated"
|
|
3199
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3200
|
-
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
3201
|
-
dependencies = [
|
|
3202
|
-
"indexmap 2.14.0",
|
|
3203
|
-
"itoa",
|
|
3204
|
-
"ryu",
|
|
3205
|
-
"serde",
|
|
3206
|
-
"unsafe-libyaml",
|
|
3207
|
-
]
|
|
3208
|
-
|
|
3209
3199
|
[[package]]
|
|
3210
3200
|
name = "sha2"
|
|
3211
3201
|
version = "0.10.9"
|
|
@@ -3225,7 +3215,7 @@ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
|
3225
3215
|
dependencies = [
|
|
3226
3216
|
"cfg-if",
|
|
3227
3217
|
"cpufeatures 0.3.0",
|
|
3228
|
-
"digest 0.11.
|
|
3218
|
+
"digest 0.11.3",
|
|
3229
3219
|
]
|
|
3230
3220
|
|
|
3231
3221
|
[[package]]
|
|
@@ -3272,15 +3262,27 @@ dependencies = [
|
|
|
3272
3262
|
]
|
|
3273
3263
|
|
|
3274
3264
|
[[package]]
|
|
3275
|
-
name = "
|
|
3276
|
-
version = "0.
|
|
3265
|
+
name = "simd-adler32"
|
|
3266
|
+
version = "0.3.9"
|
|
3267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3268
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
3269
|
+
|
|
3270
|
+
[[package]]
|
|
3271
|
+
name = "simd_cesu8"
|
|
3272
|
+
version = "1.1.1"
|
|
3277
3273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3278
|
-
checksum = "
|
|
3274
|
+
checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
|
|
3279
3275
|
dependencies = [
|
|
3280
|
-
"
|
|
3281
|
-
"
|
|
3276
|
+
"rustc_version",
|
|
3277
|
+
"simdutf8",
|
|
3282
3278
|
]
|
|
3283
3279
|
|
|
3280
|
+
[[package]]
|
|
3281
|
+
name = "simdutf8"
|
|
3282
|
+
version = "0.1.5"
|
|
3283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3284
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
3285
|
+
|
|
3284
3286
|
[[package]]
|
|
3285
3287
|
name = "slab"
|
|
3286
3288
|
version = "0.4.12"
|
|
@@ -3306,6 +3308,19 @@ dependencies = [
|
|
|
3306
3308
|
"windows-sys 0.61.2",
|
|
3307
3309
|
]
|
|
3308
3310
|
|
|
3311
|
+
[[package]]
|
|
3312
|
+
name = "sse-stream"
|
|
3313
|
+
version = "0.2.3"
|
|
3314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3315
|
+
checksum = "f3962b63f038885f15bce2c6e02c0e7925c072f1ac86bb60fd44c5c6b762fb72"
|
|
3316
|
+
dependencies = [
|
|
3317
|
+
"bytes",
|
|
3318
|
+
"futures-util",
|
|
3319
|
+
"http-body",
|
|
3320
|
+
"http-body-util",
|
|
3321
|
+
"pin-project-lite",
|
|
3322
|
+
]
|
|
3323
|
+
|
|
3309
3324
|
[[package]]
|
|
3310
3325
|
name = "stable_deref_trait"
|
|
3311
3326
|
version = "1.2.1"
|
|
@@ -3392,27 +3407,11 @@ dependencies = [
|
|
|
3392
3407
|
"syn",
|
|
3393
3408
|
]
|
|
3394
3409
|
|
|
3395
|
-
[[package]]
|
|
3396
|
-
name = "system-interface"
|
|
3397
|
-
version = "0.27.3"
|
|
3398
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3399
|
-
checksum = "cc4592f674ce18521c2a81483873a49596655b179f71c5e05d10c1fe66c78745"
|
|
3400
|
-
dependencies = [
|
|
3401
|
-
"bitflags",
|
|
3402
|
-
"cap-fs-ext",
|
|
3403
|
-
"cap-std",
|
|
3404
|
-
"fd-lock",
|
|
3405
|
-
"io-lifetimes",
|
|
3406
|
-
"rustix 0.38.44",
|
|
3407
|
-
"windows-sys 0.59.0",
|
|
3408
|
-
"winx",
|
|
3409
|
-
]
|
|
3410
|
-
|
|
3411
3410
|
[[package]]
|
|
3412
3411
|
name = "tar"
|
|
3413
|
-
version = "0.4.
|
|
3412
|
+
version = "0.4.46"
|
|
3414
3413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3415
|
-
checksum = "
|
|
3414
|
+
checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840"
|
|
3416
3415
|
dependencies = [
|
|
3417
3416
|
"filetime",
|
|
3418
3417
|
"libc",
|
|
@@ -3434,7 +3433,7 @@ dependencies = [
|
|
|
3434
3433
|
"fastrand",
|
|
3435
3434
|
"getrandom 0.4.2",
|
|
3436
3435
|
"once_cell",
|
|
3437
|
-
"rustix
|
|
3436
|
+
"rustix",
|
|
3438
3437
|
"windows-sys 0.61.2",
|
|
3439
3438
|
]
|
|
3440
3439
|
|
|
@@ -3554,9 +3553,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
3554
3553
|
|
|
3555
3554
|
[[package]]
|
|
3556
3555
|
name = "tokio"
|
|
3557
|
-
version = "1.52.
|
|
3556
|
+
version = "1.52.3"
|
|
3558
3557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3559
|
-
checksum = "
|
|
3558
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
3560
3559
|
dependencies = [
|
|
3561
3560
|
"bytes",
|
|
3562
3561
|
"libc",
|
|
@@ -3641,7 +3640,7 @@ dependencies = [
|
|
|
3641
3640
|
"toml_datetime 1.1.1+spec-1.1.0",
|
|
3642
3641
|
"toml_parser",
|
|
3643
3642
|
"toml_writer",
|
|
3644
|
-
"winnow 1.0.
|
|
3643
|
+
"winnow 1.0.3",
|
|
3645
3644
|
]
|
|
3646
3645
|
|
|
3647
3646
|
[[package]]
|
|
@@ -3668,7 +3667,7 @@ version = "1.1.2+spec-1.1.0"
|
|
|
3668
3667
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3669
3668
|
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
3670
3669
|
dependencies = [
|
|
3671
|
-
"winnow 1.0.
|
|
3670
|
+
"winnow 1.0.3",
|
|
3672
3671
|
]
|
|
3673
3672
|
|
|
3674
3673
|
[[package]]
|
|
@@ -3695,20 +3694,20 @@ dependencies = [
|
|
|
3695
3694
|
|
|
3696
3695
|
[[package]]
|
|
3697
3696
|
name = "tower-http"
|
|
3698
|
-
version = "0.6.
|
|
3697
|
+
version = "0.6.11"
|
|
3699
3698
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3700
|
-
checksum = "
|
|
3699
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
3701
3700
|
dependencies = [
|
|
3702
3701
|
"bitflags",
|
|
3703
3702
|
"bytes",
|
|
3704
3703
|
"futures-util",
|
|
3705
3704
|
"http",
|
|
3706
3705
|
"http-body",
|
|
3707
|
-
"iri-string",
|
|
3708
3706
|
"pin-project-lite",
|
|
3709
3707
|
"tower",
|
|
3710
3708
|
"tower-layer",
|
|
3711
3709
|
"tower-service",
|
|
3710
|
+
"url",
|
|
3712
3711
|
]
|
|
3713
3712
|
|
|
3714
3713
|
[[package]]
|
|
@@ -3793,9 +3792,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
3793
3792
|
|
|
3794
3793
|
[[package]]
|
|
3795
3794
|
name = "typenum"
|
|
3796
|
-
version = "1.
|
|
3795
|
+
version = "1.20.0"
|
|
3797
3796
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3798
|
-
checksum = "
|
|
3797
|
+
checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
|
|
3799
3798
|
|
|
3800
3799
|
[[package]]
|
|
3801
3800
|
name = "unicase"
|
|
@@ -3837,10 +3836,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3837
3836
|
checksum = "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3"
|
|
3838
3837
|
|
|
3839
3838
|
[[package]]
|
|
3840
|
-
name = "
|
|
3841
|
-
version = "0.
|
|
3839
|
+
name = "untrusted"
|
|
3840
|
+
version = "0.7.1"
|
|
3842
3841
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3843
|
-
checksum = "
|
|
3842
|
+
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
|
|
3844
3843
|
|
|
3845
3844
|
[[package]]
|
|
3846
3845
|
name = "untrusted"
|
|
@@ -3878,6 +3877,7 @@ version = "1.23.1"
|
|
|
3878
3877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3879
3878
|
checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
|
|
3880
3879
|
dependencies = [
|
|
3880
|
+
"getrandom 0.4.2",
|
|
3881
3881
|
"js-sys",
|
|
3882
3882
|
"wasm-bindgen",
|
|
3883
3883
|
]
|
|
@@ -3939,9 +3939,9 @@ dependencies = [
|
|
|
3939
3939
|
|
|
3940
3940
|
[[package]]
|
|
3941
3941
|
name = "wasm-bindgen"
|
|
3942
|
-
version = "0.2.
|
|
3942
|
+
version = "0.2.122"
|
|
3943
3943
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3944
|
-
checksum = "
|
|
3944
|
+
checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
|
|
3945
3945
|
dependencies = [
|
|
3946
3946
|
"cfg-if",
|
|
3947
3947
|
"once_cell",
|
|
@@ -3952,9 +3952,9 @@ dependencies = [
|
|
|
3952
3952
|
|
|
3953
3953
|
[[package]]
|
|
3954
3954
|
name = "wasm-bindgen-futures"
|
|
3955
|
-
version = "0.4.
|
|
3955
|
+
version = "0.4.72"
|
|
3956
3956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3957
|
-
checksum = "
|
|
3957
|
+
checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
|
|
3958
3958
|
dependencies = [
|
|
3959
3959
|
"js-sys",
|
|
3960
3960
|
"wasm-bindgen",
|
|
@@ -3962,9 +3962,9 @@ dependencies = [
|
|
|
3962
3962
|
|
|
3963
3963
|
[[package]]
|
|
3964
3964
|
name = "wasm-bindgen-macro"
|
|
3965
|
-
version = "0.2.
|
|
3965
|
+
version = "0.2.122"
|
|
3966
3966
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3967
|
-
checksum = "
|
|
3967
|
+
checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
|
|
3968
3968
|
dependencies = [
|
|
3969
3969
|
"quote",
|
|
3970
3970
|
"wasm-bindgen-macro-support",
|
|
@@ -3972,9 +3972,9 @@ dependencies = [
|
|
|
3972
3972
|
|
|
3973
3973
|
[[package]]
|
|
3974
3974
|
name = "wasm-bindgen-macro-support"
|
|
3975
|
-
version = "0.2.
|
|
3975
|
+
version = "0.2.122"
|
|
3976
3976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3977
|
-
checksum = "
|
|
3977
|
+
checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
|
|
3978
3978
|
dependencies = [
|
|
3979
3979
|
"bumpalo",
|
|
3980
3980
|
"proc-macro2",
|
|
@@ -3985,31 +3985,27 @@ dependencies = [
|
|
|
3985
3985
|
|
|
3986
3986
|
[[package]]
|
|
3987
3987
|
name = "wasm-bindgen-shared"
|
|
3988
|
-
version = "0.2.
|
|
3988
|
+
version = "0.2.122"
|
|
3989
3989
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3990
|
-
checksum = "
|
|
3990
|
+
checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
|
|
3991
3991
|
dependencies = [
|
|
3992
3992
|
"unicode-ident",
|
|
3993
3993
|
]
|
|
3994
3994
|
|
|
3995
3995
|
[[package]]
|
|
3996
3996
|
name = "wasm-compose"
|
|
3997
|
-
version = "0.
|
|
3997
|
+
version = "0.248.0"
|
|
3998
3998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3999
|
-
checksum = "
|
|
3999
|
+
checksum = "96ba953e2b9b4b4b52a31cf4e3ee1c1374c872b6e012cf2138d1c37cba00bfd6"
|
|
4000
4000
|
dependencies = [
|
|
4001
4001
|
"anyhow",
|
|
4002
4002
|
"heck",
|
|
4003
|
-
"im-rc",
|
|
4004
4003
|
"indexmap 2.14.0",
|
|
4005
4004
|
"log",
|
|
4006
4005
|
"petgraph",
|
|
4007
|
-
"serde",
|
|
4008
|
-
"serde_derive",
|
|
4009
|
-
"serde_yaml",
|
|
4010
4006
|
"smallvec",
|
|
4011
|
-
"wasm-encoder 0.
|
|
4012
|
-
"wasmparser 0.
|
|
4007
|
+
"wasm-encoder 0.248.0",
|
|
4008
|
+
"wasmparser 0.248.0",
|
|
4013
4009
|
"wat",
|
|
4014
4010
|
]
|
|
4015
4011
|
|
|
@@ -4025,22 +4021,22 @@ dependencies = [
|
|
|
4025
4021
|
|
|
4026
4022
|
[[package]]
|
|
4027
4023
|
name = "wasm-encoder"
|
|
4028
|
-
version = "0.
|
|
4024
|
+
version = "0.248.0"
|
|
4029
4025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4030
|
-
checksum = "
|
|
4026
|
+
checksum = "ac92cf547bc18d27ecc521015c08c353b4f18b84ab388bb6d1b6b682c620d9b6"
|
|
4031
4027
|
dependencies = [
|
|
4032
4028
|
"leb128fmt",
|
|
4033
|
-
"wasmparser 0.
|
|
4029
|
+
"wasmparser 0.248.0",
|
|
4034
4030
|
]
|
|
4035
4031
|
|
|
4036
4032
|
[[package]]
|
|
4037
4033
|
name = "wasm-encoder"
|
|
4038
|
-
version = "0.
|
|
4034
|
+
version = "0.250.0"
|
|
4039
4035
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4040
|
-
checksum = "
|
|
4036
|
+
checksum = "2271adb766023046af314460f1fae02cc34ea16d736d93404d3b65be44270923"
|
|
4041
4037
|
dependencies = [
|
|
4042
4038
|
"leb128fmt",
|
|
4043
|
-
"wasmparser 0.
|
|
4039
|
+
"wasmparser 0.250.0",
|
|
4044
4040
|
]
|
|
4045
4041
|
|
|
4046
4042
|
[[package]]
|
|
@@ -4082,12 +4078,12 @@ dependencies = [
|
|
|
4082
4078
|
|
|
4083
4079
|
[[package]]
|
|
4084
4080
|
name = "wasmparser"
|
|
4085
|
-
version = "0.
|
|
4081
|
+
version = "0.248.0"
|
|
4086
4082
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4087
|
-
checksum = "
|
|
4083
|
+
checksum = "aa4439c5eee9df71ee0c6efb37f63b1fcb1fec38f85f5142c54e7ed05d33091a"
|
|
4088
4084
|
dependencies = [
|
|
4089
4085
|
"bitflags",
|
|
4090
|
-
"hashbrown 0.
|
|
4086
|
+
"hashbrown 0.17.1",
|
|
4091
4087
|
"indexmap 2.14.0",
|
|
4092
4088
|
"semver",
|
|
4093
4089
|
"serde",
|
|
@@ -4095,12 +4091,12 @@ dependencies = [
|
|
|
4095
4091
|
|
|
4096
4092
|
[[package]]
|
|
4097
4093
|
name = "wasmparser"
|
|
4098
|
-
version = "0.
|
|
4094
|
+
version = "0.250.0"
|
|
4099
4095
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4100
|
-
checksum = "
|
|
4096
|
+
checksum = "071d99cdfb8111603ed05500506c3298a940b58d609dd0259d3981785dd33556"
|
|
4101
4097
|
dependencies = [
|
|
4102
4098
|
"bitflags",
|
|
4103
|
-
"hashbrown 0.17.
|
|
4099
|
+
"hashbrown 0.17.1",
|
|
4104
4100
|
"indexmap 2.14.0",
|
|
4105
4101
|
"semver",
|
|
4106
4102
|
"serde",
|
|
@@ -4108,20 +4104,20 @@ dependencies = [
|
|
|
4108
4104
|
|
|
4109
4105
|
[[package]]
|
|
4110
4106
|
name = "wasmprinter"
|
|
4111
|
-
version = "0.
|
|
4107
|
+
version = "0.248.0"
|
|
4112
4108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4113
|
-
checksum = "
|
|
4109
|
+
checksum = "30b264a5410b008d4d199a92bf536eae703cbd614482fc1ec53831cf19e1c183"
|
|
4114
4110
|
dependencies = [
|
|
4115
4111
|
"anyhow",
|
|
4116
4112
|
"termcolor",
|
|
4117
|
-
"wasmparser 0.
|
|
4113
|
+
"wasmparser 0.248.0",
|
|
4118
4114
|
]
|
|
4119
4115
|
|
|
4120
4116
|
[[package]]
|
|
4121
4117
|
name = "wasmtime"
|
|
4122
|
-
version = "
|
|
4118
|
+
version = "45.0.0"
|
|
4123
4119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4124
|
-
checksum = "
|
|
4120
|
+
checksum = "d35aec1e932d00a7c941f816ad589e65ad8db948b9e971bf8ec655a1669f1f67"
|
|
4125
4121
|
dependencies = [
|
|
4126
4122
|
"addr2line",
|
|
4127
4123
|
"async-trait",
|
|
@@ -4144,7 +4140,7 @@ dependencies = [
|
|
|
4144
4140
|
"postcard",
|
|
4145
4141
|
"pulley-interpreter",
|
|
4146
4142
|
"rayon",
|
|
4147
|
-
"rustix
|
|
4143
|
+
"rustix",
|
|
4148
4144
|
"semver",
|
|
4149
4145
|
"serde",
|
|
4150
4146
|
"serde_derive",
|
|
@@ -4153,8 +4149,8 @@ dependencies = [
|
|
|
4153
4149
|
"target-lexicon",
|
|
4154
4150
|
"tempfile",
|
|
4155
4151
|
"wasm-compose",
|
|
4156
|
-
"wasm-encoder 0.
|
|
4157
|
-
"wasmparser 0.
|
|
4152
|
+
"wasm-encoder 0.248.0",
|
|
4153
|
+
"wasmparser 0.248.0",
|
|
4158
4154
|
"wasmtime-environ",
|
|
4159
4155
|
"wasmtime-internal-cache",
|
|
4160
4156
|
"wasmtime-internal-component-macro",
|
|
@@ -4173,9 +4169,9 @@ dependencies = [
|
|
|
4173
4169
|
|
|
4174
4170
|
[[package]]
|
|
4175
4171
|
name = "wasmtime-environ"
|
|
4176
|
-
version = "
|
|
4172
|
+
version = "45.0.0"
|
|
4177
4173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4178
|
-
checksum = "
|
|
4174
|
+
checksum = "d7da3dcce82a7e784121c19c8c9c5f69a743088264ff5212033e4a1f1b9dfaaf"
|
|
4179
4175
|
dependencies = [
|
|
4180
4176
|
"anyhow",
|
|
4181
4177
|
"cpp_demangle",
|
|
@@ -4183,7 +4179,7 @@ dependencies = [
|
|
|
4183
4179
|
"cranelift-bitset",
|
|
4184
4180
|
"cranelift-entity",
|
|
4185
4181
|
"gimli",
|
|
4186
|
-
"hashbrown 0.
|
|
4182
|
+
"hashbrown 0.17.1",
|
|
4187
4183
|
"indexmap 2.14.0",
|
|
4188
4184
|
"log",
|
|
4189
4185
|
"object",
|
|
@@ -4195,8 +4191,8 @@ dependencies = [
|
|
|
4195
4191
|
"sha2 0.10.9",
|
|
4196
4192
|
"smallvec",
|
|
4197
4193
|
"target-lexicon",
|
|
4198
|
-
"wasm-encoder 0.
|
|
4199
|
-
"wasmparser 0.
|
|
4194
|
+
"wasm-encoder 0.248.0",
|
|
4195
|
+
"wasmparser 0.248.0",
|
|
4200
4196
|
"wasmprinter",
|
|
4201
4197
|
"wasmtime-internal-component-util",
|
|
4202
4198
|
"wasmtime-internal-core",
|
|
@@ -4204,15 +4200,15 @@ dependencies = [
|
|
|
4204
4200
|
|
|
4205
4201
|
[[package]]
|
|
4206
4202
|
name = "wasmtime-internal-cache"
|
|
4207
|
-
version = "
|
|
4203
|
+
version = "45.0.0"
|
|
4208
4204
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4209
|
-
checksum = "
|
|
4205
|
+
checksum = "ef87f84d976e2f98a541eaf5837df0424e2039837fc20bd6cd4b4b5a322939c0"
|
|
4210
4206
|
dependencies = [
|
|
4211
4207
|
"base64",
|
|
4212
4208
|
"directories-next",
|
|
4213
4209
|
"log",
|
|
4214
4210
|
"postcard",
|
|
4215
|
-
"rustix
|
|
4211
|
+
"rustix",
|
|
4216
4212
|
"serde",
|
|
4217
4213
|
"serde_derive",
|
|
4218
4214
|
"sha2 0.10.9",
|
|
@@ -4224,9 +4220,9 @@ dependencies = [
|
|
|
4224
4220
|
|
|
4225
4221
|
[[package]]
|
|
4226
4222
|
name = "wasmtime-internal-component-macro"
|
|
4227
|
-
version = "
|
|
4223
|
+
version = "45.0.0"
|
|
4228
4224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4229
|
-
checksum = "
|
|
4225
|
+
checksum = "86991f201391afc1504e4fc363dc29b66f92af0287b4ac2efc3c0b0c19435eeb"
|
|
4230
4226
|
dependencies = [
|
|
4231
4227
|
"anyhow",
|
|
4232
4228
|
"proc-macro2",
|
|
@@ -4234,32 +4230,32 @@ dependencies = [
|
|
|
4234
4230
|
"syn",
|
|
4235
4231
|
"wasmtime-internal-component-util",
|
|
4236
4232
|
"wasmtime-internal-wit-bindgen",
|
|
4237
|
-
"wit-parser 0.
|
|
4233
|
+
"wit-parser 0.248.0",
|
|
4238
4234
|
]
|
|
4239
4235
|
|
|
4240
4236
|
[[package]]
|
|
4241
4237
|
name = "wasmtime-internal-component-util"
|
|
4242
|
-
version = "
|
|
4238
|
+
version = "45.0.0"
|
|
4243
4239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4244
|
-
checksum = "
|
|
4240
|
+
checksum = "47fda091250d7ab839ea51e4d98190b6eee37e9de4ab2462e8fe8465369c1986"
|
|
4245
4241
|
|
|
4246
4242
|
[[package]]
|
|
4247
4243
|
name = "wasmtime-internal-core"
|
|
4248
|
-
version = "
|
|
4244
|
+
version = "45.0.0"
|
|
4249
4245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4250
|
-
checksum = "
|
|
4246
|
+
checksum = "1bdae4b55b15a23d774b15f6e7cd90ae0d0aa17c47c12b4db098b3dd11ba9d58"
|
|
4251
4247
|
dependencies = [
|
|
4252
4248
|
"anyhow",
|
|
4253
|
-
"hashbrown 0.
|
|
4249
|
+
"hashbrown 0.17.1",
|
|
4254
4250
|
"libm",
|
|
4255
4251
|
"serde",
|
|
4256
4252
|
]
|
|
4257
4253
|
|
|
4258
4254
|
[[package]]
|
|
4259
4255
|
name = "wasmtime-internal-cranelift"
|
|
4260
|
-
version = "
|
|
4256
|
+
version = "45.0.0"
|
|
4261
4257
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4262
|
-
checksum = "
|
|
4258
|
+
checksum = "5773b36b87566239b020f1d01aa753a35626df85030485e40e36fc42a97acf4f"
|
|
4263
4259
|
dependencies = [
|
|
4264
4260
|
"cfg-if",
|
|
4265
4261
|
"cranelift-codegen",
|
|
@@ -4275,7 +4271,7 @@ dependencies = [
|
|
|
4275
4271
|
"smallvec",
|
|
4276
4272
|
"target-lexicon",
|
|
4277
4273
|
"thiserror 2.0.18",
|
|
4278
|
-
"wasmparser 0.
|
|
4274
|
+
"wasmparser 0.248.0",
|
|
4279
4275
|
"wasmtime-environ",
|
|
4280
4276
|
"wasmtime-internal-core",
|
|
4281
4277
|
"wasmtime-internal-unwinder",
|
|
@@ -4284,14 +4280,14 @@ dependencies = [
|
|
|
4284
4280
|
|
|
4285
4281
|
[[package]]
|
|
4286
4282
|
name = "wasmtime-internal-fiber"
|
|
4287
|
-
version = "
|
|
4283
|
+
version = "45.0.0"
|
|
4288
4284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4289
|
-
checksum = "
|
|
4285
|
+
checksum = "402cce4bba4c8c92a6fbaff39a6b23f8aa626d64b218ecf6dd3eeee8705cf096"
|
|
4290
4286
|
dependencies = [
|
|
4291
4287
|
"cc",
|
|
4292
4288
|
"cfg-if",
|
|
4293
4289
|
"libc",
|
|
4294
|
-
"rustix
|
|
4290
|
+
"rustix",
|
|
4295
4291
|
"wasmtime-environ",
|
|
4296
4292
|
"wasmtime-internal-versioned-export-macros",
|
|
4297
4293
|
"windows-sys 0.61.2",
|
|
@@ -4299,21 +4295,21 @@ dependencies = [
|
|
|
4299
4295
|
|
|
4300
4296
|
[[package]]
|
|
4301
4297
|
name = "wasmtime-internal-jit-debug"
|
|
4302
|
-
version = "
|
|
4298
|
+
version = "45.0.0"
|
|
4303
4299
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4304
|
-
checksum = "
|
|
4300
|
+
checksum = "8b426a5d0ec9c11a1a4525ed4e973b7caf40223b6d392588bb9f6468e4ae9d29"
|
|
4305
4301
|
dependencies = [
|
|
4306
4302
|
"cc",
|
|
4307
4303
|
"object",
|
|
4308
|
-
"rustix
|
|
4304
|
+
"rustix",
|
|
4309
4305
|
"wasmtime-internal-versioned-export-macros",
|
|
4310
4306
|
]
|
|
4311
4307
|
|
|
4312
4308
|
[[package]]
|
|
4313
4309
|
name = "wasmtime-internal-jit-icache-coherence"
|
|
4314
|
-
version = "
|
|
4310
|
+
version = "45.0.0"
|
|
4315
4311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4316
|
-
checksum = "
|
|
4312
|
+
checksum = "8a312ba8bb77955dcd44294a223e7f124c3071ff966583d385d3f6a4639c62e3"
|
|
4317
4313
|
dependencies = [
|
|
4318
4314
|
"cfg-if",
|
|
4319
4315
|
"libc",
|
|
@@ -4323,9 +4319,9 @@ dependencies = [
|
|
|
4323
4319
|
|
|
4324
4320
|
[[package]]
|
|
4325
4321
|
name = "wasmtime-internal-unwinder"
|
|
4326
|
-
version = "
|
|
4322
|
+
version = "45.0.0"
|
|
4327
4323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4328
|
-
checksum = "
|
|
4324
|
+
checksum = "4a62ad422ee3cbf1e87c2242dc0717a01c7a5878fbc3a68abc4b4d2fff3e85e1"
|
|
4329
4325
|
dependencies = [
|
|
4330
4326
|
"cfg-if",
|
|
4331
4327
|
"cranelift-codegen",
|
|
@@ -4336,9 +4332,9 @@ dependencies = [
|
|
|
4336
4332
|
|
|
4337
4333
|
[[package]]
|
|
4338
4334
|
name = "wasmtime-internal-versioned-export-macros"
|
|
4339
|
-
version = "
|
|
4335
|
+
version = "45.0.0"
|
|
4340
4336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4341
|
-
checksum = "
|
|
4337
|
+
checksum = "2c660c5b091648cffdd84a34dc24ffcdb9d027f9048fe7bd5e01896adbd0935f"
|
|
4342
4338
|
dependencies = [
|
|
4343
4339
|
"proc-macro2",
|
|
4344
4340
|
"quote",
|
|
@@ -4347,16 +4343,16 @@ dependencies = [
|
|
|
4347
4343
|
|
|
4348
4344
|
[[package]]
|
|
4349
4345
|
name = "wasmtime-internal-winch"
|
|
4350
|
-
version = "
|
|
4346
|
+
version = "45.0.0"
|
|
4351
4347
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4352
|
-
checksum = "
|
|
4348
|
+
checksum = "d2aceb92b48b6e3a5cc2a05ab7a2dcb565eaf86fb870d04664b7f12cf9bba39a"
|
|
4353
4349
|
dependencies = [
|
|
4354
4350
|
"cranelift-codegen",
|
|
4355
4351
|
"gimli",
|
|
4356
4352
|
"log",
|
|
4357
4353
|
"object",
|
|
4358
4354
|
"target-lexicon",
|
|
4359
|
-
"wasmparser 0.
|
|
4355
|
+
"wasmparser 0.248.0",
|
|
4360
4356
|
"wasmtime-environ",
|
|
4361
4357
|
"wasmtime-internal-cranelift",
|
|
4362
4358
|
"winch-codegen",
|
|
@@ -4364,37 +4360,37 @@ dependencies = [
|
|
|
4364
4360
|
|
|
4365
4361
|
[[package]]
|
|
4366
4362
|
name = "wasmtime-internal-wit-bindgen"
|
|
4367
|
-
version = "
|
|
4363
|
+
version = "45.0.0"
|
|
4368
4364
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4369
|
-
checksum = "
|
|
4365
|
+
checksum = "ce382df367ad2a2d48e139b191dbca3329f7232a43057dc9efc889dac54f1b0b"
|
|
4370
4366
|
dependencies = [
|
|
4371
4367
|
"anyhow",
|
|
4372
4368
|
"bitflags",
|
|
4373
4369
|
"heck",
|
|
4374
4370
|
"indexmap 2.14.0",
|
|
4375
|
-
"wit-parser 0.
|
|
4371
|
+
"wit-parser 0.248.0",
|
|
4376
4372
|
]
|
|
4377
4373
|
|
|
4378
4374
|
[[package]]
|
|
4379
4375
|
name = "wasmtime-wasi"
|
|
4380
|
-
version = "
|
|
4376
|
+
version = "45.0.0"
|
|
4381
4377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4382
|
-
checksum = "
|
|
4378
|
+
checksum = "fb1e92a304eaafd672718011c69084041db74fa0fcc3532c5920f492c557b721"
|
|
4383
4379
|
dependencies = [
|
|
4384
4380
|
"async-trait",
|
|
4385
4381
|
"bitflags",
|
|
4386
4382
|
"bytes",
|
|
4387
4383
|
"cap-fs-ext",
|
|
4388
4384
|
"cap-net-ext",
|
|
4389
|
-
"cap-rand",
|
|
4390
4385
|
"cap-std",
|
|
4391
4386
|
"cap-time-ext",
|
|
4387
|
+
"cfg-if",
|
|
4392
4388
|
"fs-set-times",
|
|
4393
4389
|
"futures",
|
|
4394
4390
|
"io-extras",
|
|
4395
4391
|
"io-lifetimes",
|
|
4396
|
-
"
|
|
4397
|
-
"
|
|
4392
|
+
"rand 0.10.1",
|
|
4393
|
+
"rustix",
|
|
4398
4394
|
"thiserror 2.0.18",
|
|
4399
4395
|
"tokio",
|
|
4400
4396
|
"tracing",
|
|
@@ -4406,9 +4402,9 @@ dependencies = [
|
|
|
4406
4402
|
|
|
4407
4403
|
[[package]]
|
|
4408
4404
|
name = "wasmtime-wasi-http"
|
|
4409
|
-
version = "
|
|
4405
|
+
version = "45.0.0"
|
|
4410
4406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4411
|
-
checksum = "
|
|
4407
|
+
checksum = "c7ac191e49f1cfb8567b335a4e4375d275552f5e5ce199fd7631c8722865b598"
|
|
4412
4408
|
dependencies = [
|
|
4413
4409
|
"async-trait",
|
|
4414
4410
|
"bytes",
|
|
@@ -4427,9 +4423,9 @@ dependencies = [
|
|
|
4427
4423
|
|
|
4428
4424
|
[[package]]
|
|
4429
4425
|
name = "wasmtime-wasi-io"
|
|
4430
|
-
version = "
|
|
4426
|
+
version = "45.0.0"
|
|
4431
4427
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4432
|
-
checksum = "
|
|
4428
|
+
checksum = "8e0013e1f37d2e0e1b030fa186972f6f5819f69814bb07d3b6d3cab0c40b50e2"
|
|
4433
4429
|
dependencies = [
|
|
4434
4430
|
"async-trait",
|
|
4435
4431
|
"bytes",
|
|
@@ -4440,31 +4436,31 @@ dependencies = [
|
|
|
4440
4436
|
|
|
4441
4437
|
[[package]]
|
|
4442
4438
|
name = "wast"
|
|
4443
|
-
version = "
|
|
4439
|
+
version = "250.0.0"
|
|
4444
4440
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4445
|
-
checksum = "
|
|
4441
|
+
checksum = "69e9294a1f0204aeb5c47e95165517f43ef3cc895918c4f3e939380d4c290f4a"
|
|
4446
4442
|
dependencies = [
|
|
4447
4443
|
"bumpalo",
|
|
4448
4444
|
"leb128fmt",
|
|
4449
4445
|
"memchr",
|
|
4450
4446
|
"unicode-width",
|
|
4451
|
-
"wasm-encoder 0.
|
|
4447
|
+
"wasm-encoder 0.250.0",
|
|
4452
4448
|
]
|
|
4453
4449
|
|
|
4454
4450
|
[[package]]
|
|
4455
4451
|
name = "wat"
|
|
4456
|
-
version = "1.
|
|
4452
|
+
version = "1.250.0"
|
|
4457
4453
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4458
|
-
checksum = "
|
|
4454
|
+
checksum = "0a549ed329a70e444e0f7796391ab2a87d0aef30ddde9f60e16e429224fafd02"
|
|
4459
4455
|
dependencies = [
|
|
4460
4456
|
"wast",
|
|
4461
4457
|
]
|
|
4462
4458
|
|
|
4463
4459
|
[[package]]
|
|
4464
4460
|
name = "web-sys"
|
|
4465
|
-
version = "0.3.
|
|
4461
|
+
version = "0.3.99"
|
|
4466
4462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4467
|
-
checksum = "
|
|
4463
|
+
checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
|
|
4468
4464
|
dependencies = [
|
|
4469
4465
|
"js-sys",
|
|
4470
4466
|
"wasm-bindgen",
|
|
@@ -4522,9 +4518,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
4522
4518
|
|
|
4523
4519
|
[[package]]
|
|
4524
4520
|
name = "winch-codegen"
|
|
4525
|
-
version = "
|
|
4521
|
+
version = "45.0.0"
|
|
4526
4522
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4527
|
-
checksum = "
|
|
4523
|
+
checksum = "3128bd53313b132e8737d7d318edbc438bab1abe525ac037bbf9857839e717e2"
|
|
4528
4524
|
dependencies = [
|
|
4529
4525
|
"cranelift-assembler-x64",
|
|
4530
4526
|
"cranelift-codegen",
|
|
@@ -4533,7 +4529,7 @@ dependencies = [
|
|
|
4533
4529
|
"smallvec",
|
|
4534
4530
|
"target-lexicon",
|
|
4535
4531
|
"thiserror 2.0.18",
|
|
4536
|
-
"wasmparser 0.
|
|
4532
|
+
"wasmparser 0.248.0",
|
|
4537
4533
|
"wasmtime-environ",
|
|
4538
4534
|
"wasmtime-internal-core",
|
|
4539
4535
|
"wasmtime-internal-cranelift",
|
|
@@ -4640,15 +4636,6 @@ dependencies = [
|
|
|
4640
4636
|
"windows-link",
|
|
4641
4637
|
]
|
|
4642
4638
|
|
|
4643
|
-
[[package]]
|
|
4644
|
-
name = "windows-sys"
|
|
4645
|
-
version = "0.45.0"
|
|
4646
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4647
|
-
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
4648
|
-
dependencies = [
|
|
4649
|
-
"windows-targets 0.42.2",
|
|
4650
|
-
]
|
|
4651
|
-
|
|
4652
4639
|
[[package]]
|
|
4653
4640
|
name = "windows-sys"
|
|
4654
4641
|
version = "0.52.0"
|
|
@@ -4685,21 +4672,6 @@ dependencies = [
|
|
|
4685
4672
|
"windows-link",
|
|
4686
4673
|
]
|
|
4687
4674
|
|
|
4688
|
-
[[package]]
|
|
4689
|
-
name = "windows-targets"
|
|
4690
|
-
version = "0.42.2"
|
|
4691
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4692
|
-
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
4693
|
-
dependencies = [
|
|
4694
|
-
"windows_aarch64_gnullvm 0.42.2",
|
|
4695
|
-
"windows_aarch64_msvc 0.42.2",
|
|
4696
|
-
"windows_i686_gnu 0.42.2",
|
|
4697
|
-
"windows_i686_msvc 0.42.2",
|
|
4698
|
-
"windows_x86_64_gnu 0.42.2",
|
|
4699
|
-
"windows_x86_64_gnullvm 0.42.2",
|
|
4700
|
-
"windows_x86_64_msvc 0.42.2",
|
|
4701
|
-
]
|
|
4702
|
-
|
|
4703
4675
|
[[package]]
|
|
4704
4676
|
name = "windows-targets"
|
|
4705
4677
|
version = "0.52.6"
|
|
@@ -4742,12 +4714,6 @@ dependencies = [
|
|
|
4742
4714
|
"windows-link",
|
|
4743
4715
|
]
|
|
4744
4716
|
|
|
4745
|
-
[[package]]
|
|
4746
|
-
name = "windows_aarch64_gnullvm"
|
|
4747
|
-
version = "0.42.2"
|
|
4748
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4749
|
-
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
4750
|
-
|
|
4751
4717
|
[[package]]
|
|
4752
4718
|
name = "windows_aarch64_gnullvm"
|
|
4753
4719
|
version = "0.52.6"
|
|
@@ -4760,12 +4726,6 @@ version = "0.53.1"
|
|
|
4760
4726
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4761
4727
|
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
4762
4728
|
|
|
4763
|
-
[[package]]
|
|
4764
|
-
name = "windows_aarch64_msvc"
|
|
4765
|
-
version = "0.42.2"
|
|
4766
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4767
|
-
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
4768
|
-
|
|
4769
4729
|
[[package]]
|
|
4770
4730
|
name = "windows_aarch64_msvc"
|
|
4771
4731
|
version = "0.52.6"
|
|
@@ -4778,12 +4738,6 @@ version = "0.53.1"
|
|
|
4778
4738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4779
4739
|
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
4780
4740
|
|
|
4781
|
-
[[package]]
|
|
4782
|
-
name = "windows_i686_gnu"
|
|
4783
|
-
version = "0.42.2"
|
|
4784
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4785
|
-
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
4786
|
-
|
|
4787
4741
|
[[package]]
|
|
4788
4742
|
name = "windows_i686_gnu"
|
|
4789
4743
|
version = "0.52.6"
|
|
@@ -4808,12 +4762,6 @@ version = "0.53.1"
|
|
|
4808
4762
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4809
4763
|
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
4810
4764
|
|
|
4811
|
-
[[package]]
|
|
4812
|
-
name = "windows_i686_msvc"
|
|
4813
|
-
version = "0.42.2"
|
|
4814
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4815
|
-
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
4816
|
-
|
|
4817
4765
|
[[package]]
|
|
4818
4766
|
name = "windows_i686_msvc"
|
|
4819
4767
|
version = "0.52.6"
|
|
@@ -4826,12 +4774,6 @@ version = "0.53.1"
|
|
|
4826
4774
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4827
4775
|
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
4828
4776
|
|
|
4829
|
-
[[package]]
|
|
4830
|
-
name = "windows_x86_64_gnu"
|
|
4831
|
-
version = "0.42.2"
|
|
4832
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4833
|
-
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
4834
|
-
|
|
4835
4777
|
[[package]]
|
|
4836
4778
|
name = "windows_x86_64_gnu"
|
|
4837
4779
|
version = "0.52.6"
|
|
@@ -4844,12 +4786,6 @@ version = "0.53.1"
|
|
|
4844
4786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4845
4787
|
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
4846
4788
|
|
|
4847
|
-
[[package]]
|
|
4848
|
-
name = "windows_x86_64_gnullvm"
|
|
4849
|
-
version = "0.42.2"
|
|
4850
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4851
|
-
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
4852
|
-
|
|
4853
4789
|
[[package]]
|
|
4854
4790
|
name = "windows_x86_64_gnullvm"
|
|
4855
4791
|
version = "0.52.6"
|
|
@@ -4862,12 +4798,6 @@ version = "0.53.1"
|
|
|
4862
4798
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4863
4799
|
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
4864
4800
|
|
|
4865
|
-
[[package]]
|
|
4866
|
-
name = "windows_x86_64_msvc"
|
|
4867
|
-
version = "0.42.2"
|
|
4868
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4869
|
-
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
4870
|
-
|
|
4871
4801
|
[[package]]
|
|
4872
4802
|
name = "windows_x86_64_msvc"
|
|
4873
4803
|
version = "0.52.6"
|
|
@@ -4888,9 +4818,9 @@ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
|
4888
4818
|
|
|
4889
4819
|
[[package]]
|
|
4890
4820
|
name = "winnow"
|
|
4891
|
-
version = "1.0.
|
|
4821
|
+
version = "1.0.3"
|
|
4892
4822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4893
|
-
checksum = "
|
|
4823
|
+
checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
|
|
4894
4824
|
|
|
4895
4825
|
[[package]]
|
|
4896
4826
|
name = "winx"
|
|
@@ -4998,12 +4928,12 @@ dependencies = [
|
|
|
4998
4928
|
|
|
4999
4929
|
[[package]]
|
|
5000
4930
|
name = "wit-parser"
|
|
5001
|
-
version = "0.
|
|
4931
|
+
version = "0.248.0"
|
|
5002
4932
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5003
|
-
checksum = "
|
|
4933
|
+
checksum = "247ad505da2915a082fe13204c5ba8788425aea1de54f43b284818cf82637856"
|
|
5004
4934
|
dependencies = [
|
|
5005
4935
|
"anyhow",
|
|
5006
|
-
"hashbrown 0.
|
|
4936
|
+
"hashbrown 0.17.1",
|
|
5007
4937
|
"id-arena",
|
|
5008
4938
|
"indexmap 2.14.0",
|
|
5009
4939
|
"log",
|
|
@@ -5012,7 +4942,7 @@ dependencies = [
|
|
|
5012
4942
|
"serde_derive",
|
|
5013
4943
|
"serde_json",
|
|
5014
4944
|
"unicode-xid",
|
|
5015
|
-
"wasmparser 0.
|
|
4945
|
+
"wasmparser 0.248.0",
|
|
5016
4946
|
]
|
|
5017
4947
|
|
|
5018
4948
|
[[package]]
|
|
@@ -5028,7 +4958,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
5028
4958
|
checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
|
|
5029
4959
|
dependencies = [
|
|
5030
4960
|
"libc",
|
|
5031
|
-
"rustix
|
|
4961
|
+
"rustix",
|
|
5032
4962
|
]
|
|
5033
4963
|
|
|
5034
4964
|
[[package]]
|
|
@@ -5076,9 +5006,9 @@ dependencies = [
|
|
|
5076
5006
|
|
|
5077
5007
|
[[package]]
|
|
5078
5008
|
name = "zerofrom"
|
|
5079
|
-
version = "0.1.
|
|
5009
|
+
version = "0.1.8"
|
|
5080
5010
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5081
|
-
checksum = "
|
|
5011
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
5082
5012
|
dependencies = [
|
|
5083
5013
|
"zerofrom-derive",
|
|
5084
5014
|
]
|
|
@@ -5100,6 +5030,20 @@ name = "zeroize"
|
|
|
5100
5030
|
version = "1.8.2"
|
|
5101
5031
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5102
5032
|
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
5033
|
+
dependencies = [
|
|
5034
|
+
"zeroize_derive",
|
|
5035
|
+
]
|
|
5036
|
+
|
|
5037
|
+
[[package]]
|
|
5038
|
+
name = "zeroize_derive"
|
|
5039
|
+
version = "1.4.3"
|
|
5040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5041
|
+
checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
|
|
5042
|
+
dependencies = [
|
|
5043
|
+
"proc-macro2",
|
|
5044
|
+
"quote",
|
|
5045
|
+
"syn",
|
|
5046
|
+
]
|
|
5103
5047
|
|
|
5104
5048
|
[[package]]
|
|
5105
5049
|
name = "zerotrie"
|