act-cli 0.7.3__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.3 → act_cli-0.7.4}/Cargo.lock +403 -464
- {act_cli-0.7.3 → act_cli-0.7.4}/Cargo.toml +2 -2
- {act_cli-0.7.3 → act_cli-0.7.4}/PKG-INFO +1 -1
- {act_cli-0.7.3 → act_cli-0.7.4}/act-cli/Cargo.toml +13 -13
- {act_cli-0.7.3 → act_cli-0.7.4}/act-cli/src/config.rs +247 -0
- {act_cli-0.7.3 → act_cli-0.7.4}/act-cli/src/main.rs +40 -5
- {act_cli-0.7.3 → act_cli-0.7.4}/act-cli/src/resolve.rs +67 -11
- {act_cli-0.7.3 → act_cli-0.7.4}/act-cli/src/rmcp_bridge.rs +221 -27
- {act_cli-0.7.3 → act_cli-0.7.4}/act-cli/src/runtime/effective.rs +219 -0
- {act_cli-0.7.3 → act_cli-0.7.4}/act-cli/src/runtime/http_client.rs +0 -3
- {act_cli-0.7.3 → act_cli-0.7.4}/act-cli/src/runtime/http_policy.rs +0 -2
- {act_cli-0.7.3 → 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.3 → act_cli-0.7.4}/README.md +0 -0
- {act_cli-0.7.3 → act_cli-0.7.4}/act-cli/README.md +0 -0
- {act_cli-0.7.3 → act_cli-0.7.4}/act-cli/build.rs +0 -0
- {act_cli-0.7.3 → act_cli-0.7.4}/act-cli/src/format.rs +0 -0
- {act_cli-0.7.3 → act_cli-0.7.4}/act-cli/src/http.rs +15 -15
- {act_cli-0.7.3 → act_cli-0.7.4}/act-cli/src/runtime/bindings/mod.rs +0 -0
- {act_cli-0.7.3 → act_cli-0.7.4}/act-cli/src/runtime/fs_matcher.rs +0 -0
- {act_cli-0.7.3 → act_cli-0.7.4}/act-cli/src/runtime/fs_policy.rs +0 -0
- {act_cli-0.7.3 → act_cli-0.7.4}/act-cli/src/runtime/network.rs +0 -0
- {act_cli-0.7.3 → act_cli-0.7.4}/act-cli/src/runtime/sessions.rs +0 -0
- {act_cli-0.7.3 → act_cli-0.7.4}/act-cli/wit/deps/act-core/act-core.wit +0 -0
- {act_cli-0.7.3 → act_cli-0.7.4}/act-cli/wit/deps/act-tools/act-tools.wit +0 -0
- {act_cli-0.7.3 → act_cli-0.7.4}/act-cli/wit/deps.lock +0 -0
- {act_cli-0.7.3 → act_cli-0.7.4}/act-cli/wit/deps.toml +0 -0
- {act_cli-0.7.3 → act_cli-0.7.4}/act-cli/wit/world.wit +0 -0
- {act_cli-0.7.3 → act_cli-0.7.4}/pyproject.toml +0 -0
|
@@ -4,7 +4,7 @@ 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",
|
|
@@ -12,9 +12,13 @@ dependencies = [
|
|
|
12
12
|
"ciborium",
|
|
13
13
|
"clap",
|
|
14
14
|
"dirs",
|
|
15
|
+
"flate2",
|
|
15
16
|
"globset",
|
|
17
|
+
"include_dir",
|
|
16
18
|
"json-patch",
|
|
19
|
+
"minijinja",
|
|
17
20
|
"oci-client",
|
|
21
|
+
"reqwest",
|
|
18
22
|
"serde",
|
|
19
23
|
"serde_json",
|
|
20
24
|
"sha2 0.11.0",
|
|
@@ -24,13 +28,14 @@ dependencies = [
|
|
|
24
28
|
"toml 1.1.2+spec-1.1.0",
|
|
25
29
|
"tracing",
|
|
26
30
|
"tracing-subscriber",
|
|
27
|
-
"
|
|
28
|
-
"
|
|
31
|
+
"walkdir",
|
|
32
|
+
"wasm-encoder 0.250.0",
|
|
33
|
+
"wasmparser 0.250.0",
|
|
29
34
|
]
|
|
30
35
|
|
|
31
36
|
[[package]]
|
|
32
37
|
name = "act-cli"
|
|
33
|
-
version = "0.7.
|
|
38
|
+
version = "0.7.4"
|
|
34
39
|
dependencies = [
|
|
35
40
|
"act-types",
|
|
36
41
|
"anyhow",
|
|
@@ -67,7 +72,7 @@ dependencies = [
|
|
|
67
72
|
"tracing",
|
|
68
73
|
"tracing-subscriber",
|
|
69
74
|
"url",
|
|
70
|
-
"wasmparser 0.
|
|
75
|
+
"wasmparser 0.250.0",
|
|
71
76
|
"wasmtime",
|
|
72
77
|
"wasmtime-wasi",
|
|
73
78
|
"wasmtime-wasi-http",
|
|
@@ -75,9 +80,9 @@ dependencies = [
|
|
|
75
80
|
|
|
76
81
|
[[package]]
|
|
77
82
|
name = "act-types"
|
|
78
|
-
version = "0.7.
|
|
83
|
+
version = "0.7.1"
|
|
79
84
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
-
checksum = "
|
|
85
|
+
checksum = "40744091fc7b75e2f694d0df62476f5dea36c72fc6bf3bed86364ffb1a52c691"
|
|
81
86
|
dependencies = [
|
|
82
87
|
"base64",
|
|
83
88
|
"ciborium",
|
|
@@ -95,6 +100,12 @@ dependencies = [
|
|
|
95
100
|
"gimli",
|
|
96
101
|
]
|
|
97
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
|
+
|
|
98
109
|
[[package]]
|
|
99
110
|
name = "aho-corasick"
|
|
100
111
|
version = "1.1.4"
|
|
@@ -206,25 +217,26 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
|
206
217
|
|
|
207
218
|
[[package]]
|
|
208
219
|
name = "autocfg"
|
|
209
|
-
version = "1.5.
|
|
220
|
+
version = "1.5.1"
|
|
210
221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
-
checksum = "
|
|
222
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
212
223
|
|
|
213
224
|
[[package]]
|
|
214
225
|
name = "aws-lc-rs"
|
|
215
|
-
version = "1.
|
|
226
|
+
version = "1.17.0"
|
|
216
227
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
-
checksum = "
|
|
228
|
+
checksum = "5ec2f1fc3ec205783a5da9a7e6c1509cc69dedf09a1949e412c1e18469326d00"
|
|
218
229
|
dependencies = [
|
|
219
230
|
"aws-lc-sys",
|
|
231
|
+
"untrusted 0.7.1",
|
|
220
232
|
"zeroize",
|
|
221
233
|
]
|
|
222
234
|
|
|
223
235
|
[[package]]
|
|
224
236
|
name = "aws-lc-sys"
|
|
225
|
-
version = "0.
|
|
237
|
+
version = "0.41.0"
|
|
226
238
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
-
checksum = "
|
|
239
|
+
checksum = "1a2f9779ce85b93ab6170dd940ad0169b5766ff848247aff13bb788b832fe3f4"
|
|
228
240
|
dependencies = [
|
|
229
241
|
"cc",
|
|
230
242
|
"cmake",
|
|
@@ -296,15 +308,6 @@ version = "2.11.1"
|
|
|
296
308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
309
|
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
298
310
|
|
|
299
|
-
[[package]]
|
|
300
|
-
name = "bitmaps"
|
|
301
|
-
version = "2.1.0"
|
|
302
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
-
checksum = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2"
|
|
304
|
-
dependencies = [
|
|
305
|
-
"typenum",
|
|
306
|
-
]
|
|
307
|
-
|
|
308
311
|
[[package]]
|
|
309
312
|
name = "block-buffer"
|
|
310
313
|
version = "0.10.4"
|
|
@@ -323,6 +326,15 @@ dependencies = [
|
|
|
323
326
|
"hybrid-array",
|
|
324
327
|
]
|
|
325
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
|
+
|
|
326
338
|
[[package]]
|
|
327
339
|
name = "bstr"
|
|
328
340
|
version = "1.12.1"
|
|
@@ -335,9 +347,9 @@ dependencies = [
|
|
|
335
347
|
|
|
336
348
|
[[package]]
|
|
337
349
|
name = "bumpalo"
|
|
338
|
-
version = "3.20.
|
|
350
|
+
version = "3.20.3"
|
|
339
351
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
-
checksum = "
|
|
352
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
341
353
|
dependencies = [
|
|
342
354
|
"allocator-api2",
|
|
343
355
|
]
|
|
@@ -368,7 +380,7 @@ checksum = "20a158160765c6a7d0d8c072a53d772e4cb243f38b04bfcf6b4939cfbe7482e7"
|
|
|
368
380
|
dependencies = [
|
|
369
381
|
"cap-primitives",
|
|
370
382
|
"cap-std",
|
|
371
|
-
"rustix
|
|
383
|
+
"rustix",
|
|
372
384
|
"smallvec",
|
|
373
385
|
]
|
|
374
386
|
|
|
@@ -384,22 +396,12 @@ dependencies = [
|
|
|
384
396
|
"io-lifetimes",
|
|
385
397
|
"ipnet",
|
|
386
398
|
"maybe-owned",
|
|
387
|
-
"rustix
|
|
399
|
+
"rustix",
|
|
388
400
|
"rustix-linux-procfs",
|
|
389
401
|
"windows-sys 0.59.0",
|
|
390
402
|
"winx",
|
|
391
403
|
]
|
|
392
404
|
|
|
393
|
-
[[package]]
|
|
394
|
-
name = "cap-rand"
|
|
395
|
-
version = "3.4.5"
|
|
396
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
-
checksum = "d8144c22e24bbcf26ade86cb6501a0916c46b7e4787abdb0045a467eb1645a1d"
|
|
398
|
-
dependencies = [
|
|
399
|
-
"ambient-authority",
|
|
400
|
-
"rand 0.8.6",
|
|
401
|
-
]
|
|
402
|
-
|
|
403
405
|
[[package]]
|
|
404
406
|
name = "cap-std"
|
|
405
407
|
version = "3.4.5"
|
|
@@ -409,7 +411,7 @@ dependencies = [
|
|
|
409
411
|
"cap-primitives",
|
|
410
412
|
"io-extras",
|
|
411
413
|
"io-lifetimes",
|
|
412
|
-
"rustix
|
|
414
|
+
"rustix",
|
|
413
415
|
]
|
|
414
416
|
|
|
415
417
|
[[package]]
|
|
@@ -422,15 +424,15 @@ dependencies = [
|
|
|
422
424
|
"cap-primitives",
|
|
423
425
|
"iana-time-zone",
|
|
424
426
|
"once_cell",
|
|
425
|
-
"rustix
|
|
427
|
+
"rustix",
|
|
426
428
|
"winx",
|
|
427
429
|
]
|
|
428
430
|
|
|
429
431
|
[[package]]
|
|
430
432
|
name = "cc"
|
|
431
|
-
version = "1.2.
|
|
433
|
+
version = "1.2.62"
|
|
432
434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
-
checksum = "
|
|
435
|
+
checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
|
|
434
436
|
dependencies = [
|
|
435
437
|
"find-msvc-tools",
|
|
436
438
|
"jobserver",
|
|
@@ -438,12 +440,6 @@ dependencies = [
|
|
|
438
440
|
"shlex",
|
|
439
441
|
]
|
|
440
442
|
|
|
441
|
-
[[package]]
|
|
442
|
-
name = "cesu8"
|
|
443
|
-
version = "1.1.0"
|
|
444
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
-
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
446
|
-
|
|
447
443
|
[[package]]
|
|
448
444
|
name = "cfg-if"
|
|
449
445
|
version = "1.0.4"
|
|
@@ -456,6 +452,17 @@ version = "0.2.1"
|
|
|
456
452
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
457
453
|
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
458
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
|
+
|
|
459
466
|
[[package]]
|
|
460
467
|
name = "chrono"
|
|
461
468
|
version = "0.4.44"
|
|
@@ -661,27 +668,27 @@ dependencies = [
|
|
|
661
668
|
|
|
662
669
|
[[package]]
|
|
663
670
|
name = "cranelift-assembler-x64"
|
|
664
|
-
version = "0.
|
|
671
|
+
version = "0.132.0"
|
|
665
672
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
-
checksum = "
|
|
673
|
+
checksum = "8c80cf55a351448317210f26c434be761bcb25e7b36116ec92f89540b73e2833"
|
|
667
674
|
dependencies = [
|
|
668
675
|
"cranelift-assembler-x64-meta",
|
|
669
676
|
]
|
|
670
677
|
|
|
671
678
|
[[package]]
|
|
672
679
|
name = "cranelift-assembler-x64-meta"
|
|
673
|
-
version = "0.
|
|
680
|
+
version = "0.132.0"
|
|
674
681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
-
checksum = "
|
|
682
|
+
checksum = "07937ca8617b340162fe3a4716be885b5847e9b56d6c7a89abbe4d42340fdc91"
|
|
676
683
|
dependencies = [
|
|
677
684
|
"cranelift-srcgen",
|
|
678
685
|
]
|
|
679
686
|
|
|
680
687
|
[[package]]
|
|
681
688
|
name = "cranelift-bforest"
|
|
682
|
-
version = "0.
|
|
689
|
+
version = "0.132.0"
|
|
683
690
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
-
checksum = "
|
|
691
|
+
checksum = "88217b08180882436d54c0133274885c590698ae854e352bede1cda041230800"
|
|
685
692
|
dependencies = [
|
|
686
693
|
"cranelift-entity",
|
|
687
694
|
"wasmtime-internal-core",
|
|
@@ -689,9 +696,9 @@ dependencies = [
|
|
|
689
696
|
|
|
690
697
|
[[package]]
|
|
691
698
|
name = "cranelift-bitset"
|
|
692
|
-
version = "0.
|
|
699
|
+
version = "0.132.0"
|
|
693
700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
-
checksum = "
|
|
701
|
+
checksum = "d5c3cf7ba29fa56e56040848e34835d4e45988b2760ef212413409af95ffd8c1"
|
|
695
702
|
dependencies = [
|
|
696
703
|
"serde",
|
|
697
704
|
"serde_derive",
|
|
@@ -700,9 +707,9 @@ dependencies = [
|
|
|
700
707
|
|
|
701
708
|
[[package]]
|
|
702
709
|
name = "cranelift-codegen"
|
|
703
|
-
version = "0.
|
|
710
|
+
version = "0.132.0"
|
|
704
711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
-
checksum = "
|
|
712
|
+
checksum = "ebe1aac2efd4cba2047845fce38a68519935a30e20c8a6294ba7e2f448fe722d"
|
|
706
713
|
dependencies = [
|
|
707
714
|
"bumpalo",
|
|
708
715
|
"cranelift-assembler-x64",
|
|
@@ -714,7 +721,7 @@ dependencies = [
|
|
|
714
721
|
"cranelift-entity",
|
|
715
722
|
"cranelift-isle",
|
|
716
723
|
"gimli",
|
|
717
|
-
"hashbrown 0.
|
|
724
|
+
"hashbrown 0.17.1",
|
|
718
725
|
"libm",
|
|
719
726
|
"log",
|
|
720
727
|
"pulley-interpreter",
|
|
@@ -728,9 +735,9 @@ dependencies = [
|
|
|
728
735
|
|
|
729
736
|
[[package]]
|
|
730
737
|
name = "cranelift-codegen-meta"
|
|
731
|
-
version = "0.
|
|
738
|
+
version = "0.132.0"
|
|
732
739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
-
checksum = "
|
|
740
|
+
checksum = "0909eaf9d6f18f5bf802d50608cb4368ac340fbd03cc44f2888d1cfcc3faa64e"
|
|
734
741
|
dependencies = [
|
|
735
742
|
"cranelift-assembler-x64-meta",
|
|
736
743
|
"cranelift-codegen-shared",
|
|
@@ -741,24 +748,24 @@ dependencies = [
|
|
|
741
748
|
|
|
742
749
|
[[package]]
|
|
743
750
|
name = "cranelift-codegen-shared"
|
|
744
|
-
version = "0.
|
|
751
|
+
version = "0.132.0"
|
|
745
752
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
746
|
-
checksum = "
|
|
753
|
+
checksum = "c95a8da8be283f49cda7d0ef228c94f10d791e517b27b0c7e282dadd2e79ce45"
|
|
747
754
|
|
|
748
755
|
[[package]]
|
|
749
756
|
name = "cranelift-control"
|
|
750
|
-
version = "0.
|
|
757
|
+
version = "0.132.0"
|
|
751
758
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
-
checksum = "
|
|
759
|
+
checksum = "f5b19c81145146da1f7afda2e7f52111842fe6793512e740ad5cf3f5639e6212"
|
|
753
760
|
dependencies = [
|
|
754
761
|
"arbitrary",
|
|
755
762
|
]
|
|
756
763
|
|
|
757
764
|
[[package]]
|
|
758
765
|
name = "cranelift-entity"
|
|
759
|
-
version = "0.
|
|
766
|
+
version = "0.132.0"
|
|
760
767
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
-
checksum = "
|
|
768
|
+
checksum = "4a55309b47e6633ab05821304206cb1e92952e845b1224985562bb7ac1e92323"
|
|
762
769
|
dependencies = [
|
|
763
770
|
"cranelift-bitset",
|
|
764
771
|
"serde",
|
|
@@ -768,9 +775,9 @@ dependencies = [
|
|
|
768
775
|
|
|
769
776
|
[[package]]
|
|
770
777
|
name = "cranelift-frontend"
|
|
771
|
-
version = "0.
|
|
778
|
+
version = "0.132.0"
|
|
772
779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
-
checksum = "
|
|
780
|
+
checksum = "064d2d3533d9608f1cf44c8899cf2f7f33feb70300b0fb83e687b0d9e7b91147"
|
|
774
781
|
dependencies = [
|
|
775
782
|
"cranelift-codegen",
|
|
776
783
|
"log",
|
|
@@ -780,15 +787,15 @@ dependencies = [
|
|
|
780
787
|
|
|
781
788
|
[[package]]
|
|
782
789
|
name = "cranelift-isle"
|
|
783
|
-
version = "0.
|
|
790
|
+
version = "0.132.0"
|
|
784
791
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
-
checksum = "
|
|
792
|
+
checksum = "1ac4e0bc095b2dab2212d1e99d7a74b62afc1485db023f1c0cb34a68758f7bd1"
|
|
786
793
|
|
|
787
794
|
[[package]]
|
|
788
795
|
name = "cranelift-native"
|
|
789
|
-
version = "0.
|
|
796
|
+
version = "0.132.0"
|
|
790
797
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
791
|
-
checksum = "
|
|
798
|
+
checksum = "09a40053f5cb925451dd1d57393d14ad3145c8e0786701c27b5415ebb9a3ba4f"
|
|
792
799
|
dependencies = [
|
|
793
800
|
"cranelift-codegen",
|
|
794
801
|
"libc",
|
|
@@ -797,9 +804,9 @@ dependencies = [
|
|
|
797
804
|
|
|
798
805
|
[[package]]
|
|
799
806
|
name = "cranelift-srcgen"
|
|
800
|
-
version = "0.
|
|
807
|
+
version = "0.132.0"
|
|
801
808
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
-
checksum = "
|
|
809
|
+
checksum = "a3ceab9a53f7d362c89841fbaa8e63e44d47c40e91dc96ee6f777fca5d6b323b"
|
|
803
810
|
|
|
804
811
|
[[package]]
|
|
805
812
|
name = "crc32fast"
|
|
@@ -853,9 +860,9 @@ dependencies = [
|
|
|
853
860
|
|
|
854
861
|
[[package]]
|
|
855
862
|
name = "crypto-common"
|
|
856
|
-
version = "0.2.
|
|
863
|
+
version = "0.2.2"
|
|
857
864
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
-
checksum = "
|
|
865
|
+
checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
|
|
859
866
|
dependencies = [
|
|
860
867
|
"hybrid-array",
|
|
861
868
|
]
|
|
@@ -991,13 +998,13 @@ dependencies = [
|
|
|
991
998
|
|
|
992
999
|
[[package]]
|
|
993
1000
|
name = "digest"
|
|
994
|
-
version = "0.11.
|
|
1001
|
+
version = "0.11.3"
|
|
995
1002
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
996
|
-
checksum = "
|
|
1003
|
+
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
997
1004
|
dependencies = [
|
|
998
1005
|
"block-buffer 0.12.0",
|
|
999
1006
|
"const-oid",
|
|
1000
|
-
"crypto-common 0.2.
|
|
1007
|
+
"crypto-common 0.2.2",
|
|
1001
1008
|
]
|
|
1002
1009
|
|
|
1003
1010
|
[[package]]
|
|
@@ -1067,9 +1074,9 @@ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
|
1067
1074
|
|
|
1068
1075
|
[[package]]
|
|
1069
1076
|
name = "either"
|
|
1070
|
-
version = "1.
|
|
1077
|
+
version = "1.16.0"
|
|
1071
1078
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1072
|
-
checksum = "
|
|
1079
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
1073
1080
|
|
|
1074
1081
|
[[package]]
|
|
1075
1082
|
name = "embed-manifest"
|
|
@@ -1126,26 +1133,14 @@ version = "2.4.1"
|
|
|
1126
1133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
1134
|
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
1128
1135
|
|
|
1129
|
-
[[package]]
|
|
1130
|
-
name = "fd-lock"
|
|
1131
|
-
version = "4.0.4"
|
|
1132
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
-
checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78"
|
|
1134
|
-
dependencies = [
|
|
1135
|
-
"cfg-if",
|
|
1136
|
-
"rustix 1.1.4",
|
|
1137
|
-
"windows-sys 0.59.0",
|
|
1138
|
-
]
|
|
1139
|
-
|
|
1140
1136
|
[[package]]
|
|
1141
1137
|
name = "filetime"
|
|
1142
|
-
version = "0.2.
|
|
1138
|
+
version = "0.2.29"
|
|
1143
1139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1144
|
-
checksum = "
|
|
1140
|
+
checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
|
|
1145
1141
|
dependencies = [
|
|
1146
1142
|
"cfg-if",
|
|
1147
1143
|
"libc",
|
|
1148
|
-
"libredox",
|
|
1149
1144
|
]
|
|
1150
1145
|
|
|
1151
1146
|
[[package]]
|
|
@@ -1160,6 +1155,16 @@ version = "0.4.2"
|
|
|
1160
1155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1161
1156
|
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
1162
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
|
+
|
|
1163
1168
|
[[package]]
|
|
1164
1169
|
name = "fnv"
|
|
1165
1170
|
version = "1.0.7"
|
|
@@ -1194,7 +1199,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1194
1199
|
checksum = "94e7099f6313ecacbe1256e8ff9d617b75d1bcb16a6fddef94866d225a01a14a"
|
|
1195
1200
|
dependencies = [
|
|
1196
1201
|
"io-lifetimes",
|
|
1197
|
-
"rustix
|
|
1202
|
+
"rustix",
|
|
1198
1203
|
"windows-sys 0.59.0",
|
|
1199
1204
|
]
|
|
1200
1205
|
|
|
@@ -1352,6 +1357,7 @@ dependencies = [
|
|
|
1352
1357
|
"cfg-if",
|
|
1353
1358
|
"libc",
|
|
1354
1359
|
"r-efi 6.0.0",
|
|
1360
|
+
"rand_core 0.10.1",
|
|
1355
1361
|
"wasip2",
|
|
1356
1362
|
"wasip3",
|
|
1357
1363
|
]
|
|
@@ -1395,9 +1401,9 @@ dependencies = [
|
|
|
1395
1401
|
|
|
1396
1402
|
[[package]]
|
|
1397
1403
|
name = "h2"
|
|
1398
|
-
version = "0.4.
|
|
1404
|
+
version = "0.4.14"
|
|
1399
1405
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1400
|
-
checksum = "
|
|
1406
|
+
checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733"
|
|
1401
1407
|
dependencies = [
|
|
1402
1408
|
"atomic-waker",
|
|
1403
1409
|
"bytes",
|
|
@@ -1471,17 +1477,12 @@ name = "hashbrown"
|
|
|
1471
1477
|
version = "0.16.1"
|
|
1472
1478
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1473
1479
|
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1474
|
-
dependencies = [
|
|
1475
|
-
"foldhash 0.2.0",
|
|
1476
|
-
"serde",
|
|
1477
|
-
"serde_core",
|
|
1478
|
-
]
|
|
1479
1480
|
|
|
1480
1481
|
[[package]]
|
|
1481
1482
|
name = "hashbrown"
|
|
1482
|
-
version = "0.17.
|
|
1483
|
+
version = "0.17.1"
|
|
1483
1484
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1484
|
-
checksum = "
|
|
1485
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
1485
1486
|
dependencies = [
|
|
1486
1487
|
"foldhash 0.2.0",
|
|
1487
1488
|
"serde",
|
|
@@ -1562,9 +1563,9 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
|
1562
1563
|
|
|
1563
1564
|
[[package]]
|
|
1564
1565
|
name = "hybrid-array"
|
|
1565
|
-
version = "0.4.
|
|
1566
|
+
version = "0.4.12"
|
|
1566
1567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1567
|
-
checksum = "
|
|
1568
|
+
checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da"
|
|
1568
1569
|
dependencies = [
|
|
1569
1570
|
"typenum",
|
|
1570
1571
|
]
|
|
@@ -1760,26 +1761,31 @@ dependencies = [
|
|
|
1760
1761
|
|
|
1761
1762
|
[[package]]
|
|
1762
1763
|
name = "idna_adapter"
|
|
1763
|
-
version = "1.2.
|
|
1764
|
+
version = "1.2.2"
|
|
1764
1765
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1765
|
-
checksum = "
|
|
1766
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
1766
1767
|
dependencies = [
|
|
1767
1768
|
"icu_normalizer",
|
|
1768
1769
|
"icu_properties",
|
|
1769
1770
|
]
|
|
1770
1771
|
|
|
1771
1772
|
[[package]]
|
|
1772
|
-
name = "
|
|
1773
|
-
version = "
|
|
1773
|
+
name = "include_dir"
|
|
1774
|
+
version = "0.7.4"
|
|
1774
1775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1775
|
-
checksum = "
|
|
1776
|
+
checksum = "923d117408f1e49d914f1a379a309cffe4f18c05cf4e3d12e613a15fc81bd0dd"
|
|
1776
1777
|
dependencies = [
|
|
1777
|
-
"
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
"
|
|
1782
|
-
"
|
|
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",
|
|
1783
1789
|
]
|
|
1784
1790
|
|
|
1785
1791
|
[[package]]
|
|
@@ -1800,7 +1806,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1800
1806
|
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
1801
1807
|
dependencies = [
|
|
1802
1808
|
"equivalent",
|
|
1803
|
-
"hashbrown 0.17.
|
|
1809
|
+
"hashbrown 0.17.1",
|
|
1804
1810
|
"serde",
|
|
1805
1811
|
"serde_core",
|
|
1806
1812
|
]
|
|
@@ -1840,16 +1846,6 @@ version = "2.12.0"
|
|
|
1840
1846
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1841
1847
|
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
1842
1848
|
|
|
1843
|
-
[[package]]
|
|
1844
|
-
name = "iri-string"
|
|
1845
|
-
version = "0.7.12"
|
|
1846
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1847
|
-
checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
|
|
1848
|
-
dependencies = [
|
|
1849
|
-
"memchr",
|
|
1850
|
-
"serde",
|
|
1851
|
-
]
|
|
1852
|
-
|
|
1853
1849
|
[[package]]
|
|
1854
1850
|
name = "is-terminal"
|
|
1855
1851
|
version = "0.4.17"
|
|
@@ -1910,27 +1906,32 @@ dependencies = [
|
|
|
1910
1906
|
|
|
1911
1907
|
[[package]]
|
|
1912
1908
|
name = "jni"
|
|
1913
|
-
version = "0.
|
|
1909
|
+
version = "0.22.4"
|
|
1914
1910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1915
|
-
checksum = "
|
|
1911
|
+
checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
|
|
1916
1912
|
dependencies = [
|
|
1917
|
-
"cesu8",
|
|
1918
1913
|
"cfg-if",
|
|
1919
1914
|
"combine",
|
|
1920
|
-
"jni-
|
|
1915
|
+
"jni-macros",
|
|
1916
|
+
"jni-sys",
|
|
1921
1917
|
"log",
|
|
1922
|
-
"
|
|
1918
|
+
"simd_cesu8",
|
|
1919
|
+
"thiserror 2.0.18",
|
|
1923
1920
|
"walkdir",
|
|
1924
|
-
"windows-
|
|
1921
|
+
"windows-link",
|
|
1925
1922
|
]
|
|
1926
1923
|
|
|
1927
1924
|
[[package]]
|
|
1928
|
-
name = "jni-
|
|
1929
|
-
version = "0.
|
|
1925
|
+
name = "jni-macros"
|
|
1926
|
+
version = "0.22.4"
|
|
1930
1927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1931
|
-
checksum = "
|
|
1928
|
+
checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
|
|
1932
1929
|
dependencies = [
|
|
1933
|
-
"
|
|
1930
|
+
"proc-macro2",
|
|
1931
|
+
"quote",
|
|
1932
|
+
"rustc_version",
|
|
1933
|
+
"simd_cesu8",
|
|
1934
|
+
"syn",
|
|
1934
1935
|
]
|
|
1935
1936
|
|
|
1936
1937
|
[[package]]
|
|
@@ -1964,9 +1965,9 @@ dependencies = [
|
|
|
1964
1965
|
|
|
1965
1966
|
[[package]]
|
|
1966
1967
|
name = "js-sys"
|
|
1967
|
-
version = "0.3.
|
|
1968
|
+
version = "0.3.99"
|
|
1968
1969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1969
|
-
checksum = "
|
|
1970
|
+
checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
|
|
1970
1971
|
dependencies = [
|
|
1971
1972
|
"cfg-if",
|
|
1972
1973
|
"futures-util",
|
|
@@ -1976,14 +1977,14 @@ dependencies = [
|
|
|
1976
1977
|
|
|
1977
1978
|
[[package]]
|
|
1978
1979
|
name = "json-patch"
|
|
1979
|
-
version = "4.
|
|
1980
|
+
version = "4.2.0"
|
|
1980
1981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1981
|
-
checksum = "
|
|
1982
|
+
checksum = "7421438de105a0827e44fadd05377727847d717c80ce29a229f85fd04c427b72"
|
|
1982
1983
|
dependencies = [
|
|
1983
1984
|
"jsonptr",
|
|
1984
1985
|
"serde",
|
|
1985
1986
|
"serde_json",
|
|
1986
|
-
"thiserror
|
|
1987
|
+
"thiserror 2.0.18",
|
|
1987
1988
|
]
|
|
1988
1989
|
|
|
1989
1990
|
[[package]]
|
|
@@ -1998,16 +1999,18 @@ dependencies = [
|
|
|
1998
1999
|
|
|
1999
2000
|
[[package]]
|
|
2000
2001
|
name = "jsonwebtoken"
|
|
2001
|
-
version = "10.
|
|
2002
|
+
version = "10.4.0"
|
|
2002
2003
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2003
|
-
checksum = "
|
|
2004
|
+
checksum = "eba32bfb4ffdeaca3e34431072faf01745c9b26d25504aa7a6cf5684334fc4fc"
|
|
2004
2005
|
dependencies = [
|
|
2006
|
+
"aws-lc-rs",
|
|
2005
2007
|
"base64",
|
|
2006
2008
|
"getrandom 0.2.17",
|
|
2007
2009
|
"js-sys",
|
|
2008
2010
|
"serde",
|
|
2009
2011
|
"serde_json",
|
|
2010
2012
|
"signature",
|
|
2013
|
+
"zeroize",
|
|
2011
2014
|
]
|
|
2012
2015
|
|
|
2013
2016
|
[[package]]
|
|
@@ -2039,9 +2042,9 @@ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
|
2039
2042
|
|
|
2040
2043
|
[[package]]
|
|
2041
2044
|
name = "libc"
|
|
2042
|
-
version = "0.2.
|
|
2045
|
+
version = "0.2.186"
|
|
2043
2046
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2044
|
-
checksum = "
|
|
2047
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
2045
2048
|
|
|
2046
2049
|
[[package]]
|
|
2047
2050
|
name = "libm"
|
|
@@ -2055,18 +2058,9 @@ version = "0.1.16"
|
|
|
2055
2058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2056
2059
|
checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
|
|
2057
2060
|
dependencies = [
|
|
2058
|
-
"bitflags",
|
|
2059
2061
|
"libc",
|
|
2060
|
-
"plain",
|
|
2061
|
-
"redox_syscall 0.7.4",
|
|
2062
2062
|
]
|
|
2063
2063
|
|
|
2064
|
-
[[package]]
|
|
2065
|
-
name = "linux-raw-sys"
|
|
2066
|
-
version = "0.4.15"
|
|
2067
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2068
|
-
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
2069
|
-
|
|
2070
2064
|
[[package]]
|
|
2071
2065
|
name = "linux-raw-sys"
|
|
2072
2066
|
version = "0.12.1"
|
|
@@ -2142,15 +2136,41 @@ version = "0.6.5"
|
|
|
2142
2136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2143
2137
|
checksum = "ad38eb12aea514a0466ea40a80fd8cc83637065948eb4a426e4aa46261175227"
|
|
2144
2138
|
dependencies = [
|
|
2145
|
-
"rustix
|
|
2139
|
+
"rustix",
|
|
2146
2140
|
]
|
|
2147
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
|
+
|
|
2148
2148
|
[[package]]
|
|
2149
2149
|
name = "mime"
|
|
2150
2150
|
version = "0.3.17"
|
|
2151
2151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2152
2152
|
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
2153
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
|
+
|
|
2154
2174
|
[[package]]
|
|
2155
2175
|
name = "mio"
|
|
2156
2176
|
version = "1.2.0"
|
|
@@ -2164,9 +2184,9 @@ dependencies = [
|
|
|
2164
2184
|
|
|
2165
2185
|
[[package]]
|
|
2166
2186
|
name = "nix"
|
|
2167
|
-
version = "0.31.
|
|
2187
|
+
version = "0.31.3"
|
|
2168
2188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2169
|
-
checksum = "
|
|
2189
|
+
checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
|
|
2170
2190
|
dependencies = [
|
|
2171
2191
|
"bitflags",
|
|
2172
2192
|
"cfg-if",
|
|
@@ -2185,9 +2205,9 @@ dependencies = [
|
|
|
2185
2205
|
|
|
2186
2206
|
[[package]]
|
|
2187
2207
|
name = "num-conv"
|
|
2188
|
-
version = "0.2.
|
|
2208
|
+
version = "0.2.2"
|
|
2189
2209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2190
|
-
checksum = "
|
|
2210
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
2191
2211
|
|
|
2192
2212
|
[[package]]
|
|
2193
2213
|
name = "num-traits"
|
|
@@ -2200,25 +2220,26 @@ dependencies = [
|
|
|
2200
2220
|
|
|
2201
2221
|
[[package]]
|
|
2202
2222
|
name = "object"
|
|
2203
|
-
version = "0.
|
|
2223
|
+
version = "0.39.1"
|
|
2204
2224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2205
|
-
checksum = "
|
|
2225
|
+
checksum = "2e5a6c098c7a3b6547378093f5cc30bc54fd361ce711e05293a5cc589562739b"
|
|
2206
2226
|
dependencies = [
|
|
2207
2227
|
"crc32fast",
|
|
2208
|
-
"hashbrown 0.
|
|
2228
|
+
"hashbrown 0.17.1",
|
|
2209
2229
|
"indexmap 2.14.0",
|
|
2210
2230
|
"memchr",
|
|
2211
2231
|
]
|
|
2212
2232
|
|
|
2213
2233
|
[[package]]
|
|
2214
2234
|
name = "oci-client"
|
|
2215
|
-
version = "0.
|
|
2235
|
+
version = "0.17.0"
|
|
2216
2236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2217
|
-
checksum = "
|
|
2237
|
+
checksum = "5261a7fb43d9c53b8e63e6d5e86860719dad253d015d022066c72d585125aed8"
|
|
2218
2238
|
dependencies = [
|
|
2219
2239
|
"bytes",
|
|
2220
2240
|
"chrono",
|
|
2221
2241
|
"futures-util",
|
|
2242
|
+
"hex",
|
|
2222
2243
|
"http",
|
|
2223
2244
|
"http-auth",
|
|
2224
2245
|
"jsonwebtoken",
|
|
@@ -2229,7 +2250,7 @@ dependencies = [
|
|
|
2229
2250
|
"reqwest",
|
|
2230
2251
|
"serde",
|
|
2231
2252
|
"serde_json",
|
|
2232
|
-
"sha2 0.
|
|
2253
|
+
"sha2 0.11.0",
|
|
2233
2254
|
"thiserror 2.0.18",
|
|
2234
2255
|
"tokio",
|
|
2235
2256
|
"tracing",
|
|
@@ -2316,16 +2337,16 @@ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
|
2316
2337
|
dependencies = [
|
|
2317
2338
|
"cfg-if",
|
|
2318
2339
|
"libc",
|
|
2319
|
-
"redox_syscall
|
|
2340
|
+
"redox_syscall",
|
|
2320
2341
|
"smallvec",
|
|
2321
2342
|
"windows-link",
|
|
2322
2343
|
]
|
|
2323
2344
|
|
|
2324
2345
|
[[package]]
|
|
2325
2346
|
name = "pastey"
|
|
2326
|
-
version = "0.2.
|
|
2347
|
+
version = "0.2.3"
|
|
2327
2348
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2328
|
-
checksum = "
|
|
2349
|
+
checksum = "2ee67f1008b1ba2321834326597b8e186293b049a023cdef258527550b9935b4"
|
|
2329
2350
|
|
|
2330
2351
|
[[package]]
|
|
2331
2352
|
name = "path-clean"
|
|
@@ -2361,12 +2382,6 @@ version = "0.3.33"
|
|
|
2361
2382
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2362
2383
|
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
2363
2384
|
|
|
2364
|
-
[[package]]
|
|
2365
|
-
name = "plain"
|
|
2366
|
-
version = "0.2.3"
|
|
2367
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2368
|
-
checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
|
|
2369
|
-
|
|
2370
2385
|
[[package]]
|
|
2371
2386
|
name = "portable-atomic"
|
|
2372
2387
|
version = "1.13.1"
|
|
@@ -2466,9 +2481,9 @@ dependencies = [
|
|
|
2466
2481
|
|
|
2467
2482
|
[[package]]
|
|
2468
2483
|
name = "pulley-interpreter"
|
|
2469
|
-
version = "
|
|
2484
|
+
version = "45.0.0"
|
|
2470
2485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2471
|
-
checksum = "
|
|
2486
|
+
checksum = "e9204ad9435f2a6fe3bd13bba52389fb8488fa20ba497e35c5d2db638166019d"
|
|
2472
2487
|
dependencies = [
|
|
2473
2488
|
"cranelift-bitset",
|
|
2474
2489
|
"log",
|
|
@@ -2478,9 +2493,9 @@ dependencies = [
|
|
|
2478
2493
|
|
|
2479
2494
|
[[package]]
|
|
2480
2495
|
name = "pulley-macros"
|
|
2481
|
-
version = "
|
|
2496
|
+
version = "45.0.0"
|
|
2482
2497
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2483
|
-
checksum = "
|
|
2498
|
+
checksum = "53009b033747e0d79a76549a744da58e84c9da8076492c7e6d491fdc6cc41b95"
|
|
2484
2499
|
dependencies = [
|
|
2485
2500
|
"proc-macro2",
|
|
2486
2501
|
"quote",
|
|
@@ -2565,35 +2580,25 @@ version = "6.0.0"
|
|
|
2565
2580
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2566
2581
|
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
2567
2582
|
|
|
2568
|
-
[[package]]
|
|
2569
|
-
name = "rand"
|
|
2570
|
-
version = "0.8.6"
|
|
2571
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2572
|
-
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
2573
|
-
dependencies = [
|
|
2574
|
-
"libc",
|
|
2575
|
-
"rand_chacha 0.3.1",
|
|
2576
|
-
"rand_core 0.6.4",
|
|
2577
|
-
]
|
|
2578
|
-
|
|
2579
2583
|
[[package]]
|
|
2580
2584
|
name = "rand"
|
|
2581
2585
|
version = "0.9.4"
|
|
2582
2586
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2583
2587
|
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
2584
2588
|
dependencies = [
|
|
2585
|
-
"rand_chacha
|
|
2589
|
+
"rand_chacha",
|
|
2586
2590
|
"rand_core 0.9.5",
|
|
2587
2591
|
]
|
|
2588
2592
|
|
|
2589
2593
|
[[package]]
|
|
2590
|
-
name = "
|
|
2591
|
-
version = "0.
|
|
2594
|
+
name = "rand"
|
|
2595
|
+
version = "0.10.1"
|
|
2592
2596
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2593
|
-
checksum = "
|
|
2597
|
+
checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
|
|
2594
2598
|
dependencies = [
|
|
2595
|
-
"
|
|
2596
|
-
"
|
|
2599
|
+
"chacha20",
|
|
2600
|
+
"getrandom 0.4.2",
|
|
2601
|
+
"rand_core 0.10.1",
|
|
2597
2602
|
]
|
|
2598
2603
|
|
|
2599
2604
|
[[package]]
|
|
@@ -2625,13 +2630,10 @@ dependencies = [
|
|
|
2625
2630
|
]
|
|
2626
2631
|
|
|
2627
2632
|
[[package]]
|
|
2628
|
-
name = "
|
|
2629
|
-
version = "0.
|
|
2633
|
+
name = "rand_core"
|
|
2634
|
+
version = "0.10.1"
|
|
2630
2635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2631
|
-
checksum = "
|
|
2632
|
-
dependencies = [
|
|
2633
|
-
"rand_core 0.6.4",
|
|
2634
|
-
]
|
|
2636
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
2635
2637
|
|
|
2636
2638
|
[[package]]
|
|
2637
2639
|
name = "rayon"
|
|
@@ -2662,15 +2664,6 @@ dependencies = [
|
|
|
2662
2664
|
"bitflags",
|
|
2663
2665
|
]
|
|
2664
2666
|
|
|
2665
|
-
[[package]]
|
|
2666
|
-
name = "redox_syscall"
|
|
2667
|
-
version = "0.7.4"
|
|
2668
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2669
|
-
checksum = "f450ad9c3b1da563fb6948a8e0fb0fb9269711c9c73d9ea1de5058c79c8d643a"
|
|
2670
|
-
dependencies = [
|
|
2671
|
-
"bitflags",
|
|
2672
|
-
]
|
|
2673
|
-
|
|
2674
2667
|
[[package]]
|
|
2675
2668
|
name = "redox_users"
|
|
2676
2669
|
version = "0.4.6"
|
|
@@ -2721,7 +2714,7 @@ checksum = "de2c52737737f8609e94f975dee22854a2d5c125772d4b1cf292120f4d45c186"
|
|
|
2721
2714
|
dependencies = [
|
|
2722
2715
|
"allocator-api2",
|
|
2723
2716
|
"bumpalo",
|
|
2724
|
-
"hashbrown 0.17.
|
|
2717
|
+
"hashbrown 0.17.1",
|
|
2725
2718
|
"log",
|
|
2726
2719
|
"rustc-hash",
|
|
2727
2720
|
"smallvec",
|
|
@@ -2758,9 +2751,9 @@ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
|
2758
2751
|
|
|
2759
2752
|
[[package]]
|
|
2760
2753
|
name = "reqwest"
|
|
2761
|
-
version = "0.13.
|
|
2754
|
+
version = "0.13.3"
|
|
2762
2755
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2763
|
-
checksum = "
|
|
2756
|
+
checksum = "62e0021ea2c22aed41653bc7e1419abb2c97e038ff2c33d0e1309e49a97deec0"
|
|
2764
2757
|
dependencies = [
|
|
2765
2758
|
"base64",
|
|
2766
2759
|
"bytes",
|
|
@@ -2810,39 +2803,47 @@ dependencies = [
|
|
|
2810
2803
|
"cfg-if",
|
|
2811
2804
|
"getrandom 0.2.17",
|
|
2812
2805
|
"libc",
|
|
2813
|
-
"untrusted",
|
|
2806
|
+
"untrusted 0.9.0",
|
|
2814
2807
|
"windows-sys 0.52.0",
|
|
2815
2808
|
]
|
|
2816
2809
|
|
|
2817
2810
|
[[package]]
|
|
2818
2811
|
name = "rmcp"
|
|
2819
|
-
version = "1.
|
|
2812
|
+
version = "1.7.0"
|
|
2820
2813
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2821
|
-
checksum = "
|
|
2814
|
+
checksum = "0810a9f717d9828f475fe1f629f4c305c8464b7f496c3a854b58d29e65f4058e"
|
|
2822
2815
|
dependencies = [
|
|
2823
2816
|
"async-trait",
|
|
2824
2817
|
"base64",
|
|
2818
|
+
"bytes",
|
|
2825
2819
|
"chrono",
|
|
2826
2820
|
"futures",
|
|
2821
|
+
"http",
|
|
2822
|
+
"http-body",
|
|
2823
|
+
"http-body-util",
|
|
2827
2824
|
"pastey",
|
|
2828
2825
|
"pin-project-lite",
|
|
2829
2826
|
"process-wrap",
|
|
2827
|
+
"rand 0.10.1",
|
|
2830
2828
|
"rmcp-macros",
|
|
2831
2829
|
"schemars 1.2.1",
|
|
2832
2830
|
"serde",
|
|
2833
2831
|
"serde_json",
|
|
2832
|
+
"sse-stream",
|
|
2834
2833
|
"thiserror 2.0.18",
|
|
2835
2834
|
"tokio",
|
|
2836
2835
|
"tokio-stream",
|
|
2837
2836
|
"tokio-util",
|
|
2837
|
+
"tower-service",
|
|
2838
2838
|
"tracing",
|
|
2839
|
+
"uuid",
|
|
2839
2840
|
]
|
|
2840
2841
|
|
|
2841
2842
|
[[package]]
|
|
2842
2843
|
name = "rmcp-macros"
|
|
2843
|
-
version = "1.
|
|
2844
|
+
version = "1.7.0"
|
|
2844
2845
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2845
|
-
checksum = "
|
|
2846
|
+
checksum = "6aefac48c364756e97f04c0401ba3231e8607882c7c1d92da0437dc16307904d"
|
|
2846
2847
|
dependencies = [
|
|
2847
2848
|
"darling 0.23.0",
|
|
2848
2849
|
"proc-macro2",
|
|
@@ -2864,16 +2865,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2864
2865
|
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
2865
2866
|
|
|
2866
2867
|
[[package]]
|
|
2867
|
-
name = "
|
|
2868
|
-
version = "0.
|
|
2868
|
+
name = "rustc_version"
|
|
2869
|
+
version = "0.4.1"
|
|
2869
2870
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2870
|
-
checksum = "
|
|
2871
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2871
2872
|
dependencies = [
|
|
2872
|
-
"
|
|
2873
|
-
"errno",
|
|
2874
|
-
"libc",
|
|
2875
|
-
"linux-raw-sys 0.4.15",
|
|
2876
|
-
"windows-sys 0.59.0",
|
|
2873
|
+
"semver",
|
|
2877
2874
|
]
|
|
2878
2875
|
|
|
2879
2876
|
[[package]]
|
|
@@ -2885,7 +2882,7 @@ dependencies = [
|
|
|
2885
2882
|
"bitflags",
|
|
2886
2883
|
"errno",
|
|
2887
2884
|
"libc",
|
|
2888
|
-
"linux-raw-sys
|
|
2885
|
+
"linux-raw-sys",
|
|
2889
2886
|
"windows-sys 0.61.2",
|
|
2890
2887
|
]
|
|
2891
2888
|
|
|
@@ -2896,14 +2893,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2896
2893
|
checksum = "2fc84bf7e9aa16c4f2c758f27412dc9841341e16aa682d9c7ac308fe3ee12056"
|
|
2897
2894
|
dependencies = [
|
|
2898
2895
|
"once_cell",
|
|
2899
|
-
"rustix
|
|
2896
|
+
"rustix",
|
|
2900
2897
|
]
|
|
2901
2898
|
|
|
2902
2899
|
[[package]]
|
|
2903
2900
|
name = "rustls"
|
|
2904
|
-
version = "0.23.
|
|
2901
|
+
version = "0.23.40"
|
|
2905
2902
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2906
|
-
checksum = "
|
|
2903
|
+
checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
|
|
2907
2904
|
dependencies = [
|
|
2908
2905
|
"aws-lc-rs",
|
|
2909
2906
|
"once_cell",
|
|
@@ -2927,9 +2924,9 @@ dependencies = [
|
|
|
2927
2924
|
|
|
2928
2925
|
[[package]]
|
|
2929
2926
|
name = "rustls-pki-types"
|
|
2930
|
-
version = "1.14.
|
|
2927
|
+
version = "1.14.1"
|
|
2931
2928
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2932
|
-
checksum = "
|
|
2929
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
2933
2930
|
dependencies = [
|
|
2934
2931
|
"web-time",
|
|
2935
2932
|
"zeroize",
|
|
@@ -2937,9 +2934,9 @@ dependencies = [
|
|
|
2937
2934
|
|
|
2938
2935
|
[[package]]
|
|
2939
2936
|
name = "rustls-platform-verifier"
|
|
2940
|
-
version = "0.
|
|
2937
|
+
version = "0.7.0"
|
|
2941
2938
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2942
|
-
checksum = "
|
|
2939
|
+
checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
|
|
2943
2940
|
dependencies = [
|
|
2944
2941
|
"core-foundation",
|
|
2945
2942
|
"core-foundation-sys",
|
|
@@ -2964,14 +2961,14 @@ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
|
2964
2961
|
|
|
2965
2962
|
[[package]]
|
|
2966
2963
|
name = "rustls-webpki"
|
|
2967
|
-
version = "0.103.
|
|
2964
|
+
version = "0.103.13"
|
|
2968
2965
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2969
|
-
checksum = "
|
|
2966
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
2970
2967
|
dependencies = [
|
|
2971
2968
|
"aws-lc-rs",
|
|
2972
2969
|
"ring",
|
|
2973
2970
|
"rustls-pki-types",
|
|
2974
|
-
"untrusted",
|
|
2971
|
+
"untrusted 0.9.0",
|
|
2975
2972
|
]
|
|
2976
2973
|
|
|
2977
2974
|
[[package]]
|
|
@@ -3124,9 +3121,9 @@ dependencies = [
|
|
|
3124
3121
|
|
|
3125
3122
|
[[package]]
|
|
3126
3123
|
name = "serde_json"
|
|
3127
|
-
version = "1.0.
|
|
3124
|
+
version = "1.0.150"
|
|
3128
3125
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3129
|
-
checksum = "
|
|
3126
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
3130
3127
|
dependencies = [
|
|
3131
3128
|
"itoa",
|
|
3132
3129
|
"memchr",
|
|
@@ -3169,11 +3166,12 @@ dependencies = [
|
|
|
3169
3166
|
|
|
3170
3167
|
[[package]]
|
|
3171
3168
|
name = "serde_with"
|
|
3172
|
-
version = "3.
|
|
3169
|
+
version = "3.20.0"
|
|
3173
3170
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3174
|
-
checksum = "
|
|
3171
|
+
checksum = "e72c1c2cb7b223fafb600a619537a871c2818583d619401b785e7c0b746ccde2"
|
|
3175
3172
|
dependencies = [
|
|
3176
3173
|
"base64",
|
|
3174
|
+
"bs58",
|
|
3177
3175
|
"chrono",
|
|
3178
3176
|
"hex",
|
|
3179
3177
|
"indexmap 1.9.3",
|
|
@@ -3188,9 +3186,9 @@ dependencies = [
|
|
|
3188
3186
|
|
|
3189
3187
|
[[package]]
|
|
3190
3188
|
name = "serde_with_macros"
|
|
3191
|
-
version = "3.
|
|
3189
|
+
version = "3.20.0"
|
|
3192
3190
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3193
|
-
checksum = "
|
|
3191
|
+
checksum = "b90c488738ecb4fb0262f41f43bc40efc5868d9fb744319ddf5f5317f417bfac"
|
|
3194
3192
|
dependencies = [
|
|
3195
3193
|
"darling 0.23.0",
|
|
3196
3194
|
"proc-macro2",
|
|
@@ -3198,19 +3196,6 @@ dependencies = [
|
|
|
3198
3196
|
"syn",
|
|
3199
3197
|
]
|
|
3200
3198
|
|
|
3201
|
-
[[package]]
|
|
3202
|
-
name = "serde_yaml"
|
|
3203
|
-
version = "0.9.34+deprecated"
|
|
3204
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3205
|
-
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
3206
|
-
dependencies = [
|
|
3207
|
-
"indexmap 2.14.0",
|
|
3208
|
-
"itoa",
|
|
3209
|
-
"ryu",
|
|
3210
|
-
"serde",
|
|
3211
|
-
"unsafe-libyaml",
|
|
3212
|
-
]
|
|
3213
|
-
|
|
3214
3199
|
[[package]]
|
|
3215
3200
|
name = "sha2"
|
|
3216
3201
|
version = "0.10.9"
|
|
@@ -3230,7 +3215,7 @@ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
|
3230
3215
|
dependencies = [
|
|
3231
3216
|
"cfg-if",
|
|
3232
3217
|
"cpufeatures 0.3.0",
|
|
3233
|
-
"digest 0.11.
|
|
3218
|
+
"digest 0.11.3",
|
|
3234
3219
|
]
|
|
3235
3220
|
|
|
3236
3221
|
[[package]]
|
|
@@ -3277,15 +3262,27 @@ dependencies = [
|
|
|
3277
3262
|
]
|
|
3278
3263
|
|
|
3279
3264
|
[[package]]
|
|
3280
|
-
name = "
|
|
3281
|
-
version = "0.
|
|
3265
|
+
name = "simd-adler32"
|
|
3266
|
+
version = "0.3.9"
|
|
3282
3267
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3283
|
-
checksum = "
|
|
3268
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
3269
|
+
|
|
3270
|
+
[[package]]
|
|
3271
|
+
name = "simd_cesu8"
|
|
3272
|
+
version = "1.1.1"
|
|
3273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3274
|
+
checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
|
|
3284
3275
|
dependencies = [
|
|
3285
|
-
"
|
|
3286
|
-
"
|
|
3276
|
+
"rustc_version",
|
|
3277
|
+
"simdutf8",
|
|
3287
3278
|
]
|
|
3288
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
|
+
|
|
3289
3286
|
[[package]]
|
|
3290
3287
|
name = "slab"
|
|
3291
3288
|
version = "0.4.12"
|
|
@@ -3311,6 +3308,19 @@ dependencies = [
|
|
|
3311
3308
|
"windows-sys 0.61.2",
|
|
3312
3309
|
]
|
|
3313
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
|
+
|
|
3314
3324
|
[[package]]
|
|
3315
3325
|
name = "stable_deref_trait"
|
|
3316
3326
|
version = "1.2.1"
|
|
@@ -3397,27 +3407,11 @@ dependencies = [
|
|
|
3397
3407
|
"syn",
|
|
3398
3408
|
]
|
|
3399
3409
|
|
|
3400
|
-
[[package]]
|
|
3401
|
-
name = "system-interface"
|
|
3402
|
-
version = "0.27.3"
|
|
3403
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3404
|
-
checksum = "cc4592f674ce18521c2a81483873a49596655b179f71c5e05d10c1fe66c78745"
|
|
3405
|
-
dependencies = [
|
|
3406
|
-
"bitflags",
|
|
3407
|
-
"cap-fs-ext",
|
|
3408
|
-
"cap-std",
|
|
3409
|
-
"fd-lock",
|
|
3410
|
-
"io-lifetimes",
|
|
3411
|
-
"rustix 0.38.44",
|
|
3412
|
-
"windows-sys 0.59.0",
|
|
3413
|
-
"winx",
|
|
3414
|
-
]
|
|
3415
|
-
|
|
3416
3410
|
[[package]]
|
|
3417
3411
|
name = "tar"
|
|
3418
|
-
version = "0.4.
|
|
3412
|
+
version = "0.4.46"
|
|
3419
3413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3420
|
-
checksum = "
|
|
3414
|
+
checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840"
|
|
3421
3415
|
dependencies = [
|
|
3422
3416
|
"filetime",
|
|
3423
3417
|
"libc",
|
|
@@ -3439,7 +3433,7 @@ dependencies = [
|
|
|
3439
3433
|
"fastrand",
|
|
3440
3434
|
"getrandom 0.4.2",
|
|
3441
3435
|
"once_cell",
|
|
3442
|
-
"rustix
|
|
3436
|
+
"rustix",
|
|
3443
3437
|
"windows-sys 0.61.2",
|
|
3444
3438
|
]
|
|
3445
3439
|
|
|
@@ -3559,9 +3553,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
3559
3553
|
|
|
3560
3554
|
[[package]]
|
|
3561
3555
|
name = "tokio"
|
|
3562
|
-
version = "1.52.
|
|
3556
|
+
version = "1.52.3"
|
|
3563
3557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3564
|
-
checksum = "
|
|
3558
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
3565
3559
|
dependencies = [
|
|
3566
3560
|
"bytes",
|
|
3567
3561
|
"libc",
|
|
@@ -3646,7 +3640,7 @@ dependencies = [
|
|
|
3646
3640
|
"toml_datetime 1.1.1+spec-1.1.0",
|
|
3647
3641
|
"toml_parser",
|
|
3648
3642
|
"toml_writer",
|
|
3649
|
-
"winnow 1.0.
|
|
3643
|
+
"winnow 1.0.3",
|
|
3650
3644
|
]
|
|
3651
3645
|
|
|
3652
3646
|
[[package]]
|
|
@@ -3673,7 +3667,7 @@ version = "1.1.2+spec-1.1.0"
|
|
|
3673
3667
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3674
3668
|
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
3675
3669
|
dependencies = [
|
|
3676
|
-
"winnow 1.0.
|
|
3670
|
+
"winnow 1.0.3",
|
|
3677
3671
|
]
|
|
3678
3672
|
|
|
3679
3673
|
[[package]]
|
|
@@ -3700,20 +3694,20 @@ dependencies = [
|
|
|
3700
3694
|
|
|
3701
3695
|
[[package]]
|
|
3702
3696
|
name = "tower-http"
|
|
3703
|
-
version = "0.6.
|
|
3697
|
+
version = "0.6.11"
|
|
3704
3698
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3705
|
-
checksum = "
|
|
3699
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
3706
3700
|
dependencies = [
|
|
3707
3701
|
"bitflags",
|
|
3708
3702
|
"bytes",
|
|
3709
3703
|
"futures-util",
|
|
3710
3704
|
"http",
|
|
3711
3705
|
"http-body",
|
|
3712
|
-
"iri-string",
|
|
3713
3706
|
"pin-project-lite",
|
|
3714
3707
|
"tower",
|
|
3715
3708
|
"tower-layer",
|
|
3716
3709
|
"tower-service",
|
|
3710
|
+
"url",
|
|
3717
3711
|
]
|
|
3718
3712
|
|
|
3719
3713
|
[[package]]
|
|
@@ -3798,9 +3792,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
3798
3792
|
|
|
3799
3793
|
[[package]]
|
|
3800
3794
|
name = "typenum"
|
|
3801
|
-
version = "1.
|
|
3795
|
+
version = "1.20.0"
|
|
3802
3796
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3803
|
-
checksum = "
|
|
3797
|
+
checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
|
|
3804
3798
|
|
|
3805
3799
|
[[package]]
|
|
3806
3800
|
name = "unicase"
|
|
@@ -3842,10 +3836,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3842
3836
|
checksum = "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3"
|
|
3843
3837
|
|
|
3844
3838
|
[[package]]
|
|
3845
|
-
name = "
|
|
3846
|
-
version = "0.
|
|
3839
|
+
name = "untrusted"
|
|
3840
|
+
version = "0.7.1"
|
|
3847
3841
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3848
|
-
checksum = "
|
|
3842
|
+
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
|
|
3849
3843
|
|
|
3850
3844
|
[[package]]
|
|
3851
3845
|
name = "untrusted"
|
|
@@ -3883,6 +3877,7 @@ version = "1.23.1"
|
|
|
3883
3877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3884
3878
|
checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
|
|
3885
3879
|
dependencies = [
|
|
3880
|
+
"getrandom 0.4.2",
|
|
3886
3881
|
"js-sys",
|
|
3887
3882
|
"wasm-bindgen",
|
|
3888
3883
|
]
|
|
@@ -3944,9 +3939,9 @@ dependencies = [
|
|
|
3944
3939
|
|
|
3945
3940
|
[[package]]
|
|
3946
3941
|
name = "wasm-bindgen"
|
|
3947
|
-
version = "0.2.
|
|
3942
|
+
version = "0.2.122"
|
|
3948
3943
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3949
|
-
checksum = "
|
|
3944
|
+
checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
|
|
3950
3945
|
dependencies = [
|
|
3951
3946
|
"cfg-if",
|
|
3952
3947
|
"once_cell",
|
|
@@ -3957,9 +3952,9 @@ dependencies = [
|
|
|
3957
3952
|
|
|
3958
3953
|
[[package]]
|
|
3959
3954
|
name = "wasm-bindgen-futures"
|
|
3960
|
-
version = "0.4.
|
|
3955
|
+
version = "0.4.72"
|
|
3961
3956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3962
|
-
checksum = "
|
|
3957
|
+
checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
|
|
3963
3958
|
dependencies = [
|
|
3964
3959
|
"js-sys",
|
|
3965
3960
|
"wasm-bindgen",
|
|
@@ -3967,9 +3962,9 @@ dependencies = [
|
|
|
3967
3962
|
|
|
3968
3963
|
[[package]]
|
|
3969
3964
|
name = "wasm-bindgen-macro"
|
|
3970
|
-
version = "0.2.
|
|
3965
|
+
version = "0.2.122"
|
|
3971
3966
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3972
|
-
checksum = "
|
|
3967
|
+
checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
|
|
3973
3968
|
dependencies = [
|
|
3974
3969
|
"quote",
|
|
3975
3970
|
"wasm-bindgen-macro-support",
|
|
@@ -3977,9 +3972,9 @@ dependencies = [
|
|
|
3977
3972
|
|
|
3978
3973
|
[[package]]
|
|
3979
3974
|
name = "wasm-bindgen-macro-support"
|
|
3980
|
-
version = "0.2.
|
|
3975
|
+
version = "0.2.122"
|
|
3981
3976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3982
|
-
checksum = "
|
|
3977
|
+
checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
|
|
3983
3978
|
dependencies = [
|
|
3984
3979
|
"bumpalo",
|
|
3985
3980
|
"proc-macro2",
|
|
@@ -3990,31 +3985,27 @@ dependencies = [
|
|
|
3990
3985
|
|
|
3991
3986
|
[[package]]
|
|
3992
3987
|
name = "wasm-bindgen-shared"
|
|
3993
|
-
version = "0.2.
|
|
3988
|
+
version = "0.2.122"
|
|
3994
3989
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3995
|
-
checksum = "
|
|
3990
|
+
checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
|
|
3996
3991
|
dependencies = [
|
|
3997
3992
|
"unicode-ident",
|
|
3998
3993
|
]
|
|
3999
3994
|
|
|
4000
3995
|
[[package]]
|
|
4001
3996
|
name = "wasm-compose"
|
|
4002
|
-
version = "0.
|
|
3997
|
+
version = "0.248.0"
|
|
4003
3998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4004
|
-
checksum = "
|
|
3999
|
+
checksum = "96ba953e2b9b4b4b52a31cf4e3ee1c1374c872b6e012cf2138d1c37cba00bfd6"
|
|
4005
4000
|
dependencies = [
|
|
4006
4001
|
"anyhow",
|
|
4007
4002
|
"heck",
|
|
4008
|
-
"im-rc",
|
|
4009
4003
|
"indexmap 2.14.0",
|
|
4010
4004
|
"log",
|
|
4011
4005
|
"petgraph",
|
|
4012
|
-
"serde",
|
|
4013
|
-
"serde_derive",
|
|
4014
|
-
"serde_yaml",
|
|
4015
4006
|
"smallvec",
|
|
4016
|
-
"wasm-encoder 0.
|
|
4017
|
-
"wasmparser 0.
|
|
4007
|
+
"wasm-encoder 0.248.0",
|
|
4008
|
+
"wasmparser 0.248.0",
|
|
4018
4009
|
"wat",
|
|
4019
4010
|
]
|
|
4020
4011
|
|
|
@@ -4030,22 +4021,22 @@ dependencies = [
|
|
|
4030
4021
|
|
|
4031
4022
|
[[package]]
|
|
4032
4023
|
name = "wasm-encoder"
|
|
4033
|
-
version = "0.
|
|
4024
|
+
version = "0.248.0"
|
|
4034
4025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4035
|
-
checksum = "
|
|
4026
|
+
checksum = "ac92cf547bc18d27ecc521015c08c353b4f18b84ab388bb6d1b6b682c620d9b6"
|
|
4036
4027
|
dependencies = [
|
|
4037
4028
|
"leb128fmt",
|
|
4038
|
-
"wasmparser 0.
|
|
4029
|
+
"wasmparser 0.248.0",
|
|
4039
4030
|
]
|
|
4040
4031
|
|
|
4041
4032
|
[[package]]
|
|
4042
4033
|
name = "wasm-encoder"
|
|
4043
|
-
version = "0.
|
|
4034
|
+
version = "0.250.0"
|
|
4044
4035
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4045
|
-
checksum = "
|
|
4036
|
+
checksum = "2271adb766023046af314460f1fae02cc34ea16d736d93404d3b65be44270923"
|
|
4046
4037
|
dependencies = [
|
|
4047
4038
|
"leb128fmt",
|
|
4048
|
-
"wasmparser 0.
|
|
4039
|
+
"wasmparser 0.250.0",
|
|
4049
4040
|
]
|
|
4050
4041
|
|
|
4051
4042
|
[[package]]
|
|
@@ -4087,12 +4078,12 @@ dependencies = [
|
|
|
4087
4078
|
|
|
4088
4079
|
[[package]]
|
|
4089
4080
|
name = "wasmparser"
|
|
4090
|
-
version = "0.
|
|
4081
|
+
version = "0.248.0"
|
|
4091
4082
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4092
|
-
checksum = "
|
|
4083
|
+
checksum = "aa4439c5eee9df71ee0c6efb37f63b1fcb1fec38f85f5142c54e7ed05d33091a"
|
|
4093
4084
|
dependencies = [
|
|
4094
4085
|
"bitflags",
|
|
4095
|
-
"hashbrown 0.
|
|
4086
|
+
"hashbrown 0.17.1",
|
|
4096
4087
|
"indexmap 2.14.0",
|
|
4097
4088
|
"semver",
|
|
4098
4089
|
"serde",
|
|
@@ -4100,12 +4091,12 @@ dependencies = [
|
|
|
4100
4091
|
|
|
4101
4092
|
[[package]]
|
|
4102
4093
|
name = "wasmparser"
|
|
4103
|
-
version = "0.
|
|
4094
|
+
version = "0.250.0"
|
|
4104
4095
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4105
|
-
checksum = "
|
|
4096
|
+
checksum = "071d99cdfb8111603ed05500506c3298a940b58d609dd0259d3981785dd33556"
|
|
4106
4097
|
dependencies = [
|
|
4107
4098
|
"bitflags",
|
|
4108
|
-
"hashbrown 0.17.
|
|
4099
|
+
"hashbrown 0.17.1",
|
|
4109
4100
|
"indexmap 2.14.0",
|
|
4110
4101
|
"semver",
|
|
4111
4102
|
"serde",
|
|
@@ -4113,20 +4104,20 @@ dependencies = [
|
|
|
4113
4104
|
|
|
4114
4105
|
[[package]]
|
|
4115
4106
|
name = "wasmprinter"
|
|
4116
|
-
version = "0.
|
|
4107
|
+
version = "0.248.0"
|
|
4117
4108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4118
|
-
checksum = "
|
|
4109
|
+
checksum = "30b264a5410b008d4d199a92bf536eae703cbd614482fc1ec53831cf19e1c183"
|
|
4119
4110
|
dependencies = [
|
|
4120
4111
|
"anyhow",
|
|
4121
4112
|
"termcolor",
|
|
4122
|
-
"wasmparser 0.
|
|
4113
|
+
"wasmparser 0.248.0",
|
|
4123
4114
|
]
|
|
4124
4115
|
|
|
4125
4116
|
[[package]]
|
|
4126
4117
|
name = "wasmtime"
|
|
4127
|
-
version = "
|
|
4118
|
+
version = "45.0.0"
|
|
4128
4119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4129
|
-
checksum = "
|
|
4120
|
+
checksum = "d35aec1e932d00a7c941f816ad589e65ad8db948b9e971bf8ec655a1669f1f67"
|
|
4130
4121
|
dependencies = [
|
|
4131
4122
|
"addr2line",
|
|
4132
4123
|
"async-trait",
|
|
@@ -4149,7 +4140,7 @@ dependencies = [
|
|
|
4149
4140
|
"postcard",
|
|
4150
4141
|
"pulley-interpreter",
|
|
4151
4142
|
"rayon",
|
|
4152
|
-
"rustix
|
|
4143
|
+
"rustix",
|
|
4153
4144
|
"semver",
|
|
4154
4145
|
"serde",
|
|
4155
4146
|
"serde_derive",
|
|
@@ -4158,8 +4149,8 @@ dependencies = [
|
|
|
4158
4149
|
"target-lexicon",
|
|
4159
4150
|
"tempfile",
|
|
4160
4151
|
"wasm-compose",
|
|
4161
|
-
"wasm-encoder 0.
|
|
4162
|
-
"wasmparser 0.
|
|
4152
|
+
"wasm-encoder 0.248.0",
|
|
4153
|
+
"wasmparser 0.248.0",
|
|
4163
4154
|
"wasmtime-environ",
|
|
4164
4155
|
"wasmtime-internal-cache",
|
|
4165
4156
|
"wasmtime-internal-component-macro",
|
|
@@ -4178,9 +4169,9 @@ dependencies = [
|
|
|
4178
4169
|
|
|
4179
4170
|
[[package]]
|
|
4180
4171
|
name = "wasmtime-environ"
|
|
4181
|
-
version = "
|
|
4172
|
+
version = "45.0.0"
|
|
4182
4173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4183
|
-
checksum = "
|
|
4174
|
+
checksum = "d7da3dcce82a7e784121c19c8c9c5f69a743088264ff5212033e4a1f1b9dfaaf"
|
|
4184
4175
|
dependencies = [
|
|
4185
4176
|
"anyhow",
|
|
4186
4177
|
"cpp_demangle",
|
|
@@ -4188,7 +4179,7 @@ dependencies = [
|
|
|
4188
4179
|
"cranelift-bitset",
|
|
4189
4180
|
"cranelift-entity",
|
|
4190
4181
|
"gimli",
|
|
4191
|
-
"hashbrown 0.
|
|
4182
|
+
"hashbrown 0.17.1",
|
|
4192
4183
|
"indexmap 2.14.0",
|
|
4193
4184
|
"log",
|
|
4194
4185
|
"object",
|
|
@@ -4200,8 +4191,8 @@ dependencies = [
|
|
|
4200
4191
|
"sha2 0.10.9",
|
|
4201
4192
|
"smallvec",
|
|
4202
4193
|
"target-lexicon",
|
|
4203
|
-
"wasm-encoder 0.
|
|
4204
|
-
"wasmparser 0.
|
|
4194
|
+
"wasm-encoder 0.248.0",
|
|
4195
|
+
"wasmparser 0.248.0",
|
|
4205
4196
|
"wasmprinter",
|
|
4206
4197
|
"wasmtime-internal-component-util",
|
|
4207
4198
|
"wasmtime-internal-core",
|
|
@@ -4209,15 +4200,15 @@ dependencies = [
|
|
|
4209
4200
|
|
|
4210
4201
|
[[package]]
|
|
4211
4202
|
name = "wasmtime-internal-cache"
|
|
4212
|
-
version = "
|
|
4203
|
+
version = "45.0.0"
|
|
4213
4204
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4214
|
-
checksum = "
|
|
4205
|
+
checksum = "ef87f84d976e2f98a541eaf5837df0424e2039837fc20bd6cd4b4b5a322939c0"
|
|
4215
4206
|
dependencies = [
|
|
4216
4207
|
"base64",
|
|
4217
4208
|
"directories-next",
|
|
4218
4209
|
"log",
|
|
4219
4210
|
"postcard",
|
|
4220
|
-
"rustix
|
|
4211
|
+
"rustix",
|
|
4221
4212
|
"serde",
|
|
4222
4213
|
"serde_derive",
|
|
4223
4214
|
"sha2 0.10.9",
|
|
@@ -4229,9 +4220,9 @@ dependencies = [
|
|
|
4229
4220
|
|
|
4230
4221
|
[[package]]
|
|
4231
4222
|
name = "wasmtime-internal-component-macro"
|
|
4232
|
-
version = "
|
|
4223
|
+
version = "45.0.0"
|
|
4233
4224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4234
|
-
checksum = "
|
|
4225
|
+
checksum = "86991f201391afc1504e4fc363dc29b66f92af0287b4ac2efc3c0b0c19435eeb"
|
|
4235
4226
|
dependencies = [
|
|
4236
4227
|
"anyhow",
|
|
4237
4228
|
"proc-macro2",
|
|
@@ -4239,32 +4230,32 @@ dependencies = [
|
|
|
4239
4230
|
"syn",
|
|
4240
4231
|
"wasmtime-internal-component-util",
|
|
4241
4232
|
"wasmtime-internal-wit-bindgen",
|
|
4242
|
-
"wit-parser 0.
|
|
4233
|
+
"wit-parser 0.248.0",
|
|
4243
4234
|
]
|
|
4244
4235
|
|
|
4245
4236
|
[[package]]
|
|
4246
4237
|
name = "wasmtime-internal-component-util"
|
|
4247
|
-
version = "
|
|
4238
|
+
version = "45.0.0"
|
|
4248
4239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4249
|
-
checksum = "
|
|
4240
|
+
checksum = "47fda091250d7ab839ea51e4d98190b6eee37e9de4ab2462e8fe8465369c1986"
|
|
4250
4241
|
|
|
4251
4242
|
[[package]]
|
|
4252
4243
|
name = "wasmtime-internal-core"
|
|
4253
|
-
version = "
|
|
4244
|
+
version = "45.0.0"
|
|
4254
4245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4255
|
-
checksum = "
|
|
4246
|
+
checksum = "1bdae4b55b15a23d774b15f6e7cd90ae0d0aa17c47c12b4db098b3dd11ba9d58"
|
|
4256
4247
|
dependencies = [
|
|
4257
4248
|
"anyhow",
|
|
4258
|
-
"hashbrown 0.
|
|
4249
|
+
"hashbrown 0.17.1",
|
|
4259
4250
|
"libm",
|
|
4260
4251
|
"serde",
|
|
4261
4252
|
]
|
|
4262
4253
|
|
|
4263
4254
|
[[package]]
|
|
4264
4255
|
name = "wasmtime-internal-cranelift"
|
|
4265
|
-
version = "
|
|
4256
|
+
version = "45.0.0"
|
|
4266
4257
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4267
|
-
checksum = "
|
|
4258
|
+
checksum = "5773b36b87566239b020f1d01aa753a35626df85030485e40e36fc42a97acf4f"
|
|
4268
4259
|
dependencies = [
|
|
4269
4260
|
"cfg-if",
|
|
4270
4261
|
"cranelift-codegen",
|
|
@@ -4280,7 +4271,7 @@ dependencies = [
|
|
|
4280
4271
|
"smallvec",
|
|
4281
4272
|
"target-lexicon",
|
|
4282
4273
|
"thiserror 2.0.18",
|
|
4283
|
-
"wasmparser 0.
|
|
4274
|
+
"wasmparser 0.248.0",
|
|
4284
4275
|
"wasmtime-environ",
|
|
4285
4276
|
"wasmtime-internal-core",
|
|
4286
4277
|
"wasmtime-internal-unwinder",
|
|
@@ -4289,14 +4280,14 @@ dependencies = [
|
|
|
4289
4280
|
|
|
4290
4281
|
[[package]]
|
|
4291
4282
|
name = "wasmtime-internal-fiber"
|
|
4292
|
-
version = "
|
|
4283
|
+
version = "45.0.0"
|
|
4293
4284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4294
|
-
checksum = "
|
|
4285
|
+
checksum = "402cce4bba4c8c92a6fbaff39a6b23f8aa626d64b218ecf6dd3eeee8705cf096"
|
|
4295
4286
|
dependencies = [
|
|
4296
4287
|
"cc",
|
|
4297
4288
|
"cfg-if",
|
|
4298
4289
|
"libc",
|
|
4299
|
-
"rustix
|
|
4290
|
+
"rustix",
|
|
4300
4291
|
"wasmtime-environ",
|
|
4301
4292
|
"wasmtime-internal-versioned-export-macros",
|
|
4302
4293
|
"windows-sys 0.61.2",
|
|
@@ -4304,21 +4295,21 @@ dependencies = [
|
|
|
4304
4295
|
|
|
4305
4296
|
[[package]]
|
|
4306
4297
|
name = "wasmtime-internal-jit-debug"
|
|
4307
|
-
version = "
|
|
4298
|
+
version = "45.0.0"
|
|
4308
4299
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4309
|
-
checksum = "
|
|
4300
|
+
checksum = "8b426a5d0ec9c11a1a4525ed4e973b7caf40223b6d392588bb9f6468e4ae9d29"
|
|
4310
4301
|
dependencies = [
|
|
4311
4302
|
"cc",
|
|
4312
4303
|
"object",
|
|
4313
|
-
"rustix
|
|
4304
|
+
"rustix",
|
|
4314
4305
|
"wasmtime-internal-versioned-export-macros",
|
|
4315
4306
|
]
|
|
4316
4307
|
|
|
4317
4308
|
[[package]]
|
|
4318
4309
|
name = "wasmtime-internal-jit-icache-coherence"
|
|
4319
|
-
version = "
|
|
4310
|
+
version = "45.0.0"
|
|
4320
4311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4321
|
-
checksum = "
|
|
4312
|
+
checksum = "8a312ba8bb77955dcd44294a223e7f124c3071ff966583d385d3f6a4639c62e3"
|
|
4322
4313
|
dependencies = [
|
|
4323
4314
|
"cfg-if",
|
|
4324
4315
|
"libc",
|
|
@@ -4328,9 +4319,9 @@ dependencies = [
|
|
|
4328
4319
|
|
|
4329
4320
|
[[package]]
|
|
4330
4321
|
name = "wasmtime-internal-unwinder"
|
|
4331
|
-
version = "
|
|
4322
|
+
version = "45.0.0"
|
|
4332
4323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4333
|
-
checksum = "
|
|
4324
|
+
checksum = "4a62ad422ee3cbf1e87c2242dc0717a01c7a5878fbc3a68abc4b4d2fff3e85e1"
|
|
4334
4325
|
dependencies = [
|
|
4335
4326
|
"cfg-if",
|
|
4336
4327
|
"cranelift-codegen",
|
|
@@ -4341,9 +4332,9 @@ dependencies = [
|
|
|
4341
4332
|
|
|
4342
4333
|
[[package]]
|
|
4343
4334
|
name = "wasmtime-internal-versioned-export-macros"
|
|
4344
|
-
version = "
|
|
4335
|
+
version = "45.0.0"
|
|
4345
4336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4346
|
-
checksum = "
|
|
4337
|
+
checksum = "2c660c5b091648cffdd84a34dc24ffcdb9d027f9048fe7bd5e01896adbd0935f"
|
|
4347
4338
|
dependencies = [
|
|
4348
4339
|
"proc-macro2",
|
|
4349
4340
|
"quote",
|
|
@@ -4352,16 +4343,16 @@ dependencies = [
|
|
|
4352
4343
|
|
|
4353
4344
|
[[package]]
|
|
4354
4345
|
name = "wasmtime-internal-winch"
|
|
4355
|
-
version = "
|
|
4346
|
+
version = "45.0.0"
|
|
4356
4347
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4357
|
-
checksum = "
|
|
4348
|
+
checksum = "d2aceb92b48b6e3a5cc2a05ab7a2dcb565eaf86fb870d04664b7f12cf9bba39a"
|
|
4358
4349
|
dependencies = [
|
|
4359
4350
|
"cranelift-codegen",
|
|
4360
4351
|
"gimli",
|
|
4361
4352
|
"log",
|
|
4362
4353
|
"object",
|
|
4363
4354
|
"target-lexicon",
|
|
4364
|
-
"wasmparser 0.
|
|
4355
|
+
"wasmparser 0.248.0",
|
|
4365
4356
|
"wasmtime-environ",
|
|
4366
4357
|
"wasmtime-internal-cranelift",
|
|
4367
4358
|
"winch-codegen",
|
|
@@ -4369,37 +4360,37 @@ dependencies = [
|
|
|
4369
4360
|
|
|
4370
4361
|
[[package]]
|
|
4371
4362
|
name = "wasmtime-internal-wit-bindgen"
|
|
4372
|
-
version = "
|
|
4363
|
+
version = "45.0.0"
|
|
4373
4364
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4374
|
-
checksum = "
|
|
4365
|
+
checksum = "ce382df367ad2a2d48e139b191dbca3329f7232a43057dc9efc889dac54f1b0b"
|
|
4375
4366
|
dependencies = [
|
|
4376
4367
|
"anyhow",
|
|
4377
4368
|
"bitflags",
|
|
4378
4369
|
"heck",
|
|
4379
4370
|
"indexmap 2.14.0",
|
|
4380
|
-
"wit-parser 0.
|
|
4371
|
+
"wit-parser 0.248.0",
|
|
4381
4372
|
]
|
|
4382
4373
|
|
|
4383
4374
|
[[package]]
|
|
4384
4375
|
name = "wasmtime-wasi"
|
|
4385
|
-
version = "
|
|
4376
|
+
version = "45.0.0"
|
|
4386
4377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4387
|
-
checksum = "
|
|
4378
|
+
checksum = "fb1e92a304eaafd672718011c69084041db74fa0fcc3532c5920f492c557b721"
|
|
4388
4379
|
dependencies = [
|
|
4389
4380
|
"async-trait",
|
|
4390
4381
|
"bitflags",
|
|
4391
4382
|
"bytes",
|
|
4392
4383
|
"cap-fs-ext",
|
|
4393
4384
|
"cap-net-ext",
|
|
4394
|
-
"cap-rand",
|
|
4395
4385
|
"cap-std",
|
|
4396
4386
|
"cap-time-ext",
|
|
4387
|
+
"cfg-if",
|
|
4397
4388
|
"fs-set-times",
|
|
4398
4389
|
"futures",
|
|
4399
4390
|
"io-extras",
|
|
4400
4391
|
"io-lifetimes",
|
|
4401
|
-
"
|
|
4402
|
-
"
|
|
4392
|
+
"rand 0.10.1",
|
|
4393
|
+
"rustix",
|
|
4403
4394
|
"thiserror 2.0.18",
|
|
4404
4395
|
"tokio",
|
|
4405
4396
|
"tracing",
|
|
@@ -4411,9 +4402,9 @@ dependencies = [
|
|
|
4411
4402
|
|
|
4412
4403
|
[[package]]
|
|
4413
4404
|
name = "wasmtime-wasi-http"
|
|
4414
|
-
version = "
|
|
4405
|
+
version = "45.0.0"
|
|
4415
4406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4416
|
-
checksum = "
|
|
4407
|
+
checksum = "c7ac191e49f1cfb8567b335a4e4375d275552f5e5ce199fd7631c8722865b598"
|
|
4417
4408
|
dependencies = [
|
|
4418
4409
|
"async-trait",
|
|
4419
4410
|
"bytes",
|
|
@@ -4432,9 +4423,9 @@ dependencies = [
|
|
|
4432
4423
|
|
|
4433
4424
|
[[package]]
|
|
4434
4425
|
name = "wasmtime-wasi-io"
|
|
4435
|
-
version = "
|
|
4426
|
+
version = "45.0.0"
|
|
4436
4427
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4437
|
-
checksum = "
|
|
4428
|
+
checksum = "8e0013e1f37d2e0e1b030fa186972f6f5819f69814bb07d3b6d3cab0c40b50e2"
|
|
4438
4429
|
dependencies = [
|
|
4439
4430
|
"async-trait",
|
|
4440
4431
|
"bytes",
|
|
@@ -4445,31 +4436,31 @@ dependencies = [
|
|
|
4445
4436
|
|
|
4446
4437
|
[[package]]
|
|
4447
4438
|
name = "wast"
|
|
4448
|
-
version = "
|
|
4439
|
+
version = "250.0.0"
|
|
4449
4440
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4450
|
-
checksum = "
|
|
4441
|
+
checksum = "69e9294a1f0204aeb5c47e95165517f43ef3cc895918c4f3e939380d4c290f4a"
|
|
4451
4442
|
dependencies = [
|
|
4452
4443
|
"bumpalo",
|
|
4453
4444
|
"leb128fmt",
|
|
4454
4445
|
"memchr",
|
|
4455
4446
|
"unicode-width",
|
|
4456
|
-
"wasm-encoder 0.
|
|
4447
|
+
"wasm-encoder 0.250.0",
|
|
4457
4448
|
]
|
|
4458
4449
|
|
|
4459
4450
|
[[package]]
|
|
4460
4451
|
name = "wat"
|
|
4461
|
-
version = "1.
|
|
4452
|
+
version = "1.250.0"
|
|
4462
4453
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4463
|
-
checksum = "
|
|
4454
|
+
checksum = "0a549ed329a70e444e0f7796391ab2a87d0aef30ddde9f60e16e429224fafd02"
|
|
4464
4455
|
dependencies = [
|
|
4465
4456
|
"wast",
|
|
4466
4457
|
]
|
|
4467
4458
|
|
|
4468
4459
|
[[package]]
|
|
4469
4460
|
name = "web-sys"
|
|
4470
|
-
version = "0.3.
|
|
4461
|
+
version = "0.3.99"
|
|
4471
4462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4472
|
-
checksum = "
|
|
4463
|
+
checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
|
|
4473
4464
|
dependencies = [
|
|
4474
4465
|
"js-sys",
|
|
4475
4466
|
"wasm-bindgen",
|
|
@@ -4527,9 +4518,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
4527
4518
|
|
|
4528
4519
|
[[package]]
|
|
4529
4520
|
name = "winch-codegen"
|
|
4530
|
-
version = "
|
|
4521
|
+
version = "45.0.0"
|
|
4531
4522
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4532
|
-
checksum = "
|
|
4523
|
+
checksum = "3128bd53313b132e8737d7d318edbc438bab1abe525ac037bbf9857839e717e2"
|
|
4533
4524
|
dependencies = [
|
|
4534
4525
|
"cranelift-assembler-x64",
|
|
4535
4526
|
"cranelift-codegen",
|
|
@@ -4538,7 +4529,7 @@ dependencies = [
|
|
|
4538
4529
|
"smallvec",
|
|
4539
4530
|
"target-lexicon",
|
|
4540
4531
|
"thiserror 2.0.18",
|
|
4541
|
-
"wasmparser 0.
|
|
4532
|
+
"wasmparser 0.248.0",
|
|
4542
4533
|
"wasmtime-environ",
|
|
4543
4534
|
"wasmtime-internal-core",
|
|
4544
4535
|
"wasmtime-internal-cranelift",
|
|
@@ -4645,15 +4636,6 @@ dependencies = [
|
|
|
4645
4636
|
"windows-link",
|
|
4646
4637
|
]
|
|
4647
4638
|
|
|
4648
|
-
[[package]]
|
|
4649
|
-
name = "windows-sys"
|
|
4650
|
-
version = "0.45.0"
|
|
4651
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4652
|
-
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
4653
|
-
dependencies = [
|
|
4654
|
-
"windows-targets 0.42.2",
|
|
4655
|
-
]
|
|
4656
|
-
|
|
4657
4639
|
[[package]]
|
|
4658
4640
|
name = "windows-sys"
|
|
4659
4641
|
version = "0.52.0"
|
|
@@ -4690,21 +4672,6 @@ dependencies = [
|
|
|
4690
4672
|
"windows-link",
|
|
4691
4673
|
]
|
|
4692
4674
|
|
|
4693
|
-
[[package]]
|
|
4694
|
-
name = "windows-targets"
|
|
4695
|
-
version = "0.42.2"
|
|
4696
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4697
|
-
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
4698
|
-
dependencies = [
|
|
4699
|
-
"windows_aarch64_gnullvm 0.42.2",
|
|
4700
|
-
"windows_aarch64_msvc 0.42.2",
|
|
4701
|
-
"windows_i686_gnu 0.42.2",
|
|
4702
|
-
"windows_i686_msvc 0.42.2",
|
|
4703
|
-
"windows_x86_64_gnu 0.42.2",
|
|
4704
|
-
"windows_x86_64_gnullvm 0.42.2",
|
|
4705
|
-
"windows_x86_64_msvc 0.42.2",
|
|
4706
|
-
]
|
|
4707
|
-
|
|
4708
4675
|
[[package]]
|
|
4709
4676
|
name = "windows-targets"
|
|
4710
4677
|
version = "0.52.6"
|
|
@@ -4747,12 +4714,6 @@ dependencies = [
|
|
|
4747
4714
|
"windows-link",
|
|
4748
4715
|
]
|
|
4749
4716
|
|
|
4750
|
-
[[package]]
|
|
4751
|
-
name = "windows_aarch64_gnullvm"
|
|
4752
|
-
version = "0.42.2"
|
|
4753
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4754
|
-
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
4755
|
-
|
|
4756
4717
|
[[package]]
|
|
4757
4718
|
name = "windows_aarch64_gnullvm"
|
|
4758
4719
|
version = "0.52.6"
|
|
@@ -4765,12 +4726,6 @@ version = "0.53.1"
|
|
|
4765
4726
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4766
4727
|
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
4767
4728
|
|
|
4768
|
-
[[package]]
|
|
4769
|
-
name = "windows_aarch64_msvc"
|
|
4770
|
-
version = "0.42.2"
|
|
4771
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4772
|
-
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
4773
|
-
|
|
4774
4729
|
[[package]]
|
|
4775
4730
|
name = "windows_aarch64_msvc"
|
|
4776
4731
|
version = "0.52.6"
|
|
@@ -4783,12 +4738,6 @@ version = "0.53.1"
|
|
|
4783
4738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4784
4739
|
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
4785
4740
|
|
|
4786
|
-
[[package]]
|
|
4787
|
-
name = "windows_i686_gnu"
|
|
4788
|
-
version = "0.42.2"
|
|
4789
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4790
|
-
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
4791
|
-
|
|
4792
4741
|
[[package]]
|
|
4793
4742
|
name = "windows_i686_gnu"
|
|
4794
4743
|
version = "0.52.6"
|
|
@@ -4813,12 +4762,6 @@ version = "0.53.1"
|
|
|
4813
4762
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4814
4763
|
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
4815
4764
|
|
|
4816
|
-
[[package]]
|
|
4817
|
-
name = "windows_i686_msvc"
|
|
4818
|
-
version = "0.42.2"
|
|
4819
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4820
|
-
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
4821
|
-
|
|
4822
4765
|
[[package]]
|
|
4823
4766
|
name = "windows_i686_msvc"
|
|
4824
4767
|
version = "0.52.6"
|
|
@@ -4831,12 +4774,6 @@ version = "0.53.1"
|
|
|
4831
4774
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4832
4775
|
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
4833
4776
|
|
|
4834
|
-
[[package]]
|
|
4835
|
-
name = "windows_x86_64_gnu"
|
|
4836
|
-
version = "0.42.2"
|
|
4837
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4838
|
-
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
4839
|
-
|
|
4840
4777
|
[[package]]
|
|
4841
4778
|
name = "windows_x86_64_gnu"
|
|
4842
4779
|
version = "0.52.6"
|
|
@@ -4849,12 +4786,6 @@ version = "0.53.1"
|
|
|
4849
4786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4850
4787
|
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
4851
4788
|
|
|
4852
|
-
[[package]]
|
|
4853
|
-
name = "windows_x86_64_gnullvm"
|
|
4854
|
-
version = "0.42.2"
|
|
4855
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4856
|
-
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
4857
|
-
|
|
4858
4789
|
[[package]]
|
|
4859
4790
|
name = "windows_x86_64_gnullvm"
|
|
4860
4791
|
version = "0.52.6"
|
|
@@ -4867,12 +4798,6 @@ version = "0.53.1"
|
|
|
4867
4798
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4868
4799
|
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
4869
4800
|
|
|
4870
|
-
[[package]]
|
|
4871
|
-
name = "windows_x86_64_msvc"
|
|
4872
|
-
version = "0.42.2"
|
|
4873
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4874
|
-
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
4875
|
-
|
|
4876
4801
|
[[package]]
|
|
4877
4802
|
name = "windows_x86_64_msvc"
|
|
4878
4803
|
version = "0.52.6"
|
|
@@ -4893,9 +4818,9 @@ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
|
4893
4818
|
|
|
4894
4819
|
[[package]]
|
|
4895
4820
|
name = "winnow"
|
|
4896
|
-
version = "1.0.
|
|
4821
|
+
version = "1.0.3"
|
|
4897
4822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4898
|
-
checksum = "
|
|
4823
|
+
checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
|
|
4899
4824
|
|
|
4900
4825
|
[[package]]
|
|
4901
4826
|
name = "winx"
|
|
@@ -5003,12 +4928,12 @@ dependencies = [
|
|
|
5003
4928
|
|
|
5004
4929
|
[[package]]
|
|
5005
4930
|
name = "wit-parser"
|
|
5006
|
-
version = "0.
|
|
4931
|
+
version = "0.248.0"
|
|
5007
4932
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5008
|
-
checksum = "
|
|
4933
|
+
checksum = "247ad505da2915a082fe13204c5ba8788425aea1de54f43b284818cf82637856"
|
|
5009
4934
|
dependencies = [
|
|
5010
4935
|
"anyhow",
|
|
5011
|
-
"hashbrown 0.
|
|
4936
|
+
"hashbrown 0.17.1",
|
|
5012
4937
|
"id-arena",
|
|
5013
4938
|
"indexmap 2.14.0",
|
|
5014
4939
|
"log",
|
|
@@ -5017,7 +4942,7 @@ dependencies = [
|
|
|
5017
4942
|
"serde_derive",
|
|
5018
4943
|
"serde_json",
|
|
5019
4944
|
"unicode-xid",
|
|
5020
|
-
"wasmparser 0.
|
|
4945
|
+
"wasmparser 0.248.0",
|
|
5021
4946
|
]
|
|
5022
4947
|
|
|
5023
4948
|
[[package]]
|
|
@@ -5033,7 +4958,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
5033
4958
|
checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
|
|
5034
4959
|
dependencies = [
|
|
5035
4960
|
"libc",
|
|
5036
|
-
"rustix
|
|
4961
|
+
"rustix",
|
|
5037
4962
|
]
|
|
5038
4963
|
|
|
5039
4964
|
[[package]]
|
|
@@ -5081,9 +5006,9 @@ dependencies = [
|
|
|
5081
5006
|
|
|
5082
5007
|
[[package]]
|
|
5083
5008
|
name = "zerofrom"
|
|
5084
|
-
version = "0.1.
|
|
5009
|
+
version = "0.1.8"
|
|
5085
5010
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5086
|
-
checksum = "
|
|
5011
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
5087
5012
|
dependencies = [
|
|
5088
5013
|
"zerofrom-derive",
|
|
5089
5014
|
]
|
|
@@ -5105,6 +5030,20 @@ name = "zeroize"
|
|
|
5105
5030
|
version = "1.8.2"
|
|
5106
5031
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5107
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
|
+
]
|
|
5108
5047
|
|
|
5109
5048
|
[[package]]
|
|
5110
5049
|
name = "zerotrie"
|