qcs-api-client-common 0.15.0__tar.gz → 0.18.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.
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/Cargo.lock +1146 -1026
- qcs_api_client_common-0.18.4/Cargo.toml +164 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/PKG-INFO +1 -1
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/pyproject.toml +3 -2
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/python/qcs_api_client_common/configuration.pyi +42 -7
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/CHANGELOG.md +174 -0
- qcs_api_client_common-0.18.4/qcs-api-client-common/Cargo.toml +232 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/Makefile.toml +7 -1
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/docs/source/conf.py +1 -1
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/python/stubtest-allowlist +3 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/src/backoff.rs +14 -13
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/src/configuration/error.rs +14 -5
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/src/configuration/mod.rs +20 -11
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/src/configuration/oidc.rs +10 -5
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/src/configuration/pkce.rs +15 -12
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/src/configuration/py.rs +36 -14
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/src/configuration/secrets.rs +116 -16
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/src/configuration/settings.rs +7 -5
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/src/configuration/tokens.rs +171 -33
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/src/tracing_configuration.rs +26 -14
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/tests/token_refresh_test.rs +7 -3
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/tests_py/__snapshots__/test_configuration.ambr +2 -2
- qcs_api_client_common-0.18.4/qcs-api-client-common/tests_py/conftest.py +186 -0
- qcs_api_client_common-0.18.4/qcs-api-client-common/tests_py/test_configuration.py +199 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/tests_py/test_grpc.py +3 -7
- qcs_api_client_common-0.15.0/Cargo.toml +0 -189
- qcs_api_client_common-0.15.0/qcs-api-client-common/Cargo.toml +0 -232
- qcs_api_client_common-0.15.0/qcs-api-client-common/python/qcs_api_client_common/__init__.py +0 -22
- qcs_api_client_common-0.15.0/qcs-api-client-common/python/qcs_api_client_common/__init__.pyi +0 -12
- qcs_api_client_common-0.15.0/qcs-api-client-common/python/qcs_api_client_common/configuration.pyi +0 -451
- qcs_api_client_common-0.15.0/qcs-api-client-common/python/qcs_api_client_common/grpc.py +0 -54
- qcs_api_client_common-0.15.0/qcs-api-client-common/python/qcs_api_client_common/httpx.py +0 -59
- qcs_api_client_common-0.15.0/qcs-api-client-common/tests_py/conftest.py +0 -36
- qcs_api_client_common-0.15.0/qcs-api-client-common/tests_py/test_configuration.py +0 -86
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/README-py.md +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/python/qcs_api_client_common/__init__.py +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/python/qcs_api_client_common/__init__.pyi +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/python/qcs_api_client_common/grpc.py +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/python/qcs_api_client_common/httpx.py +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/CHANGELOG-py.md +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/README-py.md +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/README.md +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/build.rs +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/docs/Makefile +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/docs/make.bat +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/docs/source/index.rst +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/scripts/check-py-api.sh +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/scripts/lint-bindings.py +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/scripts/watchmedo_helper.sh +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/src/bin/stub_gen.rs +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/src/clap_utils.rs +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/src/configuration/builder.rs +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/src/configuration/path.rs +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/src/configuration/secret_string.rs +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/src/errors.rs +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/src/lib.rs +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/tests/client_credentials_test.rs +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/tests_py/fixtures/secrets.toml +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/tests_py/fixtures/settings.toml +0 -0
- {qcs_api_client_common-0.15.0 → qcs_api_client_common-0.18.4}/qcs-api-client-common/tests_py/test_httpx.py +0 -0
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 4
|
|
4
4
|
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
5
11
|
[[package]]
|
|
6
12
|
name = "aho-corasick"
|
|
7
13
|
version = "1.1.4"
|
|
@@ -22,9 +28,9 @@ dependencies = [
|
|
|
22
28
|
|
|
23
29
|
[[package]]
|
|
24
30
|
name = "anstream"
|
|
25
|
-
version = "0.
|
|
31
|
+
version = "1.0.0"
|
|
26
32
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
-
checksum = "
|
|
33
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
28
34
|
dependencies = [
|
|
29
35
|
"anstyle",
|
|
30
36
|
"anstyle-parse",
|
|
@@ -37,15 +43,15 @@ dependencies = [
|
|
|
37
43
|
|
|
38
44
|
[[package]]
|
|
39
45
|
name = "anstyle"
|
|
40
|
-
version = "1.0.
|
|
46
|
+
version = "1.0.14"
|
|
41
47
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
-
checksum = "
|
|
48
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
43
49
|
|
|
44
50
|
[[package]]
|
|
45
51
|
name = "anstyle-parse"
|
|
46
|
-
version = "0.
|
|
52
|
+
version = "1.0.0"
|
|
47
53
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
-
checksum = "
|
|
54
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
49
55
|
dependencies = [
|
|
50
56
|
"utf8parse",
|
|
51
57
|
]
|
|
@@ -72,9 +78,9 @@ dependencies = [
|
|
|
72
78
|
|
|
73
79
|
[[package]]
|
|
74
80
|
name = "anyhow"
|
|
75
|
-
version = "1.0.
|
|
81
|
+
version = "1.0.104"
|
|
76
82
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
-
checksum = "
|
|
83
|
+
checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
|
|
78
84
|
|
|
79
85
|
[[package]]
|
|
80
86
|
name = "assert-json-diff"
|
|
@@ -121,9 +127,9 @@ dependencies = [
|
|
|
121
127
|
|
|
122
128
|
[[package]]
|
|
123
129
|
name = "async-executor"
|
|
124
|
-
version = "1.
|
|
130
|
+
version = "1.14.0"
|
|
125
131
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
126
|
-
checksum = "
|
|
132
|
+
checksum = "c96bf972d85afc50bf5ab8fe2d54d1586b4e0b46c97c50a0c9e71e2f7bcd812a"
|
|
127
133
|
dependencies = [
|
|
128
134
|
"async-task",
|
|
129
135
|
"concurrent-queue",
|
|
@@ -232,9 +238,9 @@ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
|
|
|
232
238
|
|
|
233
239
|
[[package]]
|
|
234
240
|
name = "async-tempfile"
|
|
235
|
-
version = "0.
|
|
241
|
+
version = "0.8.0"
|
|
236
242
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
-
checksum = "
|
|
243
|
+
checksum = "64782aa61953a4fa6f6ddc6b510942adffa37315f1cbf8ca7a96fdc990f913d5"
|
|
238
244
|
dependencies = [
|
|
239
245
|
"tokio",
|
|
240
246
|
"uuid",
|
|
@@ -242,13 +248,13 @@ dependencies = [
|
|
|
242
248
|
|
|
243
249
|
[[package]]
|
|
244
250
|
name = "async-trait"
|
|
245
|
-
version = "0.1.
|
|
251
|
+
version = "0.1.91"
|
|
246
252
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
-
checksum = "
|
|
253
|
+
checksum = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec"
|
|
248
254
|
dependencies = [
|
|
249
255
|
"proc-macro2",
|
|
250
256
|
"quote",
|
|
251
|
-
"syn
|
|
257
|
+
"syn 3.0.3",
|
|
252
258
|
]
|
|
253
259
|
|
|
254
260
|
[[package]]
|
|
@@ -268,15 +274,15 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
|
268
274
|
|
|
269
275
|
[[package]]
|
|
270
276
|
name = "autocfg"
|
|
271
|
-
version = "1.5.
|
|
277
|
+
version = "1.5.1"
|
|
272
278
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
-
checksum = "
|
|
279
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
274
280
|
|
|
275
281
|
[[package]]
|
|
276
282
|
name = "aws-lc-rs"
|
|
277
|
-
version = "1.
|
|
283
|
+
version = "1.17.3"
|
|
278
284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
-
checksum = "
|
|
285
|
+
checksum = "00bdb5da18dac48ca2cc7cd4a98e533e8635a58e2361d13a1a4ee3888e0d72f1"
|
|
280
286
|
dependencies = [
|
|
281
287
|
"aws-lc-sys",
|
|
282
288
|
"untrusted 0.7.1",
|
|
@@ -285,21 +291,22 @@ dependencies = [
|
|
|
285
291
|
|
|
286
292
|
[[package]]
|
|
287
293
|
name = "aws-lc-sys"
|
|
288
|
-
version = "0.
|
|
294
|
+
version = "0.43.0"
|
|
289
295
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
|
-
checksum = "
|
|
296
|
+
checksum = "43103168cc76fe62678a375e722fc9cb3a0146159ac5828bc4f0dfd755c2224c"
|
|
291
297
|
dependencies = [
|
|
292
298
|
"cc",
|
|
293
299
|
"cmake",
|
|
294
300
|
"dunce",
|
|
295
301
|
"fs_extra",
|
|
302
|
+
"pkg-config",
|
|
296
303
|
]
|
|
297
304
|
|
|
298
305
|
[[package]]
|
|
299
306
|
name = "axum"
|
|
300
|
-
version = "0.8.
|
|
307
|
+
version = "0.8.9"
|
|
301
308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
302
|
-
checksum = "
|
|
309
|
+
checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
|
|
303
310
|
dependencies = [
|
|
304
311
|
"axum-core",
|
|
305
312
|
"bytes",
|
|
@@ -357,7 +364,7 @@ dependencies = [
|
|
|
357
364
|
"getrandom 0.2.17",
|
|
358
365
|
"instant",
|
|
359
366
|
"pin-project-lite",
|
|
360
|
-
"rand 0.8.
|
|
367
|
+
"rand 0.8.7",
|
|
361
368
|
"tokio",
|
|
362
369
|
]
|
|
363
370
|
|
|
@@ -381,9 +388,9 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
|
381
388
|
|
|
382
389
|
[[package]]
|
|
383
390
|
name = "bitflags"
|
|
384
|
-
version = "2.
|
|
391
|
+
version = "2.13.1"
|
|
385
392
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
-
checksum = "
|
|
393
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
387
394
|
|
|
388
395
|
[[package]]
|
|
389
396
|
name = "block-buffer"
|
|
@@ -407,32 +414,41 @@ dependencies = [
|
|
|
407
414
|
"piper",
|
|
408
415
|
]
|
|
409
416
|
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "bs58"
|
|
419
|
+
version = "0.5.1"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
|
|
422
|
+
dependencies = [
|
|
423
|
+
"tinyvec",
|
|
424
|
+
]
|
|
425
|
+
|
|
410
426
|
[[package]]
|
|
411
427
|
name = "bumpalo"
|
|
412
|
-
version = "3.
|
|
428
|
+
version = "3.20.3"
|
|
413
429
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
414
|
-
checksum = "
|
|
430
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
415
431
|
|
|
416
432
|
[[package]]
|
|
417
433
|
name = "bytemuck"
|
|
418
|
-
version = "1.25.
|
|
434
|
+
version = "1.25.2"
|
|
419
435
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
-
checksum = "
|
|
436
|
+
checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
|
|
421
437
|
|
|
422
438
|
[[package]]
|
|
423
439
|
name = "bytes"
|
|
424
|
-
version = "1.
|
|
440
|
+
version = "1.12.1"
|
|
425
441
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
-
checksum = "
|
|
442
|
+
checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
427
443
|
dependencies = [
|
|
428
444
|
"serde",
|
|
429
445
|
]
|
|
430
446
|
|
|
431
447
|
[[package]]
|
|
432
448
|
name = "cc"
|
|
433
|
-
version = "1.
|
|
449
|
+
version = "1.4.0"
|
|
434
450
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
-
checksum = "
|
|
451
|
+
checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9"
|
|
436
452
|
dependencies = [
|
|
437
453
|
"find-msvc-tools",
|
|
438
454
|
"jobserver",
|
|
@@ -440,12 +456,6 @@ dependencies = [
|
|
|
440
456
|
"shlex",
|
|
441
457
|
]
|
|
442
458
|
|
|
443
|
-
[[package]]
|
|
444
|
-
name = "cesu8"
|
|
445
|
-
version = "1.1.0"
|
|
446
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
-
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
448
|
-
|
|
449
459
|
[[package]]
|
|
450
460
|
name = "cfg-if"
|
|
451
461
|
version = "1.0.4"
|
|
@@ -454,15 +464,26 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
|
454
464
|
|
|
455
465
|
[[package]]
|
|
456
466
|
name = "cfg_aliases"
|
|
457
|
-
version = "0.2.
|
|
467
|
+
version = "0.2.2"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "chacha20"
|
|
473
|
+
version = "0.10.1"
|
|
458
474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
-
checksum = "
|
|
475
|
+
checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
|
|
476
|
+
dependencies = [
|
|
477
|
+
"cfg-if",
|
|
478
|
+
"cpufeatures 0.3.0",
|
|
479
|
+
"rand_core 0.10.1",
|
|
480
|
+
]
|
|
460
481
|
|
|
461
482
|
[[package]]
|
|
462
483
|
name = "chrono"
|
|
463
|
-
version = "0.4.
|
|
484
|
+
version = "0.4.45"
|
|
464
485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
465
|
-
checksum = "
|
|
486
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
466
487
|
dependencies = [
|
|
467
488
|
"iana-time-zone",
|
|
468
489
|
"js-sys",
|
|
@@ -474,9 +495,9 @@ dependencies = [
|
|
|
474
495
|
|
|
475
496
|
[[package]]
|
|
476
497
|
name = "clap"
|
|
477
|
-
version = "4.
|
|
498
|
+
version = "4.6.4"
|
|
478
499
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
|
-
checksum = "
|
|
500
|
+
checksum = "d91e0c145792ef73a6ad36d27c75ac09f1832222a3c209689d90f534685ee5b7"
|
|
480
501
|
dependencies = [
|
|
481
502
|
"clap_builder",
|
|
482
503
|
"clap_derive",
|
|
@@ -484,18 +505,18 @@ dependencies = [
|
|
|
484
505
|
|
|
485
506
|
[[package]]
|
|
486
507
|
name = "clap-stdin"
|
|
487
|
-
version = "0.8.
|
|
508
|
+
version = "0.8.1"
|
|
488
509
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
-
checksum = "
|
|
510
|
+
checksum = "3c597a504c7d12819c50d2e1f78719afb6e01d4e14cbc94eb4c5f6a850494d1c"
|
|
490
511
|
dependencies = [
|
|
491
|
-
"thiserror 2.0.
|
|
512
|
+
"thiserror 2.0.19",
|
|
492
513
|
]
|
|
493
514
|
|
|
494
515
|
[[package]]
|
|
495
516
|
name = "clap_builder"
|
|
496
|
-
version = "4.
|
|
517
|
+
version = "4.6.2"
|
|
497
518
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
-
checksum = "
|
|
519
|
+
checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
|
|
499
520
|
dependencies = [
|
|
500
521
|
"anstream",
|
|
501
522
|
"anstyle",
|
|
@@ -505,36 +526,36 @@ dependencies = [
|
|
|
505
526
|
|
|
506
527
|
[[package]]
|
|
507
528
|
name = "clap_derive"
|
|
508
|
-
version = "4.
|
|
529
|
+
version = "4.6.4"
|
|
509
530
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
|
-
checksum = "
|
|
531
|
+
checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
|
|
511
532
|
dependencies = [
|
|
512
533
|
"heck",
|
|
513
534
|
"proc-macro2",
|
|
514
535
|
"quote",
|
|
515
|
-
"syn
|
|
536
|
+
"syn 3.0.3",
|
|
516
537
|
]
|
|
517
538
|
|
|
518
539
|
[[package]]
|
|
519
540
|
name = "clap_lex"
|
|
520
|
-
version = "
|
|
541
|
+
version = "1.1.0"
|
|
521
542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
|
-
checksum = "
|
|
543
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
523
544
|
|
|
524
545
|
[[package]]
|
|
525
546
|
name = "cmake"
|
|
526
|
-
version = "0.1.
|
|
547
|
+
version = "0.1.58"
|
|
527
548
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
528
|
-
checksum = "
|
|
549
|
+
checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
|
|
529
550
|
dependencies = [
|
|
530
551
|
"cc",
|
|
531
552
|
]
|
|
532
553
|
|
|
533
554
|
[[package]]
|
|
534
555
|
name = "colorchoice"
|
|
535
|
-
version = "1.0.
|
|
556
|
+
version = "1.0.5"
|
|
536
557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
537
|
-
checksum = "
|
|
558
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
538
559
|
|
|
539
560
|
[[package]]
|
|
540
561
|
name = "colored"
|
|
@@ -564,6 +585,18 @@ dependencies = [
|
|
|
564
585
|
"crossbeam-utils",
|
|
565
586
|
]
|
|
566
587
|
|
|
588
|
+
[[package]]
|
|
589
|
+
name = "const-hex"
|
|
590
|
+
version = "1.19.1"
|
|
591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
|
+
checksum = "33e2a781ebdf4467d1428dc4593067825fb646f6871475098d8577421af73558"
|
|
593
|
+
dependencies = [
|
|
594
|
+
"cfg-if",
|
|
595
|
+
"cpufeatures 0.2.17",
|
|
596
|
+
"proptest",
|
|
597
|
+
"serde_core",
|
|
598
|
+
]
|
|
599
|
+
|
|
567
600
|
[[package]]
|
|
568
601
|
name = "const-oid"
|
|
569
602
|
version = "0.9.6"
|
|
@@ -583,9 +616,9 @@ dependencies = [
|
|
|
583
616
|
|
|
584
617
|
[[package]]
|
|
585
618
|
name = "cookie_store"
|
|
586
|
-
version = "0.22.
|
|
619
|
+
version = "0.22.1"
|
|
587
620
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
-
checksum = "
|
|
621
|
+
checksum = "15b2c103cf610ec6cae3da84a766285b42fd16aad564758459e6ecf128c75206"
|
|
589
622
|
dependencies = [
|
|
590
623
|
"cookie",
|
|
591
624
|
"document-features",
|
|
@@ -634,11 +667,29 @@ dependencies = [
|
|
|
634
667
|
"libc",
|
|
635
668
|
]
|
|
636
669
|
|
|
670
|
+
[[package]]
|
|
671
|
+
name = "cpufeatures"
|
|
672
|
+
version = "0.3.0"
|
|
673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
674
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
675
|
+
dependencies = [
|
|
676
|
+
"libc",
|
|
677
|
+
]
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "crc32fast"
|
|
681
|
+
version = "1.5.0"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
684
|
+
dependencies = [
|
|
685
|
+
"cfg-if",
|
|
686
|
+
]
|
|
687
|
+
|
|
637
688
|
[[package]]
|
|
638
689
|
name = "crossbeam-utils"
|
|
639
|
-
version = "0.8.
|
|
690
|
+
version = "0.8.22"
|
|
640
691
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
-
checksum = "
|
|
692
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
642
693
|
|
|
643
694
|
[[package]]
|
|
644
695
|
name = "crunchy"
|
|
@@ -662,8 +713,18 @@ version = "0.20.11"
|
|
|
662
713
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
714
|
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
664
715
|
dependencies = [
|
|
665
|
-
"darling_core",
|
|
666
|
-
"darling_macro",
|
|
716
|
+
"darling_core 0.20.11",
|
|
717
|
+
"darling_macro 0.20.11",
|
|
718
|
+
]
|
|
719
|
+
|
|
720
|
+
[[package]]
|
|
721
|
+
name = "darling"
|
|
722
|
+
version = "0.23.0"
|
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
+
checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
|
|
725
|
+
dependencies = [
|
|
726
|
+
"darling_core 0.23.0",
|
|
727
|
+
"darling_macro 0.23.0",
|
|
667
728
|
]
|
|
668
729
|
|
|
669
730
|
[[package]]
|
|
@@ -677,7 +738,20 @@ dependencies = [
|
|
|
677
738
|
"proc-macro2",
|
|
678
739
|
"quote",
|
|
679
740
|
"strsim",
|
|
680
|
-
"syn 2.0.
|
|
741
|
+
"syn 2.0.119",
|
|
742
|
+
]
|
|
743
|
+
|
|
744
|
+
[[package]]
|
|
745
|
+
name = "darling_core"
|
|
746
|
+
version = "0.23.0"
|
|
747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
+
checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
|
|
749
|
+
dependencies = [
|
|
750
|
+
"ident_case",
|
|
751
|
+
"proc-macro2",
|
|
752
|
+
"quote",
|
|
753
|
+
"strsim",
|
|
754
|
+
"syn 2.0.119",
|
|
681
755
|
]
|
|
682
756
|
|
|
683
757
|
[[package]]
|
|
@@ -686,9 +760,20 @@ version = "0.20.11"
|
|
|
686
760
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
687
761
|
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
688
762
|
dependencies = [
|
|
689
|
-
"darling_core",
|
|
763
|
+
"darling_core 0.20.11",
|
|
764
|
+
"quote",
|
|
765
|
+
"syn 2.0.119",
|
|
766
|
+
]
|
|
767
|
+
|
|
768
|
+
[[package]]
|
|
769
|
+
name = "darling_macro"
|
|
770
|
+
version = "0.23.0"
|
|
771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
772
|
+
checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
|
|
773
|
+
dependencies = [
|
|
774
|
+
"darling_core 0.23.0",
|
|
690
775
|
"quote",
|
|
691
|
-
"syn 2.0.
|
|
776
|
+
"syn 2.0.119",
|
|
692
777
|
]
|
|
693
778
|
|
|
694
779
|
[[package]]
|
|
@@ -704,11 +789,10 @@ dependencies = [
|
|
|
704
789
|
|
|
705
790
|
[[package]]
|
|
706
791
|
name = "deranged"
|
|
707
|
-
version = "0.5.
|
|
792
|
+
version = "0.5.8"
|
|
708
793
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
709
|
-
checksum = "
|
|
794
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
710
795
|
dependencies = [
|
|
711
|
-
"powerfmt",
|
|
712
796
|
"serde_core",
|
|
713
797
|
]
|
|
714
798
|
|
|
@@ -727,10 +811,10 @@ version = "0.20.2"
|
|
|
727
811
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
812
|
checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
|
|
729
813
|
dependencies = [
|
|
730
|
-
"darling",
|
|
814
|
+
"darling 0.20.11",
|
|
731
815
|
"proc-macro2",
|
|
732
816
|
"quote",
|
|
733
|
-
"syn 2.0.
|
|
817
|
+
"syn 2.0.119",
|
|
734
818
|
]
|
|
735
819
|
|
|
736
820
|
[[package]]
|
|
@@ -740,7 +824,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
740
824
|
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
|
741
825
|
dependencies = [
|
|
742
826
|
"derive_builder_core",
|
|
743
|
-
"syn 2.0.
|
|
827
|
+
"syn 2.0.119",
|
|
744
828
|
]
|
|
745
829
|
|
|
746
830
|
[[package]]
|
|
@@ -756,13 +840,13 @@ dependencies = [
|
|
|
756
840
|
|
|
757
841
|
[[package]]
|
|
758
842
|
name = "displaydoc"
|
|
759
|
-
version = "0.2.
|
|
843
|
+
version = "0.2.6"
|
|
760
844
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
-
checksum = "
|
|
845
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
762
846
|
dependencies = [
|
|
763
847
|
"proc-macro2",
|
|
764
848
|
"quote",
|
|
765
|
-
"syn 2.0.
|
|
849
|
+
"syn 2.0.119",
|
|
766
850
|
]
|
|
767
851
|
|
|
768
852
|
[[package]]
|
|
@@ -780,11 +864,17 @@ version = "1.0.5"
|
|
|
780
864
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
781
865
|
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
782
866
|
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "dyn-clone"
|
|
869
|
+
version = "1.0.20"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
872
|
+
|
|
783
873
|
[[package]]
|
|
784
874
|
name = "either"
|
|
785
|
-
version = "1.
|
|
875
|
+
version = "1.17.0"
|
|
786
876
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
787
|
-
checksum = "
|
|
877
|
+
checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
|
|
788
878
|
|
|
789
879
|
[[package]]
|
|
790
880
|
name = "encoding_rs"
|
|
@@ -840,9 +930,9 @@ dependencies = [
|
|
|
840
930
|
|
|
841
931
|
[[package]]
|
|
842
932
|
name = "fastrand"
|
|
843
|
-
version = "2.
|
|
933
|
+
version = "2.5.0"
|
|
844
934
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
845
|
-
checksum = "
|
|
935
|
+
checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
|
|
846
936
|
|
|
847
937
|
[[package]]
|
|
848
938
|
name = "figment"
|
|
@@ -872,6 +962,16 @@ version = "0.5.7"
|
|
|
872
962
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
873
963
|
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
874
964
|
|
|
965
|
+
[[package]]
|
|
966
|
+
name = "flate2"
|
|
967
|
+
version = "1.1.9"
|
|
968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
970
|
+
dependencies = [
|
|
971
|
+
"crc32fast",
|
|
972
|
+
"miniz_oxide",
|
|
973
|
+
]
|
|
974
|
+
|
|
875
975
|
[[package]]
|
|
876
976
|
name = "fnv"
|
|
877
977
|
version = "1.0.7"
|
|
@@ -916,9 +1016,9 @@ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
|
916
1016
|
|
|
917
1017
|
[[package]]
|
|
918
1018
|
name = "futures"
|
|
919
|
-
version = "0.3.
|
|
1019
|
+
version = "0.3.33"
|
|
920
1020
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
921
|
-
checksum = "
|
|
1021
|
+
checksum = "a88cf1f829d945f548cf8fec32c61b1f202b6d93b45848602fc02af4b12ad218"
|
|
922
1022
|
dependencies = [
|
|
923
1023
|
"futures-channel",
|
|
924
1024
|
"futures-core",
|
|
@@ -931,9 +1031,9 @@ dependencies = [
|
|
|
931
1031
|
|
|
932
1032
|
[[package]]
|
|
933
1033
|
name = "futures-channel"
|
|
934
|
-
version = "0.3.
|
|
1034
|
+
version = "0.3.33"
|
|
935
1035
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
|
-
checksum = "
|
|
1036
|
+
checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae"
|
|
937
1037
|
dependencies = [
|
|
938
1038
|
"futures-core",
|
|
939
1039
|
"futures-sink",
|
|
@@ -941,15 +1041,15 @@ dependencies = [
|
|
|
941
1041
|
|
|
942
1042
|
[[package]]
|
|
943
1043
|
name = "futures-core"
|
|
944
|
-
version = "0.3.
|
|
1044
|
+
version = "0.3.33"
|
|
945
1045
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
946
|
-
checksum = "
|
|
1046
|
+
checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
|
|
947
1047
|
|
|
948
1048
|
[[package]]
|
|
949
1049
|
name = "futures-executor"
|
|
950
|
-
version = "0.3.
|
|
1050
|
+
version = "0.3.33"
|
|
951
1051
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
952
|
-
checksum = "
|
|
1052
|
+
checksum = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458"
|
|
953
1053
|
dependencies = [
|
|
954
1054
|
"futures-core",
|
|
955
1055
|
"futures-task",
|
|
@@ -958,9 +1058,9 @@ dependencies = [
|
|
|
958
1058
|
|
|
959
1059
|
[[package]]
|
|
960
1060
|
name = "futures-io"
|
|
961
|
-
version = "0.3.
|
|
1061
|
+
version = "0.3.33"
|
|
962
1062
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
963
|
-
checksum = "
|
|
1063
|
+
checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a"
|
|
964
1064
|
|
|
965
1065
|
[[package]]
|
|
966
1066
|
name = "futures-lite"
|
|
@@ -977,38 +1077,38 @@ dependencies = [
|
|
|
977
1077
|
|
|
978
1078
|
[[package]]
|
|
979
1079
|
name = "futures-macro"
|
|
980
|
-
version = "0.3.
|
|
1080
|
+
version = "0.3.33"
|
|
981
1081
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
982
|
-
checksum = "
|
|
1082
|
+
checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b"
|
|
983
1083
|
dependencies = [
|
|
984
1084
|
"proc-macro2",
|
|
985
1085
|
"quote",
|
|
986
|
-
"syn 2.0.
|
|
1086
|
+
"syn 2.0.119",
|
|
987
1087
|
]
|
|
988
1088
|
|
|
989
1089
|
[[package]]
|
|
990
1090
|
name = "futures-sink"
|
|
991
|
-
version = "0.3.
|
|
1091
|
+
version = "0.3.33"
|
|
992
1092
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
993
|
-
checksum = "
|
|
1093
|
+
checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307"
|
|
994
1094
|
|
|
995
1095
|
[[package]]
|
|
996
1096
|
name = "futures-task"
|
|
997
|
-
version = "0.3.
|
|
1097
|
+
version = "0.3.33"
|
|
998
1098
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
999
|
-
checksum = "
|
|
1099
|
+
checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
|
|
1000
1100
|
|
|
1001
1101
|
[[package]]
|
|
1002
1102
|
name = "futures-timer"
|
|
1003
|
-
version = "3.0.
|
|
1103
|
+
version = "3.0.4"
|
|
1004
1104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
-
checksum = "
|
|
1105
|
+
checksum = "af43fadb8a98512d547e37b4e92e0ced13e205c061b87b4623eff01d918d6968"
|
|
1006
1106
|
|
|
1007
1107
|
[[package]]
|
|
1008
1108
|
name = "futures-util"
|
|
1009
|
-
version = "0.3.
|
|
1109
|
+
version = "0.3.33"
|
|
1010
1110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1011
|
-
checksum = "
|
|
1111
|
+
checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
|
|
1012
1112
|
dependencies = [
|
|
1013
1113
|
"futures-channel",
|
|
1014
1114
|
"futures-core",
|
|
@@ -1018,7 +1118,6 @@ dependencies = [
|
|
|
1018
1118
|
"futures-task",
|
|
1019
1119
|
"memchr",
|
|
1020
1120
|
"pin-project-lite",
|
|
1021
|
-
"pin-utils",
|
|
1022
1121
|
"slab",
|
|
1023
1122
|
]
|
|
1024
1123
|
|
|
@@ -1061,31 +1160,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1061
1160
|
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1062
1161
|
dependencies = [
|
|
1063
1162
|
"cfg-if",
|
|
1064
|
-
"js-sys",
|
|
1065
1163
|
"libc",
|
|
1066
|
-
"r-efi",
|
|
1164
|
+
"r-efi 5.3.0",
|
|
1067
1165
|
"wasip2",
|
|
1068
|
-
"wasm-bindgen",
|
|
1069
1166
|
]
|
|
1070
1167
|
|
|
1071
1168
|
[[package]]
|
|
1072
1169
|
name = "getrandom"
|
|
1073
|
-
version = "0.4.
|
|
1170
|
+
version = "0.4.3"
|
|
1074
1171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1075
|
-
checksum = "
|
|
1172
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
1076
1173
|
dependencies = [
|
|
1077
1174
|
"cfg-if",
|
|
1175
|
+
"js-sys",
|
|
1078
1176
|
"libc",
|
|
1079
|
-
"r-efi",
|
|
1080
|
-
"
|
|
1081
|
-
"
|
|
1177
|
+
"r-efi 6.0.0",
|
|
1178
|
+
"rand_core 0.10.1",
|
|
1179
|
+
"wasm-bindgen",
|
|
1082
1180
|
]
|
|
1083
1181
|
|
|
1084
1182
|
[[package]]
|
|
1085
1183
|
name = "glob"
|
|
1086
|
-
version = "0.3.
|
|
1184
|
+
version = "0.3.4"
|
|
1087
1185
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1088
|
-
checksum = "
|
|
1186
|
+
checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
|
|
1089
1187
|
|
|
1090
1188
|
[[package]]
|
|
1091
1189
|
name = "gloo-timers"
|
|
@@ -1101,9 +1199,9 @@ dependencies = [
|
|
|
1101
1199
|
|
|
1102
1200
|
[[package]]
|
|
1103
1201
|
name = "h2"
|
|
1104
|
-
version = "0.4.
|
|
1202
|
+
version = "0.4.15"
|
|
1105
1203
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
-
checksum = "
|
|
1204
|
+
checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
|
|
1107
1205
|
dependencies = [
|
|
1108
1206
|
"atomic-waker",
|
|
1109
1207
|
"bytes",
|
|
@@ -1111,13 +1209,19 @@ dependencies = [
|
|
|
1111
1209
|
"futures-core",
|
|
1112
1210
|
"futures-sink",
|
|
1113
1211
|
"http",
|
|
1114
|
-
"indexmap",
|
|
1212
|
+
"indexmap 2.14.0",
|
|
1115
1213
|
"slab",
|
|
1116
1214
|
"tokio",
|
|
1117
1215
|
"tokio-util",
|
|
1118
1216
|
"tracing",
|
|
1119
1217
|
]
|
|
1120
1218
|
|
|
1219
|
+
[[package]]
|
|
1220
|
+
name = "hashbrown"
|
|
1221
|
+
version = "0.12.3"
|
|
1222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1223
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
1224
|
+
|
|
1121
1225
|
[[package]]
|
|
1122
1226
|
name = "hashbrown"
|
|
1123
1227
|
version = "0.15.5"
|
|
@@ -1129,9 +1233,9 @@ dependencies = [
|
|
|
1129
1233
|
|
|
1130
1234
|
[[package]]
|
|
1131
1235
|
name = "hashbrown"
|
|
1132
|
-
version = "0.
|
|
1236
|
+
version = "0.17.1"
|
|
1133
1237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
-
checksum = "
|
|
1238
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
1135
1239
|
|
|
1136
1240
|
[[package]]
|
|
1137
1241
|
name = "headers"
|
|
@@ -1169,6 +1273,12 @@ version = "0.5.2"
|
|
|
1169
1273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1170
1274
|
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1171
1275
|
|
|
1276
|
+
[[package]]
|
|
1277
|
+
name = "hex"
|
|
1278
|
+
version = "0.4.3"
|
|
1279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1280
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1281
|
+
|
|
1172
1282
|
[[package]]
|
|
1173
1283
|
name = "home"
|
|
1174
1284
|
version = "0.5.12"
|
|
@@ -1180,9 +1290,9 @@ dependencies = [
|
|
|
1180
1290
|
|
|
1181
1291
|
[[package]]
|
|
1182
1292
|
name = "http"
|
|
1183
|
-
version = "1.4.
|
|
1293
|
+
version = "1.4.2"
|
|
1184
1294
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1185
|
-
checksum = "
|
|
1295
|
+
checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
|
|
1186
1296
|
dependencies = [
|
|
1187
1297
|
"bytes",
|
|
1188
1298
|
"itoa",
|
|
@@ -1190,9 +1300,9 @@ dependencies = [
|
|
|
1190
1300
|
|
|
1191
1301
|
[[package]]
|
|
1192
1302
|
name = "http-body"
|
|
1193
|
-
version = "1.0
|
|
1303
|
+
version = "1.1.0"
|
|
1194
1304
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1195
|
-
checksum = "
|
|
1305
|
+
checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
|
|
1196
1306
|
dependencies = [
|
|
1197
1307
|
"bytes",
|
|
1198
1308
|
"http",
|
|
@@ -1200,9 +1310,9 @@ dependencies = [
|
|
|
1200
1310
|
|
|
1201
1311
|
[[package]]
|
|
1202
1312
|
name = "http-body-util"
|
|
1203
|
-
version = "0.1.
|
|
1313
|
+
version = "0.1.4"
|
|
1204
1314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1205
|
-
checksum = "
|
|
1315
|
+
checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
|
|
1206
1316
|
dependencies = [
|
|
1207
1317
|
"bytes",
|
|
1208
1318
|
"futures-core",
|
|
@@ -1251,7 +1361,7 @@ dependencies = [
|
|
|
1251
1361
|
"similar",
|
|
1252
1362
|
"stringmetrics",
|
|
1253
1363
|
"tabwriter",
|
|
1254
|
-
"thiserror 2.0.
|
|
1364
|
+
"thiserror 2.0.19",
|
|
1255
1365
|
"tokio",
|
|
1256
1366
|
"tracing",
|
|
1257
1367
|
"url",
|
|
@@ -1259,9 +1369,9 @@ dependencies = [
|
|
|
1259
1369
|
|
|
1260
1370
|
[[package]]
|
|
1261
1371
|
name = "hyper"
|
|
1262
|
-
version = "1.
|
|
1372
|
+
version = "1.11.0"
|
|
1263
1373
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1264
|
-
checksum = "
|
|
1374
|
+
checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72"
|
|
1265
1375
|
dependencies = [
|
|
1266
1376
|
"atomic-waker",
|
|
1267
1377
|
"bytes",
|
|
@@ -1274,66 +1384,24 @@ dependencies = [
|
|
|
1274
1384
|
"httpdate",
|
|
1275
1385
|
"itoa",
|
|
1276
1386
|
"pin-project-lite",
|
|
1277
|
-
"pin-utils",
|
|
1278
1387
|
"smallvec",
|
|
1279
1388
|
"tokio",
|
|
1280
1389
|
"want",
|
|
1281
1390
|
]
|
|
1282
1391
|
|
|
1283
|
-
[[package]]
|
|
1284
|
-
name = "hyper-proxy2"
|
|
1285
|
-
version = "0.1.0"
|
|
1286
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1287
|
-
checksum = "9043b7b23fb0bc4a1c7014c27b50a4fc42cc76206f71d34fc0dfe5b28ddc3faf"
|
|
1288
|
-
dependencies = [
|
|
1289
|
-
"bytes",
|
|
1290
|
-
"futures-util",
|
|
1291
|
-
"headers",
|
|
1292
|
-
"http",
|
|
1293
|
-
"hyper",
|
|
1294
|
-
"hyper-rustls 0.26.0",
|
|
1295
|
-
"hyper-util",
|
|
1296
|
-
"pin-project-lite",
|
|
1297
|
-
"rustls-native-certs 0.7.3",
|
|
1298
|
-
"tokio",
|
|
1299
|
-
"tokio-rustls 0.25.0",
|
|
1300
|
-
"tower-service",
|
|
1301
|
-
"webpki",
|
|
1302
|
-
]
|
|
1303
|
-
|
|
1304
|
-
[[package]]
|
|
1305
|
-
name = "hyper-rustls"
|
|
1306
|
-
version = "0.26.0"
|
|
1307
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1308
|
-
checksum = "a0bea761b46ae2b24eb4aef630d8d1c398157b6fc29e6350ecf090a0b70c952c"
|
|
1309
|
-
dependencies = [
|
|
1310
|
-
"futures-util",
|
|
1311
|
-
"http",
|
|
1312
|
-
"hyper",
|
|
1313
|
-
"hyper-util",
|
|
1314
|
-
"log",
|
|
1315
|
-
"rustls 0.22.4",
|
|
1316
|
-
"rustls-native-certs 0.7.3",
|
|
1317
|
-
"rustls-pki-types",
|
|
1318
|
-
"tokio",
|
|
1319
|
-
"tokio-rustls 0.25.0",
|
|
1320
|
-
"tower-service",
|
|
1321
|
-
]
|
|
1322
|
-
|
|
1323
1392
|
[[package]]
|
|
1324
1393
|
name = "hyper-rustls"
|
|
1325
|
-
version = "0.27.
|
|
1394
|
+
version = "0.27.9"
|
|
1326
1395
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1327
|
-
checksum = "
|
|
1396
|
+
checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
|
|
1328
1397
|
dependencies = [
|
|
1329
1398
|
"http",
|
|
1330
1399
|
"hyper",
|
|
1331
1400
|
"hyper-util",
|
|
1332
|
-
"rustls
|
|
1333
|
-
"rustls-native-certs
|
|
1334
|
-
"rustls-pki-types",
|
|
1401
|
+
"rustls",
|
|
1402
|
+
"rustls-native-certs",
|
|
1335
1403
|
"tokio",
|
|
1336
|
-
"tokio-rustls
|
|
1404
|
+
"tokio-rustls",
|
|
1337
1405
|
"tower-service",
|
|
1338
1406
|
"webpki-roots",
|
|
1339
1407
|
]
|
|
@@ -1399,7 +1467,7 @@ dependencies = [
|
|
|
1399
1467
|
"libc",
|
|
1400
1468
|
"percent-encoding",
|
|
1401
1469
|
"pin-project-lite",
|
|
1402
|
-
"socket2
|
|
1470
|
+
"socket2",
|
|
1403
1471
|
"system-configuration",
|
|
1404
1472
|
"tokio",
|
|
1405
1473
|
"tower-service",
|
|
@@ -1433,12 +1501,13 @@ dependencies = [
|
|
|
1433
1501
|
|
|
1434
1502
|
[[package]]
|
|
1435
1503
|
name = "icu_collections"
|
|
1436
|
-
version = "2.
|
|
1504
|
+
version = "2.2.0"
|
|
1437
1505
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1438
|
-
checksum = "
|
|
1506
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
1439
1507
|
dependencies = [
|
|
1440
1508
|
"displaydoc",
|
|
1441
1509
|
"potential_utf",
|
|
1510
|
+
"utf8_iter",
|
|
1442
1511
|
"yoke",
|
|
1443
1512
|
"zerofrom",
|
|
1444
1513
|
"zerovec",
|
|
@@ -1446,9 +1515,9 @@ dependencies = [
|
|
|
1446
1515
|
|
|
1447
1516
|
[[package]]
|
|
1448
1517
|
name = "icu_locale_core"
|
|
1449
|
-
version = "2.
|
|
1518
|
+
version = "2.2.0"
|
|
1450
1519
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1451
|
-
checksum = "
|
|
1520
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
1452
1521
|
dependencies = [
|
|
1453
1522
|
"displaydoc",
|
|
1454
1523
|
"litemap",
|
|
@@ -1459,9 +1528,9 @@ dependencies = [
|
|
|
1459
1528
|
|
|
1460
1529
|
[[package]]
|
|
1461
1530
|
name = "icu_normalizer"
|
|
1462
|
-
version = "2.
|
|
1531
|
+
version = "2.2.0"
|
|
1463
1532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1464
|
-
checksum = "
|
|
1533
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
1465
1534
|
dependencies = [
|
|
1466
1535
|
"icu_collections",
|
|
1467
1536
|
"icu_normalizer_data",
|
|
@@ -1473,15 +1542,15 @@ dependencies = [
|
|
|
1473
1542
|
|
|
1474
1543
|
[[package]]
|
|
1475
1544
|
name = "icu_normalizer_data"
|
|
1476
|
-
version = "2.
|
|
1545
|
+
version = "2.2.0"
|
|
1477
1546
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1478
|
-
checksum = "
|
|
1547
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
1479
1548
|
|
|
1480
1549
|
[[package]]
|
|
1481
1550
|
name = "icu_properties"
|
|
1482
|
-
version = "2.
|
|
1551
|
+
version = "2.2.0"
|
|
1483
1552
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1484
|
-
checksum = "
|
|
1553
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
1485
1554
|
dependencies = [
|
|
1486
1555
|
"icu_collections",
|
|
1487
1556
|
"icu_locale_core",
|
|
@@ -1493,15 +1562,15 @@ dependencies = [
|
|
|
1493
1562
|
|
|
1494
1563
|
[[package]]
|
|
1495
1564
|
name = "icu_properties_data"
|
|
1496
|
-
version = "2.
|
|
1565
|
+
version = "2.2.0"
|
|
1497
1566
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1498
|
-
checksum = "
|
|
1567
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
1499
1568
|
|
|
1500
1569
|
[[package]]
|
|
1501
1570
|
name = "icu_provider"
|
|
1502
|
-
version = "2.
|
|
1571
|
+
version = "2.2.0"
|
|
1503
1572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1504
|
-
checksum = "
|
|
1573
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
1505
1574
|
dependencies = [
|
|
1506
1575
|
"displaydoc",
|
|
1507
1576
|
"icu_locale_core",
|
|
@@ -1512,12 +1581,6 @@ dependencies = [
|
|
|
1512
1581
|
"zerovec",
|
|
1513
1582
|
]
|
|
1514
1583
|
|
|
1515
|
-
[[package]]
|
|
1516
|
-
name = "id-arena"
|
|
1517
|
-
version = "2.3.0"
|
|
1518
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1519
|
-
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
1520
|
-
|
|
1521
1584
|
[[package]]
|
|
1522
1585
|
name = "ident_case"
|
|
1523
1586
|
version = "1.0.1"
|
|
@@ -1537,9 +1600,9 @@ dependencies = [
|
|
|
1537
1600
|
|
|
1538
1601
|
[[package]]
|
|
1539
1602
|
name = "idna_adapter"
|
|
1540
|
-
version = "1.2.
|
|
1603
|
+
version = "1.2.2"
|
|
1541
1604
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1542
|
-
checksum = "
|
|
1605
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
1543
1606
|
dependencies = [
|
|
1544
1607
|
"icu_normalizer",
|
|
1545
1608
|
"icu_properties",
|
|
@@ -1547,12 +1610,23 @@ dependencies = [
|
|
|
1547
1610
|
|
|
1548
1611
|
[[package]]
|
|
1549
1612
|
name = "indexmap"
|
|
1550
|
-
version = "
|
|
1613
|
+
version = "1.9.3"
|
|
1614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1615
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
1616
|
+
dependencies = [
|
|
1617
|
+
"autocfg",
|
|
1618
|
+
"hashbrown 0.12.3",
|
|
1619
|
+
"serde",
|
|
1620
|
+
]
|
|
1621
|
+
|
|
1622
|
+
[[package]]
|
|
1623
|
+
name = "indexmap"
|
|
1624
|
+
version = "2.14.0"
|
|
1551
1625
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1552
|
-
checksum = "
|
|
1626
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
1553
1627
|
dependencies = [
|
|
1554
1628
|
"equivalent",
|
|
1555
|
-
"hashbrown 0.
|
|
1629
|
+
"hashbrown 0.17.1",
|
|
1556
1630
|
"serde",
|
|
1557
1631
|
"serde_core",
|
|
1558
1632
|
]
|
|
@@ -1583,28 +1657,18 @@ dependencies = [
|
|
|
1583
1657
|
|
|
1584
1658
|
[[package]]
|
|
1585
1659
|
name = "inventory"
|
|
1586
|
-
version = "0.3.
|
|
1660
|
+
version = "0.3.24"
|
|
1587
1661
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
|
-
checksum = "
|
|
1662
|
+
checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
|
|
1589
1663
|
dependencies = [
|
|
1590
1664
|
"rustversion",
|
|
1591
1665
|
]
|
|
1592
1666
|
|
|
1593
1667
|
[[package]]
|
|
1594
1668
|
name = "ipnet"
|
|
1595
|
-
version = "2.
|
|
1669
|
+
version = "2.12.0"
|
|
1596
1670
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1597
|
-
checksum = "
|
|
1598
|
-
|
|
1599
|
-
[[package]]
|
|
1600
|
-
name = "iri-string"
|
|
1601
|
-
version = "0.7.10"
|
|
1602
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1603
|
-
checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
|
|
1604
|
-
dependencies = [
|
|
1605
|
-
"memchr",
|
|
1606
|
-
"serde",
|
|
1607
|
-
]
|
|
1671
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
1608
1672
|
|
|
1609
1673
|
[[package]]
|
|
1610
1674
|
name = "is-macro"
|
|
@@ -1615,7 +1679,7 @@ dependencies = [
|
|
|
1615
1679
|
"heck",
|
|
1616
1680
|
"proc-macro2",
|
|
1617
1681
|
"quote",
|
|
1618
|
-
"syn 2.0.
|
|
1682
|
+
"syn 2.0.119",
|
|
1619
1683
|
]
|
|
1620
1684
|
|
|
1621
1685
|
[[package]]
|
|
@@ -1633,15 +1697,6 @@ dependencies = [
|
|
|
1633
1697
|
"either",
|
|
1634
1698
|
]
|
|
1635
1699
|
|
|
1636
|
-
[[package]]
|
|
1637
|
-
name = "itertools"
|
|
1638
|
-
version = "0.13.0"
|
|
1639
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1640
|
-
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
1641
|
-
dependencies = [
|
|
1642
|
-
"either",
|
|
1643
|
-
]
|
|
1644
|
-
|
|
1645
1700
|
[[package]]
|
|
1646
1701
|
name = "itertools"
|
|
1647
1702
|
version = "0.14.0"
|
|
@@ -1653,49 +1708,77 @@ dependencies = [
|
|
|
1653
1708
|
|
|
1654
1709
|
[[package]]
|
|
1655
1710
|
name = "itoa"
|
|
1656
|
-
version = "1.0.
|
|
1711
|
+
version = "1.0.18"
|
|
1657
1712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1658
|
-
checksum = "
|
|
1713
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1659
1714
|
|
|
1660
1715
|
[[package]]
|
|
1661
1716
|
name = "jni"
|
|
1662
|
-
version = "0.
|
|
1717
|
+
version = "0.22.4"
|
|
1663
1718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1664
|
-
checksum = "
|
|
1719
|
+
checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
|
|
1665
1720
|
dependencies = [
|
|
1666
|
-
"cesu8",
|
|
1667
1721
|
"cfg-if",
|
|
1668
1722
|
"combine",
|
|
1723
|
+
"jni-macros",
|
|
1669
1724
|
"jni-sys",
|
|
1670
1725
|
"log",
|
|
1671
|
-
"
|
|
1726
|
+
"simd_cesu8",
|
|
1727
|
+
"thiserror 2.0.19",
|
|
1672
1728
|
"walkdir",
|
|
1673
|
-
"windows-
|
|
1729
|
+
"windows-link",
|
|
1730
|
+
]
|
|
1731
|
+
|
|
1732
|
+
[[package]]
|
|
1733
|
+
name = "jni-macros"
|
|
1734
|
+
version = "0.22.4"
|
|
1735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1736
|
+
checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
|
|
1737
|
+
dependencies = [
|
|
1738
|
+
"proc-macro2",
|
|
1739
|
+
"quote",
|
|
1740
|
+
"rustc_version",
|
|
1741
|
+
"simd_cesu8",
|
|
1742
|
+
"syn 2.0.119",
|
|
1674
1743
|
]
|
|
1675
1744
|
|
|
1676
1745
|
[[package]]
|
|
1677
1746
|
name = "jni-sys"
|
|
1678
|
-
version = "0.
|
|
1747
|
+
version = "0.4.1"
|
|
1748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1749
|
+
checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
|
|
1750
|
+
dependencies = [
|
|
1751
|
+
"jni-sys-macros",
|
|
1752
|
+
]
|
|
1753
|
+
|
|
1754
|
+
[[package]]
|
|
1755
|
+
name = "jni-sys-macros"
|
|
1756
|
+
version = "0.4.1"
|
|
1679
1757
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1680
|
-
checksum = "
|
|
1758
|
+
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
1759
|
+
dependencies = [
|
|
1760
|
+
"quote",
|
|
1761
|
+
"syn 2.0.119",
|
|
1762
|
+
]
|
|
1681
1763
|
|
|
1682
1764
|
[[package]]
|
|
1683
1765
|
name = "jobserver"
|
|
1684
|
-
version = "0.1.
|
|
1766
|
+
version = "0.1.35"
|
|
1685
1767
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1686
|
-
checksum = "
|
|
1768
|
+
checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
|
|
1687
1769
|
dependencies = [
|
|
1688
|
-
"getrandom 0.3
|
|
1770
|
+
"getrandom 0.4.3",
|
|
1689
1771
|
"libc",
|
|
1690
1772
|
]
|
|
1691
1773
|
|
|
1692
1774
|
[[package]]
|
|
1693
1775
|
name = "js-sys"
|
|
1694
|
-
version = "0.3.
|
|
1776
|
+
version = "0.3.103"
|
|
1695
1777
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1696
|
-
checksum = "
|
|
1778
|
+
checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
|
|
1697
1779
|
dependencies = [
|
|
1698
|
-
"
|
|
1780
|
+
"cfg-if",
|
|
1781
|
+
"futures-util",
|
|
1699
1782
|
"wasm-bindgen",
|
|
1700
1783
|
]
|
|
1701
1784
|
|
|
@@ -1716,9 +1799,9 @@ dependencies = [
|
|
|
1716
1799
|
|
|
1717
1800
|
[[package]]
|
|
1718
1801
|
name = "jsonwebtoken"
|
|
1719
|
-
version = "10.
|
|
1802
|
+
version = "10.4.0"
|
|
1720
1803
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1721
|
-
checksum = "
|
|
1804
|
+
checksum = "eba32bfb4ffdeaca3e34431072faf01745c9b26d25504aa7a6cf5684334fc4fc"
|
|
1722
1805
|
dependencies = [
|
|
1723
1806
|
"aws-lc-rs",
|
|
1724
1807
|
"base64 0.22.1",
|
|
@@ -1729,6 +1812,7 @@ dependencies = [
|
|
|
1729
1812
|
"serde_json",
|
|
1730
1813
|
"signature",
|
|
1731
1814
|
"simple_asn1",
|
|
1815
|
+
"zeroize",
|
|
1732
1816
|
]
|
|
1733
1817
|
|
|
1734
1818
|
[[package]]
|
|
@@ -1755,17 +1839,11 @@ dependencies = [
|
|
|
1755
1839
|
"spin",
|
|
1756
1840
|
]
|
|
1757
1841
|
|
|
1758
|
-
[[package]]
|
|
1759
|
-
name = "leb128fmt"
|
|
1760
|
-
version = "0.1.0"
|
|
1761
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1762
|
-
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
1763
|
-
|
|
1764
1842
|
[[package]]
|
|
1765
1843
|
name = "libc"
|
|
1766
|
-
version = "0.2.
|
|
1844
|
+
version = "0.2.189"
|
|
1767
1845
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1768
|
-
checksum = "
|
|
1846
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
1769
1847
|
|
|
1770
1848
|
[[package]]
|
|
1771
1849
|
name = "libm"
|
|
@@ -1775,15 +1853,15 @@ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
|
1775
1853
|
|
|
1776
1854
|
[[package]]
|
|
1777
1855
|
name = "linux-raw-sys"
|
|
1778
|
-
version = "0.
|
|
1856
|
+
version = "0.12.1"
|
|
1779
1857
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1780
|
-
checksum = "
|
|
1858
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
1781
1859
|
|
|
1782
1860
|
[[package]]
|
|
1783
1861
|
name = "litemap"
|
|
1784
|
-
version = "0.8.
|
|
1862
|
+
version = "0.8.2"
|
|
1785
1863
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1786
|
-
checksum = "
|
|
1864
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1787
1865
|
|
|
1788
1866
|
[[package]]
|
|
1789
1867
|
name = "litrs"
|
|
@@ -1802,9 +1880,9 @@ dependencies = [
|
|
|
1802
1880
|
|
|
1803
1881
|
[[package]]
|
|
1804
1882
|
name = "log"
|
|
1805
|
-
version = "0.4.
|
|
1883
|
+
version = "0.4.33"
|
|
1806
1884
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1807
|
-
checksum = "
|
|
1885
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
1808
1886
|
dependencies = [
|
|
1809
1887
|
"value-bag",
|
|
1810
1888
|
]
|
|
@@ -1838,9 +1916,9 @@ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
|
|
|
1838
1916
|
|
|
1839
1917
|
[[package]]
|
|
1840
1918
|
name = "matrixmultiply"
|
|
1841
|
-
version = "0.3.
|
|
1919
|
+
version = "0.3.11"
|
|
1842
1920
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1843
|
-
checksum = "
|
|
1921
|
+
checksum = "3f607c237553f086e7043417a51df26b2eb899d3caff94e6a67592ff992fedc7"
|
|
1844
1922
|
dependencies = [
|
|
1845
1923
|
"autocfg",
|
|
1846
1924
|
"rawpointer",
|
|
@@ -1848,9 +1926,9 @@ dependencies = [
|
|
|
1848
1926
|
|
|
1849
1927
|
[[package]]
|
|
1850
1928
|
name = "memchr"
|
|
1851
|
-
version = "2.8.
|
|
1929
|
+
version = "2.8.3"
|
|
1852
1930
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1853
|
-
checksum = "
|
|
1931
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
1854
1932
|
|
|
1855
1933
|
[[package]]
|
|
1856
1934
|
name = "memoffset"
|
|
@@ -1880,7 +1958,7 @@ checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
|
|
|
1880
1958
|
dependencies = [
|
|
1881
1959
|
"proc-macro2",
|
|
1882
1960
|
"quote",
|
|
1883
|
-
"syn 2.0.
|
|
1961
|
+
"syn 2.0.119",
|
|
1884
1962
|
]
|
|
1885
1963
|
|
|
1886
1964
|
[[package]]
|
|
@@ -1899,11 +1977,21 @@ dependencies = [
|
|
|
1899
1977
|
"unicase",
|
|
1900
1978
|
]
|
|
1901
1979
|
|
|
1980
|
+
[[package]]
|
|
1981
|
+
name = "miniz_oxide"
|
|
1982
|
+
version = "0.8.9"
|
|
1983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1984
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1985
|
+
dependencies = [
|
|
1986
|
+
"adler2",
|
|
1987
|
+
"simd-adler32",
|
|
1988
|
+
]
|
|
1989
|
+
|
|
1902
1990
|
[[package]]
|
|
1903
1991
|
name = "mio"
|
|
1904
|
-
version = "1.
|
|
1992
|
+
version = "1.2.2"
|
|
1905
1993
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1906
|
-
checksum = "
|
|
1994
|
+
checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
|
|
1907
1995
|
dependencies = [
|
|
1908
1996
|
"libc",
|
|
1909
1997
|
"wasi",
|
|
@@ -1918,17 +2006,17 @@ checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
|
|
|
1918
2006
|
|
|
1919
2007
|
[[package]]
|
|
1920
2008
|
name = "native-tls"
|
|
1921
|
-
version = "0.2.
|
|
2009
|
+
version = "0.2.18"
|
|
1922
2010
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1923
|
-
checksum = "
|
|
2011
|
+
checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
|
|
1924
2012
|
dependencies = [
|
|
1925
2013
|
"libc",
|
|
1926
2014
|
"log",
|
|
1927
2015
|
"openssl",
|
|
1928
|
-
"openssl-probe
|
|
2016
|
+
"openssl-probe",
|
|
1929
2017
|
"openssl-sys",
|
|
1930
2018
|
"schannel",
|
|
1931
|
-
"security-framework
|
|
2019
|
+
"security-framework",
|
|
1932
2020
|
"security-framework-sys",
|
|
1933
2021
|
"tempfile",
|
|
1934
2022
|
]
|
|
@@ -1965,9 +2053,9 @@ dependencies = [
|
|
|
1965
2053
|
|
|
1966
2054
|
[[package]]
|
|
1967
2055
|
name = "num-bigint"
|
|
1968
|
-
version = "0.4.
|
|
2056
|
+
version = "0.4.8"
|
|
1969
2057
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1970
|
-
checksum = "
|
|
2058
|
+
checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
|
|
1971
2059
|
dependencies = [
|
|
1972
2060
|
"num-integer",
|
|
1973
2061
|
"num-traits",
|
|
@@ -1984,7 +2072,7 @@ dependencies = [
|
|
|
1984
2072
|
"num-integer",
|
|
1985
2073
|
"num-iter",
|
|
1986
2074
|
"num-traits",
|
|
1987
|
-
"rand 0.8.
|
|
2075
|
+
"rand 0.8.7",
|
|
1988
2076
|
"smallvec",
|
|
1989
2077
|
"zeroize",
|
|
1990
2078
|
]
|
|
@@ -2000,9 +2088,9 @@ dependencies = [
|
|
|
2000
2088
|
|
|
2001
2089
|
[[package]]
|
|
2002
2090
|
name = "num-conv"
|
|
2003
|
-
version = "0.2.
|
|
2091
|
+
version = "0.2.2"
|
|
2004
2092
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2005
|
-
checksum = "
|
|
2093
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
2006
2094
|
|
|
2007
2095
|
[[package]]
|
|
2008
2096
|
name = "num-integer"
|
|
@@ -2015,11 +2103,10 @@ dependencies = [
|
|
|
2015
2103
|
|
|
2016
2104
|
[[package]]
|
|
2017
2105
|
name = "num-iter"
|
|
2018
|
-
version = "0.1.
|
|
2106
|
+
version = "0.1.46"
|
|
2019
2107
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2020
|
-
checksum = "
|
|
2108
|
+
checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b"
|
|
2021
2109
|
dependencies = [
|
|
2022
|
-
"autocfg",
|
|
2023
2110
|
"num-integer",
|
|
2024
2111
|
"num-traits",
|
|
2025
2112
|
]
|
|
@@ -2047,7 +2134,7 @@ dependencies = [
|
|
|
2047
2134
|
"num-traits",
|
|
2048
2135
|
"pyo3",
|
|
2049
2136
|
"pyo3-build-config",
|
|
2050
|
-
"rustc-hash 2.1.
|
|
2137
|
+
"rustc-hash 2.1.3",
|
|
2051
2138
|
]
|
|
2052
2139
|
|
|
2053
2140
|
[[package]]
|
|
@@ -2060,8 +2147,8 @@ dependencies = [
|
|
|
2060
2147
|
"chrono",
|
|
2061
2148
|
"getrandom 0.2.17",
|
|
2062
2149
|
"http",
|
|
2063
|
-
"rand 0.8.
|
|
2064
|
-
"reqwest",
|
|
2150
|
+
"rand 0.8.7",
|
|
2151
|
+
"reqwest 0.12.28",
|
|
2065
2152
|
"serde",
|
|
2066
2153
|
"serde_json",
|
|
2067
2154
|
"serde_path_to_error",
|
|
@@ -2082,10 +2169,10 @@ dependencies = [
|
|
|
2082
2169
|
"colored",
|
|
2083
2170
|
"futures",
|
|
2084
2171
|
"http",
|
|
2085
|
-
"jsonwebtoken 10.
|
|
2172
|
+
"jsonwebtoken 10.4.0",
|
|
2086
2173
|
"once_cell",
|
|
2087
|
-
"rand 0.8.
|
|
2088
|
-
"reqwest",
|
|
2174
|
+
"rand 0.8.7",
|
|
2175
|
+
"reqwest 0.12.28",
|
|
2089
2176
|
"rsa",
|
|
2090
2177
|
"serde",
|
|
2091
2178
|
"serde_json",
|
|
@@ -2100,9 +2187,9 @@ dependencies = [
|
|
|
2100
2187
|
|
|
2101
2188
|
[[package]]
|
|
2102
2189
|
name = "objc2"
|
|
2103
|
-
version = "0.6.
|
|
2190
|
+
version = "0.6.4"
|
|
2104
2191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2105
|
-
checksum = "
|
|
2192
|
+
checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
|
|
2106
2193
|
dependencies = [
|
|
2107
2194
|
"objc2-encode",
|
|
2108
2195
|
]
|
|
@@ -2125,9 +2212,9 @@ dependencies = [
|
|
|
2125
2212
|
|
|
2126
2213
|
[[package]]
|
|
2127
2214
|
name = "once_cell"
|
|
2128
|
-
version = "1.21.
|
|
2215
|
+
version = "1.21.4"
|
|
2129
2216
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2130
|
-
checksum = "
|
|
2217
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
2131
2218
|
|
|
2132
2219
|
[[package]]
|
|
2133
2220
|
name = "once_cell_polyfill"
|
|
@@ -2137,15 +2224,14 @@ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
|
2137
2224
|
|
|
2138
2225
|
[[package]]
|
|
2139
2226
|
name = "openssl"
|
|
2140
|
-
version = "0.10.
|
|
2227
|
+
version = "0.10.81"
|
|
2141
2228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2142
|
-
checksum = "
|
|
2229
|
+
checksum = "77823a27f0babb03091cb9ed9ef80af3b39dbc82f97e8fa530374b7dafd87a45"
|
|
2143
2230
|
dependencies = [
|
|
2144
2231
|
"bitflags",
|
|
2145
2232
|
"cfg-if",
|
|
2146
2233
|
"foreign-types",
|
|
2147
2234
|
"libc",
|
|
2148
|
-
"once_cell",
|
|
2149
2235
|
"openssl-macros",
|
|
2150
2236
|
"openssl-sys",
|
|
2151
2237
|
]
|
|
@@ -2158,15 +2244,9 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
|
2158
2244
|
dependencies = [
|
|
2159
2245
|
"proc-macro2",
|
|
2160
2246
|
"quote",
|
|
2161
|
-
"syn 2.0.
|
|
2247
|
+
"syn 2.0.119",
|
|
2162
2248
|
]
|
|
2163
2249
|
|
|
2164
|
-
[[package]]
|
|
2165
|
-
name = "openssl-probe"
|
|
2166
|
-
version = "0.1.6"
|
|
2167
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2168
|
-
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
2169
|
-
|
|
2170
2250
|
[[package]]
|
|
2171
2251
|
name = "openssl-probe"
|
|
2172
2252
|
version = "0.2.1"
|
|
@@ -2175,9 +2255,9 @@ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
|
2175
2255
|
|
|
2176
2256
|
[[package]]
|
|
2177
2257
|
name = "openssl-sys"
|
|
2178
|
-
version = "0.9.
|
|
2258
|
+
version = "0.9.117"
|
|
2179
2259
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2180
|
-
checksum = "
|
|
2260
|
+
checksum = "b47e7e6bb2c38cd930d25a23b40fa52e068c10e85f3e03a7f5ba5aaca5713695"
|
|
2181
2261
|
dependencies = [
|
|
2182
2262
|
"cc",
|
|
2183
2263
|
"libc",
|
|
@@ -2187,23 +2267,23 @@ dependencies = [
|
|
|
2187
2267
|
|
|
2188
2268
|
[[package]]
|
|
2189
2269
|
name = "opentelemetry"
|
|
2190
|
-
version = "0.
|
|
2270
|
+
version = "0.31.0"
|
|
2191
2271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2192
|
-
checksum = "
|
|
2272
|
+
checksum = "b84bcd6ae87133e903af7ef497404dda70c60d0ea14895fc8a5e6722754fc2a0"
|
|
2193
2273
|
dependencies = [
|
|
2194
2274
|
"futures-core",
|
|
2195
2275
|
"futures-sink",
|
|
2196
2276
|
"js-sys",
|
|
2197
2277
|
"pin-project-lite",
|
|
2198
|
-
"thiserror 2.0.
|
|
2278
|
+
"thiserror 2.0.19",
|
|
2199
2279
|
"tracing",
|
|
2200
2280
|
]
|
|
2201
2281
|
|
|
2202
2282
|
[[package]]
|
|
2203
2283
|
name = "opentelemetry-http"
|
|
2204
|
-
version = "0.
|
|
2284
|
+
version = "0.31.0"
|
|
2205
2285
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2206
|
-
checksum = "
|
|
2286
|
+
checksum = "d7a6d09a73194e6b66df7c8f1b680f156d916a1a942abf2de06823dd02b7855d"
|
|
2207
2287
|
dependencies = [
|
|
2208
2288
|
"async-trait",
|
|
2209
2289
|
"bytes",
|
|
@@ -2212,37 +2292,71 @@ dependencies = [
|
|
|
2212
2292
|
]
|
|
2213
2293
|
|
|
2214
2294
|
[[package]]
|
|
2215
|
-
name = "
|
|
2216
|
-
version = "0.
|
|
2295
|
+
name = "opentelemetry-otlp"
|
|
2296
|
+
version = "0.31.1"
|
|
2217
2297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2218
|
-
checksum = "
|
|
2298
|
+
checksum = "1f69cd6acbb9af919df949cd1ec9e5e7fdc2ef15d234b6b795aaa525cc02f71f"
|
|
2219
2299
|
dependencies = [
|
|
2220
|
-
"
|
|
2221
|
-
"futures-executor",
|
|
2222
|
-
"futures-util",
|
|
2300
|
+
"http",
|
|
2223
2301
|
"opentelemetry",
|
|
2224
|
-
"
|
|
2225
|
-
"
|
|
2226
|
-
"
|
|
2227
|
-
"thiserror 2.0.
|
|
2302
|
+
"opentelemetry-proto",
|
|
2303
|
+
"opentelemetry_sdk",
|
|
2304
|
+
"prost",
|
|
2305
|
+
"thiserror 2.0.19",
|
|
2306
|
+
"tokio",
|
|
2307
|
+
"tonic",
|
|
2308
|
+
]
|
|
2309
|
+
|
|
2310
|
+
[[package]]
|
|
2311
|
+
name = "opentelemetry-proto"
|
|
2312
|
+
version = "0.31.0"
|
|
2313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2314
|
+
checksum = "a7175df06de5eaee9909d4805a3d07e28bb752c34cab57fa9cff549da596b30f"
|
|
2315
|
+
dependencies = [
|
|
2316
|
+
"base64 0.22.1",
|
|
2317
|
+
"const-hex",
|
|
2318
|
+
"opentelemetry",
|
|
2319
|
+
"opentelemetry_sdk",
|
|
2320
|
+
"prost",
|
|
2321
|
+
"serde",
|
|
2322
|
+
"serde_json",
|
|
2323
|
+
"tonic",
|
|
2324
|
+
"tonic-prost",
|
|
2325
|
+
]
|
|
2326
|
+
|
|
2327
|
+
[[package]]
|
|
2328
|
+
name = "opentelemetry_sdk"
|
|
2329
|
+
version = "0.31.0"
|
|
2330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2331
|
+
checksum = "e14ae4f5991976fd48df6d843de219ca6d31b01daaab2dad5af2badeded372bd"
|
|
2332
|
+
dependencies = [
|
|
2333
|
+
"futures-channel",
|
|
2334
|
+
"futures-executor",
|
|
2335
|
+
"futures-util",
|
|
2336
|
+
"opentelemetry",
|
|
2337
|
+
"percent-encoding",
|
|
2338
|
+
"rand 0.9.5",
|
|
2339
|
+
"thiserror 2.0.19",
|
|
2340
|
+
"tokio",
|
|
2341
|
+
"tokio-stream",
|
|
2228
2342
|
]
|
|
2229
2343
|
|
|
2230
2344
|
[[package]]
|
|
2231
2345
|
name = "optipy"
|
|
2232
|
-
version = "0.1.
|
|
2346
|
+
version = "0.1.3"
|
|
2233
2347
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2234
|
-
checksum = "
|
|
2348
|
+
checksum = "fbaf089dd2abebd455ececdc445203a6e9a5326333f2fb1c3c5ba5eb810a64e4"
|
|
2235
2349
|
dependencies = [
|
|
2236
2350
|
"proc-macro2",
|
|
2237
2351
|
"quote",
|
|
2238
|
-
"syn 2.0.
|
|
2352
|
+
"syn 2.0.119",
|
|
2239
2353
|
]
|
|
2240
2354
|
|
|
2241
2355
|
[[package]]
|
|
2242
2356
|
name = "ordered-float"
|
|
2243
|
-
version = "5.
|
|
2357
|
+
version = "5.3.0"
|
|
2244
2358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2245
|
-
checksum = "
|
|
2359
|
+
checksum = "b7d950ca161dc355eaf28f82b11345ed76c6e1f6eb1f4f4479e0323b9e2fbd0e"
|
|
2246
2360
|
dependencies = [
|
|
2247
2361
|
"num-traits",
|
|
2248
2362
|
]
|
|
@@ -2277,10 +2391,10 @@ dependencies = [
|
|
|
2277
2391
|
]
|
|
2278
2392
|
|
|
2279
2393
|
[[package]]
|
|
2280
|
-
name = "
|
|
2281
|
-
version = "
|
|
2394
|
+
name = "pastey"
|
|
2395
|
+
version = "0.2.3"
|
|
2282
2396
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2283
|
-
checksum = "
|
|
2397
|
+
checksum = "2ee67f1008b1ba2321834326597b8e186293b049a023cdef258527550b9935b4"
|
|
2284
2398
|
|
|
2285
2399
|
[[package]]
|
|
2286
2400
|
name = "path-tree"
|
|
@@ -2293,31 +2407,31 @@ dependencies = [
|
|
|
2293
2407
|
|
|
2294
2408
|
[[package]]
|
|
2295
2409
|
name = "pbjson"
|
|
2296
|
-
version = "0.
|
|
2410
|
+
version = "0.9.0"
|
|
2297
2411
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2298
|
-
checksum = "
|
|
2412
|
+
checksum = "e8edd1efdd8ab23ba9cb9ace3d9987a72663d5d7c9f74fa00b51d6213645cf6c"
|
|
2299
2413
|
dependencies = [
|
|
2300
|
-
"base64 0.
|
|
2414
|
+
"base64 0.22.1",
|
|
2301
2415
|
"serde",
|
|
2302
2416
|
]
|
|
2303
2417
|
|
|
2304
2418
|
[[package]]
|
|
2305
2419
|
name = "pbjson-build"
|
|
2306
|
-
version = "0.
|
|
2420
|
+
version = "0.9.0"
|
|
2307
2421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2308
|
-
checksum = "
|
|
2422
|
+
checksum = "2ed4d5c6ae95e08ac768883c8401cf0e8deb4e6e1d6a4e1fd3d2ec4f0ec63200"
|
|
2309
2423
|
dependencies = [
|
|
2310
2424
|
"heck",
|
|
2311
|
-
"itertools 0.
|
|
2425
|
+
"itertools 0.14.0",
|
|
2312
2426
|
"prost",
|
|
2313
2427
|
"prost-types",
|
|
2314
2428
|
]
|
|
2315
2429
|
|
|
2316
2430
|
[[package]]
|
|
2317
2431
|
name = "pbjson-types"
|
|
2318
|
-
version = "0.
|
|
2432
|
+
version = "0.9.0"
|
|
2319
2433
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2320
|
-
checksum = "
|
|
2434
|
+
checksum = "a14e2757d877c0f607a82ce1b8560e224370f159d66c5d52eb55ea187ef0350e"
|
|
2321
2435
|
dependencies = [
|
|
2322
2436
|
"bytes",
|
|
2323
2437
|
"chrono",
|
|
@@ -2348,7 +2462,7 @@ dependencies = [
|
|
|
2348
2462
|
"proc-macro2",
|
|
2349
2463
|
"proc-macro2-diagnostics",
|
|
2350
2464
|
"quote",
|
|
2351
|
-
"syn 2.0.
|
|
2465
|
+
"syn 2.0.119",
|
|
2352
2466
|
]
|
|
2353
2467
|
|
|
2354
2468
|
[[package]]
|
|
@@ -2378,12 +2492,13 @@ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
|
2378
2492
|
|
|
2379
2493
|
[[package]]
|
|
2380
2494
|
name = "petgraph"
|
|
2381
|
-
version = "0.
|
|
2495
|
+
version = "0.8.3"
|
|
2382
2496
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2383
|
-
checksum = "
|
|
2497
|
+
checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
|
|
2384
2498
|
dependencies = [
|
|
2385
2499
|
"fixedbitset",
|
|
2386
|
-
"
|
|
2500
|
+
"hashbrown 0.15.5",
|
|
2501
|
+
"indexmap 2.14.0",
|
|
2387
2502
|
]
|
|
2388
2503
|
|
|
2389
2504
|
[[package]]
|
|
@@ -2412,7 +2527,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2412
2527
|
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
2413
2528
|
dependencies = [
|
|
2414
2529
|
"phf_shared",
|
|
2415
|
-
"rand 0.8.
|
|
2530
|
+
"rand 0.8.7",
|
|
2416
2531
|
]
|
|
2417
2532
|
|
|
2418
2533
|
[[package]]
|
|
@@ -2426,29 +2541,29 @@ dependencies = [
|
|
|
2426
2541
|
|
|
2427
2542
|
[[package]]
|
|
2428
2543
|
name = "pin-project"
|
|
2429
|
-
version = "1.1.
|
|
2544
|
+
version = "1.1.13"
|
|
2430
2545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2431
|
-
checksum = "
|
|
2546
|
+
checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924"
|
|
2432
2547
|
dependencies = [
|
|
2433
2548
|
"pin-project-internal",
|
|
2434
2549
|
]
|
|
2435
2550
|
|
|
2436
2551
|
[[package]]
|
|
2437
2552
|
name = "pin-project-internal"
|
|
2438
|
-
version = "1.1.
|
|
2553
|
+
version = "1.1.13"
|
|
2439
2554
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2440
|
-
checksum = "
|
|
2555
|
+
checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b"
|
|
2441
2556
|
dependencies = [
|
|
2442
2557
|
"proc-macro2",
|
|
2443
2558
|
"quote",
|
|
2444
|
-
"syn 2.0.
|
|
2559
|
+
"syn 2.0.119",
|
|
2445
2560
|
]
|
|
2446
2561
|
|
|
2447
2562
|
[[package]]
|
|
2448
2563
|
name = "pin-project-lite"
|
|
2449
|
-
version = "0.2.
|
|
2564
|
+
version = "0.2.17"
|
|
2450
2565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2451
|
-
checksum = "
|
|
2566
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
2452
2567
|
|
|
2453
2568
|
[[package]]
|
|
2454
2569
|
name = "pin-utils"
|
|
@@ -2458,9 +2573,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
|
2458
2573
|
|
|
2459
2574
|
[[package]]
|
|
2460
2575
|
name = "piper"
|
|
2461
|
-
version = "0.2.
|
|
2576
|
+
version = "0.2.5"
|
|
2462
2577
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2463
|
-
checksum = "
|
|
2578
|
+
checksum = "c835479a4443ded371d6c535cbfd8d31ad92c5d23ae9770a61bc155e4992a3c1"
|
|
2464
2579
|
dependencies = [
|
|
2465
2580
|
"atomic-waker",
|
|
2466
2581
|
"fastrand",
|
|
@@ -2490,9 +2605,9 @@ dependencies = [
|
|
|
2490
2605
|
|
|
2491
2606
|
[[package]]
|
|
2492
2607
|
name = "pkg-config"
|
|
2493
|
-
version = "0.3.
|
|
2608
|
+
version = "0.3.33"
|
|
2494
2609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2495
|
-
checksum = "
|
|
2610
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
2496
2611
|
|
|
2497
2612
|
[[package]]
|
|
2498
2613
|
name = "polling"
|
|
@@ -2510,24 +2625,24 @@ dependencies = [
|
|
|
2510
2625
|
|
|
2511
2626
|
[[package]]
|
|
2512
2627
|
name = "portable-atomic"
|
|
2513
|
-
version = "1.
|
|
2628
|
+
version = "1.14.0"
|
|
2514
2629
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2515
|
-
checksum = "
|
|
2630
|
+
checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
|
|
2516
2631
|
|
|
2517
2632
|
[[package]]
|
|
2518
2633
|
name = "portable-atomic-util"
|
|
2519
|
-
version = "0.2.
|
|
2634
|
+
version = "0.2.7"
|
|
2520
2635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2521
|
-
checksum = "
|
|
2636
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
2522
2637
|
dependencies = [
|
|
2523
2638
|
"portable-atomic",
|
|
2524
2639
|
]
|
|
2525
2640
|
|
|
2526
2641
|
[[package]]
|
|
2527
2642
|
name = "potential_utf"
|
|
2528
|
-
version = "0.1.
|
|
2643
|
+
version = "0.1.5"
|
|
2529
2644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2530
|
-
checksum = "
|
|
2645
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
2531
2646
|
dependencies = [
|
|
2532
2647
|
"zerovec",
|
|
2533
2648
|
]
|
|
@@ -2554,23 +2669,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2554
2669
|
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
2555
2670
|
dependencies = [
|
|
2556
2671
|
"proc-macro2",
|
|
2557
|
-
"syn 2.0.
|
|
2672
|
+
"syn 2.0.119",
|
|
2558
2673
|
]
|
|
2559
2674
|
|
|
2560
2675
|
[[package]]
|
|
2561
2676
|
name = "proc-macro-crate"
|
|
2562
|
-
version = "3.
|
|
2677
|
+
version = "3.5.0"
|
|
2563
2678
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2564
|
-
checksum = "
|
|
2679
|
+
checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
|
|
2565
2680
|
dependencies = [
|
|
2566
|
-
"toml_edit 0.
|
|
2681
|
+
"toml_edit 0.25.13+spec-1.1.0",
|
|
2567
2682
|
]
|
|
2568
2683
|
|
|
2569
2684
|
[[package]]
|
|
2570
2685
|
name = "proc-macro2"
|
|
2571
|
-
version = "1.0.
|
|
2686
|
+
version = "1.0.107"
|
|
2572
2687
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2573
|
-
checksum = "
|
|
2688
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
2574
2689
|
dependencies = [
|
|
2575
2690
|
"unicode-ident",
|
|
2576
2691
|
]
|
|
@@ -2583,16 +2698,31 @@ checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
|
|
|
2583
2698
|
dependencies = [
|
|
2584
2699
|
"proc-macro2",
|
|
2585
2700
|
"quote",
|
|
2586
|
-
"syn 2.0.
|
|
2701
|
+
"syn 2.0.119",
|
|
2587
2702
|
"version_check",
|
|
2588
2703
|
"yansi",
|
|
2589
2704
|
]
|
|
2590
2705
|
|
|
2706
|
+
[[package]]
|
|
2707
|
+
name = "proptest"
|
|
2708
|
+
version = "1.11.0"
|
|
2709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2710
|
+
checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
|
|
2711
|
+
dependencies = [
|
|
2712
|
+
"bitflags",
|
|
2713
|
+
"num-traits",
|
|
2714
|
+
"rand 0.9.5",
|
|
2715
|
+
"rand_chacha 0.9.0",
|
|
2716
|
+
"rand_xorshift",
|
|
2717
|
+
"regex-syntax",
|
|
2718
|
+
"unarray",
|
|
2719
|
+
]
|
|
2720
|
+
|
|
2591
2721
|
[[package]]
|
|
2592
2722
|
name = "prost"
|
|
2593
|
-
version = "0.
|
|
2723
|
+
version = "0.14.4"
|
|
2594
2724
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2595
|
-
checksum = "
|
|
2725
|
+
checksum = "528ac67416ff8646872a3c02cad9cc4ee5dc9f9540c9b10771855c95cb2e5ae1"
|
|
2596
2726
|
dependencies = [
|
|
2597
2727
|
"bytes",
|
|
2598
2728
|
"prost-derive",
|
|
@@ -2600,42 +2730,43 @@ dependencies = [
|
|
|
2600
2730
|
|
|
2601
2731
|
[[package]]
|
|
2602
2732
|
name = "prost-build"
|
|
2603
|
-
version = "0.
|
|
2733
|
+
version = "0.14.4"
|
|
2604
2734
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2605
|
-
checksum = "
|
|
2735
|
+
checksum = "03da047801ff44bb6a4d407d4860c05fd70bb81714e6b2f3812603d5b145b042"
|
|
2606
2736
|
dependencies = [
|
|
2607
2737
|
"heck",
|
|
2608
2738
|
"itertools 0.14.0",
|
|
2609
2739
|
"log",
|
|
2610
2740
|
"multimap",
|
|
2611
|
-
"once_cell",
|
|
2612
2741
|
"petgraph",
|
|
2613
2742
|
"prettyplease",
|
|
2614
2743
|
"prost",
|
|
2615
2744
|
"prost-types",
|
|
2745
|
+
"pulldown-cmark",
|
|
2746
|
+
"pulldown-cmark-to-cmark",
|
|
2616
2747
|
"regex",
|
|
2617
|
-
"syn 2.0.
|
|
2748
|
+
"syn 2.0.119",
|
|
2618
2749
|
"tempfile",
|
|
2619
2750
|
]
|
|
2620
2751
|
|
|
2621
2752
|
[[package]]
|
|
2622
2753
|
name = "prost-derive"
|
|
2623
|
-
version = "0.
|
|
2754
|
+
version = "0.14.4"
|
|
2624
2755
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2625
|
-
checksum = "
|
|
2756
|
+
checksum = "b570b25f7617e43d59005d0990ccb79e950a423952cea19671b7a876da390adf"
|
|
2626
2757
|
dependencies = [
|
|
2627
2758
|
"anyhow",
|
|
2628
2759
|
"itertools 0.14.0",
|
|
2629
2760
|
"proc-macro2",
|
|
2630
2761
|
"quote",
|
|
2631
|
-
"syn 2.0.
|
|
2762
|
+
"syn 2.0.119",
|
|
2632
2763
|
]
|
|
2633
2764
|
|
|
2634
2765
|
[[package]]
|
|
2635
2766
|
name = "prost-types"
|
|
2636
|
-
version = "0.
|
|
2767
|
+
version = "0.14.4"
|
|
2637
2768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2638
|
-
checksum = "
|
|
2769
|
+
checksum = "f94967dc7688f3054c7fac87473ffae4cc4c3904800e2d9f5b857246d8963b0a"
|
|
2639
2770
|
dependencies = [
|
|
2640
2771
|
"prost",
|
|
2641
2772
|
]
|
|
@@ -2656,6 +2787,26 @@ dependencies = [
|
|
|
2656
2787
|
"psl-types",
|
|
2657
2788
|
]
|
|
2658
2789
|
|
|
2790
|
+
[[package]]
|
|
2791
|
+
name = "pulldown-cmark"
|
|
2792
|
+
version = "0.13.4"
|
|
2793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2794
|
+
checksum = "e9f068eba8e7071c5f9511831b44f32c740d5adf574e990f946ddb53db2f314e"
|
|
2795
|
+
dependencies = [
|
|
2796
|
+
"bitflags",
|
|
2797
|
+
"memchr",
|
|
2798
|
+
"unicase",
|
|
2799
|
+
]
|
|
2800
|
+
|
|
2801
|
+
[[package]]
|
|
2802
|
+
name = "pulldown-cmark-to-cmark"
|
|
2803
|
+
version = "22.0.0"
|
|
2804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2805
|
+
checksum = "50793def1b900256624a709439404384204a5dc3a6ec580281bfaac35e882e90"
|
|
2806
|
+
dependencies = [
|
|
2807
|
+
"pulldown-cmark",
|
|
2808
|
+
]
|
|
2809
|
+
|
|
2659
2810
|
[[package]]
|
|
2660
2811
|
name = "pyo3"
|
|
2661
2812
|
version = "0.27.2"
|
|
@@ -2715,7 +2866,7 @@ dependencies = [
|
|
|
2715
2866
|
"proc-macro2",
|
|
2716
2867
|
"pyo3-macros-backend",
|
|
2717
2868
|
"quote",
|
|
2718
|
-
"syn 2.0.
|
|
2869
|
+
"syn 2.0.119",
|
|
2719
2870
|
]
|
|
2720
2871
|
|
|
2721
2872
|
[[package]]
|
|
@@ -2728,7 +2879,7 @@ dependencies = [
|
|
|
2728
2879
|
"proc-macro2",
|
|
2729
2880
|
"pyo3-build-config",
|
|
2730
2881
|
"quote",
|
|
2731
|
-
"syn 2.0.
|
|
2882
|
+
"syn 2.0.119",
|
|
2732
2883
|
]
|
|
2733
2884
|
|
|
2734
2885
|
[[package]]
|
|
@@ -2740,7 +2891,7 @@ dependencies = [
|
|
|
2740
2891
|
"anyhow",
|
|
2741
2892
|
"chrono",
|
|
2742
2893
|
"either",
|
|
2743
|
-
"indexmap",
|
|
2894
|
+
"indexmap 2.14.0",
|
|
2744
2895
|
"inventory",
|
|
2745
2896
|
"itertools 0.14.0",
|
|
2746
2897
|
"log",
|
|
@@ -2761,16 +2912,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2761
2912
|
checksum = "2426ba759d848787239d80f9fdb1f223786976f87fb6c3da8188ca7c17744b28"
|
|
2762
2913
|
dependencies = [
|
|
2763
2914
|
"heck",
|
|
2764
|
-
"indexmap",
|
|
2915
|
+
"indexmap 2.14.0",
|
|
2765
2916
|
"proc-macro2",
|
|
2766
2917
|
"quote",
|
|
2767
2918
|
"rustpython-parser",
|
|
2768
|
-
"syn 2.0.
|
|
2919
|
+
"syn 2.0.119",
|
|
2769
2920
|
]
|
|
2770
2921
|
|
|
2771
2922
|
[[package]]
|
|
2772
2923
|
name = "qcs-api-client-common"
|
|
2773
|
-
version = "0.
|
|
2924
|
+
version = "0.18.4"
|
|
2774
2925
|
dependencies = [
|
|
2775
2926
|
"async-tempfile",
|
|
2776
2927
|
"async-trait",
|
|
@@ -2780,7 +2931,6 @@ dependencies = [
|
|
|
2780
2931
|
"figment",
|
|
2781
2932
|
"futures",
|
|
2782
2933
|
"home",
|
|
2783
|
-
"http",
|
|
2784
2934
|
"http-body-util",
|
|
2785
2935
|
"httpmock",
|
|
2786
2936
|
"hyper",
|
|
@@ -2790,12 +2940,11 @@ dependencies = [
|
|
|
2790
2940
|
"oauth2",
|
|
2791
2941
|
"oauth2-test-server",
|
|
2792
2942
|
"optipy",
|
|
2793
|
-
"paste",
|
|
2794
2943
|
"pyo3",
|
|
2795
2944
|
"pyo3-async-runtimes",
|
|
2796
2945
|
"pyo3-build-config",
|
|
2797
2946
|
"pyo3-stub-gen",
|
|
2798
|
-
"
|
|
2947
|
+
"qcs-dependencies-client",
|
|
2799
2948
|
"rigetti-pyo3",
|
|
2800
2949
|
"rstest",
|
|
2801
2950
|
"serde",
|
|
@@ -2803,7 +2952,7 @@ dependencies = [
|
|
|
2803
2952
|
"serde_path_to_error",
|
|
2804
2953
|
"serial_test",
|
|
2805
2954
|
"shellexpand",
|
|
2806
|
-
"thiserror 2.0.
|
|
2955
|
+
"thiserror 2.0.19",
|
|
2807
2956
|
"time",
|
|
2808
2957
|
"tokio",
|
|
2809
2958
|
"tokio-util",
|
|
@@ -2817,44 +2966,29 @@ dependencies = [
|
|
|
2817
2966
|
|
|
2818
2967
|
[[package]]
|
|
2819
2968
|
name = "qcs-api-client-grpc"
|
|
2820
|
-
version = "0.
|
|
2969
|
+
version = "0.18.4"
|
|
2821
2970
|
dependencies = [
|
|
2822
2971
|
"async-std",
|
|
2823
2972
|
"backoff",
|
|
2824
2973
|
"futures-util",
|
|
2825
|
-
"http",
|
|
2826
2974
|
"http-body",
|
|
2827
2975
|
"http-body-util",
|
|
2828
2976
|
"hyper",
|
|
2829
|
-
"hyper-proxy2",
|
|
2830
2977
|
"hyper-socks2",
|
|
2831
2978
|
"hyper-util",
|
|
2832
2979
|
"jsonwebtoken 9.3.1",
|
|
2833
2980
|
"once_cell",
|
|
2834
|
-
"opentelemetry",
|
|
2835
|
-
"opentelemetry-http",
|
|
2836
|
-
"opentelemetry_sdk",
|
|
2837
|
-
"pbjson",
|
|
2838
|
-
"pbjson-build",
|
|
2839
|
-
"pbjson-types",
|
|
2840
|
-
"prost",
|
|
2841
|
-
"prost-build",
|
|
2842
2981
|
"qcs-api-client-common",
|
|
2982
|
+
"qcs-dependencies-client",
|
|
2983
|
+
"rigetti-hyper-proxy",
|
|
2843
2984
|
"rstest",
|
|
2844
2985
|
"serde",
|
|
2845
2986
|
"serde_json",
|
|
2846
2987
|
"tempfile",
|
|
2847
|
-
"thiserror 2.0.
|
|
2988
|
+
"thiserror 2.0.19",
|
|
2848
2989
|
"tokio",
|
|
2849
2990
|
"tokio-stream",
|
|
2850
|
-
"tonic",
|
|
2851
|
-
"tonic-build",
|
|
2852
|
-
"tonic-health",
|
|
2853
|
-
"tonic-web",
|
|
2854
|
-
"tower",
|
|
2855
|
-
"tower-http 0.5.2",
|
|
2856
2991
|
"tracing",
|
|
2857
|
-
"tracing-opentelemetry",
|
|
2858
2992
|
"tracing-subscriber",
|
|
2859
2993
|
"url",
|
|
2860
2994
|
"urlpattern",
|
|
@@ -2863,7 +2997,7 @@ dependencies = [
|
|
|
2863
2997
|
|
|
2864
2998
|
[[package]]
|
|
2865
2999
|
name = "qcs-api-client-openapi"
|
|
2866
|
-
version = "0.
|
|
3000
|
+
version = "0.19.4"
|
|
2867
3001
|
dependencies = [
|
|
2868
3002
|
"anyhow",
|
|
2869
3003
|
"clap",
|
|
@@ -2871,35 +3005,66 @@ dependencies = [
|
|
|
2871
3005
|
"http",
|
|
2872
3006
|
"miette",
|
|
2873
3007
|
"qcs-api-client-common",
|
|
2874
|
-
"
|
|
2875
|
-
"reqwest-middleware",
|
|
2876
|
-
"reqwest-tracing",
|
|
3008
|
+
"qcs-dependencies-client",
|
|
2877
3009
|
"rstest",
|
|
2878
3010
|
"serde",
|
|
2879
3011
|
"serde_json",
|
|
2880
3012
|
"serde_path_to_error",
|
|
3013
|
+
"serde_repr",
|
|
3014
|
+
"serde_with",
|
|
2881
3015
|
"tokio",
|
|
2882
3016
|
"tracing",
|
|
2883
|
-
"tracing-opentelemetry",
|
|
2884
3017
|
"url",
|
|
2885
3018
|
"urlpattern",
|
|
2886
3019
|
]
|
|
2887
3020
|
|
|
3021
|
+
[[package]]
|
|
3022
|
+
name = "qcs-dependencies-client"
|
|
3023
|
+
version = "0.4.1"
|
|
3024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3025
|
+
checksum = "8cda80cb6e14f8a08cd4c0e5e3b84aba22c0069e85421429c2375471bd4dc0bb"
|
|
3026
|
+
dependencies = [
|
|
3027
|
+
"http",
|
|
3028
|
+
"opentelemetry",
|
|
3029
|
+
"opentelemetry-http",
|
|
3030
|
+
"opentelemetry-otlp",
|
|
3031
|
+
"opentelemetry-proto",
|
|
3032
|
+
"opentelemetry_sdk",
|
|
3033
|
+
"pbjson",
|
|
3034
|
+
"pbjson-build",
|
|
3035
|
+
"pbjson-types",
|
|
3036
|
+
"prost",
|
|
3037
|
+
"prost-build",
|
|
3038
|
+
"prost-types",
|
|
3039
|
+
"reqwest 0.13.4",
|
|
3040
|
+
"reqwest-middleware",
|
|
3041
|
+
"reqwest-tracing",
|
|
3042
|
+
"tonic",
|
|
3043
|
+
"tonic-build",
|
|
3044
|
+
"tonic-health",
|
|
3045
|
+
"tonic-prost",
|
|
3046
|
+
"tonic-prost-build",
|
|
3047
|
+
"tonic-web",
|
|
3048
|
+
"tower",
|
|
3049
|
+
"tower-http 0.6.11",
|
|
3050
|
+
"tracing-opentelemetry",
|
|
3051
|
+
]
|
|
3052
|
+
|
|
2888
3053
|
[[package]]
|
|
2889
3054
|
name = "quinn"
|
|
2890
|
-
version = "0.11.
|
|
3055
|
+
version = "0.11.11"
|
|
2891
3056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2892
|
-
checksum = "
|
|
3057
|
+
checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
|
|
2893
3058
|
dependencies = [
|
|
2894
3059
|
"bytes",
|
|
2895
3060
|
"cfg_aliases",
|
|
2896
3061
|
"pin-project-lite",
|
|
2897
3062
|
"quinn-proto",
|
|
2898
3063
|
"quinn-udp",
|
|
2899
|
-
"rustc-hash 2.1.
|
|
2900
|
-
"rustls
|
|
2901
|
-
"socket2
|
|
2902
|
-
"thiserror 2.0.
|
|
3064
|
+
"rustc-hash 2.1.3",
|
|
3065
|
+
"rustls",
|
|
3066
|
+
"socket2",
|
|
3067
|
+
"thiserror 2.0.19",
|
|
2903
3068
|
"tokio",
|
|
2904
3069
|
"tracing",
|
|
2905
3070
|
"web-time",
|
|
@@ -2907,20 +3072,22 @@ dependencies = [
|
|
|
2907
3072
|
|
|
2908
3073
|
[[package]]
|
|
2909
3074
|
name = "quinn-proto"
|
|
2910
|
-
version = "0.11.
|
|
3075
|
+
version = "0.11.16"
|
|
2911
3076
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2912
|
-
checksum = "
|
|
3077
|
+
checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
|
|
2913
3078
|
dependencies = [
|
|
3079
|
+
"aws-lc-rs",
|
|
2914
3080
|
"bytes",
|
|
2915
|
-
"getrandom 0.3
|
|
3081
|
+
"getrandom 0.4.3",
|
|
2916
3082
|
"lru-slab",
|
|
2917
|
-
"rand 0.
|
|
3083
|
+
"rand 0.10.2",
|
|
3084
|
+
"rand_pcg",
|
|
2918
3085
|
"ring",
|
|
2919
|
-
"rustc-hash 2.1.
|
|
2920
|
-
"rustls
|
|
3086
|
+
"rustc-hash 2.1.3",
|
|
3087
|
+
"rustls",
|
|
2921
3088
|
"rustls-pki-types",
|
|
2922
3089
|
"slab",
|
|
2923
|
-
"thiserror 2.0.
|
|
3090
|
+
"thiserror 2.0.19",
|
|
2924
3091
|
"tinyvec",
|
|
2925
3092
|
"tracing",
|
|
2926
3093
|
"web-time",
|
|
@@ -2928,23 +3095,23 @@ dependencies = [
|
|
|
2928
3095
|
|
|
2929
3096
|
[[package]]
|
|
2930
3097
|
name = "quinn-udp"
|
|
2931
|
-
version = "0.5.
|
|
3098
|
+
version = "0.5.15"
|
|
2932
3099
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2933
|
-
checksum = "
|
|
3100
|
+
checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
|
|
2934
3101
|
dependencies = [
|
|
2935
3102
|
"cfg_aliases",
|
|
2936
3103
|
"libc",
|
|
2937
3104
|
"once_cell",
|
|
2938
|
-
"socket2
|
|
3105
|
+
"socket2",
|
|
2939
3106
|
"tracing",
|
|
2940
|
-
"windows-sys 0.
|
|
3107
|
+
"windows-sys 0.61.2",
|
|
2941
3108
|
]
|
|
2942
3109
|
|
|
2943
3110
|
[[package]]
|
|
2944
3111
|
name = "quote"
|
|
2945
|
-
version = "1.0.
|
|
3112
|
+
version = "1.0.47"
|
|
2946
3113
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2947
|
-
checksum = "
|
|
3114
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
2948
3115
|
dependencies = [
|
|
2949
3116
|
"proc-macro2",
|
|
2950
3117
|
]
|
|
@@ -2955,11 +3122,17 @@ version = "5.3.0"
|
|
|
2955
3122
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2956
3123
|
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2957
3124
|
|
|
3125
|
+
[[package]]
|
|
3126
|
+
name = "r-efi"
|
|
3127
|
+
version = "6.0.0"
|
|
3128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3129
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
3130
|
+
|
|
2958
3131
|
[[package]]
|
|
2959
3132
|
name = "rand"
|
|
2960
|
-
version = "0.8.
|
|
3133
|
+
version = "0.8.7"
|
|
2961
3134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2962
|
-
checksum = "
|
|
3135
|
+
checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
|
|
2963
3136
|
dependencies = [
|
|
2964
3137
|
"libc",
|
|
2965
3138
|
"rand_chacha 0.3.1",
|
|
@@ -2968,14 +3141,25 @@ dependencies = [
|
|
|
2968
3141
|
|
|
2969
3142
|
[[package]]
|
|
2970
3143
|
name = "rand"
|
|
2971
|
-
version = "0.9.
|
|
3144
|
+
version = "0.9.5"
|
|
2972
3145
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2973
|
-
checksum = "
|
|
3146
|
+
checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
|
|
2974
3147
|
dependencies = [
|
|
2975
3148
|
"rand_chacha 0.9.0",
|
|
2976
3149
|
"rand_core 0.9.5",
|
|
2977
3150
|
]
|
|
2978
3151
|
|
|
3152
|
+
[[package]]
|
|
3153
|
+
name = "rand"
|
|
3154
|
+
version = "0.10.2"
|
|
3155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3156
|
+
checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
|
|
3157
|
+
dependencies = [
|
|
3158
|
+
"chacha20",
|
|
3159
|
+
"getrandom 0.4.3",
|
|
3160
|
+
"rand_core 0.10.1",
|
|
3161
|
+
]
|
|
3162
|
+
|
|
2979
3163
|
[[package]]
|
|
2980
3164
|
name = "rand_chacha"
|
|
2981
3165
|
version = "0.3.1"
|
|
@@ -3014,6 +3198,30 @@ dependencies = [
|
|
|
3014
3198
|
"getrandom 0.3.4",
|
|
3015
3199
|
]
|
|
3016
3200
|
|
|
3201
|
+
[[package]]
|
|
3202
|
+
name = "rand_core"
|
|
3203
|
+
version = "0.10.1"
|
|
3204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3205
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
3206
|
+
|
|
3207
|
+
[[package]]
|
|
3208
|
+
name = "rand_pcg"
|
|
3209
|
+
version = "0.10.2"
|
|
3210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3211
|
+
checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
|
|
3212
|
+
dependencies = [
|
|
3213
|
+
"rand_core 0.10.1",
|
|
3214
|
+
]
|
|
3215
|
+
|
|
3216
|
+
[[package]]
|
|
3217
|
+
name = "rand_xorshift"
|
|
3218
|
+
version = "0.4.0"
|
|
3219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3220
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
3221
|
+
dependencies = [
|
|
3222
|
+
"rand_core 0.9.5",
|
|
3223
|
+
]
|
|
3224
|
+
|
|
3017
3225
|
[[package]]
|
|
3018
3226
|
name = "rawpointer"
|
|
3019
3227
|
version = "0.2.1"
|
|
@@ -3029,11 +3237,31 @@ dependencies = [
|
|
|
3029
3237
|
"bitflags",
|
|
3030
3238
|
]
|
|
3031
3239
|
|
|
3240
|
+
[[package]]
|
|
3241
|
+
name = "ref-cast"
|
|
3242
|
+
version = "1.0.26"
|
|
3243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3244
|
+
checksum = "216e8f773d7923bcba9ceb86a86c93cabb3903a11872fc3f138c49630e50b96d"
|
|
3245
|
+
dependencies = [
|
|
3246
|
+
"ref-cast-impl",
|
|
3247
|
+
]
|
|
3248
|
+
|
|
3249
|
+
[[package]]
|
|
3250
|
+
name = "ref-cast-impl"
|
|
3251
|
+
version = "1.0.26"
|
|
3252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3253
|
+
checksum = "2c9283685feec7d69af75fb0e858d5e7378f33fe4fc699383b2916ab9273e03c"
|
|
3254
|
+
dependencies = [
|
|
3255
|
+
"proc-macro2",
|
|
3256
|
+
"quote",
|
|
3257
|
+
"syn 3.0.3",
|
|
3258
|
+
]
|
|
3259
|
+
|
|
3032
3260
|
[[package]]
|
|
3033
3261
|
name = "regex"
|
|
3034
|
-
version = "1.
|
|
3262
|
+
version = "1.13.1"
|
|
3035
3263
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3036
|
-
checksum = "
|
|
3264
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
3037
3265
|
dependencies = [
|
|
3038
3266
|
"aho-corasick",
|
|
3039
3267
|
"memchr",
|
|
@@ -3043,9 +3271,9 @@ dependencies = [
|
|
|
3043
3271
|
|
|
3044
3272
|
[[package]]
|
|
3045
3273
|
name = "regex-automata"
|
|
3046
|
-
version = "0.4.
|
|
3274
|
+
version = "0.4.16"
|
|
3047
3275
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3048
|
-
checksum = "
|
|
3276
|
+
checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
|
|
3049
3277
|
dependencies = [
|
|
3050
3278
|
"aho-corasick",
|
|
3051
3279
|
"memchr",
|
|
@@ -3054,9 +3282,9 @@ dependencies = [
|
|
|
3054
3282
|
|
|
3055
3283
|
[[package]]
|
|
3056
3284
|
name = "regex-syntax"
|
|
3057
|
-
version = "0.8.
|
|
3285
|
+
version = "0.8.11"
|
|
3058
3286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3059
|
-
checksum = "
|
|
3287
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
3060
3288
|
|
|
3061
3289
|
[[package]]
|
|
3062
3290
|
name = "relative-path"
|
|
@@ -3082,7 +3310,7 @@ dependencies = [
|
|
|
3082
3310
|
"http-body",
|
|
3083
3311
|
"http-body-util",
|
|
3084
3312
|
"hyper",
|
|
3085
|
-
"hyper-rustls
|
|
3313
|
+
"hyper-rustls",
|
|
3086
3314
|
"hyper-tls",
|
|
3087
3315
|
"hyper-util",
|
|
3088
3316
|
"js-sys",
|
|
@@ -3093,8 +3321,7 @@ dependencies = [
|
|
|
3093
3321
|
"percent-encoding",
|
|
3094
3322
|
"pin-project-lite",
|
|
3095
3323
|
"quinn",
|
|
3096
|
-
"rustls
|
|
3097
|
-
"rustls-native-certs 0.8.3",
|
|
3324
|
+
"rustls",
|
|
3098
3325
|
"rustls-pki-types",
|
|
3099
3326
|
"serde",
|
|
3100
3327
|
"serde_json",
|
|
@@ -3102,10 +3329,10 @@ dependencies = [
|
|
|
3102
3329
|
"sync_wrapper",
|
|
3103
3330
|
"tokio",
|
|
3104
3331
|
"tokio-native-tls",
|
|
3105
|
-
"tokio-rustls
|
|
3332
|
+
"tokio-rustls",
|
|
3106
3333
|
"tokio-util",
|
|
3107
3334
|
"tower",
|
|
3108
|
-
"tower-http 0.6.
|
|
3335
|
+
"tower-http 0.6.11",
|
|
3109
3336
|
"tower-service",
|
|
3110
3337
|
"url",
|
|
3111
3338
|
"wasm-bindgen",
|
|
@@ -3115,26 +3342,66 @@ dependencies = [
|
|
|
3115
3342
|
"webpki-roots",
|
|
3116
3343
|
]
|
|
3117
3344
|
|
|
3345
|
+
[[package]]
|
|
3346
|
+
name = "reqwest"
|
|
3347
|
+
version = "0.13.4"
|
|
3348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3349
|
+
checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
|
|
3350
|
+
dependencies = [
|
|
3351
|
+
"base64 0.22.1",
|
|
3352
|
+
"bytes",
|
|
3353
|
+
"futures-core",
|
|
3354
|
+
"futures-util",
|
|
3355
|
+
"http",
|
|
3356
|
+
"http-body",
|
|
3357
|
+
"http-body-util",
|
|
3358
|
+
"hyper",
|
|
3359
|
+
"hyper-rustls",
|
|
3360
|
+
"hyper-util",
|
|
3361
|
+
"js-sys",
|
|
3362
|
+
"log",
|
|
3363
|
+
"mime_guess",
|
|
3364
|
+
"percent-encoding",
|
|
3365
|
+
"pin-project-lite",
|
|
3366
|
+
"quinn",
|
|
3367
|
+
"rustls",
|
|
3368
|
+
"rustls-pki-types",
|
|
3369
|
+
"rustls-platform-verifier",
|
|
3370
|
+
"serde",
|
|
3371
|
+
"serde_json",
|
|
3372
|
+
"serde_urlencoded",
|
|
3373
|
+
"sync_wrapper",
|
|
3374
|
+
"tokio",
|
|
3375
|
+
"tokio-rustls",
|
|
3376
|
+
"tower",
|
|
3377
|
+
"tower-http 0.6.11",
|
|
3378
|
+
"tower-service",
|
|
3379
|
+
"url",
|
|
3380
|
+
"wasm-bindgen",
|
|
3381
|
+
"wasm-bindgen-futures",
|
|
3382
|
+
"web-sys",
|
|
3383
|
+
]
|
|
3384
|
+
|
|
3118
3385
|
[[package]]
|
|
3119
3386
|
name = "reqwest-middleware"
|
|
3120
|
-
version = "0.
|
|
3387
|
+
version = "0.5.2"
|
|
3121
3388
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3122
|
-
checksum = "
|
|
3389
|
+
checksum = "07bc3f1384cffa4f274dad2d4ddd73aed32fed8f786d96c6be8aa4e5fd3c3b58"
|
|
3123
3390
|
dependencies = [
|
|
3124
3391
|
"anyhow",
|
|
3125
3392
|
"async-trait",
|
|
3126
3393
|
"http",
|
|
3127
|
-
"reqwest",
|
|
3394
|
+
"reqwest 0.13.4",
|
|
3128
3395
|
"serde",
|
|
3129
|
-
"thiserror
|
|
3396
|
+
"thiserror 2.0.19",
|
|
3130
3397
|
"tower-service",
|
|
3131
3398
|
]
|
|
3132
3399
|
|
|
3133
3400
|
[[package]]
|
|
3134
3401
|
name = "reqwest-tracing"
|
|
3135
|
-
version = "0.
|
|
3402
|
+
version = "0.7.1"
|
|
3136
3403
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3137
|
-
checksum = "
|
|
3404
|
+
checksum = "b5e5af0cd6fc3d3c8f703d597af70b6e4e62432c63157b49419fa1ffaf481702"
|
|
3138
3405
|
dependencies = [
|
|
3139
3406
|
"anyhow",
|
|
3140
3407
|
"async-trait",
|
|
@@ -3142,21 +3409,41 @@ dependencies = [
|
|
|
3142
3409
|
"http",
|
|
3143
3410
|
"matchit",
|
|
3144
3411
|
"opentelemetry",
|
|
3145
|
-
"reqwest",
|
|
3412
|
+
"reqwest 0.13.4",
|
|
3146
3413
|
"reqwest-middleware",
|
|
3147
3414
|
"tracing",
|
|
3148
3415
|
"tracing-opentelemetry",
|
|
3149
3416
|
]
|
|
3150
3417
|
|
|
3418
|
+
[[package]]
|
|
3419
|
+
name = "rigetti-hyper-proxy"
|
|
3420
|
+
version = "1.1.1"
|
|
3421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3422
|
+
checksum = "3f8f51d98fc811a23d1fd905719dd7dc2e5620a8775a22b7f9b52dab79a53958"
|
|
3423
|
+
dependencies = [
|
|
3424
|
+
"bytes",
|
|
3425
|
+
"futures-util",
|
|
3426
|
+
"headers",
|
|
3427
|
+
"http",
|
|
3428
|
+
"hyper",
|
|
3429
|
+
"hyper-rustls",
|
|
3430
|
+
"hyper-util",
|
|
3431
|
+
"pin-project-lite",
|
|
3432
|
+
"tokio",
|
|
3433
|
+
"tokio-rustls",
|
|
3434
|
+
"tower-service",
|
|
3435
|
+
]
|
|
3436
|
+
|
|
3151
3437
|
[[package]]
|
|
3152
3438
|
name = "rigetti-pyo3"
|
|
3153
|
-
version = "0.5.
|
|
3439
|
+
version = "0.5.6"
|
|
3154
3440
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3155
|
-
checksum = "
|
|
3441
|
+
checksum = "3b1f2228cdd10687f3d8be8d516e9120542cd741ba354fdbd68e647ee6432512"
|
|
3156
3442
|
dependencies = [
|
|
3157
|
-
"indexmap",
|
|
3443
|
+
"indexmap 2.14.0",
|
|
3158
3444
|
"itertools 0.14.0",
|
|
3159
3445
|
"optipy",
|
|
3446
|
+
"pastey",
|
|
3160
3447
|
"pyo3",
|
|
3161
3448
|
"pyo3-async-runtimes",
|
|
3162
3449
|
"pyo3-stub-gen",
|
|
@@ -3222,7 +3509,7 @@ dependencies = [
|
|
|
3222
3509
|
"regex",
|
|
3223
3510
|
"relative-path",
|
|
3224
3511
|
"rustc_version",
|
|
3225
|
-
"syn 2.0.
|
|
3512
|
+
"syn 2.0.119",
|
|
3226
3513
|
"unicode-ident",
|
|
3227
3514
|
]
|
|
3228
3515
|
|
|
@@ -3234,9 +3521,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
|
3234
3521
|
|
|
3235
3522
|
[[package]]
|
|
3236
3523
|
name = "rustc-hash"
|
|
3237
|
-
version = "2.1.
|
|
3524
|
+
version = "2.1.3"
|
|
3238
3525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3239
|
-
checksum = "
|
|
3526
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
3240
3527
|
|
|
3241
3528
|
[[package]]
|
|
3242
3529
|
name = "rustc_version"
|
|
@@ -3249,9 +3536,9 @@ dependencies = [
|
|
|
3249
3536
|
|
|
3250
3537
|
[[package]]
|
|
3251
3538
|
name = "rustix"
|
|
3252
|
-
version = "1.1.
|
|
3539
|
+
version = "1.1.4"
|
|
3253
3540
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3254
|
-
checksum = "
|
|
3541
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
3255
3542
|
dependencies = [
|
|
3256
3543
|
"bitflags",
|
|
3257
3544
|
"errno",
|
|
@@ -3262,94 +3549,76 @@ dependencies = [
|
|
|
3262
3549
|
|
|
3263
3550
|
[[package]]
|
|
3264
3551
|
name = "rustls"
|
|
3265
|
-
version = "0.
|
|
3266
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3267
|
-
checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432"
|
|
3268
|
-
dependencies = [
|
|
3269
|
-
"log",
|
|
3270
|
-
"ring",
|
|
3271
|
-
"rustls-pki-types",
|
|
3272
|
-
"rustls-webpki 0.102.8",
|
|
3273
|
-
"subtle",
|
|
3274
|
-
"zeroize",
|
|
3275
|
-
]
|
|
3276
|
-
|
|
3277
|
-
[[package]]
|
|
3278
|
-
name = "rustls"
|
|
3279
|
-
version = "0.23.36"
|
|
3552
|
+
version = "0.23.42"
|
|
3280
3553
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3281
|
-
checksum = "
|
|
3554
|
+
checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138"
|
|
3282
3555
|
dependencies = [
|
|
3556
|
+
"aws-lc-rs",
|
|
3283
3557
|
"log",
|
|
3284
3558
|
"once_cell",
|
|
3285
3559
|
"ring",
|
|
3286
3560
|
"rustls-pki-types",
|
|
3287
|
-
"rustls-webpki
|
|
3561
|
+
"rustls-webpki",
|
|
3288
3562
|
"subtle",
|
|
3289
3563
|
"zeroize",
|
|
3290
3564
|
]
|
|
3291
3565
|
|
|
3292
3566
|
[[package]]
|
|
3293
3567
|
name = "rustls-native-certs"
|
|
3294
|
-
version = "0.
|
|
3568
|
+
version = "0.8.4"
|
|
3295
3569
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3296
|
-
checksum = "
|
|
3570
|
+
checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
|
|
3297
3571
|
dependencies = [
|
|
3298
|
-
"openssl-probe
|
|
3299
|
-
"rustls-pemfile",
|
|
3572
|
+
"openssl-probe",
|
|
3300
3573
|
"rustls-pki-types",
|
|
3301
3574
|
"schannel",
|
|
3302
|
-
"security-framework
|
|
3303
|
-
]
|
|
3304
|
-
|
|
3305
|
-
[[package]]
|
|
3306
|
-
name = "rustls-native-certs"
|
|
3307
|
-
version = "0.8.3"
|
|
3308
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3309
|
-
checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
|
|
3310
|
-
dependencies = [
|
|
3311
|
-
"openssl-probe 0.2.1",
|
|
3312
|
-
"rustls-pki-types",
|
|
3313
|
-
"schannel",
|
|
3314
|
-
"security-framework 3.5.1",
|
|
3315
|
-
]
|
|
3316
|
-
|
|
3317
|
-
[[package]]
|
|
3318
|
-
name = "rustls-pemfile"
|
|
3319
|
-
version = "2.2.0"
|
|
3320
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3321
|
-
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
|
3322
|
-
dependencies = [
|
|
3323
|
-
"rustls-pki-types",
|
|
3575
|
+
"security-framework",
|
|
3324
3576
|
]
|
|
3325
3577
|
|
|
3326
3578
|
[[package]]
|
|
3327
3579
|
name = "rustls-pki-types"
|
|
3328
|
-
version = "1.
|
|
3580
|
+
version = "1.15.1"
|
|
3329
3581
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3330
|
-
checksum = "
|
|
3582
|
+
checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
|
|
3331
3583
|
dependencies = [
|
|
3332
3584
|
"web-time",
|
|
3333
3585
|
"zeroize",
|
|
3334
3586
|
]
|
|
3335
3587
|
|
|
3336
3588
|
[[package]]
|
|
3337
|
-
name = "rustls-
|
|
3338
|
-
version = "0.
|
|
3589
|
+
name = "rustls-platform-verifier"
|
|
3590
|
+
version = "0.7.0"
|
|
3339
3591
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3340
|
-
checksum = "
|
|
3592
|
+
checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
|
|
3341
3593
|
dependencies = [
|
|
3342
|
-
"
|
|
3343
|
-
"
|
|
3344
|
-
"
|
|
3594
|
+
"core-foundation 0.10.1",
|
|
3595
|
+
"core-foundation-sys",
|
|
3596
|
+
"jni",
|
|
3597
|
+
"log",
|
|
3598
|
+
"once_cell",
|
|
3599
|
+
"rustls",
|
|
3600
|
+
"rustls-native-certs",
|
|
3601
|
+
"rustls-platform-verifier-android",
|
|
3602
|
+
"rustls-webpki",
|
|
3603
|
+
"security-framework",
|
|
3604
|
+
"security-framework-sys",
|
|
3605
|
+
"webpki-root-certs",
|
|
3606
|
+
"windows-sys 0.61.2",
|
|
3345
3607
|
]
|
|
3346
3608
|
|
|
3609
|
+
[[package]]
|
|
3610
|
+
name = "rustls-platform-verifier-android"
|
|
3611
|
+
version = "0.1.1"
|
|
3612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3613
|
+
checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
3614
|
+
|
|
3347
3615
|
[[package]]
|
|
3348
3616
|
name = "rustls-webpki"
|
|
3349
|
-
version = "0.103.
|
|
3617
|
+
version = "0.103.13"
|
|
3350
3618
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3351
|
-
checksum = "
|
|
3619
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
3352
3620
|
dependencies = [
|
|
3621
|
+
"aws-lc-rs",
|
|
3353
3622
|
"ring",
|
|
3354
3623
|
"rustls-pki-types",
|
|
3355
3624
|
"untrusted 0.9.0",
|
|
@@ -3414,9 +3683,9 @@ dependencies = [
|
|
|
3414
3683
|
|
|
3415
3684
|
[[package]]
|
|
3416
3685
|
name = "rustversion"
|
|
3417
|
-
version = "1.0.
|
|
3686
|
+
version = "1.0.23"
|
|
3418
3687
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3419
|
-
checksum = "
|
|
3688
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
3420
3689
|
|
|
3421
3690
|
[[package]]
|
|
3422
3691
|
name = "ryu"
|
|
@@ -3433,54 +3702,50 @@ dependencies = [
|
|
|
3433
3702
|
"winapi-util",
|
|
3434
3703
|
]
|
|
3435
3704
|
|
|
3436
|
-
[[package]]
|
|
3437
|
-
name = "scc"
|
|
3438
|
-
version = "2.4.0"
|
|
3439
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3440
|
-
checksum = "46e6f046b7fef48e2660c57ed794263155d713de679057f2d0c169bfc6e756cc"
|
|
3441
|
-
dependencies = [
|
|
3442
|
-
"sdd",
|
|
3443
|
-
]
|
|
3444
|
-
|
|
3445
3705
|
[[package]]
|
|
3446
3706
|
name = "schannel"
|
|
3447
|
-
version = "0.1.
|
|
3707
|
+
version = "0.1.29"
|
|
3448
3708
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3449
|
-
checksum = "
|
|
3709
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
3450
3710
|
dependencies = [
|
|
3451
3711
|
"windows-sys 0.61.2",
|
|
3452
3712
|
]
|
|
3453
3713
|
|
|
3454
3714
|
[[package]]
|
|
3455
|
-
name = "
|
|
3456
|
-
version = "
|
|
3715
|
+
name = "schemars"
|
|
3716
|
+
version = "0.9.0"
|
|
3457
3717
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3458
|
-
checksum = "
|
|
3718
|
+
checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
|
|
3719
|
+
dependencies = [
|
|
3720
|
+
"dyn-clone",
|
|
3721
|
+
"ref-cast",
|
|
3722
|
+
"serde",
|
|
3723
|
+
"serde_json",
|
|
3724
|
+
]
|
|
3459
3725
|
|
|
3460
3726
|
[[package]]
|
|
3461
|
-
name = "
|
|
3462
|
-
version = "
|
|
3727
|
+
name = "schemars"
|
|
3728
|
+
version = "1.2.1"
|
|
3463
3729
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3464
|
-
checksum = "
|
|
3730
|
+
checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
|
|
3731
|
+
dependencies = [
|
|
3732
|
+
"dyn-clone",
|
|
3733
|
+
"ref-cast",
|
|
3734
|
+
"serde",
|
|
3735
|
+
"serde_json",
|
|
3736
|
+
]
|
|
3465
3737
|
|
|
3466
3738
|
[[package]]
|
|
3467
|
-
name = "
|
|
3468
|
-
version = "2.
|
|
3739
|
+
name = "scopeguard"
|
|
3740
|
+
version = "1.2.0"
|
|
3469
3741
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3470
|
-
checksum = "
|
|
3471
|
-
dependencies = [
|
|
3472
|
-
"bitflags",
|
|
3473
|
-
"core-foundation 0.9.4",
|
|
3474
|
-
"core-foundation-sys",
|
|
3475
|
-
"libc",
|
|
3476
|
-
"security-framework-sys",
|
|
3477
|
-
]
|
|
3742
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
3478
3743
|
|
|
3479
3744
|
[[package]]
|
|
3480
3745
|
name = "security-framework"
|
|
3481
|
-
version = "3.
|
|
3746
|
+
version = "3.7.0"
|
|
3482
3747
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3483
|
-
checksum = "
|
|
3748
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
3484
3749
|
dependencies = [
|
|
3485
3750
|
"bitflags",
|
|
3486
3751
|
"core-foundation 0.10.1",
|
|
@@ -3491,9 +3756,9 @@ dependencies = [
|
|
|
3491
3756
|
|
|
3492
3757
|
[[package]]
|
|
3493
3758
|
name = "security-framework-sys"
|
|
3494
|
-
version = "2.
|
|
3759
|
+
version = "2.17.0"
|
|
3495
3760
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3496
|
-
checksum = "
|
|
3761
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
3497
3762
|
dependencies = [
|
|
3498
3763
|
"core-foundation-sys",
|
|
3499
3764
|
"libc",
|
|
@@ -3501,15 +3766,15 @@ dependencies = [
|
|
|
3501
3766
|
|
|
3502
3767
|
[[package]]
|
|
3503
3768
|
name = "semver"
|
|
3504
|
-
version = "1.0.
|
|
3769
|
+
version = "1.0.28"
|
|
3505
3770
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3506
|
-
checksum = "
|
|
3771
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
3507
3772
|
|
|
3508
3773
|
[[package]]
|
|
3509
3774
|
name = "serde"
|
|
3510
|
-
version = "1.0.
|
|
3775
|
+
version = "1.0.229"
|
|
3511
3776
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3512
|
-
checksum = "
|
|
3777
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
3513
3778
|
dependencies = [
|
|
3514
3779
|
"serde_core",
|
|
3515
3780
|
"serde_derive",
|
|
@@ -3517,29 +3782,29 @@ dependencies = [
|
|
|
3517
3782
|
|
|
3518
3783
|
[[package]]
|
|
3519
3784
|
name = "serde_core"
|
|
3520
|
-
version = "1.0.
|
|
3785
|
+
version = "1.0.229"
|
|
3521
3786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3522
|
-
checksum = "
|
|
3787
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
3523
3788
|
dependencies = [
|
|
3524
3789
|
"serde_derive",
|
|
3525
3790
|
]
|
|
3526
3791
|
|
|
3527
3792
|
[[package]]
|
|
3528
3793
|
name = "serde_derive"
|
|
3529
|
-
version = "1.0.
|
|
3794
|
+
version = "1.0.229"
|
|
3530
3795
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3531
|
-
checksum = "
|
|
3796
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
3532
3797
|
dependencies = [
|
|
3533
3798
|
"proc-macro2",
|
|
3534
3799
|
"quote",
|
|
3535
|
-
"syn
|
|
3800
|
+
"syn 3.0.3",
|
|
3536
3801
|
]
|
|
3537
3802
|
|
|
3538
3803
|
[[package]]
|
|
3539
3804
|
name = "serde_json"
|
|
3540
|
-
version = "1.0.
|
|
3805
|
+
version = "1.0.151"
|
|
3541
3806
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3542
|
-
checksum = "
|
|
3807
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
3543
3808
|
dependencies = [
|
|
3544
3809
|
"itoa",
|
|
3545
3810
|
"memchr",
|
|
@@ -3561,14 +3826,25 @@ dependencies = [
|
|
|
3561
3826
|
|
|
3562
3827
|
[[package]]
|
|
3563
3828
|
name = "serde_regex"
|
|
3564
|
-
version = "1.
|
|
3829
|
+
version = "1.2.0"
|
|
3565
3830
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3566
|
-
checksum = "
|
|
3831
|
+
checksum = "bafc8d0c5330cecff10f16b459b479fd9acaa5b4acd7167301414e21b0057012"
|
|
3567
3832
|
dependencies = [
|
|
3568
3833
|
"regex",
|
|
3569
3834
|
"serde",
|
|
3570
3835
|
]
|
|
3571
3836
|
|
|
3837
|
+
[[package]]
|
|
3838
|
+
name = "serde_repr"
|
|
3839
|
+
version = "0.1.21"
|
|
3840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3841
|
+
checksum = "8d3b1629de253c70a0508c3899572da79ca359fdab27c7920ff00406df418906"
|
|
3842
|
+
dependencies = [
|
|
3843
|
+
"proc-macro2",
|
|
3844
|
+
"quote",
|
|
3845
|
+
"syn 3.0.3",
|
|
3846
|
+
]
|
|
3847
|
+
|
|
3572
3848
|
[[package]]
|
|
3573
3849
|
name = "serde_spanned"
|
|
3574
3850
|
version = "0.6.9"
|
|
@@ -3580,9 +3856,9 @@ dependencies = [
|
|
|
3580
3856
|
|
|
3581
3857
|
[[package]]
|
|
3582
3858
|
name = "serde_spanned"
|
|
3583
|
-
version = "1.
|
|
3859
|
+
version = "1.1.1"
|
|
3584
3860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3585
|
-
checksum = "
|
|
3861
|
+
checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
|
|
3586
3862
|
dependencies = [
|
|
3587
3863
|
"serde_core",
|
|
3588
3864
|
]
|
|
@@ -3599,40 +3875,71 @@ dependencies = [
|
|
|
3599
3875
|
"serde",
|
|
3600
3876
|
]
|
|
3601
3877
|
|
|
3878
|
+
[[package]]
|
|
3879
|
+
name = "serde_with"
|
|
3880
|
+
version = "3.21.0"
|
|
3881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3882
|
+
checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c"
|
|
3883
|
+
dependencies = [
|
|
3884
|
+
"base64 0.22.1",
|
|
3885
|
+
"bs58",
|
|
3886
|
+
"chrono",
|
|
3887
|
+
"hex",
|
|
3888
|
+
"indexmap 1.9.3",
|
|
3889
|
+
"indexmap 2.14.0",
|
|
3890
|
+
"schemars 0.9.0",
|
|
3891
|
+
"schemars 1.2.1",
|
|
3892
|
+
"serde_core",
|
|
3893
|
+
"serde_json",
|
|
3894
|
+
"serde_with_macros",
|
|
3895
|
+
"time",
|
|
3896
|
+
]
|
|
3897
|
+
|
|
3898
|
+
[[package]]
|
|
3899
|
+
name = "serde_with_macros"
|
|
3900
|
+
version = "3.21.0"
|
|
3901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3902
|
+
checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660"
|
|
3903
|
+
dependencies = [
|
|
3904
|
+
"darling 0.23.0",
|
|
3905
|
+
"proc-macro2",
|
|
3906
|
+
"quote",
|
|
3907
|
+
"syn 2.0.119",
|
|
3908
|
+
]
|
|
3909
|
+
|
|
3602
3910
|
[[package]]
|
|
3603
3911
|
name = "serial_test"
|
|
3604
|
-
version = "3.
|
|
3912
|
+
version = "3.5.0"
|
|
3605
3913
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3606
|
-
checksum = "
|
|
3914
|
+
checksum = "699f4197115b8a7e7ff19c9a315a4bd6fffec26cc4626ef45ecaea389e081c6d"
|
|
3607
3915
|
dependencies = [
|
|
3608
3916
|
"futures-executor",
|
|
3609
3917
|
"futures-util",
|
|
3610
3918
|
"log",
|
|
3611
3919
|
"once_cell",
|
|
3612
3920
|
"parking_lot",
|
|
3613
|
-
"scc",
|
|
3614
3921
|
"serial_test_derive",
|
|
3615
3922
|
]
|
|
3616
3923
|
|
|
3617
3924
|
[[package]]
|
|
3618
3925
|
name = "serial_test_derive"
|
|
3619
|
-
version = "3.
|
|
3926
|
+
version = "3.5.0"
|
|
3620
3927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3621
|
-
checksum = "
|
|
3928
|
+
checksum = "94e153fc76e1c6a068703d6d29c508a0b15c061c4b7e43da59cc097bc342673c"
|
|
3622
3929
|
dependencies = [
|
|
3623
3930
|
"proc-macro2",
|
|
3624
3931
|
"quote",
|
|
3625
|
-
"syn 2.0.
|
|
3932
|
+
"syn 2.0.119",
|
|
3626
3933
|
]
|
|
3627
3934
|
|
|
3628
3935
|
[[package]]
|
|
3629
3936
|
name = "sha1"
|
|
3630
|
-
version = "0.10.
|
|
3937
|
+
version = "0.10.7"
|
|
3631
3938
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3632
|
-
checksum = "
|
|
3939
|
+
checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
|
|
3633
3940
|
dependencies = [
|
|
3634
3941
|
"cfg-if",
|
|
3635
|
-
"cpufeatures",
|
|
3942
|
+
"cpufeatures 0.2.17",
|
|
3636
3943
|
"digest",
|
|
3637
3944
|
]
|
|
3638
3945
|
|
|
@@ -3643,7 +3950,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3643
3950
|
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
3644
3951
|
dependencies = [
|
|
3645
3952
|
"cfg-if",
|
|
3646
|
-
"cpufeatures",
|
|
3953
|
+
"cpufeatures 0.2.17",
|
|
3647
3954
|
"digest",
|
|
3648
3955
|
]
|
|
3649
3956
|
|
|
@@ -3658,15 +3965,15 @@ dependencies = [
|
|
|
3658
3965
|
|
|
3659
3966
|
[[package]]
|
|
3660
3967
|
name = "shellexpand"
|
|
3661
|
-
version = "3.1.
|
|
3968
|
+
version = "3.1.2"
|
|
3662
3969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3663
|
-
checksum = "
|
|
3970
|
+
checksum = "32824fab5e16e6c4d86dc1ba84489390419a39f97699852b66480bb87d297ed8"
|
|
3664
3971
|
|
|
3665
3972
|
[[package]]
|
|
3666
3973
|
name = "shlex"
|
|
3667
|
-
version = "
|
|
3974
|
+
version = "2.0.1"
|
|
3668
3975
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3669
|
-
checksum = "
|
|
3976
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
3670
3977
|
|
|
3671
3978
|
[[package]]
|
|
3672
3979
|
name = "signal-hook-registry"
|
|
@@ -3688,6 +3995,28 @@ dependencies = [
|
|
|
3688
3995
|
"rand_core 0.6.4",
|
|
3689
3996
|
]
|
|
3690
3997
|
|
|
3998
|
+
[[package]]
|
|
3999
|
+
name = "simd-adler32"
|
|
4000
|
+
version = "0.3.10"
|
|
4001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4002
|
+
checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
|
|
4003
|
+
|
|
4004
|
+
[[package]]
|
|
4005
|
+
name = "simd_cesu8"
|
|
4006
|
+
version = "1.2.0"
|
|
4007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4008
|
+
checksum = "11031e251abf8611c80f460e19dbdeb54a66db918e49c65a7065b46ac7aec520"
|
|
4009
|
+
dependencies = [
|
|
4010
|
+
"rustc_version",
|
|
4011
|
+
"simdutf8",
|
|
4012
|
+
]
|
|
4013
|
+
|
|
4014
|
+
[[package]]
|
|
4015
|
+
name = "simdutf8"
|
|
4016
|
+
version = "0.1.5"
|
|
4017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4018
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
4019
|
+
|
|
3691
4020
|
[[package]]
|
|
3692
4021
|
name = "similar"
|
|
3693
4022
|
version = "2.7.0"
|
|
@@ -3696,21 +4025,21 @@ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
|
3696
4025
|
|
|
3697
4026
|
[[package]]
|
|
3698
4027
|
name = "simple_asn1"
|
|
3699
|
-
version = "0.6.
|
|
4028
|
+
version = "0.6.4"
|
|
3700
4029
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3701
|
-
checksum = "
|
|
4030
|
+
checksum = "0d585997b0ac10be3c5ee635f1bab02d512760d14b7c468801ac8a01d9ae5f1d"
|
|
3702
4031
|
dependencies = [
|
|
3703
4032
|
"num-bigint",
|
|
3704
4033
|
"num-traits",
|
|
3705
|
-
"thiserror 2.0.
|
|
4034
|
+
"thiserror 2.0.19",
|
|
3706
4035
|
"time",
|
|
3707
4036
|
]
|
|
3708
4037
|
|
|
3709
4038
|
[[package]]
|
|
3710
4039
|
name = "siphasher"
|
|
3711
|
-
version = "1.0.
|
|
4040
|
+
version = "1.0.3"
|
|
3712
4041
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3713
|
-
checksum = "
|
|
4042
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
3714
4043
|
|
|
3715
4044
|
[[package]]
|
|
3716
4045
|
name = "slab"
|
|
@@ -3720,35 +4049,25 @@ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
|
3720
4049
|
|
|
3721
4050
|
[[package]]
|
|
3722
4051
|
name = "smallvec"
|
|
3723
|
-
version = "1.15.
|
|
3724
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3725
|
-
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
3726
|
-
|
|
3727
|
-
[[package]]
|
|
3728
|
-
name = "socket2"
|
|
3729
|
-
version = "0.5.10"
|
|
4052
|
+
version = "1.15.2"
|
|
3730
4053
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3731
|
-
checksum = "
|
|
3732
|
-
dependencies = [
|
|
3733
|
-
"libc",
|
|
3734
|
-
"windows-sys 0.52.0",
|
|
3735
|
-
]
|
|
4054
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
3736
4055
|
|
|
3737
4056
|
[[package]]
|
|
3738
4057
|
name = "socket2"
|
|
3739
|
-
version = "0.6.
|
|
4058
|
+
version = "0.6.5"
|
|
3740
4059
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3741
|
-
checksum = "
|
|
4060
|
+
checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
|
|
3742
4061
|
dependencies = [
|
|
3743
4062
|
"libc",
|
|
3744
|
-
"windows-sys 0.
|
|
4063
|
+
"windows-sys 0.61.2",
|
|
3745
4064
|
]
|
|
3746
4065
|
|
|
3747
4066
|
[[package]]
|
|
3748
4067
|
name = "spin"
|
|
3749
|
-
version = "0.9.
|
|
4068
|
+
version = "0.9.9"
|
|
3750
4069
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3751
|
-
checksum = "
|
|
4070
|
+
checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e"
|
|
3752
4071
|
|
|
3753
4072
|
[[package]]
|
|
3754
4073
|
name = "spki"
|
|
@@ -3803,9 +4122,20 @@ dependencies = [
|
|
|
3803
4122
|
|
|
3804
4123
|
[[package]]
|
|
3805
4124
|
name = "syn"
|
|
3806
|
-
version = "2.0.
|
|
4125
|
+
version = "2.0.119"
|
|
3807
4126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3808
|
-
checksum = "
|
|
4127
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
4128
|
+
dependencies = [
|
|
4129
|
+
"proc-macro2",
|
|
4130
|
+
"quote",
|
|
4131
|
+
"unicode-ident",
|
|
4132
|
+
]
|
|
4133
|
+
|
|
4134
|
+
[[package]]
|
|
4135
|
+
name = "syn"
|
|
4136
|
+
version = "3.0.3"
|
|
4137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4138
|
+
checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
|
|
3809
4139
|
dependencies = [
|
|
3810
4140
|
"proc-macro2",
|
|
3811
4141
|
"quote",
|
|
@@ -3829,7 +4159,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
|
3829
4159
|
dependencies = [
|
|
3830
4160
|
"proc-macro2",
|
|
3831
4161
|
"quote",
|
|
3832
|
-
"syn 2.0.
|
|
4162
|
+
"syn 2.0.119",
|
|
3833
4163
|
]
|
|
3834
4164
|
|
|
3835
4165
|
[[package]]
|
|
@@ -3864,18 +4194,18 @@ dependencies = [
|
|
|
3864
4194
|
|
|
3865
4195
|
[[package]]
|
|
3866
4196
|
name = "target-lexicon"
|
|
3867
|
-
version = "0.13.
|
|
4197
|
+
version = "0.13.5"
|
|
3868
4198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3869
|
-
checksum = "
|
|
4199
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
3870
4200
|
|
|
3871
4201
|
[[package]]
|
|
3872
4202
|
name = "tempfile"
|
|
3873
|
-
version = "3.
|
|
4203
|
+
version = "3.27.0"
|
|
3874
4204
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3875
|
-
checksum = "
|
|
4205
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
3876
4206
|
dependencies = [
|
|
3877
4207
|
"fastrand",
|
|
3878
|
-
"getrandom 0.4.
|
|
4208
|
+
"getrandom 0.4.3",
|
|
3879
4209
|
"once_cell",
|
|
3880
4210
|
"rustix",
|
|
3881
4211
|
"windows-sys 0.61.2",
|
|
@@ -3892,11 +4222,11 @@ dependencies = [
|
|
|
3892
4222
|
|
|
3893
4223
|
[[package]]
|
|
3894
4224
|
name = "thiserror"
|
|
3895
|
-
version = "2.0.
|
|
4225
|
+
version = "2.0.19"
|
|
3896
4226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3897
|
-
checksum = "
|
|
4227
|
+
checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
|
|
3898
4228
|
dependencies = [
|
|
3899
|
-
"thiserror-impl 2.0.
|
|
4229
|
+
"thiserror-impl 2.0.19",
|
|
3900
4230
|
]
|
|
3901
4231
|
|
|
3902
4232
|
[[package]]
|
|
@@ -3907,37 +4237,36 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
3907
4237
|
dependencies = [
|
|
3908
4238
|
"proc-macro2",
|
|
3909
4239
|
"quote",
|
|
3910
|
-
"syn 2.0.
|
|
4240
|
+
"syn 2.0.119",
|
|
3911
4241
|
]
|
|
3912
4242
|
|
|
3913
4243
|
[[package]]
|
|
3914
4244
|
name = "thiserror-impl"
|
|
3915
|
-
version = "2.0.
|
|
4245
|
+
version = "2.0.19"
|
|
3916
4246
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3917
|
-
checksum = "
|
|
4247
|
+
checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
|
|
3918
4248
|
dependencies = [
|
|
3919
4249
|
"proc-macro2",
|
|
3920
4250
|
"quote",
|
|
3921
|
-
"syn
|
|
4251
|
+
"syn 3.0.3",
|
|
3922
4252
|
]
|
|
3923
4253
|
|
|
3924
4254
|
[[package]]
|
|
3925
4255
|
name = "thread_local"
|
|
3926
|
-
version = "1.1.
|
|
4256
|
+
version = "1.1.10"
|
|
3927
4257
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3928
|
-
checksum = "
|
|
4258
|
+
checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
|
|
3929
4259
|
dependencies = [
|
|
3930
4260
|
"cfg-if",
|
|
3931
4261
|
]
|
|
3932
4262
|
|
|
3933
4263
|
[[package]]
|
|
3934
4264
|
name = "time"
|
|
3935
|
-
version = "0.3.
|
|
4265
|
+
version = "0.3.54"
|
|
3936
4266
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3937
|
-
checksum = "
|
|
4267
|
+
checksum = "3e1d5e639ff6bab73cb6885cc7e7b1de96c3f32c68ec55f3952614bec1092244"
|
|
3938
4268
|
dependencies = [
|
|
3939
4269
|
"deranged",
|
|
3940
|
-
"itoa",
|
|
3941
4270
|
"num-conv",
|
|
3942
4271
|
"powerfmt",
|
|
3943
4272
|
"serde_core",
|
|
@@ -3947,15 +4276,15 @@ dependencies = [
|
|
|
3947
4276
|
|
|
3948
4277
|
[[package]]
|
|
3949
4278
|
name = "time-core"
|
|
3950
|
-
version = "0.1.
|
|
4279
|
+
version = "0.1.9"
|
|
3951
4280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3952
|
-
checksum = "
|
|
4281
|
+
checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
|
|
3953
4282
|
|
|
3954
4283
|
[[package]]
|
|
3955
4284
|
name = "time-macros"
|
|
3956
|
-
version = "0.2.
|
|
4285
|
+
version = "0.2.32"
|
|
3957
4286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3958
|
-
checksum = "
|
|
4287
|
+
checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85"
|
|
3959
4288
|
dependencies = [
|
|
3960
4289
|
"num-conv",
|
|
3961
4290
|
"time-core",
|
|
@@ -3972,9 +4301,9 @@ dependencies = [
|
|
|
3972
4301
|
|
|
3973
4302
|
[[package]]
|
|
3974
4303
|
name = "tinystr"
|
|
3975
|
-
version = "0.8.
|
|
4304
|
+
version = "0.8.3"
|
|
3976
4305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3977
|
-
checksum = "
|
|
4306
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
3978
4307
|
dependencies = [
|
|
3979
4308
|
"displaydoc",
|
|
3980
4309
|
"zerovec",
|
|
@@ -3982,9 +4311,9 @@ dependencies = [
|
|
|
3982
4311
|
|
|
3983
4312
|
[[package]]
|
|
3984
4313
|
name = "tinyvec"
|
|
3985
|
-
version = "1.
|
|
4314
|
+
version = "1.12.0"
|
|
3986
4315
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3987
|
-
checksum = "
|
|
4316
|
+
checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
|
|
3988
4317
|
dependencies = [
|
|
3989
4318
|
"tinyvec_macros",
|
|
3990
4319
|
]
|
|
@@ -3997,9 +4326,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
3997
4326
|
|
|
3998
4327
|
[[package]]
|
|
3999
4328
|
name = "tokio"
|
|
4000
|
-
version = "1.
|
|
4329
|
+
version = "1.53.1"
|
|
4001
4330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4002
|
-
checksum = "
|
|
4331
|
+
checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
|
|
4003
4332
|
dependencies = [
|
|
4004
4333
|
"bytes",
|
|
4005
4334
|
"libc",
|
|
@@ -4007,20 +4336,20 @@ dependencies = [
|
|
|
4007
4336
|
"parking_lot",
|
|
4008
4337
|
"pin-project-lite",
|
|
4009
4338
|
"signal-hook-registry",
|
|
4010
|
-
"socket2
|
|
4339
|
+
"socket2",
|
|
4011
4340
|
"tokio-macros",
|
|
4012
4341
|
"windows-sys 0.61.2",
|
|
4013
4342
|
]
|
|
4014
4343
|
|
|
4015
4344
|
[[package]]
|
|
4016
4345
|
name = "tokio-macros"
|
|
4017
|
-
version = "2.
|
|
4346
|
+
version = "2.7.1"
|
|
4018
4347
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4019
|
-
checksum = "
|
|
4348
|
+
checksum = "6328af13490e73a9b4694030fafd93f8c8c6a9dede33e821c3fc63eddf8042ba"
|
|
4020
4349
|
dependencies = [
|
|
4021
4350
|
"proc-macro2",
|
|
4022
4351
|
"quote",
|
|
4023
|
-
"syn 2.0.
|
|
4352
|
+
"syn 2.0.119",
|
|
4024
4353
|
]
|
|
4025
4354
|
|
|
4026
4355
|
[[package]]
|
|
@@ -4033,32 +4362,21 @@ dependencies = [
|
|
|
4033
4362
|
"tokio",
|
|
4034
4363
|
]
|
|
4035
4364
|
|
|
4036
|
-
[[package]]
|
|
4037
|
-
name = "tokio-rustls"
|
|
4038
|
-
version = "0.25.0"
|
|
4039
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4040
|
-
checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
|
|
4041
|
-
dependencies = [
|
|
4042
|
-
"rustls 0.22.4",
|
|
4043
|
-
"rustls-pki-types",
|
|
4044
|
-
"tokio",
|
|
4045
|
-
]
|
|
4046
|
-
|
|
4047
4365
|
[[package]]
|
|
4048
4366
|
name = "tokio-rustls"
|
|
4049
4367
|
version = "0.26.4"
|
|
4050
4368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4051
4369
|
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
4052
4370
|
dependencies = [
|
|
4053
|
-
"rustls
|
|
4371
|
+
"rustls",
|
|
4054
4372
|
"tokio",
|
|
4055
4373
|
]
|
|
4056
4374
|
|
|
4057
4375
|
[[package]]
|
|
4058
4376
|
name = "tokio-stream"
|
|
4059
|
-
version = "0.1.
|
|
4377
|
+
version = "0.1.19"
|
|
4060
4378
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4061
|
-
checksum = "
|
|
4379
|
+
checksum = "a3d06f0b082ba57c26b79407372e57cf2a1e28124f78e9479fe80322cf53420b"
|
|
4062
4380
|
dependencies = [
|
|
4063
4381
|
"futures-core",
|
|
4064
4382
|
"pin-project-lite",
|
|
@@ -4068,13 +4386,14 @@ dependencies = [
|
|
|
4068
4386
|
|
|
4069
4387
|
[[package]]
|
|
4070
4388
|
name = "tokio-util"
|
|
4071
|
-
version = "0.7.
|
|
4389
|
+
version = "0.7.19"
|
|
4072
4390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4073
|
-
checksum = "
|
|
4391
|
+
checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
|
|
4074
4392
|
dependencies = [
|
|
4075
4393
|
"bytes",
|
|
4076
4394
|
"futures-core",
|
|
4077
4395
|
"futures-sink",
|
|
4396
|
+
"libc",
|
|
4078
4397
|
"pin-project-lite",
|
|
4079
4398
|
"tokio",
|
|
4080
4399
|
]
|
|
@@ -4097,13 +4416,13 @@ version = "0.9.12+spec-1.1.0"
|
|
|
4097
4416
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4098
4417
|
checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
|
|
4099
4418
|
dependencies = [
|
|
4100
|
-
"indexmap",
|
|
4419
|
+
"indexmap 2.14.0",
|
|
4101
4420
|
"serde_core",
|
|
4102
|
-
"serde_spanned 1.
|
|
4421
|
+
"serde_spanned 1.1.1",
|
|
4103
4422
|
"toml_datetime 0.7.5+spec-1.1.0",
|
|
4104
4423
|
"toml_parser",
|
|
4105
4424
|
"toml_writer",
|
|
4106
|
-
"winnow",
|
|
4425
|
+
"winnow 0.7.15",
|
|
4107
4426
|
]
|
|
4108
4427
|
|
|
4109
4428
|
[[package]]
|
|
@@ -4124,18 +4443,27 @@ dependencies = [
|
|
|
4124
4443
|
"serde_core",
|
|
4125
4444
|
]
|
|
4126
4445
|
|
|
4446
|
+
[[package]]
|
|
4447
|
+
name = "toml_datetime"
|
|
4448
|
+
version = "1.1.1+spec-1.1.0"
|
|
4449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4450
|
+
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
|
4451
|
+
dependencies = [
|
|
4452
|
+
"serde_core",
|
|
4453
|
+
]
|
|
4454
|
+
|
|
4127
4455
|
[[package]]
|
|
4128
4456
|
name = "toml_edit"
|
|
4129
4457
|
version = "0.22.27"
|
|
4130
4458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4131
4459
|
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
4132
4460
|
dependencies = [
|
|
4133
|
-
"indexmap",
|
|
4461
|
+
"indexmap 2.14.0",
|
|
4134
4462
|
"serde",
|
|
4135
4463
|
"serde_spanned 0.6.9",
|
|
4136
4464
|
"toml_datetime 0.6.11",
|
|
4137
4465
|
"toml_write",
|
|
4138
|
-
"winnow",
|
|
4466
|
+
"winnow 0.7.15",
|
|
4139
4467
|
]
|
|
4140
4468
|
|
|
4141
4469
|
[[package]]
|
|
@@ -4144,20 +4472,32 @@ version = "0.23.10+spec-1.0.0"
|
|
|
4144
4472
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4145
4473
|
checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
|
|
4146
4474
|
dependencies = [
|
|
4147
|
-
"indexmap",
|
|
4475
|
+
"indexmap 2.14.0",
|
|
4148
4476
|
"toml_datetime 0.7.5+spec-1.1.0",
|
|
4149
4477
|
"toml_parser",
|
|
4150
4478
|
"toml_writer",
|
|
4151
|
-
"winnow",
|
|
4479
|
+
"winnow 0.7.15",
|
|
4480
|
+
]
|
|
4481
|
+
|
|
4482
|
+
[[package]]
|
|
4483
|
+
name = "toml_edit"
|
|
4484
|
+
version = "0.25.13+spec-1.1.0"
|
|
4485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4486
|
+
checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b"
|
|
4487
|
+
dependencies = [
|
|
4488
|
+
"indexmap 2.14.0",
|
|
4489
|
+
"toml_datetime 1.1.1+spec-1.1.0",
|
|
4490
|
+
"toml_parser",
|
|
4491
|
+
"winnow 1.0.4",
|
|
4152
4492
|
]
|
|
4153
4493
|
|
|
4154
4494
|
[[package]]
|
|
4155
4495
|
name = "toml_parser"
|
|
4156
|
-
version = "1.
|
|
4496
|
+
version = "1.1.2+spec-1.1.0"
|
|
4157
4497
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4158
|
-
checksum = "
|
|
4498
|
+
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
4159
4499
|
dependencies = [
|
|
4160
|
-
"winnow",
|
|
4500
|
+
"winnow 1.0.4",
|
|
4161
4501
|
]
|
|
4162
4502
|
|
|
4163
4503
|
[[package]]
|
|
@@ -4168,20 +4508,21 @@ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
|
4168
4508
|
|
|
4169
4509
|
[[package]]
|
|
4170
4510
|
name = "toml_writer"
|
|
4171
|
-
version = "1.
|
|
4511
|
+
version = "1.1.2+spec-1.1.0"
|
|
4172
4512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4173
|
-
checksum = "
|
|
4513
|
+
checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
|
|
4174
4514
|
|
|
4175
4515
|
[[package]]
|
|
4176
4516
|
name = "tonic"
|
|
4177
|
-
version = "0.
|
|
4517
|
+
version = "0.14.6"
|
|
4178
4518
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4179
|
-
checksum = "
|
|
4519
|
+
checksum = "ac2a5518c70fa84342385732db33fb3f44bc4cc748936eb5833d2df34d6445ef"
|
|
4180
4520
|
dependencies = [
|
|
4181
4521
|
"async-trait",
|
|
4182
4522
|
"axum",
|
|
4183
4523
|
"base64 0.22.1",
|
|
4184
4524
|
"bytes",
|
|
4525
|
+
"flate2",
|
|
4185
4526
|
"h2",
|
|
4186
4527
|
"http",
|
|
4187
4528
|
"http-body",
|
|
@@ -4191,11 +4532,11 @@ dependencies = [
|
|
|
4191
4532
|
"hyper-util",
|
|
4192
4533
|
"percent-encoding",
|
|
4193
4534
|
"pin-project",
|
|
4194
|
-
"
|
|
4195
|
-
"
|
|
4196
|
-
"
|
|
4535
|
+
"rustls-native-certs",
|
|
4536
|
+
"socket2",
|
|
4537
|
+
"sync_wrapper",
|
|
4197
4538
|
"tokio",
|
|
4198
|
-
"tokio-rustls
|
|
4539
|
+
"tokio-rustls",
|
|
4199
4540
|
"tokio-stream",
|
|
4200
4541
|
"tower",
|
|
4201
4542
|
"tower-layer",
|
|
@@ -4205,35 +4546,61 @@ dependencies = [
|
|
|
4205
4546
|
|
|
4206
4547
|
[[package]]
|
|
4207
4548
|
name = "tonic-build"
|
|
4208
|
-
version = "0.
|
|
4549
|
+
version = "0.14.6"
|
|
4209
4550
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4210
|
-
checksum = "
|
|
4551
|
+
checksum = "c68f61875ac5293cf72e6c8cf0158086428c82c37229e98c840878f1706b0322"
|
|
4211
4552
|
dependencies = [
|
|
4212
4553
|
"prettyplease",
|
|
4213
4554
|
"proc-macro2",
|
|
4214
|
-
"prost-build",
|
|
4215
|
-
"prost-types",
|
|
4216
4555
|
"quote",
|
|
4217
|
-
"syn 2.0.
|
|
4556
|
+
"syn 2.0.119",
|
|
4218
4557
|
]
|
|
4219
4558
|
|
|
4220
4559
|
[[package]]
|
|
4221
4560
|
name = "tonic-health"
|
|
4222
|
-
version = "0.
|
|
4561
|
+
version = "0.14.6"
|
|
4223
4562
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4224
|
-
checksum = "
|
|
4563
|
+
checksum = "fcfab99db777fba2802f0dfa861d1628d1ae916fb199d29819941f139ae85082"
|
|
4225
4564
|
dependencies = [
|
|
4226
4565
|
"prost",
|
|
4227
4566
|
"tokio",
|
|
4228
4567
|
"tokio-stream",
|
|
4229
4568
|
"tonic",
|
|
4569
|
+
"tonic-prost",
|
|
4570
|
+
]
|
|
4571
|
+
|
|
4572
|
+
[[package]]
|
|
4573
|
+
name = "tonic-prost"
|
|
4574
|
+
version = "0.14.6"
|
|
4575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4576
|
+
checksum = "50849f68853be452acf590cde0b146665b8d507b3b8af17261df47e02c209ea0"
|
|
4577
|
+
dependencies = [
|
|
4578
|
+
"bytes",
|
|
4579
|
+
"prost",
|
|
4580
|
+
"tonic",
|
|
4581
|
+
]
|
|
4582
|
+
|
|
4583
|
+
[[package]]
|
|
4584
|
+
name = "tonic-prost-build"
|
|
4585
|
+
version = "0.14.6"
|
|
4586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4587
|
+
checksum = "654e5643eff75d7f8c99197ce1440ed19a3474eada74c12bbac488b2cafdae27"
|
|
4588
|
+
dependencies = [
|
|
4589
|
+
"prettyplease",
|
|
4590
|
+
"proc-macro2",
|
|
4591
|
+
"prost-build",
|
|
4592
|
+
"prost-types",
|
|
4593
|
+
"quote",
|
|
4594
|
+
"syn 2.0.119",
|
|
4595
|
+
"tempfile",
|
|
4596
|
+
"tonic-build",
|
|
4230
4597
|
]
|
|
4231
4598
|
|
|
4232
4599
|
[[package]]
|
|
4233
4600
|
name = "tonic-web"
|
|
4234
|
-
version = "0.
|
|
4601
|
+
version = "0.14.6"
|
|
4235
4602
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4236
|
-
checksum = "
|
|
4603
|
+
checksum = "b5e6a1b6319ca4b61a4c0f0c94d439c8f3ed344cca56fe0df40e1fe4be11380b"
|
|
4237
4604
|
dependencies = [
|
|
4238
4605
|
"base64 0.22.1",
|
|
4239
4606
|
"bytes",
|
|
@@ -4255,7 +4622,7 @@ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
|
4255
4622
|
dependencies = [
|
|
4256
4623
|
"futures-core",
|
|
4257
4624
|
"futures-util",
|
|
4258
|
-
"indexmap",
|
|
4625
|
+
"indexmap 2.14.0",
|
|
4259
4626
|
"pin-project-lite",
|
|
4260
4627
|
"slab",
|
|
4261
4628
|
"sync_wrapper",
|
|
@@ -4285,20 +4652,22 @@ dependencies = [
|
|
|
4285
4652
|
|
|
4286
4653
|
[[package]]
|
|
4287
4654
|
name = "tower-http"
|
|
4288
|
-
version = "0.6.
|
|
4655
|
+
version = "0.6.11"
|
|
4289
4656
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4290
|
-
checksum = "
|
|
4657
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
4291
4658
|
dependencies = [
|
|
4292
4659
|
"bitflags",
|
|
4293
4660
|
"bytes",
|
|
4294
4661
|
"futures-util",
|
|
4295
4662
|
"http",
|
|
4296
4663
|
"http-body",
|
|
4297
|
-
"iri-string",
|
|
4298
4664
|
"pin-project-lite",
|
|
4299
4665
|
"tower",
|
|
4300
4666
|
"tower-layer",
|
|
4301
4667
|
"tower-service",
|
|
4668
|
+
"tracing",
|
|
4669
|
+
"url",
|
|
4670
|
+
"uuid",
|
|
4302
4671
|
]
|
|
4303
4672
|
|
|
4304
4673
|
[[package]]
|
|
@@ -4333,7 +4702,7 @@ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
|
4333
4702
|
dependencies = [
|
|
4334
4703
|
"proc-macro2",
|
|
4335
4704
|
"quote",
|
|
4336
|
-
"syn 2.0.
|
|
4705
|
+
"syn 2.0.119",
|
|
4337
4706
|
]
|
|
4338
4707
|
|
|
4339
4708
|
[[package]]
|
|
@@ -4359,14 +4728,12 @@ dependencies = [
|
|
|
4359
4728
|
|
|
4360
4729
|
[[package]]
|
|
4361
4730
|
name = "tracing-opentelemetry"
|
|
4362
|
-
version = "0.
|
|
4731
|
+
version = "0.32.1"
|
|
4363
4732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4364
|
-
checksum = "
|
|
4733
|
+
checksum = "1ac28f2d093c6c477eaa76b23525478f38de514fa9aeb1285738d4b97a9552fc"
|
|
4365
4734
|
dependencies = [
|
|
4366
4735
|
"js-sys",
|
|
4367
|
-
"once_cell",
|
|
4368
4736
|
"opentelemetry",
|
|
4369
|
-
"opentelemetry_sdk",
|
|
4370
4737
|
"smallvec",
|
|
4371
4738
|
"tracing",
|
|
4372
4739
|
"tracing-core",
|
|
@@ -4377,9 +4744,9 @@ dependencies = [
|
|
|
4377
4744
|
|
|
4378
4745
|
[[package]]
|
|
4379
4746
|
name = "tracing-subscriber"
|
|
4380
|
-
version = "0.3.
|
|
4747
|
+
version = "0.3.23"
|
|
4381
4748
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4382
|
-
checksum = "
|
|
4749
|
+
checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
|
|
4383
4750
|
dependencies = [
|
|
4384
4751
|
"matchers",
|
|
4385
4752
|
"nu-ansi-term",
|
|
@@ -4401,9 +4768,15 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
4401
4768
|
|
|
4402
4769
|
[[package]]
|
|
4403
4770
|
name = "typenum"
|
|
4404
|
-
version = "1.
|
|
4771
|
+
version = "1.20.1"
|
|
4772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4773
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
4774
|
+
|
|
4775
|
+
[[package]]
|
|
4776
|
+
name = "unarray"
|
|
4777
|
+
version = "0.1.4"
|
|
4405
4778
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4406
|
-
checksum = "
|
|
4779
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
4407
4780
|
|
|
4408
4781
|
[[package]]
|
|
4409
4782
|
name = "uncased"
|
|
@@ -4474,9 +4847,9 @@ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
|
|
|
4474
4847
|
|
|
4475
4848
|
[[package]]
|
|
4476
4849
|
name = "unicode-ident"
|
|
4477
|
-
version = "1.0.
|
|
4850
|
+
version = "1.0.24"
|
|
4478
4851
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4479
|
-
checksum = "
|
|
4852
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
4480
4853
|
|
|
4481
4854
|
[[package]]
|
|
4482
4855
|
name = "unicode-width"
|
|
@@ -4490,12 +4863,6 @@ version = "0.2.2"
|
|
|
4490
4863
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4491
4864
|
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
4492
4865
|
|
|
4493
|
-
[[package]]
|
|
4494
|
-
name = "unicode-xid"
|
|
4495
|
-
version = "0.2.6"
|
|
4496
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4497
|
-
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
4498
|
-
|
|
4499
4866
|
[[package]]
|
|
4500
4867
|
name = "unicode_names2"
|
|
4501
4868
|
version = "1.3.0"
|
|
@@ -4515,7 +4882,7 @@ dependencies = [
|
|
|
4515
4882
|
"getopts",
|
|
4516
4883
|
"log",
|
|
4517
4884
|
"phf_codegen",
|
|
4518
|
-
"rand 0.8.
|
|
4885
|
+
"rand 0.8.7",
|
|
4519
4886
|
]
|
|
4520
4887
|
|
|
4521
4888
|
[[package]]
|
|
@@ -4551,9 +4918,9 @@ dependencies = [
|
|
|
4551
4918
|
|
|
4552
4919
|
[[package]]
|
|
4553
4920
|
name = "urlpattern"
|
|
4554
|
-
version = "0.
|
|
4921
|
+
version = "0.6.0"
|
|
4555
4922
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4556
|
-
checksum = "
|
|
4923
|
+
checksum = "df16f50ef4cc145211879a3867ba757076b25dfee812040dcb0658bd9ae7904b"
|
|
4557
4924
|
dependencies = [
|
|
4558
4925
|
"icu_properties",
|
|
4559
4926
|
"regex",
|
|
@@ -4575,11 +4942,11 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
4575
4942
|
|
|
4576
4943
|
[[package]]
|
|
4577
4944
|
name = "uuid"
|
|
4578
|
-
version = "1.
|
|
4945
|
+
version = "1.24.0"
|
|
4579
4946
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4580
|
-
checksum = "
|
|
4947
|
+
checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
|
|
4581
4948
|
dependencies = [
|
|
4582
|
-
"getrandom 0.3
|
|
4949
|
+
"getrandom 0.4.3",
|
|
4583
4950
|
"js-sys",
|
|
4584
4951
|
"wasm-bindgen",
|
|
4585
4952
|
]
|
|
@@ -4592,9 +4959,9 @@ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
|
4592
4959
|
|
|
4593
4960
|
[[package]]
|
|
4594
4961
|
name = "value-bag"
|
|
4595
|
-
version = "1.
|
|
4962
|
+
version = "1.13.1"
|
|
4596
4963
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4597
|
-
checksum = "
|
|
4964
|
+
checksum = "ef73bfbaf3216cb59c205d7176bee1194e0d84348979da31f4a71fefe3c2054e"
|
|
4598
4965
|
|
|
4599
4966
|
[[package]]
|
|
4600
4967
|
name = "vcpkg"
|
|
@@ -4635,27 +5002,18 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
|
4635
5002
|
|
|
4636
5003
|
[[package]]
|
|
4637
5004
|
name = "wasip2"
|
|
4638
|
-
version = "1.0.
|
|
4639
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4640
|
-
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
4641
|
-
dependencies = [
|
|
4642
|
-
"wit-bindgen",
|
|
4643
|
-
]
|
|
4644
|
-
|
|
4645
|
-
[[package]]
|
|
4646
|
-
name = "wasip3"
|
|
4647
|
-
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
5005
|
+
version = "1.0.4+wasi-0.2.12"
|
|
4648
5006
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4649
|
-
checksum = "
|
|
5007
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
4650
5008
|
dependencies = [
|
|
4651
5009
|
"wit-bindgen",
|
|
4652
5010
|
]
|
|
4653
5011
|
|
|
4654
5012
|
[[package]]
|
|
4655
5013
|
name = "wasm-bindgen"
|
|
4656
|
-
version = "0.2.
|
|
5014
|
+
version = "0.2.126"
|
|
4657
5015
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4658
|
-
checksum = "
|
|
5016
|
+
checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
|
|
4659
5017
|
dependencies = [
|
|
4660
5018
|
"cfg-if",
|
|
4661
5019
|
"once_cell",
|
|
@@ -4666,23 +5024,19 @@ dependencies = [
|
|
|
4666
5024
|
|
|
4667
5025
|
[[package]]
|
|
4668
5026
|
name = "wasm-bindgen-futures"
|
|
4669
|
-
version = "0.4.
|
|
5027
|
+
version = "0.4.76"
|
|
4670
5028
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4671
|
-
checksum = "
|
|
5029
|
+
checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
|
|
4672
5030
|
dependencies = [
|
|
4673
|
-
"cfg-if",
|
|
4674
|
-
"futures-util",
|
|
4675
5031
|
"js-sys",
|
|
4676
|
-
"once_cell",
|
|
4677
5032
|
"wasm-bindgen",
|
|
4678
|
-
"web-sys",
|
|
4679
5033
|
]
|
|
4680
5034
|
|
|
4681
5035
|
[[package]]
|
|
4682
5036
|
name = "wasm-bindgen-macro"
|
|
4683
|
-
version = "0.2.
|
|
5037
|
+
version = "0.2.126"
|
|
4684
5038
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4685
|
-
checksum = "
|
|
5039
|
+
checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
|
|
4686
5040
|
dependencies = [
|
|
4687
5041
|
"quote",
|
|
4688
5042
|
"wasm-bindgen-macro-support",
|
|
@@ -4690,48 +5044,26 @@ dependencies = [
|
|
|
4690
5044
|
|
|
4691
5045
|
[[package]]
|
|
4692
5046
|
name = "wasm-bindgen-macro-support"
|
|
4693
|
-
version = "0.2.
|
|
5047
|
+
version = "0.2.126"
|
|
4694
5048
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4695
|
-
checksum = "
|
|
5049
|
+
checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
|
|
4696
5050
|
dependencies = [
|
|
4697
5051
|
"bumpalo",
|
|
4698
5052
|
"proc-macro2",
|
|
4699
5053
|
"quote",
|
|
4700
|
-
"syn 2.0.
|
|
5054
|
+
"syn 2.0.119",
|
|
4701
5055
|
"wasm-bindgen-shared",
|
|
4702
5056
|
]
|
|
4703
5057
|
|
|
4704
5058
|
[[package]]
|
|
4705
5059
|
name = "wasm-bindgen-shared"
|
|
4706
|
-
version = "0.2.
|
|
5060
|
+
version = "0.2.126"
|
|
4707
5061
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4708
|
-
checksum = "
|
|
5062
|
+
checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
|
|
4709
5063
|
dependencies = [
|
|
4710
5064
|
"unicode-ident",
|
|
4711
5065
|
]
|
|
4712
5066
|
|
|
4713
|
-
[[package]]
|
|
4714
|
-
name = "wasm-encoder"
|
|
4715
|
-
version = "0.244.0"
|
|
4716
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4717
|
-
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
4718
|
-
dependencies = [
|
|
4719
|
-
"leb128fmt",
|
|
4720
|
-
"wasmparser",
|
|
4721
|
-
]
|
|
4722
|
-
|
|
4723
|
-
[[package]]
|
|
4724
|
-
name = "wasm-metadata"
|
|
4725
|
-
version = "0.244.0"
|
|
4726
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4727
|
-
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
4728
|
-
dependencies = [
|
|
4729
|
-
"anyhow",
|
|
4730
|
-
"indexmap",
|
|
4731
|
-
"wasm-encoder",
|
|
4732
|
-
"wasmparser",
|
|
4733
|
-
]
|
|
4734
|
-
|
|
4735
5067
|
[[package]]
|
|
4736
5068
|
name = "wasm-streams"
|
|
4737
5069
|
version = "0.4.2"
|
|
@@ -4745,23 +5077,11 @@ dependencies = [
|
|
|
4745
5077
|
"web-sys",
|
|
4746
5078
|
]
|
|
4747
5079
|
|
|
4748
|
-
[[package]]
|
|
4749
|
-
name = "wasmparser"
|
|
4750
|
-
version = "0.244.0"
|
|
4751
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4752
|
-
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
4753
|
-
dependencies = [
|
|
4754
|
-
"bitflags",
|
|
4755
|
-
"hashbrown 0.15.5",
|
|
4756
|
-
"indexmap",
|
|
4757
|
-
"semver",
|
|
4758
|
-
]
|
|
4759
|
-
|
|
4760
5080
|
[[package]]
|
|
4761
5081
|
name = "web-sys"
|
|
4762
|
-
version = "0.3.
|
|
5082
|
+
version = "0.3.103"
|
|
4763
5083
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4764
|
-
checksum = "
|
|
5084
|
+
checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
|
|
4765
5085
|
dependencies = [
|
|
4766
5086
|
"js-sys",
|
|
4767
5087
|
"wasm-bindgen",
|
|
@@ -4779,9 +5099,9 @@ dependencies = [
|
|
|
4779
5099
|
|
|
4780
5100
|
[[package]]
|
|
4781
5101
|
name = "webbrowser"
|
|
4782
|
-
version = "1.1
|
|
5102
|
+
version = "1.2.1"
|
|
4783
5103
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4784
|
-
checksum = "
|
|
5104
|
+
checksum = "0fc95580916af1e68ff6a7be07446fc5db73ebf71cf092de939bbf5f7e189f72"
|
|
4785
5105
|
dependencies = [
|
|
4786
5106
|
"core-foundation 0.10.1",
|
|
4787
5107
|
"jni",
|
|
@@ -4794,20 +5114,19 @@ dependencies = [
|
|
|
4794
5114
|
]
|
|
4795
5115
|
|
|
4796
5116
|
[[package]]
|
|
4797
|
-
name = "webpki"
|
|
4798
|
-
version = "0.
|
|
5117
|
+
name = "webpki-root-certs"
|
|
5118
|
+
version = "1.0.9"
|
|
4799
5119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4800
|
-
checksum = "
|
|
5120
|
+
checksum = "b96554aa2acc8ccdb7e1c9a58a7a68dd5d13bccc69cd124cb09406db612a1c9b"
|
|
4801
5121
|
dependencies = [
|
|
4802
|
-
"
|
|
4803
|
-
"untrusted 0.9.0",
|
|
5122
|
+
"rustls-pki-types",
|
|
4804
5123
|
]
|
|
4805
5124
|
|
|
4806
5125
|
[[package]]
|
|
4807
5126
|
name = "webpki-roots"
|
|
4808
|
-
version = "1.0.
|
|
5127
|
+
version = "1.0.9"
|
|
4809
5128
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4810
|
-
checksum = "
|
|
5129
|
+
checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a"
|
|
4811
5130
|
dependencies = [
|
|
4812
5131
|
"rustls-pki-types",
|
|
4813
5132
|
]
|
|
@@ -4842,7 +5161,7 @@ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
|
4842
5161
|
dependencies = [
|
|
4843
5162
|
"proc-macro2",
|
|
4844
5163
|
"quote",
|
|
4845
|
-
"syn 2.0.
|
|
5164
|
+
"syn 2.0.119",
|
|
4846
5165
|
]
|
|
4847
5166
|
|
|
4848
5167
|
[[package]]
|
|
@@ -4853,7 +5172,7 @@ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
|
4853
5172
|
dependencies = [
|
|
4854
5173
|
"proc-macro2",
|
|
4855
5174
|
"quote",
|
|
4856
|
-
"syn 2.0.
|
|
5175
|
+
"syn 2.0.119",
|
|
4857
5176
|
]
|
|
4858
5177
|
|
|
4859
5178
|
[[package]]
|
|
@@ -4891,31 +5210,13 @@ dependencies = [
|
|
|
4891
5210
|
"windows-link",
|
|
4892
5211
|
]
|
|
4893
5212
|
|
|
4894
|
-
[[package]]
|
|
4895
|
-
name = "windows-sys"
|
|
4896
|
-
version = "0.45.0"
|
|
4897
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4898
|
-
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
4899
|
-
dependencies = [
|
|
4900
|
-
"windows-targets 0.42.2",
|
|
4901
|
-
]
|
|
4902
|
-
|
|
4903
5213
|
[[package]]
|
|
4904
5214
|
name = "windows-sys"
|
|
4905
5215
|
version = "0.52.0"
|
|
4906
5216
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4907
5217
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
4908
5218
|
dependencies = [
|
|
4909
|
-
"windows-targets
|
|
4910
|
-
]
|
|
4911
|
-
|
|
4912
|
-
[[package]]
|
|
4913
|
-
name = "windows-sys"
|
|
4914
|
-
version = "0.60.2"
|
|
4915
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4916
|
-
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
4917
|
-
dependencies = [
|
|
4918
|
-
"windows-targets 0.53.5",
|
|
5219
|
+
"windows-targets",
|
|
4919
5220
|
]
|
|
4920
5221
|
|
|
4921
5222
|
[[package]]
|
|
@@ -4927,294 +5228,99 @@ dependencies = [
|
|
|
4927
5228
|
"windows-link",
|
|
4928
5229
|
]
|
|
4929
5230
|
|
|
4930
|
-
[[package]]
|
|
4931
|
-
name = "windows-targets"
|
|
4932
|
-
version = "0.42.2"
|
|
4933
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4934
|
-
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
4935
|
-
dependencies = [
|
|
4936
|
-
"windows_aarch64_gnullvm 0.42.2",
|
|
4937
|
-
"windows_aarch64_msvc 0.42.2",
|
|
4938
|
-
"windows_i686_gnu 0.42.2",
|
|
4939
|
-
"windows_i686_msvc 0.42.2",
|
|
4940
|
-
"windows_x86_64_gnu 0.42.2",
|
|
4941
|
-
"windows_x86_64_gnullvm 0.42.2",
|
|
4942
|
-
"windows_x86_64_msvc 0.42.2",
|
|
4943
|
-
]
|
|
4944
|
-
|
|
4945
5231
|
[[package]]
|
|
4946
5232
|
name = "windows-targets"
|
|
4947
5233
|
version = "0.52.6"
|
|
4948
5234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4949
5235
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
4950
5236
|
dependencies = [
|
|
4951
|
-
"windows_aarch64_gnullvm
|
|
4952
|
-
"windows_aarch64_msvc
|
|
4953
|
-
"windows_i686_gnu
|
|
4954
|
-
"windows_i686_gnullvm
|
|
4955
|
-
"windows_i686_msvc
|
|
4956
|
-
"windows_x86_64_gnu
|
|
4957
|
-
"windows_x86_64_gnullvm
|
|
4958
|
-
"windows_x86_64_msvc
|
|
5237
|
+
"windows_aarch64_gnullvm",
|
|
5238
|
+
"windows_aarch64_msvc",
|
|
5239
|
+
"windows_i686_gnu",
|
|
5240
|
+
"windows_i686_gnullvm",
|
|
5241
|
+
"windows_i686_msvc",
|
|
5242
|
+
"windows_x86_64_gnu",
|
|
5243
|
+
"windows_x86_64_gnullvm",
|
|
5244
|
+
"windows_x86_64_msvc",
|
|
4959
5245
|
]
|
|
4960
5246
|
|
|
4961
|
-
[[package]]
|
|
4962
|
-
name = "windows-targets"
|
|
4963
|
-
version = "0.53.5"
|
|
4964
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4965
|
-
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
4966
|
-
dependencies = [
|
|
4967
|
-
"windows-link",
|
|
4968
|
-
"windows_aarch64_gnullvm 0.53.1",
|
|
4969
|
-
"windows_aarch64_msvc 0.53.1",
|
|
4970
|
-
"windows_i686_gnu 0.53.1",
|
|
4971
|
-
"windows_i686_gnullvm 0.53.1",
|
|
4972
|
-
"windows_i686_msvc 0.53.1",
|
|
4973
|
-
"windows_x86_64_gnu 0.53.1",
|
|
4974
|
-
"windows_x86_64_gnullvm 0.53.1",
|
|
4975
|
-
"windows_x86_64_msvc 0.53.1",
|
|
4976
|
-
]
|
|
4977
|
-
|
|
4978
|
-
[[package]]
|
|
4979
|
-
name = "windows_aarch64_gnullvm"
|
|
4980
|
-
version = "0.42.2"
|
|
4981
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4982
|
-
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
4983
|
-
|
|
4984
5247
|
[[package]]
|
|
4985
5248
|
name = "windows_aarch64_gnullvm"
|
|
4986
5249
|
version = "0.52.6"
|
|
4987
5250
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4988
5251
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
4989
5252
|
|
|
4990
|
-
[[package]]
|
|
4991
|
-
name = "windows_aarch64_gnullvm"
|
|
4992
|
-
version = "0.53.1"
|
|
4993
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4994
|
-
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
4995
|
-
|
|
4996
|
-
[[package]]
|
|
4997
|
-
name = "windows_aarch64_msvc"
|
|
4998
|
-
version = "0.42.2"
|
|
4999
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5000
|
-
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
5001
|
-
|
|
5002
5253
|
[[package]]
|
|
5003
5254
|
name = "windows_aarch64_msvc"
|
|
5004
5255
|
version = "0.52.6"
|
|
5005
5256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5006
5257
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
5007
5258
|
|
|
5008
|
-
[[package]]
|
|
5009
|
-
name = "windows_aarch64_msvc"
|
|
5010
|
-
version = "0.53.1"
|
|
5011
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5012
|
-
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
5013
|
-
|
|
5014
|
-
[[package]]
|
|
5015
|
-
name = "windows_i686_gnu"
|
|
5016
|
-
version = "0.42.2"
|
|
5017
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5018
|
-
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
5019
|
-
|
|
5020
5259
|
[[package]]
|
|
5021
5260
|
name = "windows_i686_gnu"
|
|
5022
5261
|
version = "0.52.6"
|
|
5023
5262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5024
5263
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
5025
5264
|
|
|
5026
|
-
[[package]]
|
|
5027
|
-
name = "windows_i686_gnu"
|
|
5028
|
-
version = "0.53.1"
|
|
5029
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5030
|
-
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
5031
|
-
|
|
5032
5265
|
[[package]]
|
|
5033
5266
|
name = "windows_i686_gnullvm"
|
|
5034
5267
|
version = "0.52.6"
|
|
5035
5268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5036
5269
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
5037
5270
|
|
|
5038
|
-
[[package]]
|
|
5039
|
-
name = "windows_i686_gnullvm"
|
|
5040
|
-
version = "0.53.1"
|
|
5041
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5042
|
-
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
5043
|
-
|
|
5044
|
-
[[package]]
|
|
5045
|
-
name = "windows_i686_msvc"
|
|
5046
|
-
version = "0.42.2"
|
|
5047
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5048
|
-
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
5049
|
-
|
|
5050
5271
|
[[package]]
|
|
5051
5272
|
name = "windows_i686_msvc"
|
|
5052
5273
|
version = "0.52.6"
|
|
5053
5274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5054
5275
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
5055
5276
|
|
|
5056
|
-
[[package]]
|
|
5057
|
-
name = "windows_i686_msvc"
|
|
5058
|
-
version = "0.53.1"
|
|
5059
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5060
|
-
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
5061
|
-
|
|
5062
|
-
[[package]]
|
|
5063
|
-
name = "windows_x86_64_gnu"
|
|
5064
|
-
version = "0.42.2"
|
|
5065
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5066
|
-
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
5067
|
-
|
|
5068
5277
|
[[package]]
|
|
5069
5278
|
name = "windows_x86_64_gnu"
|
|
5070
5279
|
version = "0.52.6"
|
|
5071
5280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5072
5281
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
5073
5282
|
|
|
5074
|
-
[[package]]
|
|
5075
|
-
name = "windows_x86_64_gnu"
|
|
5076
|
-
version = "0.53.1"
|
|
5077
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5078
|
-
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
5079
|
-
|
|
5080
|
-
[[package]]
|
|
5081
|
-
name = "windows_x86_64_gnullvm"
|
|
5082
|
-
version = "0.42.2"
|
|
5083
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5084
|
-
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
5085
|
-
|
|
5086
5283
|
[[package]]
|
|
5087
5284
|
name = "windows_x86_64_gnullvm"
|
|
5088
5285
|
version = "0.52.6"
|
|
5089
5286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5090
5287
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
5091
5288
|
|
|
5092
|
-
[[package]]
|
|
5093
|
-
name = "windows_x86_64_gnullvm"
|
|
5094
|
-
version = "0.53.1"
|
|
5095
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5096
|
-
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
5097
|
-
|
|
5098
|
-
[[package]]
|
|
5099
|
-
name = "windows_x86_64_msvc"
|
|
5100
|
-
version = "0.42.2"
|
|
5101
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5102
|
-
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
5103
|
-
|
|
5104
5289
|
[[package]]
|
|
5105
5290
|
name = "windows_x86_64_msvc"
|
|
5106
5291
|
version = "0.52.6"
|
|
5107
5292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5108
5293
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
5109
5294
|
|
|
5110
|
-
[[package]]
|
|
5111
|
-
name = "windows_x86_64_msvc"
|
|
5112
|
-
version = "0.53.1"
|
|
5113
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5114
|
-
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
5115
|
-
|
|
5116
5295
|
[[package]]
|
|
5117
5296
|
name = "winnow"
|
|
5118
|
-
version = "0.7.
|
|
5297
|
+
version = "0.7.15"
|
|
5119
5298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5120
|
-
checksum = "
|
|
5299
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
5121
5300
|
dependencies = [
|
|
5122
5301
|
"memchr",
|
|
5123
5302
|
]
|
|
5124
5303
|
|
|
5125
5304
|
[[package]]
|
|
5126
|
-
name = "
|
|
5127
|
-
version = "0.
|
|
5128
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5129
|
-
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
5130
|
-
dependencies = [
|
|
5131
|
-
"wit-bindgen-rust-macro",
|
|
5132
|
-
]
|
|
5133
|
-
|
|
5134
|
-
[[package]]
|
|
5135
|
-
name = "wit-bindgen-core"
|
|
5136
|
-
version = "0.51.0"
|
|
5137
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5138
|
-
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
5139
|
-
dependencies = [
|
|
5140
|
-
"anyhow",
|
|
5141
|
-
"heck",
|
|
5142
|
-
"wit-parser",
|
|
5143
|
-
]
|
|
5144
|
-
|
|
5145
|
-
[[package]]
|
|
5146
|
-
name = "wit-bindgen-rust"
|
|
5147
|
-
version = "0.51.0"
|
|
5148
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5149
|
-
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
5150
|
-
dependencies = [
|
|
5151
|
-
"anyhow",
|
|
5152
|
-
"heck",
|
|
5153
|
-
"indexmap",
|
|
5154
|
-
"prettyplease",
|
|
5155
|
-
"syn 2.0.114",
|
|
5156
|
-
"wasm-metadata",
|
|
5157
|
-
"wit-bindgen-core",
|
|
5158
|
-
"wit-component",
|
|
5159
|
-
]
|
|
5160
|
-
|
|
5161
|
-
[[package]]
|
|
5162
|
-
name = "wit-bindgen-rust-macro"
|
|
5163
|
-
version = "0.51.0"
|
|
5164
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5165
|
-
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
5166
|
-
dependencies = [
|
|
5167
|
-
"anyhow",
|
|
5168
|
-
"prettyplease",
|
|
5169
|
-
"proc-macro2",
|
|
5170
|
-
"quote",
|
|
5171
|
-
"syn 2.0.114",
|
|
5172
|
-
"wit-bindgen-core",
|
|
5173
|
-
"wit-bindgen-rust",
|
|
5174
|
-
]
|
|
5175
|
-
|
|
5176
|
-
[[package]]
|
|
5177
|
-
name = "wit-component"
|
|
5178
|
-
version = "0.244.0"
|
|
5305
|
+
name = "winnow"
|
|
5306
|
+
version = "1.0.4"
|
|
5179
5307
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5180
|
-
checksum = "
|
|
5308
|
+
checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
|
|
5181
5309
|
dependencies = [
|
|
5182
|
-
"
|
|
5183
|
-
"bitflags",
|
|
5184
|
-
"indexmap",
|
|
5185
|
-
"log",
|
|
5186
|
-
"serde",
|
|
5187
|
-
"serde_derive",
|
|
5188
|
-
"serde_json",
|
|
5189
|
-
"wasm-encoder",
|
|
5190
|
-
"wasm-metadata",
|
|
5191
|
-
"wasmparser",
|
|
5192
|
-
"wit-parser",
|
|
5310
|
+
"memchr",
|
|
5193
5311
|
]
|
|
5194
5312
|
|
|
5195
5313
|
[[package]]
|
|
5196
|
-
name = "wit-
|
|
5197
|
-
version = "0.
|
|
5314
|
+
name = "wit-bindgen"
|
|
5315
|
+
version = "0.57.1"
|
|
5198
5316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5199
|
-
checksum = "
|
|
5200
|
-
dependencies = [
|
|
5201
|
-
"anyhow",
|
|
5202
|
-
"id-arena",
|
|
5203
|
-
"indexmap",
|
|
5204
|
-
"log",
|
|
5205
|
-
"semver",
|
|
5206
|
-
"serde",
|
|
5207
|
-
"serde_derive",
|
|
5208
|
-
"serde_json",
|
|
5209
|
-
"unicode-xid",
|
|
5210
|
-
"wasmparser",
|
|
5211
|
-
]
|
|
5317
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
5212
5318
|
|
|
5213
5319
|
[[package]]
|
|
5214
5320
|
name = "writeable"
|
|
5215
|
-
version = "0.6.
|
|
5321
|
+
version = "0.6.3"
|
|
5216
5322
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5217
|
-
checksum = "
|
|
5323
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
5218
5324
|
|
|
5219
5325
|
[[package]]
|
|
5220
5326
|
name = "yansi"
|
|
@@ -5224,9 +5330,9 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
|
5224
5330
|
|
|
5225
5331
|
[[package]]
|
|
5226
5332
|
name = "yoke"
|
|
5227
|
-
version = "0.8.
|
|
5333
|
+
version = "0.8.3"
|
|
5228
5334
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5229
|
-
checksum = "
|
|
5335
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
5230
5336
|
dependencies = [
|
|
5231
5337
|
"stable_deref_trait",
|
|
5232
5338
|
"yoke-derive",
|
|
@@ -5235,68 +5341,82 @@ dependencies = [
|
|
|
5235
5341
|
|
|
5236
5342
|
[[package]]
|
|
5237
5343
|
name = "yoke-derive"
|
|
5238
|
-
version = "0.8.
|
|
5344
|
+
version = "0.8.2"
|
|
5239
5345
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5240
|
-
checksum = "
|
|
5346
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
5241
5347
|
dependencies = [
|
|
5242
5348
|
"proc-macro2",
|
|
5243
5349
|
"quote",
|
|
5244
|
-
"syn 2.0.
|
|
5350
|
+
"syn 2.0.119",
|
|
5245
5351
|
"synstructure",
|
|
5246
5352
|
]
|
|
5247
5353
|
|
|
5248
5354
|
[[package]]
|
|
5249
5355
|
name = "zerocopy"
|
|
5250
|
-
version = "0.8.
|
|
5356
|
+
version = "0.8.55"
|
|
5251
5357
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5252
|
-
checksum = "
|
|
5358
|
+
checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb"
|
|
5253
5359
|
dependencies = [
|
|
5254
5360
|
"zerocopy-derive",
|
|
5255
5361
|
]
|
|
5256
5362
|
|
|
5257
5363
|
[[package]]
|
|
5258
5364
|
name = "zerocopy-derive"
|
|
5259
|
-
version = "0.8.
|
|
5365
|
+
version = "0.8.55"
|
|
5260
5366
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5261
|
-
checksum = "
|
|
5367
|
+
checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb"
|
|
5262
5368
|
dependencies = [
|
|
5263
5369
|
"proc-macro2",
|
|
5264
5370
|
"quote",
|
|
5265
|
-
"syn 2.0.
|
|
5371
|
+
"syn 2.0.119",
|
|
5266
5372
|
]
|
|
5267
5373
|
|
|
5268
5374
|
[[package]]
|
|
5269
5375
|
name = "zerofrom"
|
|
5270
|
-
version = "0.1.
|
|
5376
|
+
version = "0.1.8"
|
|
5271
5377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5272
|
-
checksum = "
|
|
5378
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
5273
5379
|
dependencies = [
|
|
5274
5380
|
"zerofrom-derive",
|
|
5275
5381
|
]
|
|
5276
5382
|
|
|
5277
5383
|
[[package]]
|
|
5278
5384
|
name = "zerofrom-derive"
|
|
5279
|
-
version = "0.1.
|
|
5385
|
+
version = "0.1.7"
|
|
5280
5386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5281
|
-
checksum = "
|
|
5387
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
5282
5388
|
dependencies = [
|
|
5283
5389
|
"proc-macro2",
|
|
5284
5390
|
"quote",
|
|
5285
|
-
"syn 2.0.
|
|
5391
|
+
"syn 2.0.119",
|
|
5286
5392
|
"synstructure",
|
|
5287
5393
|
]
|
|
5288
5394
|
|
|
5289
5395
|
[[package]]
|
|
5290
5396
|
name = "zeroize"
|
|
5291
|
-
version = "1.
|
|
5397
|
+
version = "1.9.0"
|
|
5292
5398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5293
|
-
checksum = "
|
|
5399
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
5400
|
+
dependencies = [
|
|
5401
|
+
"zeroize_derive",
|
|
5402
|
+
]
|
|
5403
|
+
|
|
5404
|
+
[[package]]
|
|
5405
|
+
name = "zeroize_derive"
|
|
5406
|
+
version = "1.5.0"
|
|
5407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5408
|
+
checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
|
|
5409
|
+
dependencies = [
|
|
5410
|
+
"proc-macro2",
|
|
5411
|
+
"quote",
|
|
5412
|
+
"syn 2.0.119",
|
|
5413
|
+
]
|
|
5294
5414
|
|
|
5295
5415
|
[[package]]
|
|
5296
5416
|
name = "zerotrie"
|
|
5297
|
-
version = "0.2.
|
|
5417
|
+
version = "0.2.4"
|
|
5298
5418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5299
|
-
checksum = "
|
|
5419
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
5300
5420
|
dependencies = [
|
|
5301
5421
|
"displaydoc",
|
|
5302
5422
|
"yoke",
|
|
@@ -5305,9 +5425,9 @@ dependencies = [
|
|
|
5305
5425
|
|
|
5306
5426
|
[[package]]
|
|
5307
5427
|
name = "zerovec"
|
|
5308
|
-
version = "0.11.
|
|
5428
|
+
version = "0.11.6"
|
|
5309
5429
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5310
|
-
checksum = "
|
|
5430
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
5311
5431
|
dependencies = [
|
|
5312
5432
|
"yoke",
|
|
5313
5433
|
"zerofrom",
|
|
@@ -5316,17 +5436,17 @@ dependencies = [
|
|
|
5316
5436
|
|
|
5317
5437
|
[[package]]
|
|
5318
5438
|
name = "zerovec-derive"
|
|
5319
|
-
version = "0.11.
|
|
5439
|
+
version = "0.11.3"
|
|
5320
5440
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5321
|
-
checksum = "
|
|
5441
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
5322
5442
|
dependencies = [
|
|
5323
5443
|
"proc-macro2",
|
|
5324
5444
|
"quote",
|
|
5325
|
-
"syn 2.0.
|
|
5445
|
+
"syn 2.0.119",
|
|
5326
5446
|
]
|
|
5327
5447
|
|
|
5328
5448
|
[[package]]
|
|
5329
5449
|
name = "zmij"
|
|
5330
|
-
version = "1.0.
|
|
5450
|
+
version = "1.0.23"
|
|
5331
5451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5332
|
-
checksum = "
|
|
5452
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|