@temporalio/core-bridge 1.14.2-canary-release-testing.0 → 1.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Cargo.lock +794 -650
- package/bridge-macros/src/derive_tryintojs.rs +40 -0
- package/lib/native.d.ts +24 -3
- package/package.json +4 -4
- package/releases/aarch64-apple-darwin/index.node +0 -0
- package/releases/aarch64-unknown-linux-gnu/index.node +0 -0
- package/releases/x86_64-apple-darwin/index.node +0 -0
- package/releases/x86_64-pc-windows-msvc/index.node +0 -0
- package/releases/x86_64-unknown-linux-gnu/index.node +0 -0
- package/sdk-core/.github/workflows/per-pr.yml +6 -6
- package/sdk-core/AGENTS.md +42 -31
- package/sdk-core/Cargo.toml +4 -1
- package/sdk-core/README.md +19 -13
- package/sdk-core/crates/client/Cargo.toml +4 -0
- package/sdk-core/crates/client/README.md +139 -0
- package/sdk-core/crates/client/src/async_activity_handle.rs +297 -0
- package/sdk-core/crates/client/src/callback_based.rs +7 -0
- package/sdk-core/crates/client/src/errors.rs +294 -0
- package/sdk-core/crates/client/src/{raw.rs → grpc.rs} +370 -159
- package/sdk-core/crates/client/src/lib.rs +920 -1326
- package/sdk-core/crates/client/src/metrics.rs +24 -33
- package/sdk-core/crates/client/src/options_structs.rs +457 -0
- package/sdk-core/crates/client/src/replaceable.rs +5 -4
- package/sdk-core/crates/client/src/request_extensions.rs +8 -9
- package/sdk-core/crates/client/src/retry.rs +99 -54
- package/sdk-core/crates/client/src/{worker/mod.rs → worker.rs} +104 -29
- package/sdk-core/crates/client/src/workflow_handle.rs +826 -0
- package/sdk-core/crates/common/Cargo.toml +62 -3
- package/sdk-core/crates/common/build.rs +742 -12
- package/sdk-core/crates/common/protos/api_upstream/.github/workflows/ci.yml +2 -0
- package/sdk-core/crates/common/protos/api_upstream/.github/workflows/create-release.yml +0 -5
- package/sdk-core/crates/common/protos/api_upstream/Makefile +2 -1
- package/sdk-core/crates/common/protos/api_upstream/README.md +8 -0
- package/sdk-core/crates/common/protos/api_upstream/cmd/check-path-conflicts/main.go +137 -0
- package/sdk-core/crates/common/protos/api_upstream/openapi/openapiv2.json +3329 -2647
- package/sdk-core/crates/common/protos/api_upstream/openapi/openapiv3.yaml +2734 -708
- package/sdk-core/crates/common/protos/api_upstream/temporal/api/activity/v1/message.proto +155 -3
- package/sdk-core/crates/common/protos/api_upstream/temporal/api/command/v1/message.proto +26 -0
- package/sdk-core/crates/common/protos/api_upstream/temporal/api/common/v1/message.proto +8 -1
- package/sdk-core/crates/common/protos/api_upstream/temporal/api/deployment/v1/message.proto +27 -1
- package/sdk-core/crates/common/protos/api_upstream/temporal/api/enums/v1/activity.proto +81 -0
- package/sdk-core/crates/common/protos/api_upstream/temporal/api/enums/v1/event_type.proto +4 -0
- package/sdk-core/crates/common/protos/api_upstream/temporal/api/enums/v1/failed_cause.proto +4 -0
- package/sdk-core/crates/common/protos/api_upstream/temporal/api/enums/v1/task_queue.proto +15 -0
- package/sdk-core/crates/common/protos/api_upstream/temporal/api/enums/v1/workflow.proto +63 -15
- package/sdk-core/crates/common/protos/api_upstream/temporal/api/errordetails/v1/message.proto +8 -0
- package/sdk-core/crates/common/protos/api_upstream/temporal/api/failure/v1/message.proto +1 -0
- package/sdk-core/crates/common/protos/api_upstream/temporal/api/history/v1/message.proto +111 -17
- package/sdk-core/crates/common/protos/api_upstream/temporal/api/namespace/v1/message.proto +21 -0
- package/sdk-core/crates/common/protos/api_upstream/temporal/api/nexus/v1/message.proto +20 -1
- package/sdk-core/crates/common/protos/api_upstream/temporal/api/operatorservice/v1/request_response.proto +4 -0
- package/sdk-core/crates/common/protos/api_upstream/temporal/api/schedule/v1/message.proto +2 -2
- package/sdk-core/crates/common/protos/api_upstream/temporal/api/taskqueue/v1/message.proto +2 -0
- package/sdk-core/crates/common/protos/api_upstream/temporal/api/worker/v1/message.proto +4 -7
- package/sdk-core/crates/common/protos/api_upstream/temporal/api/workflow/v1/message.proto +80 -22
- package/sdk-core/crates/common/protos/api_upstream/temporal/api/workflowservice/v1/request_response.proto +347 -23
- package/sdk-core/crates/common/protos/api_upstream/temporal/api/workflowservice/v1/service.proto +242 -43
- package/sdk-core/crates/common/protos/local/temporal/sdk/core/core_interface.proto +15 -0
- package/sdk-core/crates/common/protos/local/temporal/sdk/core/nexus/nexus.proto +9 -2
- package/sdk-core/crates/common/protos/local/temporal/sdk/core/workflow_activation/workflow_activation.proto +8 -0
- package/sdk-core/crates/common/protos/local/temporal/sdk/core/workflow_commands/workflow_commands.proto +22 -5
- package/sdk-core/crates/common/src/activity_definition.rs +20 -0
- package/sdk-core/crates/common/src/data_converters.rs +770 -0
- package/sdk-core/crates/common/src/envconfig.rs +5 -0
- package/sdk-core/crates/common/src/lib.rs +15 -211
- package/sdk-core/crates/common/src/payload_visitor.rs +648 -0
- package/sdk-core/crates/common/src/priority.rs +110 -0
- package/sdk-core/crates/common/src/protos/canned_histories.rs +19 -0
- package/sdk-core/crates/common/src/protos/history_builder.rs +45 -0
- package/sdk-core/crates/common/src/protos/history_info.rs +2 -0
- package/sdk-core/crates/common/src/protos/mod.rs +134 -27
- package/sdk-core/crates/common/src/protos/task_token.rs +3 -3
- package/sdk-core/crates/common/src/protos/utilities.rs +11 -0
- package/sdk-core/crates/{sdk-core → common}/src/telemetry/log_export.rs +11 -16
- package/sdk-core/crates/common/src/telemetry/metrics/core.rs +125 -0
- package/sdk-core/crates/common/src/telemetry/metrics.rs +272 -225
- package/sdk-core/crates/{sdk-core → common}/src/telemetry/otel.rs +8 -13
- package/sdk-core/crates/{sdk-core → common}/src/telemetry/prometheus_meter.rs +49 -50
- package/sdk-core/crates/{sdk-core → common}/src/telemetry/prometheus_server.rs +2 -3
- package/sdk-core/crates/common/src/telemetry.rs +278 -19
- package/sdk-core/crates/common/src/worker.rs +68 -636
- package/sdk-core/crates/common/src/workflow_definition.rs +60 -0
- package/sdk-core/crates/macros/Cargo.toml +5 -1
- package/sdk-core/crates/macros/src/activities_definitions.rs +585 -0
- package/sdk-core/crates/macros/src/fsm_impl.rs +507 -0
- package/sdk-core/crates/macros/src/lib.rs +138 -512
- package/sdk-core/crates/macros/src/macro_utils.rs +106 -0
- package/sdk-core/crates/macros/src/workflow_definitions.rs +1224 -0
- package/sdk-core/crates/sdk/Cargo.toml +19 -6
- package/sdk-core/crates/sdk/README.md +415 -0
- package/sdk-core/crates/sdk/src/activities.rs +417 -0
- package/sdk-core/crates/sdk/src/interceptors.rs +1 -1
- package/sdk-core/crates/sdk/src/lib.rs +759 -442
- package/sdk-core/crates/sdk/src/workflow_context/options.rs +64 -35
- package/sdk-core/crates/sdk/src/workflow_context.rs +1033 -289
- package/sdk-core/crates/sdk/src/workflow_future.rs +277 -213
- package/sdk-core/crates/sdk/src/workflows.rs +711 -0
- package/sdk-core/crates/sdk-core/Cargo.toml +59 -65
- package/sdk-core/crates/sdk-core/benches/workflow_replay_bench.rs +45 -54
- package/sdk-core/crates/sdk-core/machine_coverage/ActivityMachine_Coverage.puml +1 -1
- package/sdk-core/crates/sdk-core/src/abstractions.rs +6 -10
- package/sdk-core/crates/sdk-core/src/core_tests/activity_tasks.rs +6 -5
- package/sdk-core/crates/sdk-core/src/core_tests/mod.rs +22 -21
- package/sdk-core/crates/sdk-core/src/core_tests/queries.rs +21 -25
- package/sdk-core/crates/sdk-core/src/core_tests/replay_flag.rs +7 -10
- package/sdk-core/crates/sdk-core/src/core_tests/updates.rs +14 -17
- package/sdk-core/crates/sdk-core/src/core_tests/workers.rs +647 -27
- package/sdk-core/crates/sdk-core/src/core_tests/workflow_tasks.rs +46 -41
- package/sdk-core/crates/sdk-core/src/ephemeral_server/mod.rs +13 -16
- package/sdk-core/crates/sdk-core/src/histfetch.rs +20 -10
- package/sdk-core/crates/sdk-core/src/lib.rs +60 -123
- package/sdk-core/crates/sdk-core/src/pollers/mod.rs +4 -9
- package/sdk-core/crates/sdk-core/src/pollers/poll_buffer.rs +411 -32
- package/sdk-core/crates/sdk-core/src/protosext/mod.rs +2 -2
- package/sdk-core/crates/sdk-core/src/replay/mod.rs +14 -5
- package/sdk-core/crates/sdk-core/src/telemetry/metrics.rs +183 -198
- package/sdk-core/crates/sdk-core/src/telemetry/mod.rs +3 -281
- package/sdk-core/crates/sdk-core/src/test_help/integ_helpers.rs +35 -16
- package/sdk-core/crates/sdk-core/src/test_help/unit_helpers.rs +3 -6
- package/sdk-core/crates/sdk-core/src/worker/activities/activity_heartbeat_manager.rs +1 -0
- package/sdk-core/crates/sdk-core/src/worker/activities/local_activities.rs +11 -14
- package/sdk-core/crates/sdk-core/src/worker/activities.rs +16 -19
- package/sdk-core/crates/sdk-core/src/worker/client/mocks.rs +11 -5
- package/sdk-core/crates/sdk-core/src/worker/client.rs +104 -86
- package/sdk-core/crates/sdk-core/src/worker/heartbeat.rs +10 -14
- package/sdk-core/crates/sdk-core/src/worker/mod.rs +1175 -241
- package/sdk-core/crates/sdk-core/src/worker/nexus.rs +150 -23
- package/sdk-core/crates/sdk-core/src/worker/slot_provider.rs +2 -2
- package/sdk-core/crates/sdk-core/src/worker/tuner/fixed_size.rs +2 -2
- package/sdk-core/crates/sdk-core/src/worker/tuner/resource_based.rs +25 -27
- package/sdk-core/crates/sdk-core/src/worker/tuner.rs +64 -44
- package/sdk-core/crates/sdk-core/src/worker/workflow/driven_workflow.rs +9 -3
- package/sdk-core/crates/sdk-core/src/worker/workflow/machines/patch_state_machine.rs +5 -8
- package/sdk-core/crates/sdk-core/src/worker/workflow/machines/upsert_search_attributes_state_machine.rs +21 -22
- package/sdk-core/crates/sdk-core/src/worker/workflow/machines/workflow_machines.rs +28 -4
- package/sdk-core/crates/sdk-core/src/worker/workflow/managed_run.rs +20 -41
- package/sdk-core/crates/sdk-core/src/worker/workflow/mod.rs +50 -9
- package/sdk-core/crates/sdk-core/src/worker/workflow/run_cache.rs +4 -7
- package/sdk-core/crates/sdk-core/src/worker/workflow/wft_extraction.rs +2 -4
- package/sdk-core/crates/sdk-core/src/worker/workflow/wft_poller.rs +8 -9
- package/sdk-core/crates/sdk-core/src/worker/workflow/workflow_stream.rs +1 -3
- package/sdk-core/crates/sdk-core/tests/activities_procmacro.rs +6 -0
- package/sdk-core/crates/sdk-core/tests/activities_trybuild/basic_pass.rs +54 -0
- package/sdk-core/crates/sdk-core/tests/activities_trybuild/invalid_self_type_fail.rs +18 -0
- package/sdk-core/crates/sdk-core/tests/activities_trybuild/invalid_self_type_fail.stderr +5 -0
- package/sdk-core/crates/sdk-core/tests/activities_trybuild/missing_context_fail.rs +14 -0
- package/sdk-core/crates/sdk-core/tests/activities_trybuild/missing_context_fail.stderr +5 -0
- package/sdk-core/crates/sdk-core/tests/activities_trybuild/multi_arg_pass.rs +48 -0
- package/sdk-core/crates/sdk-core/tests/activities_trybuild/no_input_pass.rs +14 -0
- package/sdk-core/crates/sdk-core/tests/activities_trybuild/no_return_type_pass.rs +19 -0
- package/sdk-core/crates/sdk-core/tests/cloud_tests.rs +14 -5
- package/sdk-core/crates/sdk-core/tests/common/activity_functions.rs +55 -0
- package/sdk-core/crates/sdk-core/tests/common/mod.rs +281 -236
- package/sdk-core/crates/sdk-core/tests/common/workflows.rs +41 -28
- package/sdk-core/crates/sdk-core/tests/global_metric_tests.rs +9 -14
- package/sdk-core/crates/sdk-core/tests/heavy_tests/fuzzy_workflow.rs +73 -66
- package/sdk-core/crates/sdk-core/tests/heavy_tests.rs +306 -268
- package/sdk-core/crates/sdk-core/tests/integ_tests/async_activity_client_tests.rs +230 -0
- package/sdk-core/crates/sdk-core/tests/integ_tests/client_tests.rs +94 -57
- package/sdk-core/crates/sdk-core/tests/integ_tests/data_converter_tests.rs +381 -0
- package/sdk-core/crates/sdk-core/tests/integ_tests/ephemeral_server_tests.rs +37 -38
- package/sdk-core/crates/sdk-core/tests/integ_tests/heartbeat_tests.rs +49 -40
- package/sdk-core/crates/sdk-core/tests/integ_tests/metrics_tests.rs +447 -300
- package/sdk-core/crates/sdk-core/tests/integ_tests/pagination_tests.rs +50 -45
- package/sdk-core/crates/sdk-core/tests/integ_tests/polling_tests.rs +157 -157
- package/sdk-core/crates/sdk-core/tests/integ_tests/queries_tests.rs +103 -89
- package/sdk-core/crates/sdk-core/tests/integ_tests/update_tests.rs +609 -463
- package/sdk-core/crates/sdk-core/tests/integ_tests/visibility_tests.rs +80 -62
- package/sdk-core/crates/sdk-core/tests/integ_tests/worker_heartbeat_tests.rs +389 -265
- package/sdk-core/crates/sdk-core/tests/integ_tests/worker_tests.rs +250 -185
- package/sdk-core/crates/sdk-core/tests/integ_tests/worker_versioning_tests.rs +52 -49
- package/sdk-core/crates/sdk-core/tests/integ_tests/workflow_client_tests.rs +180 -0
- package/sdk-core/crates/sdk-core/tests/integ_tests/workflow_tests/activities.rs +437 -327
- package/sdk-core/crates/sdk-core/tests/integ_tests/workflow_tests/cancel_external.rs +82 -58
- package/sdk-core/crates/sdk-core/tests/integ_tests/workflow_tests/cancel_wf.rs +56 -30
- package/sdk-core/crates/sdk-core/tests/integ_tests/workflow_tests/child_workflows.rs +364 -251
- package/sdk-core/crates/sdk-core/tests/integ_tests/workflow_tests/client_interactions.rs +552 -0
- package/sdk-core/crates/sdk-core/tests/integ_tests/workflow_tests/continue_as_new.rs +110 -46
- package/sdk-core/crates/sdk-core/tests/integ_tests/workflow_tests/determinism.rs +243 -149
- package/sdk-core/crates/sdk-core/tests/integ_tests/workflow_tests/eager.rs +98 -32
- package/sdk-core/crates/sdk-core/tests/integ_tests/workflow_tests/local_activities.rs +1475 -1040
- package/sdk-core/crates/sdk-core/tests/integ_tests/workflow_tests/modify_wf_properties.rs +73 -43
- package/sdk-core/crates/sdk-core/tests/integ_tests/workflow_tests/nexus.rs +402 -245
- package/sdk-core/crates/sdk-core/tests/integ_tests/workflow_tests/patches.rs +343 -207
- package/sdk-core/crates/sdk-core/tests/integ_tests/workflow_tests/queries.rs +415 -0
- package/sdk-core/crates/sdk-core/tests/integ_tests/workflow_tests/replay.rs +96 -36
- package/sdk-core/crates/sdk-core/tests/integ_tests/workflow_tests/resets.rs +155 -140
- package/sdk-core/crates/sdk-core/tests/integ_tests/workflow_tests/signals.rs +183 -113
- package/sdk-core/crates/sdk-core/tests/integ_tests/workflow_tests/stickyness.rs +85 -44
- package/sdk-core/crates/sdk-core/tests/integ_tests/workflow_tests/timers.rs +142 -48
- package/sdk-core/crates/sdk-core/tests/integ_tests/workflow_tests/upsert_search_attrs.rs +73 -56
- package/sdk-core/crates/sdk-core/tests/integ_tests/workflow_tests.rs +365 -242
- package/sdk-core/crates/sdk-core/tests/main.rs +22 -16
- package/sdk-core/crates/sdk-core/tests/manual_tests.rs +233 -187
- package/sdk-core/crates/sdk-core/tests/runner.rs +4 -6
- package/sdk-core/crates/sdk-core/tests/shared_tests/mod.rs +73 -27
- package/sdk-core/crates/sdk-core/tests/shared_tests/priority.rs +107 -84
- package/sdk-core/crates/sdk-core/tests/workflows_procmacro.rs +6 -0
- package/sdk-core/crates/sdk-core/tests/workflows_trybuild/async_query_fail.rs +26 -0
- package/sdk-core/crates/sdk-core/tests/workflows_trybuild/async_query_fail.stderr +5 -0
- package/sdk-core/crates/sdk-core/tests/workflows_trybuild/basic_pass.rs +49 -0
- package/sdk-core/crates/sdk-core/tests/workflows_trybuild/minimal_pass.rs +21 -0
- package/sdk-core/crates/sdk-core/tests/workflows_trybuild/mut_query_fail.rs +26 -0
- package/sdk-core/crates/sdk-core/tests/workflows_trybuild/mut_query_fail.stderr +5 -0
- package/sdk-core/crates/sdk-core/tests/workflows_trybuild/sync_run_fail.rs +21 -0
- package/sdk-core/crates/sdk-core/tests/workflows_trybuild/sync_run_fail.stderr +5 -0
- package/sdk-core/crates/sdk-core-c-bridge/Cargo.toml +8 -1
- package/sdk-core/crates/sdk-core-c-bridge/include/temporal-sdk-core-c-bridge.h +37 -26
- package/sdk-core/crates/sdk-core-c-bridge/src/client.rs +180 -87
- package/sdk-core/crates/sdk-core-c-bridge/src/lib.rs +89 -5
- package/sdk-core/crates/sdk-core-c-bridge/src/metric.rs +10 -16
- package/sdk-core/crates/sdk-core-c-bridge/src/runtime.rs +59 -67
- package/sdk-core/crates/sdk-core-c-bridge/src/testing.rs +10 -10
- package/sdk-core/crates/sdk-core-c-bridge/src/tests/context.rs +57 -22
- package/sdk-core/crates/sdk-core-c-bridge/src/tests/mod.rs +108 -12
- package/sdk-core/crates/sdk-core-c-bridge/src/tests/utils.rs +9 -52
- package/sdk-core/crates/sdk-core-c-bridge/src/worker.rs +74 -91
- package/sdk-core/rustfmt.toml +2 -1
- package/src/client.rs +206 -289
- package/src/helpers/try_into_js.rs +88 -2
- package/src/metrics.rs +277 -35
- package/src/runtime.rs +94 -45
- package/src/testing.rs +9 -16
- package/src/worker.rs +86 -68
- package/ts/native.ts +39 -3
- package/sdk-core/crates/client/src/workflow_handle/mod.rs +0 -212
- package/sdk-core/crates/common/src/errors.rs +0 -85
- package/sdk-core/crates/common/tests/worker_task_types_test.rs +0 -129
- package/sdk-core/crates/macros/LICENSE.txt +0 -21
- package/sdk-core/crates/sdk/src/activity_context.rs +0 -238
- package/sdk-core/crates/sdk/src/app_data.rs +0 -37
- package/sdk-core/crates/sdk-core/tests/integ_tests/activity_functions.rs +0 -5
- package/sdk-core/crates/sdk-core/tests/integ_tests/workflow_tests/appdata_propagation.rs +0 -61
package/Cargo.lock
CHANGED
|
@@ -2,15 +2,6 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 4
|
|
4
4
|
|
|
5
|
-
[[package]]
|
|
6
|
-
name = "addr2line"
|
|
7
|
-
version = "0.24.2"
|
|
8
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
|
10
|
-
dependencies = [
|
|
11
|
-
"gimli",
|
|
12
|
-
]
|
|
13
|
-
|
|
14
5
|
[[package]]
|
|
15
6
|
name = "adler2"
|
|
16
7
|
version = "2.0.1"
|
|
@@ -19,9 +10,9 @@ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
|
19
10
|
|
|
20
11
|
[[package]]
|
|
21
12
|
name = "aho-corasick"
|
|
22
|
-
version = "1.1.
|
|
13
|
+
version = "1.1.4"
|
|
23
14
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
-
checksum = "
|
|
15
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
25
16
|
dependencies = [
|
|
26
17
|
"memchr",
|
|
27
18
|
]
|
|
@@ -34,15 +25,15 @@ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
|
34
25
|
|
|
35
26
|
[[package]]
|
|
36
27
|
name = "anstyle"
|
|
37
|
-
version = "1.0.
|
|
28
|
+
version = "1.0.13"
|
|
38
29
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
-
checksum = "
|
|
30
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
40
31
|
|
|
41
32
|
[[package]]
|
|
42
33
|
name = "anyhow"
|
|
43
|
-
version = "1.0.
|
|
34
|
+
version = "1.0.101"
|
|
44
35
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
-
checksum = "
|
|
36
|
+
checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea"
|
|
46
37
|
|
|
47
38
|
[[package]]
|
|
48
39
|
name = "arbitrary"
|
|
@@ -78,9 +69,9 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
|
78
69
|
|
|
79
70
|
[[package]]
|
|
80
71
|
name = "axum"
|
|
81
|
-
version = "0.8.
|
|
72
|
+
version = "0.8.8"
|
|
82
73
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
-
checksum = "
|
|
74
|
+
checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
|
|
84
75
|
dependencies = [
|
|
85
76
|
"axum-core",
|
|
86
77
|
"bytes",
|
|
@@ -94,8 +85,7 @@ dependencies = [
|
|
|
94
85
|
"mime",
|
|
95
86
|
"percent-encoding",
|
|
96
87
|
"pin-project-lite",
|
|
97
|
-
"
|
|
98
|
-
"serde",
|
|
88
|
+
"serde_core",
|
|
99
89
|
"sync_wrapper",
|
|
100
90
|
"tower",
|
|
101
91
|
"tower-layer",
|
|
@@ -104,9 +94,9 @@ dependencies = [
|
|
|
104
94
|
|
|
105
95
|
[[package]]
|
|
106
96
|
name = "axum-core"
|
|
107
|
-
version = "0.5.
|
|
97
|
+
version = "0.5.6"
|
|
108
98
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
-
checksum = "
|
|
99
|
+
checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
|
|
110
100
|
dependencies = [
|
|
111
101
|
"bytes",
|
|
112
102
|
"futures-core",
|
|
@@ -115,7 +105,6 @@ dependencies = [
|
|
|
115
105
|
"http-body-util",
|
|
116
106
|
"mime",
|
|
117
107
|
"pin-project-lite",
|
|
118
|
-
"rustversion",
|
|
119
108
|
"sync_wrapper",
|
|
120
109
|
"tower-layer",
|
|
121
110
|
"tower-service",
|
|
@@ -127,26 +116,11 @@ version = "0.4.0"
|
|
|
127
116
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
117
|
checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1"
|
|
129
118
|
dependencies = [
|
|
130
|
-
"getrandom 0.2.
|
|
119
|
+
"getrandom 0.2.17",
|
|
131
120
|
"instant",
|
|
132
121
|
"rand 0.8.5",
|
|
133
122
|
]
|
|
134
123
|
|
|
135
|
-
[[package]]
|
|
136
|
-
name = "backtrace"
|
|
137
|
-
version = "0.3.75"
|
|
138
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
-
checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
|
|
140
|
-
dependencies = [
|
|
141
|
-
"addr2line",
|
|
142
|
-
"cfg-if",
|
|
143
|
-
"libc",
|
|
144
|
-
"miniz_oxide",
|
|
145
|
-
"object",
|
|
146
|
-
"rustc-demangle",
|
|
147
|
-
"windows-targets 0.52.6",
|
|
148
|
-
]
|
|
149
|
-
|
|
150
124
|
[[package]]
|
|
151
125
|
name = "base64"
|
|
152
126
|
version = "0.22.1"
|
|
@@ -155,15 +129,15 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
|
155
129
|
|
|
156
130
|
[[package]]
|
|
157
131
|
name = "bitflags"
|
|
158
|
-
version = "2.
|
|
132
|
+
version = "2.10.0"
|
|
159
133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
-
checksum = "
|
|
134
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
161
135
|
|
|
162
136
|
[[package]]
|
|
163
137
|
name = "bon"
|
|
164
|
-
version = "3.8.
|
|
138
|
+
version = "3.8.2"
|
|
165
139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
-
checksum = "
|
|
140
|
+
checksum = "234655ec178edd82b891e262ea7cf71f6584bcd09eff94db786be23f1821825c"
|
|
167
141
|
dependencies = [
|
|
168
142
|
"bon-macros",
|
|
169
143
|
"rustversion",
|
|
@@ -171,11 +145,11 @@ dependencies = [
|
|
|
171
145
|
|
|
172
146
|
[[package]]
|
|
173
147
|
name = "bon-macros"
|
|
174
|
-
version = "3.8.
|
|
148
|
+
version = "3.8.2"
|
|
175
149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
-
checksum = "
|
|
150
|
+
checksum = "89ec27229c38ed0eb3c0feee3d2c1d6a4379ae44f418a29a658890e062d8f365"
|
|
177
151
|
dependencies = [
|
|
178
|
-
"darling
|
|
152
|
+
"darling",
|
|
179
153
|
"ident_case",
|
|
180
154
|
"prettyplease",
|
|
181
155
|
"proc-macro2",
|
|
@@ -188,7 +162,7 @@ dependencies = [
|
|
|
188
162
|
name = "bridge-macros"
|
|
189
163
|
version = "0.1.0"
|
|
190
164
|
dependencies = [
|
|
191
|
-
"convert_case",
|
|
165
|
+
"convert_case 0.6.0",
|
|
192
166
|
"proc-macro2",
|
|
193
167
|
"quote",
|
|
194
168
|
"syn",
|
|
@@ -196,31 +170,32 @@ dependencies = [
|
|
|
196
170
|
|
|
197
171
|
[[package]]
|
|
198
172
|
name = "bumpalo"
|
|
199
|
-
version = "3.19.
|
|
173
|
+
version = "3.19.1"
|
|
200
174
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
-
checksum = "
|
|
175
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
202
176
|
|
|
203
177
|
[[package]]
|
|
204
178
|
name = "bytes"
|
|
205
|
-
version = "1.
|
|
179
|
+
version = "1.11.1"
|
|
206
180
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
-
checksum = "
|
|
181
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
208
182
|
|
|
209
183
|
[[package]]
|
|
210
184
|
name = "bzip2"
|
|
211
|
-
version = "0.6.
|
|
185
|
+
version = "0.6.1"
|
|
212
186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
-
checksum = "
|
|
187
|
+
checksum = "f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c"
|
|
214
188
|
dependencies = [
|
|
215
189
|
"libbz2-rs-sys",
|
|
216
190
|
]
|
|
217
191
|
|
|
218
192
|
[[package]]
|
|
219
193
|
name = "cc"
|
|
220
|
-
version = "1.2.
|
|
194
|
+
version = "1.2.55"
|
|
221
195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
-
checksum = "
|
|
196
|
+
checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29"
|
|
223
197
|
dependencies = [
|
|
198
|
+
"find-msvc-tools",
|
|
224
199
|
"jobserver",
|
|
225
200
|
"libc",
|
|
226
201
|
"shlex",
|
|
@@ -228,9 +203,9 @@ dependencies = [
|
|
|
228
203
|
|
|
229
204
|
[[package]]
|
|
230
205
|
name = "cfg-if"
|
|
231
|
-
version = "1.0.
|
|
206
|
+
version = "1.0.4"
|
|
232
207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
-
checksum = "
|
|
208
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
234
209
|
|
|
235
210
|
[[package]]
|
|
236
211
|
name = "cfg_aliases"
|
|
@@ -240,9 +215,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
|
240
215
|
|
|
241
216
|
[[package]]
|
|
242
217
|
name = "chrono"
|
|
243
|
-
version = "0.4.
|
|
218
|
+
version = "0.4.43"
|
|
244
219
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
245
|
-
checksum = "
|
|
220
|
+
checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
|
|
246
221
|
dependencies = [
|
|
247
222
|
"num-traits",
|
|
248
223
|
"serde",
|
|
@@ -257,6 +232,15 @@ dependencies = [
|
|
|
257
232
|
"unicode-segmentation",
|
|
258
233
|
]
|
|
259
234
|
|
|
235
|
+
[[package]]
|
|
236
|
+
name = "convert_case"
|
|
237
|
+
version = "0.10.0"
|
|
238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
+
checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
|
|
240
|
+
dependencies = [
|
|
241
|
+
"unicode-segmentation",
|
|
242
|
+
]
|
|
243
|
+
|
|
260
244
|
[[package]]
|
|
261
245
|
name = "core-foundation"
|
|
262
246
|
version = "0.10.1"
|
|
@@ -308,45 +292,20 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
|
308
292
|
|
|
309
293
|
[[package]]
|
|
310
294
|
name = "darling"
|
|
311
|
-
version = "0.
|
|
312
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
-
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
314
|
-
dependencies = [
|
|
315
|
-
"darling_core 0.20.11",
|
|
316
|
-
"darling_macro 0.20.11",
|
|
317
|
-
]
|
|
318
|
-
|
|
319
|
-
[[package]]
|
|
320
|
-
name = "darling"
|
|
321
|
-
version = "0.21.3"
|
|
295
|
+
version = "0.23.0"
|
|
322
296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
-
checksum = "
|
|
297
|
+
checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
|
|
324
298
|
dependencies = [
|
|
325
|
-
"darling_core
|
|
326
|
-
"darling_macro
|
|
299
|
+
"darling_core",
|
|
300
|
+
"darling_macro",
|
|
327
301
|
]
|
|
328
302
|
|
|
329
303
|
[[package]]
|
|
330
304
|
name = "darling_core"
|
|
331
|
-
version = "0.
|
|
305
|
+
version = "0.23.0"
|
|
332
306
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
-
checksum = "
|
|
307
|
+
checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
|
|
334
308
|
dependencies = [
|
|
335
|
-
"fnv",
|
|
336
|
-
"ident_case",
|
|
337
|
-
"proc-macro2",
|
|
338
|
-
"quote",
|
|
339
|
-
"strsim",
|
|
340
|
-
"syn",
|
|
341
|
-
]
|
|
342
|
-
|
|
343
|
-
[[package]]
|
|
344
|
-
name = "darling_core"
|
|
345
|
-
version = "0.21.3"
|
|
346
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
-
checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
|
|
348
|
-
dependencies = [
|
|
349
|
-
"fnv",
|
|
350
309
|
"ident_case",
|
|
351
310
|
"proc-macro2",
|
|
352
311
|
"quote",
|
|
@@ -356,22 +315,11 @@ dependencies = [
|
|
|
356
315
|
|
|
357
316
|
[[package]]
|
|
358
317
|
name = "darling_macro"
|
|
359
|
-
version = "0.
|
|
318
|
+
version = "0.23.0"
|
|
360
319
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
|
-
checksum = "
|
|
320
|
+
checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
|
|
362
321
|
dependencies = [
|
|
363
|
-
"darling_core
|
|
364
|
-
"quote",
|
|
365
|
-
"syn",
|
|
366
|
-
]
|
|
367
|
-
|
|
368
|
-
[[package]]
|
|
369
|
-
name = "darling_macro"
|
|
370
|
-
version = "0.21.3"
|
|
371
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
-
checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
|
|
373
|
-
dependencies = [
|
|
374
|
-
"darling_core 0.21.3",
|
|
322
|
+
"darling_core",
|
|
375
323
|
"quote",
|
|
376
324
|
"syn",
|
|
377
325
|
]
|
|
@@ -402,55 +350,47 @@ dependencies = [
|
|
|
402
350
|
]
|
|
403
351
|
|
|
404
352
|
[[package]]
|
|
405
|
-
name = "
|
|
406
|
-
version = "
|
|
353
|
+
name = "derive_more"
|
|
354
|
+
version = "2.1.1"
|
|
407
355
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
-
checksum = "
|
|
356
|
+
checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
|
|
409
357
|
dependencies = [
|
|
410
|
-
"
|
|
358
|
+
"derive_more-impl",
|
|
411
359
|
]
|
|
412
360
|
|
|
413
361
|
[[package]]
|
|
414
|
-
name = "
|
|
415
|
-
version = "
|
|
362
|
+
name = "derive_more-impl"
|
|
363
|
+
version = "2.1.1"
|
|
416
364
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
-
checksum = "
|
|
365
|
+
checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
|
|
418
366
|
dependencies = [
|
|
419
|
-
"
|
|
367
|
+
"convert_case 0.10.0",
|
|
420
368
|
"proc-macro2",
|
|
421
369
|
"quote",
|
|
370
|
+
"rustc_version",
|
|
422
371
|
"syn",
|
|
372
|
+
"unicode-xid",
|
|
423
373
|
]
|
|
424
374
|
|
|
425
375
|
[[package]]
|
|
426
|
-
name = "
|
|
427
|
-
version = "0.
|
|
428
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
-
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
|
430
|
-
dependencies = [
|
|
431
|
-
"derive_builder_core",
|
|
432
|
-
"syn",
|
|
433
|
-
]
|
|
434
|
-
|
|
435
|
-
[[package]]
|
|
436
|
-
name = "derive_more"
|
|
437
|
-
version = "2.0.1"
|
|
376
|
+
name = "dirs"
|
|
377
|
+
version = "6.0.0"
|
|
438
378
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
-
checksum = "
|
|
379
|
+
checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
|
|
440
380
|
dependencies = [
|
|
441
|
-
"
|
|
381
|
+
"dirs-sys",
|
|
442
382
|
]
|
|
443
383
|
|
|
444
384
|
[[package]]
|
|
445
|
-
name = "
|
|
446
|
-
version = "
|
|
385
|
+
name = "dirs-sys"
|
|
386
|
+
version = "0.5.0"
|
|
447
387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
448
|
-
checksum = "
|
|
388
|
+
checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
|
|
449
389
|
dependencies = [
|
|
450
|
-
"
|
|
451
|
-
"
|
|
452
|
-
"
|
|
453
|
-
"
|
|
390
|
+
"libc",
|
|
391
|
+
"option-ext",
|
|
392
|
+
"redox_users",
|
|
393
|
+
"windows-sys 0.60.2",
|
|
454
394
|
]
|
|
455
395
|
|
|
456
396
|
[[package]]
|
|
@@ -484,18 +424,18 @@ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
|
484
424
|
|
|
485
425
|
[[package]]
|
|
486
426
|
name = "enum-iterator"
|
|
487
|
-
version = "2.
|
|
427
|
+
version = "2.3.0"
|
|
488
428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
-
checksum = "
|
|
429
|
+
checksum = "a4549325971814bda7a44061bf3fe7e487d447cba01e4220a4b454d630d7a016"
|
|
490
430
|
dependencies = [
|
|
491
431
|
"enum-iterator-derive",
|
|
492
432
|
]
|
|
493
433
|
|
|
494
434
|
[[package]]
|
|
495
435
|
name = "enum-iterator-derive"
|
|
496
|
-
version = "1.
|
|
436
|
+
version = "1.5.0"
|
|
497
437
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
-
checksum = "
|
|
438
|
+
checksum = "685adfa4d6f3d765a26bc5dbc936577de9abf756c1feeb3089b01dd395034842"
|
|
499
439
|
dependencies = [
|
|
500
440
|
"proc-macro2",
|
|
501
441
|
"quote",
|
|
@@ -522,22 +462,23 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
|
522
462
|
|
|
523
463
|
[[package]]
|
|
524
464
|
name = "erased-serde"
|
|
525
|
-
version = "0.4.
|
|
465
|
+
version = "0.4.9"
|
|
526
466
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
527
|
-
checksum = "
|
|
467
|
+
checksum = "89e8918065695684b2b0702da20382d5ae6065cf3327bc2d6436bd49a71ce9f3"
|
|
528
468
|
dependencies = [
|
|
529
469
|
"serde",
|
|
470
|
+
"serde_core",
|
|
530
471
|
"typeid",
|
|
531
472
|
]
|
|
532
473
|
|
|
533
474
|
[[package]]
|
|
534
475
|
name = "errno"
|
|
535
|
-
version = "0.3.
|
|
476
|
+
version = "0.3.14"
|
|
536
477
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
537
|
-
checksum = "
|
|
478
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
538
479
|
dependencies = [
|
|
539
480
|
"libc",
|
|
540
|
-
"windows-sys 0.
|
|
481
|
+
"windows-sys 0.52.0",
|
|
541
482
|
]
|
|
542
483
|
|
|
543
484
|
[[package]]
|
|
@@ -548,16 +489,21 @@ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
|
548
489
|
|
|
549
490
|
[[package]]
|
|
550
491
|
name = "filetime"
|
|
551
|
-
version = "0.2.
|
|
492
|
+
version = "0.2.27"
|
|
552
493
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
|
-
checksum = "
|
|
494
|
+
checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
|
|
554
495
|
dependencies = [
|
|
555
496
|
"cfg-if",
|
|
556
497
|
"libc",
|
|
557
498
|
"libredox",
|
|
558
|
-
"windows-sys 0.59.0",
|
|
559
499
|
]
|
|
560
500
|
|
|
501
|
+
[[package]]
|
|
502
|
+
name = "find-msvc-tools"
|
|
503
|
+
version = "0.1.9"
|
|
504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
505
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
506
|
+
|
|
561
507
|
[[package]]
|
|
562
508
|
name = "fixedbitset"
|
|
563
509
|
version = "0.5.7"
|
|
@@ -566,13 +512,13 @@ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
|
566
512
|
|
|
567
513
|
[[package]]
|
|
568
514
|
name = "flate2"
|
|
569
|
-
version = "1.1.
|
|
515
|
+
version = "1.1.9"
|
|
570
516
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
-
checksum = "
|
|
517
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
572
518
|
dependencies = [
|
|
573
519
|
"crc32fast",
|
|
574
|
-
"libz-rs-sys",
|
|
575
520
|
"miniz_oxide",
|
|
521
|
+
"zlib-rs",
|
|
576
522
|
]
|
|
577
523
|
|
|
578
524
|
[[package]]
|
|
@@ -595,9 +541,9 @@ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
|
595
541
|
|
|
596
542
|
[[package]]
|
|
597
543
|
name = "form_urlencoded"
|
|
598
|
-
version = "1.2.
|
|
544
|
+
version = "1.2.2"
|
|
599
545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
-
checksum = "
|
|
546
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
601
547
|
dependencies = [
|
|
602
548
|
"percent-encoding",
|
|
603
549
|
]
|
|
@@ -716,60 +662,67 @@ dependencies = [
|
|
|
716
662
|
|
|
717
663
|
[[package]]
|
|
718
664
|
name = "gethostname"
|
|
719
|
-
version = "1.0
|
|
665
|
+
version = "1.1.0"
|
|
720
666
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
-
checksum = "
|
|
667
|
+
checksum = "1bd49230192a3797a9a4d6abe9b3eed6f7fa4c8a8a4947977c6f80025f92cbd8"
|
|
722
668
|
dependencies = [
|
|
723
669
|
"rustix",
|
|
724
|
-
"windows-
|
|
670
|
+
"windows-link 0.2.1",
|
|
725
671
|
]
|
|
726
672
|
|
|
727
673
|
[[package]]
|
|
728
674
|
name = "getrandom"
|
|
729
|
-
version = "0.2.
|
|
675
|
+
version = "0.2.17"
|
|
730
676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
-
checksum = "
|
|
677
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
732
678
|
dependencies = [
|
|
733
679
|
"cfg-if",
|
|
734
680
|
"js-sys",
|
|
735
681
|
"libc",
|
|
736
|
-
"wasi
|
|
682
|
+
"wasi",
|
|
737
683
|
"wasm-bindgen",
|
|
738
684
|
]
|
|
739
685
|
|
|
740
686
|
[[package]]
|
|
741
687
|
name = "getrandom"
|
|
742
|
-
version = "0.3.
|
|
688
|
+
version = "0.3.4"
|
|
743
689
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
-
checksum = "
|
|
690
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
745
691
|
dependencies = [
|
|
746
692
|
"cfg-if",
|
|
747
693
|
"js-sys",
|
|
748
694
|
"libc",
|
|
749
695
|
"r-efi",
|
|
750
|
-
"
|
|
696
|
+
"wasip2",
|
|
751
697
|
"wasm-bindgen",
|
|
752
698
|
]
|
|
753
699
|
|
|
754
700
|
[[package]]
|
|
755
|
-
name = "
|
|
756
|
-
version = "0.
|
|
701
|
+
name = "getrandom"
|
|
702
|
+
version = "0.4.1"
|
|
757
703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
758
|
-
checksum = "
|
|
704
|
+
checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec"
|
|
705
|
+
dependencies = [
|
|
706
|
+
"cfg-if",
|
|
707
|
+
"libc",
|
|
708
|
+
"r-efi",
|
|
709
|
+
"wasip2",
|
|
710
|
+
"wasip3",
|
|
711
|
+
]
|
|
759
712
|
|
|
760
713
|
[[package]]
|
|
761
714
|
name = "governor"
|
|
762
|
-
version = "0.10.
|
|
715
|
+
version = "0.10.4"
|
|
763
716
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
764
|
-
checksum = "
|
|
717
|
+
checksum = "9efcab3c1958580ff1f25a2a41be1668f7603d849bb63af523b208a3cc1223b8"
|
|
765
718
|
dependencies = [
|
|
766
719
|
"cfg-if",
|
|
767
720
|
"dashmap",
|
|
768
721
|
"futures-sink",
|
|
769
722
|
"futures-timer",
|
|
770
723
|
"futures-util",
|
|
771
|
-
"getrandom 0.3.
|
|
772
|
-
"hashbrown 0.
|
|
724
|
+
"getrandom 0.3.4",
|
|
725
|
+
"hashbrown 0.16.1",
|
|
773
726
|
"nonzero_ext",
|
|
774
727
|
"parking_lot",
|
|
775
728
|
"portable-atomic",
|
|
@@ -782,9 +735,9 @@ dependencies = [
|
|
|
782
735
|
|
|
783
736
|
[[package]]
|
|
784
737
|
name = "h2"
|
|
785
|
-
version = "0.4.
|
|
738
|
+
version = "0.4.13"
|
|
786
739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
787
|
-
checksum = "
|
|
740
|
+
checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
|
|
788
741
|
dependencies = [
|
|
789
742
|
"atomic-waker",
|
|
790
743
|
"bytes",
|
|
@@ -811,8 +764,6 @@ version = "0.15.5"
|
|
|
811
764
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
765
|
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
813
766
|
dependencies = [
|
|
814
|
-
"allocator-api2",
|
|
815
|
-
"equivalent",
|
|
816
767
|
"foldhash 0.1.5",
|
|
817
768
|
]
|
|
818
769
|
|
|
@@ -835,12 +786,11 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
|
835
786
|
|
|
836
787
|
[[package]]
|
|
837
788
|
name = "http"
|
|
838
|
-
version = "1.
|
|
789
|
+
version = "1.4.0"
|
|
839
790
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
-
checksum = "
|
|
791
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
841
792
|
dependencies = [
|
|
842
793
|
"bytes",
|
|
843
|
-
"fnv",
|
|
844
794
|
"itoa",
|
|
845
795
|
]
|
|
846
796
|
|
|
@@ -881,9 +831,9 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
|
881
831
|
|
|
882
832
|
[[package]]
|
|
883
833
|
name = "hyper"
|
|
884
|
-
version = "1.
|
|
834
|
+
version = "1.8.1"
|
|
885
835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
-
checksum = "
|
|
836
|
+
checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
|
|
887
837
|
dependencies = [
|
|
888
838
|
"atomic-waker",
|
|
889
839
|
"bytes",
|
|
@@ -934,14 +884,13 @@ dependencies = [
|
|
|
934
884
|
|
|
935
885
|
[[package]]
|
|
936
886
|
name = "hyper-util"
|
|
937
|
-
version = "0.1.
|
|
887
|
+
version = "0.1.20"
|
|
938
888
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
939
|
-
checksum = "
|
|
889
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
940
890
|
dependencies = [
|
|
941
891
|
"base64",
|
|
942
892
|
"bytes",
|
|
943
893
|
"futures-channel",
|
|
944
|
-
"futures-core",
|
|
945
894
|
"futures-util",
|
|
946
895
|
"http",
|
|
947
896
|
"http-body",
|
|
@@ -950,7 +899,7 @@ dependencies = [
|
|
|
950
899
|
"libc",
|
|
951
900
|
"percent-encoding",
|
|
952
901
|
"pin-project-lite",
|
|
953
|
-
"socket2
|
|
902
|
+
"socket2",
|
|
954
903
|
"tokio",
|
|
955
904
|
"tower-service",
|
|
956
905
|
"tracing",
|
|
@@ -958,9 +907,9 @@ dependencies = [
|
|
|
958
907
|
|
|
959
908
|
[[package]]
|
|
960
909
|
name = "icu_collections"
|
|
961
|
-
version = "2.
|
|
910
|
+
version = "2.1.1"
|
|
962
911
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
963
|
-
checksum = "
|
|
912
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
964
913
|
dependencies = [
|
|
965
914
|
"displaydoc",
|
|
966
915
|
"potential_utf",
|
|
@@ -971,9 +920,9 @@ dependencies = [
|
|
|
971
920
|
|
|
972
921
|
[[package]]
|
|
973
922
|
name = "icu_locale_core"
|
|
974
|
-
version = "2.
|
|
923
|
+
version = "2.1.1"
|
|
975
924
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
976
|
-
checksum = "
|
|
925
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
977
926
|
dependencies = [
|
|
978
927
|
"displaydoc",
|
|
979
928
|
"litemap",
|
|
@@ -984,11 +933,10 @@ dependencies = [
|
|
|
984
933
|
|
|
985
934
|
[[package]]
|
|
986
935
|
name = "icu_normalizer"
|
|
987
|
-
version = "2.
|
|
936
|
+
version = "2.1.1"
|
|
988
937
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
989
|
-
checksum = "
|
|
938
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
990
939
|
dependencies = [
|
|
991
|
-
"displaydoc",
|
|
992
940
|
"icu_collections",
|
|
993
941
|
"icu_normalizer_data",
|
|
994
942
|
"icu_properties",
|
|
@@ -999,42 +947,38 @@ dependencies = [
|
|
|
999
947
|
|
|
1000
948
|
[[package]]
|
|
1001
949
|
name = "icu_normalizer_data"
|
|
1002
|
-
version = "2.
|
|
950
|
+
version = "2.1.1"
|
|
1003
951
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
-
checksum = "
|
|
952
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
1005
953
|
|
|
1006
954
|
[[package]]
|
|
1007
955
|
name = "icu_properties"
|
|
1008
|
-
version = "2.
|
|
956
|
+
version = "2.1.2"
|
|
1009
957
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1010
|
-
checksum = "
|
|
958
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
1011
959
|
dependencies = [
|
|
1012
|
-
"displaydoc",
|
|
1013
960
|
"icu_collections",
|
|
1014
961
|
"icu_locale_core",
|
|
1015
962
|
"icu_properties_data",
|
|
1016
963
|
"icu_provider",
|
|
1017
|
-
"potential_utf",
|
|
1018
964
|
"zerotrie",
|
|
1019
965
|
"zerovec",
|
|
1020
966
|
]
|
|
1021
967
|
|
|
1022
968
|
[[package]]
|
|
1023
969
|
name = "icu_properties_data"
|
|
1024
|
-
version = "2.
|
|
970
|
+
version = "2.1.2"
|
|
1025
971
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1026
|
-
checksum = "
|
|
972
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
1027
973
|
|
|
1028
974
|
[[package]]
|
|
1029
975
|
name = "icu_provider"
|
|
1030
|
-
version = "2.
|
|
976
|
+
version = "2.1.1"
|
|
1031
977
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1032
|
-
checksum = "
|
|
978
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
1033
979
|
dependencies = [
|
|
1034
980
|
"displaydoc",
|
|
1035
981
|
"icu_locale_core",
|
|
1036
|
-
"stable_deref_trait",
|
|
1037
|
-
"tinystr",
|
|
1038
982
|
"writeable",
|
|
1039
983
|
"yoke",
|
|
1040
984
|
"zerofrom",
|
|
@@ -1042,6 +986,12 @@ dependencies = [
|
|
|
1042
986
|
"zerovec",
|
|
1043
987
|
]
|
|
1044
988
|
|
|
989
|
+
[[package]]
|
|
990
|
+
name = "id-arena"
|
|
991
|
+
version = "2.3.0"
|
|
992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
993
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
994
|
+
|
|
1045
995
|
[[package]]
|
|
1046
996
|
name = "ident_case"
|
|
1047
997
|
version = "1.0.1"
|
|
@@ -1050,9 +1000,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
|
1050
1000
|
|
|
1051
1001
|
[[package]]
|
|
1052
1002
|
name = "idna"
|
|
1053
|
-
version = "1.0
|
|
1003
|
+
version = "1.1.0"
|
|
1054
1004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1055
|
-
checksum = "
|
|
1005
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1056
1006
|
dependencies = [
|
|
1057
1007
|
"idna_adapter",
|
|
1058
1008
|
"smallvec",
|
|
@@ -1071,12 +1021,14 @@ dependencies = [
|
|
|
1071
1021
|
|
|
1072
1022
|
[[package]]
|
|
1073
1023
|
name = "indexmap"
|
|
1074
|
-
version = "2.
|
|
1024
|
+
version = "2.13.0"
|
|
1075
1025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1076
|
-
checksum = "
|
|
1026
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
1077
1027
|
dependencies = [
|
|
1078
1028
|
"equivalent",
|
|
1079
|
-
"hashbrown 0.
|
|
1029
|
+
"hashbrown 0.16.1",
|
|
1030
|
+
"serde",
|
|
1031
|
+
"serde_core",
|
|
1080
1032
|
]
|
|
1081
1033
|
|
|
1082
1034
|
[[package]]
|
|
@@ -1090,24 +1042,13 @@ dependencies = [
|
|
|
1090
1042
|
|
|
1091
1043
|
[[package]]
|
|
1092
1044
|
name = "inventory"
|
|
1093
|
-
version = "0.3.
|
|
1045
|
+
version = "0.3.21"
|
|
1094
1046
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
-
checksum = "
|
|
1047
|
+
checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e"
|
|
1096
1048
|
dependencies = [
|
|
1097
1049
|
"rustversion",
|
|
1098
1050
|
]
|
|
1099
1051
|
|
|
1100
|
-
[[package]]
|
|
1101
|
-
name = "io-uring"
|
|
1102
|
-
version = "0.7.9"
|
|
1103
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1104
|
-
checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4"
|
|
1105
|
-
dependencies = [
|
|
1106
|
-
"bitflags",
|
|
1107
|
-
"cfg-if",
|
|
1108
|
-
"libc",
|
|
1109
|
-
]
|
|
1110
|
-
|
|
1111
1052
|
[[package]]
|
|
1112
1053
|
name = "ipnet"
|
|
1113
1054
|
version = "2.11.0"
|
|
@@ -1116,9 +1057,9 @@ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
|
1116
1057
|
|
|
1117
1058
|
[[package]]
|
|
1118
1059
|
name = "iri-string"
|
|
1119
|
-
version = "0.7.
|
|
1060
|
+
version = "0.7.10"
|
|
1120
1061
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1121
|
-
checksum = "
|
|
1062
|
+
checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
|
|
1122
1063
|
dependencies = [
|
|
1123
1064
|
"memchr",
|
|
1124
1065
|
"serde",
|
|
@@ -1135,25 +1076,25 @@ dependencies = [
|
|
|
1135
1076
|
|
|
1136
1077
|
[[package]]
|
|
1137
1078
|
name = "itoa"
|
|
1138
|
-
version = "1.0.
|
|
1079
|
+
version = "1.0.17"
|
|
1139
1080
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1140
|
-
checksum = "
|
|
1081
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
1141
1082
|
|
|
1142
1083
|
[[package]]
|
|
1143
1084
|
name = "jobserver"
|
|
1144
|
-
version = "0.1.
|
|
1085
|
+
version = "0.1.34"
|
|
1145
1086
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1146
|
-
checksum = "
|
|
1087
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
1147
1088
|
dependencies = [
|
|
1148
|
-
"getrandom 0.3.
|
|
1089
|
+
"getrandom 0.3.4",
|
|
1149
1090
|
"libc",
|
|
1150
1091
|
]
|
|
1151
1092
|
|
|
1152
1093
|
[[package]]
|
|
1153
1094
|
name = "js-sys"
|
|
1154
|
-
version = "0.3.
|
|
1095
|
+
version = "0.3.85"
|
|
1155
1096
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
-
checksum = "
|
|
1097
|
+
checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
|
|
1157
1098
|
dependencies = [
|
|
1158
1099
|
"once_cell",
|
|
1159
1100
|
"wasm-bindgen",
|
|
@@ -1165,6 +1106,12 @@ version = "1.5.0"
|
|
|
1165
1106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
1107
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1167
1108
|
|
|
1109
|
+
[[package]]
|
|
1110
|
+
name = "leb128fmt"
|
|
1111
|
+
version = "0.1.0"
|
|
1112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1113
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
1114
|
+
|
|
1168
1115
|
[[package]]
|
|
1169
1116
|
name = "libbz2-rs-sys"
|
|
1170
1117
|
version = "0.2.2"
|
|
@@ -1173,54 +1120,45 @@ checksum = "2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7"
|
|
|
1173
1120
|
|
|
1174
1121
|
[[package]]
|
|
1175
1122
|
name = "libc"
|
|
1176
|
-
version = "0.2.
|
|
1123
|
+
version = "0.2.181"
|
|
1177
1124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1178
|
-
checksum = "
|
|
1125
|
+
checksum = "459427e2af2b9c839b132acb702a1c654d95e10f8c326bfc2ad11310e458b1c5"
|
|
1179
1126
|
|
|
1180
1127
|
[[package]]
|
|
1181
1128
|
name = "libloading"
|
|
1182
|
-
version = "0.8.
|
|
1129
|
+
version = "0.8.9"
|
|
1183
1130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1184
|
-
checksum = "
|
|
1131
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
1185
1132
|
dependencies = [
|
|
1186
1133
|
"cfg-if",
|
|
1187
|
-
"windows-
|
|
1134
|
+
"windows-link 0.2.1",
|
|
1188
1135
|
]
|
|
1189
1136
|
|
|
1190
1137
|
[[package]]
|
|
1191
1138
|
name = "libredox"
|
|
1192
|
-
version = "0.1.
|
|
1139
|
+
version = "0.1.12"
|
|
1193
1140
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1194
|
-
checksum = "
|
|
1141
|
+
checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
|
|
1195
1142
|
dependencies = [
|
|
1196
1143
|
"bitflags",
|
|
1197
1144
|
"libc",
|
|
1198
|
-
"redox_syscall",
|
|
1199
|
-
]
|
|
1200
|
-
|
|
1201
|
-
[[package]]
|
|
1202
|
-
name = "libz-rs-sys"
|
|
1203
|
-
version = "0.5.2"
|
|
1204
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1205
|
-
checksum = "840db8cf39d9ec4dd794376f38acc40d0fc65eec2a8f484f7fd375b84602becd"
|
|
1206
|
-
dependencies = [
|
|
1207
|
-
"zlib-rs",
|
|
1145
|
+
"redox_syscall 0.7.1",
|
|
1208
1146
|
]
|
|
1209
1147
|
|
|
1210
1148
|
[[package]]
|
|
1211
1149
|
name = "linkme"
|
|
1212
|
-
version = "0.3.
|
|
1150
|
+
version = "0.3.35"
|
|
1213
1151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1214
|
-
checksum = "
|
|
1152
|
+
checksum = "5e3283ed2d0e50c06dd8602e0ab319bb048b6325d0bba739db64ed8205179898"
|
|
1215
1153
|
dependencies = [
|
|
1216
1154
|
"linkme-impl",
|
|
1217
1155
|
]
|
|
1218
1156
|
|
|
1219
1157
|
[[package]]
|
|
1220
1158
|
name = "linkme-impl"
|
|
1221
|
-
version = "0.3.
|
|
1159
|
+
version = "0.3.35"
|
|
1222
1160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1223
|
-
checksum = "
|
|
1161
|
+
checksum = "e5cec0ec4228b4853bb129c84dbf093a27e6c7a20526da046defc334a1b017f7"
|
|
1224
1162
|
dependencies = [
|
|
1225
1163
|
"proc-macro2",
|
|
1226
1164
|
"quote",
|
|
@@ -1229,31 +1167,30 @@ dependencies = [
|
|
|
1229
1167
|
|
|
1230
1168
|
[[package]]
|
|
1231
1169
|
name = "linux-raw-sys"
|
|
1232
|
-
version = "0.
|
|
1170
|
+
version = "0.11.0"
|
|
1233
1171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1234
|
-
checksum = "
|
|
1172
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
1235
1173
|
|
|
1236
1174
|
[[package]]
|
|
1237
1175
|
name = "litemap"
|
|
1238
|
-
version = "0.8.
|
|
1176
|
+
version = "0.8.1"
|
|
1239
1177
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1240
|
-
checksum = "
|
|
1178
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
1241
1179
|
|
|
1242
1180
|
[[package]]
|
|
1243
1181
|
name = "lock_api"
|
|
1244
|
-
version = "0.4.
|
|
1182
|
+
version = "0.4.14"
|
|
1245
1183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1246
|
-
checksum = "
|
|
1184
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1247
1185
|
dependencies = [
|
|
1248
|
-
"autocfg",
|
|
1249
1186
|
"scopeguard",
|
|
1250
1187
|
]
|
|
1251
1188
|
|
|
1252
1189
|
[[package]]
|
|
1253
1190
|
name = "log"
|
|
1254
|
-
version = "0.4.
|
|
1191
|
+
version = "0.4.29"
|
|
1255
1192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1256
|
-
checksum = "
|
|
1193
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1257
1194
|
|
|
1258
1195
|
[[package]]
|
|
1259
1196
|
name = "lru"
|
|
@@ -1287,9 +1224,9 @@ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
|
|
|
1287
1224
|
|
|
1288
1225
|
[[package]]
|
|
1289
1226
|
name = "memchr"
|
|
1290
|
-
version = "2.
|
|
1227
|
+
version = "2.8.0"
|
|
1291
1228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1292
|
-
checksum = "
|
|
1229
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
1293
1230
|
|
|
1294
1231
|
[[package]]
|
|
1295
1232
|
name = "mime"
|
|
@@ -1304,17 +1241,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1304
1241
|
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1305
1242
|
dependencies = [
|
|
1306
1243
|
"adler2",
|
|
1244
|
+
"simd-adler32",
|
|
1307
1245
|
]
|
|
1308
1246
|
|
|
1309
1247
|
[[package]]
|
|
1310
1248
|
name = "mio"
|
|
1311
|
-
version = "1.
|
|
1249
|
+
version = "1.1.1"
|
|
1312
1250
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1313
|
-
checksum = "
|
|
1251
|
+
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
1314
1252
|
dependencies = [
|
|
1315
1253
|
"libc",
|
|
1316
|
-
"wasi
|
|
1317
|
-
"windows-sys 0.
|
|
1254
|
+
"wasi",
|
|
1255
|
+
"windows-sys 0.61.2",
|
|
1318
1256
|
]
|
|
1319
1257
|
|
|
1320
1258
|
[[package]]
|
|
@@ -1385,20 +1323,20 @@ checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21"
|
|
|
1385
1323
|
|
|
1386
1324
|
[[package]]
|
|
1387
1325
|
name = "ntapi"
|
|
1388
|
-
version = "0.4.
|
|
1326
|
+
version = "0.4.3"
|
|
1389
1327
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1390
|
-
checksum = "
|
|
1328
|
+
checksum = "c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae"
|
|
1391
1329
|
dependencies = [
|
|
1392
1330
|
"winapi",
|
|
1393
1331
|
]
|
|
1394
1332
|
|
|
1395
1333
|
[[package]]
|
|
1396
1334
|
name = "nu-ansi-term"
|
|
1397
|
-
version = "0.50.
|
|
1335
|
+
version = "0.50.3"
|
|
1398
1336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1399
|
-
checksum = "
|
|
1337
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
1400
1338
|
dependencies = [
|
|
1401
|
-
"windows-sys 0.
|
|
1339
|
+
"windows-sys 0.60.2",
|
|
1402
1340
|
]
|
|
1403
1341
|
|
|
1404
1342
|
[[package]]
|
|
@@ -1412,32 +1350,23 @@ dependencies = [
|
|
|
1412
1350
|
|
|
1413
1351
|
[[package]]
|
|
1414
1352
|
name = "objc2-core-foundation"
|
|
1415
|
-
version = "0.3.
|
|
1353
|
+
version = "0.3.2"
|
|
1416
1354
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1417
|
-
checksum = "
|
|
1355
|
+
checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
|
|
1418
1356
|
dependencies = [
|
|
1419
1357
|
"bitflags",
|
|
1420
1358
|
]
|
|
1421
1359
|
|
|
1422
1360
|
[[package]]
|
|
1423
1361
|
name = "objc2-io-kit"
|
|
1424
|
-
version = "0.3.
|
|
1362
|
+
version = "0.3.2"
|
|
1425
1363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1426
|
-
checksum = "
|
|
1364
|
+
checksum = "33fafba39597d6dc1fb709123dfa8289d39406734be322956a69f0931c73bb15"
|
|
1427
1365
|
dependencies = [
|
|
1428
1366
|
"libc",
|
|
1429
1367
|
"objc2-core-foundation",
|
|
1430
1368
|
]
|
|
1431
1369
|
|
|
1432
|
-
[[package]]
|
|
1433
|
-
name = "object"
|
|
1434
|
-
version = "0.36.7"
|
|
1435
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1436
|
-
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
1437
|
-
dependencies = [
|
|
1438
|
-
"memchr",
|
|
1439
|
-
]
|
|
1440
|
-
|
|
1441
1370
|
[[package]]
|
|
1442
1371
|
name = "once_cell"
|
|
1443
1372
|
version = "1.21.3"
|
|
@@ -1446,9 +1375,9 @@ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
|
1446
1375
|
|
|
1447
1376
|
[[package]]
|
|
1448
1377
|
name = "openssl-probe"
|
|
1449
|
-
version = "0.1
|
|
1378
|
+
version = "0.2.1"
|
|
1450
1379
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1451
|
-
checksum = "
|
|
1380
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
1452
1381
|
|
|
1453
1382
|
[[package]]
|
|
1454
1383
|
name = "opentelemetry"
|
|
@@ -1460,7 +1389,7 @@ dependencies = [
|
|
|
1460
1389
|
"futures-sink",
|
|
1461
1390
|
"js-sys",
|
|
1462
1391
|
"pin-project-lite",
|
|
1463
|
-
"thiserror
|
|
1392
|
+
"thiserror",
|
|
1464
1393
|
"tracing",
|
|
1465
1394
|
]
|
|
1466
1395
|
|
|
@@ -1490,7 +1419,7 @@ dependencies = [
|
|
|
1490
1419
|
"opentelemetry_sdk",
|
|
1491
1420
|
"prost",
|
|
1492
1421
|
"reqwest",
|
|
1493
|
-
"thiserror
|
|
1422
|
+
"thiserror",
|
|
1494
1423
|
"tokio",
|
|
1495
1424
|
"tonic",
|
|
1496
1425
|
"tracing",
|
|
@@ -1521,26 +1450,32 @@ dependencies = [
|
|
|
1521
1450
|
"opentelemetry",
|
|
1522
1451
|
"percent-encoding",
|
|
1523
1452
|
"rand 0.9.2",
|
|
1524
|
-
"thiserror
|
|
1453
|
+
"thiserror",
|
|
1525
1454
|
"tokio",
|
|
1526
1455
|
"tokio-stream",
|
|
1527
1456
|
]
|
|
1528
1457
|
|
|
1458
|
+
[[package]]
|
|
1459
|
+
name = "option-ext"
|
|
1460
|
+
version = "0.2.0"
|
|
1461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1462
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
1463
|
+
|
|
1529
1464
|
[[package]]
|
|
1530
1465
|
name = "os_pipe"
|
|
1531
|
-
version = "1.2.
|
|
1466
|
+
version = "1.2.3"
|
|
1532
1467
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1533
|
-
checksum = "
|
|
1468
|
+
checksum = "7d8fae84b431384b68627d0f9b3b1245fcf9f46f6c0e3dc902e9dce64edd1967"
|
|
1534
1469
|
dependencies = [
|
|
1535
1470
|
"libc",
|
|
1536
|
-
"windows-sys 0.
|
|
1471
|
+
"windows-sys 0.52.0",
|
|
1537
1472
|
]
|
|
1538
1473
|
|
|
1539
1474
|
[[package]]
|
|
1540
1475
|
name = "parking_lot"
|
|
1541
|
-
version = "0.12.
|
|
1476
|
+
version = "0.12.5"
|
|
1542
1477
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1543
|
-
checksum = "
|
|
1478
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1544
1479
|
dependencies = [
|
|
1545
1480
|
"lock_api",
|
|
1546
1481
|
"parking_lot_core",
|
|
@@ -1548,30 +1483,68 @@ dependencies = [
|
|
|
1548
1483
|
|
|
1549
1484
|
[[package]]
|
|
1550
1485
|
name = "parking_lot_core"
|
|
1551
|
-
version = "0.9.
|
|
1486
|
+
version = "0.9.12"
|
|
1552
1487
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1553
|
-
checksum = "
|
|
1488
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1554
1489
|
dependencies = [
|
|
1555
1490
|
"cfg-if",
|
|
1556
1491
|
"libc",
|
|
1557
|
-
"redox_syscall",
|
|
1492
|
+
"redox_syscall 0.5.18",
|
|
1558
1493
|
"smallvec",
|
|
1559
|
-
"windows-
|
|
1494
|
+
"windows-link 0.2.1",
|
|
1495
|
+
]
|
|
1496
|
+
|
|
1497
|
+
[[package]]
|
|
1498
|
+
name = "pbjson"
|
|
1499
|
+
version = "0.9.0"
|
|
1500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1501
|
+
checksum = "e8edd1efdd8ab23ba9cb9ace3d9987a72663d5d7c9f74fa00b51d6213645cf6c"
|
|
1502
|
+
dependencies = [
|
|
1503
|
+
"base64",
|
|
1504
|
+
"serde",
|
|
1505
|
+
]
|
|
1506
|
+
|
|
1507
|
+
[[package]]
|
|
1508
|
+
name = "pbjson-build"
|
|
1509
|
+
version = "0.9.0"
|
|
1510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1511
|
+
checksum = "2ed4d5c6ae95e08ac768883c8401cf0e8deb4e6e1d6a4e1fd3d2ec4f0ec63200"
|
|
1512
|
+
dependencies = [
|
|
1513
|
+
"heck",
|
|
1514
|
+
"itertools",
|
|
1515
|
+
"prost",
|
|
1516
|
+
"prost-types",
|
|
1517
|
+
]
|
|
1518
|
+
|
|
1519
|
+
[[package]]
|
|
1520
|
+
name = "pbjson-types"
|
|
1521
|
+
version = "0.9.0"
|
|
1522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1523
|
+
checksum = "a14e2757d877c0f607a82ce1b8560e224370f159d66c5d52eb55ea187ef0350e"
|
|
1524
|
+
dependencies = [
|
|
1525
|
+
"bytes",
|
|
1526
|
+
"chrono",
|
|
1527
|
+
"pbjson",
|
|
1528
|
+
"pbjson-build",
|
|
1529
|
+
"prost",
|
|
1530
|
+
"prost-build",
|
|
1531
|
+
"serde",
|
|
1560
1532
|
]
|
|
1561
1533
|
|
|
1562
1534
|
[[package]]
|
|
1563
1535
|
name = "percent-encoding"
|
|
1564
|
-
version = "2.3.
|
|
1536
|
+
version = "2.3.2"
|
|
1565
1537
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1566
|
-
checksum = "
|
|
1538
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1567
1539
|
|
|
1568
1540
|
[[package]]
|
|
1569
1541
|
name = "petgraph"
|
|
1570
|
-
version = "0.
|
|
1542
|
+
version = "0.8.3"
|
|
1571
1543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1572
|
-
checksum = "
|
|
1544
|
+
checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
|
|
1573
1545
|
dependencies = [
|
|
1574
1546
|
"fixedbitset",
|
|
1547
|
+
"hashbrown 0.15.5",
|
|
1575
1548
|
"indexmap",
|
|
1576
1549
|
]
|
|
1577
1550
|
|
|
@@ -1624,24 +1597,24 @@ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
|
1624
1597
|
|
|
1625
1598
|
[[package]]
|
|
1626
1599
|
name = "portable-atomic"
|
|
1627
|
-
version = "1.
|
|
1600
|
+
version = "1.13.1"
|
|
1628
1601
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1629
|
-
checksum = "
|
|
1602
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
1630
1603
|
|
|
1631
1604
|
[[package]]
|
|
1632
1605
|
name = "portable-atomic-util"
|
|
1633
|
-
version = "0.2.
|
|
1606
|
+
version = "0.2.5"
|
|
1634
1607
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1635
|
-
checksum = "
|
|
1608
|
+
checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5"
|
|
1636
1609
|
dependencies = [
|
|
1637
1610
|
"portable-atomic",
|
|
1638
1611
|
]
|
|
1639
1612
|
|
|
1640
1613
|
[[package]]
|
|
1641
1614
|
name = "potential_utf"
|
|
1642
|
-
version = "0.1.
|
|
1615
|
+
version = "0.1.4"
|
|
1643
1616
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1644
|
-
checksum = "
|
|
1617
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
1645
1618
|
dependencies = [
|
|
1646
1619
|
"zerovec",
|
|
1647
1620
|
]
|
|
@@ -1657,9 +1630,9 @@ dependencies = [
|
|
|
1657
1630
|
|
|
1658
1631
|
[[package]]
|
|
1659
1632
|
name = "predicates"
|
|
1660
|
-
version = "3.1.
|
|
1633
|
+
version = "3.1.4"
|
|
1661
1634
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1662
|
-
checksum = "
|
|
1635
|
+
checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
|
|
1663
1636
|
dependencies = [
|
|
1664
1637
|
"anstyle",
|
|
1665
1638
|
"predicates-core",
|
|
@@ -1667,15 +1640,15 @@ dependencies = [
|
|
|
1667
1640
|
|
|
1668
1641
|
[[package]]
|
|
1669
1642
|
name = "predicates-core"
|
|
1670
|
-
version = "1.0.
|
|
1643
|
+
version = "1.0.10"
|
|
1671
1644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1672
|
-
checksum = "
|
|
1645
|
+
checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
|
|
1673
1646
|
|
|
1674
1647
|
[[package]]
|
|
1675
1648
|
name = "predicates-tree"
|
|
1676
|
-
version = "1.0.
|
|
1649
|
+
version = "1.0.13"
|
|
1677
1650
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1678
|
-
checksum = "
|
|
1651
|
+
checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
|
|
1679
1652
|
dependencies = [
|
|
1680
1653
|
"predicates-core",
|
|
1681
1654
|
"termtree",
|
|
@@ -1683,9 +1656,9 @@ dependencies = [
|
|
|
1683
1656
|
|
|
1684
1657
|
[[package]]
|
|
1685
1658
|
name = "prettyplease"
|
|
1686
|
-
version = "0.2.
|
|
1659
|
+
version = "0.2.37"
|
|
1687
1660
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1688
|
-
checksum = "
|
|
1661
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1689
1662
|
dependencies = [
|
|
1690
1663
|
"proc-macro2",
|
|
1691
1664
|
"syn",
|
|
@@ -1693,9 +1666,9 @@ dependencies = [
|
|
|
1693
1666
|
|
|
1694
1667
|
[[package]]
|
|
1695
1668
|
name = "proc-macro2"
|
|
1696
|
-
version = "1.0.
|
|
1669
|
+
version = "1.0.106"
|
|
1697
1670
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1698
|
-
checksum = "
|
|
1671
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1699
1672
|
dependencies = [
|
|
1700
1673
|
"unicode-ident",
|
|
1701
1674
|
]
|
|
@@ -1711,15 +1684,14 @@ dependencies = [
|
|
|
1711
1684
|
"lazy_static",
|
|
1712
1685
|
"memchr",
|
|
1713
1686
|
"parking_lot",
|
|
1714
|
-
"
|
|
1715
|
-
"thiserror 2.0.14",
|
|
1687
|
+
"thiserror",
|
|
1716
1688
|
]
|
|
1717
1689
|
|
|
1718
1690
|
[[package]]
|
|
1719
1691
|
name = "prost"
|
|
1720
|
-
version = "0.14.
|
|
1692
|
+
version = "0.14.3"
|
|
1721
1693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1722
|
-
checksum = "
|
|
1694
|
+
checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568"
|
|
1723
1695
|
dependencies = [
|
|
1724
1696
|
"bytes",
|
|
1725
1697
|
"prost-derive",
|
|
@@ -1727,15 +1699,14 @@ dependencies = [
|
|
|
1727
1699
|
|
|
1728
1700
|
[[package]]
|
|
1729
1701
|
name = "prost-build"
|
|
1730
|
-
version = "0.14.
|
|
1702
|
+
version = "0.14.3"
|
|
1731
1703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1732
|
-
checksum = "
|
|
1704
|
+
checksum = "343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7"
|
|
1733
1705
|
dependencies = [
|
|
1734
1706
|
"heck",
|
|
1735
1707
|
"itertools",
|
|
1736
1708
|
"log",
|
|
1737
1709
|
"multimap",
|
|
1738
|
-
"once_cell",
|
|
1739
1710
|
"petgraph",
|
|
1740
1711
|
"prettyplease",
|
|
1741
1712
|
"prost",
|
|
@@ -1749,9 +1720,9 @@ dependencies = [
|
|
|
1749
1720
|
|
|
1750
1721
|
[[package]]
|
|
1751
1722
|
name = "prost-derive"
|
|
1752
|
-
version = "0.14.
|
|
1723
|
+
version = "0.14.3"
|
|
1753
1724
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1754
|
-
checksum = "
|
|
1725
|
+
checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
|
|
1755
1726
|
dependencies = [
|
|
1756
1727
|
"anyhow",
|
|
1757
1728
|
"itertools",
|
|
@@ -1762,18 +1733,18 @@ dependencies = [
|
|
|
1762
1733
|
|
|
1763
1734
|
[[package]]
|
|
1764
1735
|
name = "prost-types"
|
|
1765
|
-
version = "0.14.
|
|
1736
|
+
version = "0.14.3"
|
|
1766
1737
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1767
|
-
checksum = "
|
|
1738
|
+
checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7"
|
|
1768
1739
|
dependencies = [
|
|
1769
1740
|
"prost",
|
|
1770
1741
|
]
|
|
1771
1742
|
|
|
1772
1743
|
[[package]]
|
|
1773
1744
|
name = "prost-wkt"
|
|
1774
|
-
version = "0.7.
|
|
1745
|
+
version = "0.7.1"
|
|
1775
1746
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1776
|
-
checksum = "
|
|
1747
|
+
checksum = "cd3de5e9c9e84fcb5efa204b8e283d23e615a8bc8c777bf1d6622bb01dc61445"
|
|
1777
1748
|
dependencies = [
|
|
1778
1749
|
"chrono",
|
|
1779
1750
|
"inventory",
|
|
@@ -1786,9 +1757,9 @@ dependencies = [
|
|
|
1786
1757
|
|
|
1787
1758
|
[[package]]
|
|
1788
1759
|
name = "prost-wkt-build"
|
|
1789
|
-
version = "0.7.
|
|
1760
|
+
version = "0.7.1"
|
|
1790
1761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1791
|
-
checksum = "
|
|
1762
|
+
checksum = "fe500dc80e757a75e1e8fb7290e448d62dfba3105ece1d058579cb00b58151cd"
|
|
1792
1763
|
dependencies = [
|
|
1793
1764
|
"heck",
|
|
1794
1765
|
"prost",
|
|
@@ -1799,9 +1770,9 @@ dependencies = [
|
|
|
1799
1770
|
|
|
1800
1771
|
[[package]]
|
|
1801
1772
|
name = "prost-wkt-types"
|
|
1802
|
-
version = "0.7.
|
|
1773
|
+
version = "0.7.1"
|
|
1803
1774
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1804
|
-
checksum = "
|
|
1775
|
+
checksum = "13807eaa7e15833d06e899008371926201cdcd11d74b6d490f49130cdb3f415e"
|
|
1805
1776
|
dependencies = [
|
|
1806
1777
|
"chrono",
|
|
1807
1778
|
"prost",
|
|
@@ -1815,26 +1786,6 @@ dependencies = [
|
|
|
1815
1786
|
"serde_json",
|
|
1816
1787
|
]
|
|
1817
1788
|
|
|
1818
|
-
[[package]]
|
|
1819
|
-
name = "protobuf"
|
|
1820
|
-
version = "3.7.2"
|
|
1821
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1822
|
-
checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4"
|
|
1823
|
-
dependencies = [
|
|
1824
|
-
"once_cell",
|
|
1825
|
-
"protobuf-support",
|
|
1826
|
-
"thiserror 1.0.69",
|
|
1827
|
-
]
|
|
1828
|
-
|
|
1829
|
-
[[package]]
|
|
1830
|
-
name = "protobuf-support"
|
|
1831
|
-
version = "3.7.2"
|
|
1832
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1833
|
-
checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6"
|
|
1834
|
-
dependencies = [
|
|
1835
|
-
"thiserror 1.0.69",
|
|
1836
|
-
]
|
|
1837
|
-
|
|
1838
1789
|
[[package]]
|
|
1839
1790
|
name = "pulldown-cmark"
|
|
1840
1791
|
version = "0.13.0"
|
|
@@ -1848,9 +1799,9 @@ dependencies = [
|
|
|
1848
1799
|
|
|
1849
1800
|
[[package]]
|
|
1850
1801
|
name = "pulldown-cmark-to-cmark"
|
|
1851
|
-
version = "
|
|
1802
|
+
version = "22.0.0"
|
|
1852
1803
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1853
|
-
checksum = "
|
|
1804
|
+
checksum = "50793def1b900256624a709439404384204a5dc3a6ec580281bfaac35e882e90"
|
|
1854
1805
|
dependencies = [
|
|
1855
1806
|
"pulldown-cmark",
|
|
1856
1807
|
]
|
|
@@ -1865,16 +1816,16 @@ dependencies = [
|
|
|
1865
1816
|
"libc",
|
|
1866
1817
|
"once_cell",
|
|
1867
1818
|
"raw-cpuid",
|
|
1868
|
-
"wasi
|
|
1819
|
+
"wasi",
|
|
1869
1820
|
"web-sys",
|
|
1870
1821
|
"winapi",
|
|
1871
1822
|
]
|
|
1872
1823
|
|
|
1873
1824
|
[[package]]
|
|
1874
1825
|
name = "quinn"
|
|
1875
|
-
version = "0.11.
|
|
1826
|
+
version = "0.11.9"
|
|
1876
1827
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1877
|
-
checksum = "
|
|
1828
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
1878
1829
|
dependencies = [
|
|
1879
1830
|
"bytes",
|
|
1880
1831
|
"cfg_aliases",
|
|
@@ -1883,8 +1834,8 @@ dependencies = [
|
|
|
1883
1834
|
"quinn-udp",
|
|
1884
1835
|
"rustc-hash",
|
|
1885
1836
|
"rustls",
|
|
1886
|
-
"socket2
|
|
1887
|
-
"thiserror
|
|
1837
|
+
"socket2",
|
|
1838
|
+
"thiserror",
|
|
1888
1839
|
"tokio",
|
|
1889
1840
|
"tracing",
|
|
1890
1841
|
"web-time",
|
|
@@ -1892,12 +1843,12 @@ dependencies = [
|
|
|
1892
1843
|
|
|
1893
1844
|
[[package]]
|
|
1894
1845
|
name = "quinn-proto"
|
|
1895
|
-
version = "0.11.
|
|
1846
|
+
version = "0.11.14"
|
|
1896
1847
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1897
|
-
checksum = "
|
|
1848
|
+
checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
|
|
1898
1849
|
dependencies = [
|
|
1899
1850
|
"bytes",
|
|
1900
|
-
"getrandom 0.3.
|
|
1851
|
+
"getrandom 0.3.4",
|
|
1901
1852
|
"lru-slab",
|
|
1902
1853
|
"rand 0.9.2",
|
|
1903
1854
|
"ring",
|
|
@@ -1905,7 +1856,7 @@ dependencies = [
|
|
|
1905
1856
|
"rustls",
|
|
1906
1857
|
"rustls-pki-types",
|
|
1907
1858
|
"slab",
|
|
1908
|
-
"thiserror
|
|
1859
|
+
"thiserror",
|
|
1909
1860
|
"tinyvec",
|
|
1910
1861
|
"tracing",
|
|
1911
1862
|
"web-time",
|
|
@@ -1913,23 +1864,23 @@ dependencies = [
|
|
|
1913
1864
|
|
|
1914
1865
|
[[package]]
|
|
1915
1866
|
name = "quinn-udp"
|
|
1916
|
-
version = "0.5.
|
|
1867
|
+
version = "0.5.14"
|
|
1917
1868
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1918
|
-
checksum = "
|
|
1869
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
1919
1870
|
dependencies = [
|
|
1920
1871
|
"cfg_aliases",
|
|
1921
1872
|
"libc",
|
|
1922
1873
|
"once_cell",
|
|
1923
|
-
"socket2
|
|
1874
|
+
"socket2",
|
|
1924
1875
|
"tracing",
|
|
1925
|
-
"windows-sys 0.
|
|
1876
|
+
"windows-sys 0.60.2",
|
|
1926
1877
|
]
|
|
1927
1878
|
|
|
1928
1879
|
[[package]]
|
|
1929
1880
|
name = "quote"
|
|
1930
|
-
version = "1.0.
|
|
1881
|
+
version = "1.0.44"
|
|
1931
1882
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1932
|
-
checksum = "
|
|
1883
|
+
checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
|
|
1933
1884
|
dependencies = [
|
|
1934
1885
|
"proc-macro2",
|
|
1935
1886
|
]
|
|
@@ -1958,7 +1909,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1958
1909
|
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
1959
1910
|
dependencies = [
|
|
1960
1911
|
"rand_chacha 0.9.0",
|
|
1961
|
-
"rand_core 0.9.
|
|
1912
|
+
"rand_core 0.9.5",
|
|
1962
1913
|
]
|
|
1963
1914
|
|
|
1964
1915
|
[[package]]
|
|
@@ -1978,7 +1929,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1978
1929
|
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1979
1930
|
dependencies = [
|
|
1980
1931
|
"ppv-lite86",
|
|
1981
|
-
"rand_core 0.9.
|
|
1932
|
+
"rand_core 0.9.5",
|
|
1982
1933
|
]
|
|
1983
1934
|
|
|
1984
1935
|
[[package]]
|
|
@@ -1987,41 +1938,61 @@ version = "0.6.4"
|
|
|
1987
1938
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1988
1939
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1989
1940
|
dependencies = [
|
|
1990
|
-
"getrandom 0.2.
|
|
1941
|
+
"getrandom 0.2.17",
|
|
1991
1942
|
]
|
|
1992
1943
|
|
|
1993
1944
|
[[package]]
|
|
1994
1945
|
name = "rand_core"
|
|
1995
|
-
version = "0.9.
|
|
1946
|
+
version = "0.9.5"
|
|
1996
1947
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1997
|
-
checksum = "
|
|
1948
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
1998
1949
|
dependencies = [
|
|
1999
|
-
"getrandom 0.3.
|
|
1950
|
+
"getrandom 0.3.4",
|
|
2000
1951
|
]
|
|
2001
1952
|
|
|
2002
1953
|
[[package]]
|
|
2003
1954
|
name = "raw-cpuid"
|
|
2004
|
-
version = "11.
|
|
1955
|
+
version = "11.6.0"
|
|
2005
1956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2006
|
-
checksum = "
|
|
1957
|
+
checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
|
|
2007
1958
|
dependencies = [
|
|
2008
1959
|
"bitflags",
|
|
2009
1960
|
]
|
|
2010
1961
|
|
|
2011
1962
|
[[package]]
|
|
2012
1963
|
name = "redox_syscall"
|
|
2013
|
-
version = "0.5.
|
|
1964
|
+
version = "0.5.18"
|
|
2014
1965
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2015
|
-
checksum = "
|
|
1966
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
2016
1967
|
dependencies = [
|
|
2017
1968
|
"bitflags",
|
|
2018
1969
|
]
|
|
2019
1970
|
|
|
1971
|
+
[[package]]
|
|
1972
|
+
name = "redox_syscall"
|
|
1973
|
+
version = "0.7.1"
|
|
1974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1975
|
+
checksum = "35985aa610addc02e24fc232012c86fd11f14111180f902b67e2d5331f8ebf2b"
|
|
1976
|
+
dependencies = [
|
|
1977
|
+
"bitflags",
|
|
1978
|
+
]
|
|
1979
|
+
|
|
1980
|
+
[[package]]
|
|
1981
|
+
name = "redox_users"
|
|
1982
|
+
version = "0.5.2"
|
|
1983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1984
|
+
checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
|
|
1985
|
+
dependencies = [
|
|
1986
|
+
"getrandom 0.2.17",
|
|
1987
|
+
"libredox",
|
|
1988
|
+
"thiserror",
|
|
1989
|
+
]
|
|
1990
|
+
|
|
2020
1991
|
[[package]]
|
|
2021
1992
|
name = "regex"
|
|
2022
|
-
version = "1.
|
|
1993
|
+
version = "1.12.3"
|
|
2023
1994
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2024
|
-
checksum = "
|
|
1995
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
2025
1996
|
dependencies = [
|
|
2026
1997
|
"aho-corasick",
|
|
2027
1998
|
"memchr",
|
|
@@ -2031,9 +2002,9 @@ dependencies = [
|
|
|
2031
2002
|
|
|
2032
2003
|
[[package]]
|
|
2033
2004
|
name = "regex-automata"
|
|
2034
|
-
version = "0.4.
|
|
2005
|
+
version = "0.4.14"
|
|
2035
2006
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2036
|
-
checksum = "
|
|
2007
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
2037
2008
|
dependencies = [
|
|
2038
2009
|
"aho-corasick",
|
|
2039
2010
|
"memchr",
|
|
@@ -2042,15 +2013,15 @@ dependencies = [
|
|
|
2042
2013
|
|
|
2043
2014
|
[[package]]
|
|
2044
2015
|
name = "regex-syntax"
|
|
2045
|
-
version = "0.8.
|
|
2016
|
+
version = "0.8.9"
|
|
2046
2017
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2047
|
-
checksum = "
|
|
2018
|
+
checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
|
|
2048
2019
|
|
|
2049
2020
|
[[package]]
|
|
2050
2021
|
name = "reqwest"
|
|
2051
|
-
version = "0.12.
|
|
2022
|
+
version = "0.12.28"
|
|
2052
2023
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2053
|
-
checksum = "
|
|
2024
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
2054
2025
|
dependencies = [
|
|
2055
2026
|
"base64",
|
|
2056
2027
|
"bytes",
|
|
@@ -2096,7 +2067,7 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
|
2096
2067
|
dependencies = [
|
|
2097
2068
|
"cc",
|
|
2098
2069
|
"cfg-if",
|
|
2099
|
-
"getrandom 0.2.
|
|
2070
|
+
"getrandom 0.2.17",
|
|
2100
2071
|
"libc",
|
|
2101
2072
|
"untrusted",
|
|
2102
2073
|
"windows-sys 0.52.0",
|
|
@@ -2113,36 +2084,39 @@ dependencies = [
|
|
|
2113
2084
|
"portable-atomic-util",
|
|
2114
2085
|
]
|
|
2115
2086
|
|
|
2116
|
-
[[package]]
|
|
2117
|
-
name = "rustc-demangle"
|
|
2118
|
-
version = "0.1.26"
|
|
2119
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2120
|
-
checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
|
|
2121
|
-
|
|
2122
2087
|
[[package]]
|
|
2123
2088
|
name = "rustc-hash"
|
|
2124
2089
|
version = "2.1.1"
|
|
2125
2090
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2126
2091
|
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
2127
2092
|
|
|
2093
|
+
[[package]]
|
|
2094
|
+
name = "rustc_version"
|
|
2095
|
+
version = "0.4.1"
|
|
2096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2097
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2098
|
+
dependencies = [
|
|
2099
|
+
"semver",
|
|
2100
|
+
]
|
|
2101
|
+
|
|
2128
2102
|
[[package]]
|
|
2129
2103
|
name = "rustix"
|
|
2130
|
-
version = "1.
|
|
2104
|
+
version = "1.1.3"
|
|
2131
2105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2132
|
-
checksum = "
|
|
2106
|
+
checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
|
|
2133
2107
|
dependencies = [
|
|
2134
2108
|
"bitflags",
|
|
2135
2109
|
"errno",
|
|
2136
2110
|
"libc",
|
|
2137
2111
|
"linux-raw-sys",
|
|
2138
|
-
"windows-sys 0.
|
|
2112
|
+
"windows-sys 0.52.0",
|
|
2139
2113
|
]
|
|
2140
2114
|
|
|
2141
2115
|
[[package]]
|
|
2142
2116
|
name = "rustls"
|
|
2143
|
-
version = "0.23.
|
|
2117
|
+
version = "0.23.36"
|
|
2144
2118
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2145
|
-
checksum = "
|
|
2119
|
+
checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
|
|
2146
2120
|
dependencies = [
|
|
2147
2121
|
"log",
|
|
2148
2122
|
"once_cell",
|
|
@@ -2155,9 +2129,9 @@ dependencies = [
|
|
|
2155
2129
|
|
|
2156
2130
|
[[package]]
|
|
2157
2131
|
name = "rustls-native-certs"
|
|
2158
|
-
version = "0.8.
|
|
2132
|
+
version = "0.8.3"
|
|
2159
2133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2160
|
-
checksum = "
|
|
2134
|
+
checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
|
|
2161
2135
|
dependencies = [
|
|
2162
2136
|
"openssl-probe",
|
|
2163
2137
|
"rustls-pki-types",
|
|
@@ -2167,9 +2141,9 @@ dependencies = [
|
|
|
2167
2141
|
|
|
2168
2142
|
[[package]]
|
|
2169
2143
|
name = "rustls-pki-types"
|
|
2170
|
-
version = "1.
|
|
2144
|
+
version = "1.14.0"
|
|
2171
2145
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2172
|
-
checksum = "
|
|
2146
|
+
checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
|
|
2173
2147
|
dependencies = [
|
|
2174
2148
|
"web-time",
|
|
2175
2149
|
"zeroize",
|
|
@@ -2177,9 +2151,9 @@ dependencies = [
|
|
|
2177
2151
|
|
|
2178
2152
|
[[package]]
|
|
2179
2153
|
name = "rustls-webpki"
|
|
2180
|
-
version = "0.103.
|
|
2154
|
+
version = "0.103.10"
|
|
2181
2155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2182
|
-
checksum = "
|
|
2156
|
+
checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef"
|
|
2183
2157
|
dependencies = [
|
|
2184
2158
|
"ring",
|
|
2185
2159
|
"rustls-pki-types",
|
|
@@ -2194,17 +2168,17 @@ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
|
2194
2168
|
|
|
2195
2169
|
[[package]]
|
|
2196
2170
|
name = "ryu"
|
|
2197
|
-
version = "1.0.
|
|
2171
|
+
version = "1.0.23"
|
|
2198
2172
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2199
|
-
checksum = "
|
|
2173
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
2200
2174
|
|
|
2201
2175
|
[[package]]
|
|
2202
2176
|
name = "schannel"
|
|
2203
|
-
version = "0.1.
|
|
2177
|
+
version = "0.1.28"
|
|
2204
2178
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2205
|
-
checksum = "
|
|
2179
|
+
checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
|
|
2206
2180
|
dependencies = [
|
|
2207
|
-
"windows-sys 0.
|
|
2181
|
+
"windows-sys 0.61.2",
|
|
2208
2182
|
]
|
|
2209
2183
|
|
|
2210
2184
|
[[package]]
|
|
@@ -2215,9 +2189,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
2215
2189
|
|
|
2216
2190
|
[[package]]
|
|
2217
2191
|
name = "security-framework"
|
|
2218
|
-
version = "3.
|
|
2192
|
+
version = "3.5.1"
|
|
2219
2193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2220
|
-
checksum = "
|
|
2194
|
+
checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
|
|
2221
2195
|
dependencies = [
|
|
2222
2196
|
"bitflags",
|
|
2223
2197
|
"core-foundation",
|
|
@@ -2228,9 +2202,9 @@ dependencies = [
|
|
|
2228
2202
|
|
|
2229
2203
|
[[package]]
|
|
2230
2204
|
name = "security-framework-sys"
|
|
2231
|
-
version = "2.
|
|
2205
|
+
version = "2.15.0"
|
|
2232
2206
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2233
|
-
checksum = "
|
|
2207
|
+
checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
|
|
2234
2208
|
dependencies = [
|
|
2235
2209
|
"core-foundation-sys",
|
|
2236
2210
|
"libc",
|
|
@@ -2238,9 +2212,9 @@ dependencies = [
|
|
|
2238
2212
|
|
|
2239
2213
|
[[package]]
|
|
2240
2214
|
name = "semver"
|
|
2241
|
-
version = "1.0.
|
|
2215
|
+
version = "1.0.27"
|
|
2242
2216
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2243
|
-
checksum = "
|
|
2217
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
2244
2218
|
|
|
2245
2219
|
[[package]]
|
|
2246
2220
|
name = "send_wrapper"
|
|
@@ -2250,18 +2224,28 @@ checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73"
|
|
|
2250
2224
|
|
|
2251
2225
|
[[package]]
|
|
2252
2226
|
name = "serde"
|
|
2253
|
-
version = "1.0.
|
|
2227
|
+
version = "1.0.228"
|
|
2254
2228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2255
|
-
checksum = "
|
|
2229
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2230
|
+
dependencies = [
|
|
2231
|
+
"serde_core",
|
|
2232
|
+
"serde_derive",
|
|
2233
|
+
]
|
|
2234
|
+
|
|
2235
|
+
[[package]]
|
|
2236
|
+
name = "serde_core"
|
|
2237
|
+
version = "1.0.228"
|
|
2238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2239
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2256
2240
|
dependencies = [
|
|
2257
2241
|
"serde_derive",
|
|
2258
2242
|
]
|
|
2259
2243
|
|
|
2260
2244
|
[[package]]
|
|
2261
2245
|
name = "serde_derive"
|
|
2262
|
-
version = "1.0.
|
|
2246
|
+
version = "1.0.228"
|
|
2263
2247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2264
|
-
checksum = "
|
|
2248
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2265
2249
|
dependencies = [
|
|
2266
2250
|
"proc-macro2",
|
|
2267
2251
|
"quote",
|
|
@@ -2270,14 +2254,24 @@ dependencies = [
|
|
|
2270
2254
|
|
|
2271
2255
|
[[package]]
|
|
2272
2256
|
name = "serde_json"
|
|
2273
|
-
version = "1.0.
|
|
2257
|
+
version = "1.0.149"
|
|
2274
2258
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2275
|
-
checksum = "
|
|
2259
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
2276
2260
|
dependencies = [
|
|
2277
2261
|
"itoa",
|
|
2278
2262
|
"memchr",
|
|
2279
|
-
"ryu",
|
|
2280
2263
|
"serde",
|
|
2264
|
+
"serde_core",
|
|
2265
|
+
"zmij",
|
|
2266
|
+
]
|
|
2267
|
+
|
|
2268
|
+
[[package]]
|
|
2269
|
+
name = "serde_spanned"
|
|
2270
|
+
version = "1.0.4"
|
|
2271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2272
|
+
checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
|
|
2273
|
+
dependencies = [
|
|
2274
|
+
"serde_core",
|
|
2281
2275
|
]
|
|
2282
2276
|
|
|
2283
2277
|
[[package]]
|
|
@@ -2309,36 +2303,37 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
|
2309
2303
|
|
|
2310
2304
|
[[package]]
|
|
2311
2305
|
name = "signal-hook-registry"
|
|
2312
|
-
version = "1.4.
|
|
2306
|
+
version = "1.4.8"
|
|
2313
2307
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2314
|
-
checksum = "
|
|
2308
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
2315
2309
|
dependencies = [
|
|
2310
|
+
"errno",
|
|
2316
2311
|
"libc",
|
|
2317
2312
|
]
|
|
2318
2313
|
|
|
2319
2314
|
[[package]]
|
|
2320
2315
|
name = "simd-adler32"
|
|
2321
|
-
version = "0.3.
|
|
2316
|
+
version = "0.3.8"
|
|
2322
2317
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2323
|
-
checksum = "
|
|
2318
|
+
checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
|
|
2324
2319
|
|
|
2325
2320
|
[[package]]
|
|
2326
2321
|
name = "siphasher"
|
|
2327
|
-
version = "1.0.
|
|
2322
|
+
version = "1.0.2"
|
|
2328
2323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2329
|
-
checksum = "
|
|
2324
|
+
checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
|
|
2330
2325
|
|
|
2331
2326
|
[[package]]
|
|
2332
2327
|
name = "slab"
|
|
2333
|
-
version = "0.4.
|
|
2328
|
+
version = "0.4.12"
|
|
2334
2329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2335
|
-
checksum = "
|
|
2330
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
2336
2331
|
|
|
2337
2332
|
[[package]]
|
|
2338
2333
|
name = "slotmap"
|
|
2339
|
-
version = "1.
|
|
2334
|
+
version = "1.1.1"
|
|
2340
2335
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2341
|
-
checksum = "
|
|
2336
|
+
checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
|
|
2342
2337
|
dependencies = [
|
|
2343
2338
|
"version_check",
|
|
2344
2339
|
]
|
|
@@ -2351,22 +2346,12 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
|
2351
2346
|
|
|
2352
2347
|
[[package]]
|
|
2353
2348
|
name = "socket2"
|
|
2354
|
-
version = "0.
|
|
2349
|
+
version = "0.6.2"
|
|
2355
2350
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2356
|
-
checksum = "
|
|
2351
|
+
checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
|
|
2357
2352
|
dependencies = [
|
|
2358
2353
|
"libc",
|
|
2359
|
-
"windows-sys 0.
|
|
2360
|
-
]
|
|
2361
|
-
|
|
2362
|
-
[[package]]
|
|
2363
|
-
name = "socket2"
|
|
2364
|
-
version = "0.6.0"
|
|
2365
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2366
|
-
checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
|
|
2367
|
-
dependencies = [
|
|
2368
|
-
"libc",
|
|
2369
|
-
"windows-sys 0.59.0",
|
|
2354
|
+
"windows-sys 0.60.2",
|
|
2370
2355
|
]
|
|
2371
2356
|
|
|
2372
2357
|
[[package]]
|
|
@@ -2380,9 +2365,9 @@ dependencies = [
|
|
|
2380
2365
|
|
|
2381
2366
|
[[package]]
|
|
2382
2367
|
name = "stable_deref_trait"
|
|
2383
|
-
version = "1.2.
|
|
2368
|
+
version = "1.2.1"
|
|
2384
2369
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2385
|
-
checksum = "
|
|
2370
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2386
2371
|
|
|
2387
2372
|
[[package]]
|
|
2388
2373
|
name = "strsim"
|
|
@@ -2398,9 +2383,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
2398
2383
|
|
|
2399
2384
|
[[package]]
|
|
2400
2385
|
name = "syn"
|
|
2401
|
-
version = "2.0.
|
|
2386
|
+
version = "2.0.114"
|
|
2402
2387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2403
|
-
checksum = "
|
|
2388
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
2404
2389
|
dependencies = [
|
|
2405
2390
|
"proc-macro2",
|
|
2406
2391
|
"quote",
|
|
@@ -2429,9 +2414,9 @@ dependencies = [
|
|
|
2429
2414
|
|
|
2430
2415
|
[[package]]
|
|
2431
2416
|
name = "sysinfo"
|
|
2432
|
-
version = "0.37.
|
|
2417
|
+
version = "0.37.2"
|
|
2433
2418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2434
|
-
checksum = "
|
|
2419
|
+
checksum = "16607d5caffd1c07ce073528f9ed972d88db15dd44023fa57142963be3feb11f"
|
|
2435
2420
|
dependencies = [
|
|
2436
2421
|
"libc",
|
|
2437
2422
|
"memchr",
|
|
@@ -2443,9 +2428,9 @@ dependencies = [
|
|
|
2443
2428
|
|
|
2444
2429
|
[[package]]
|
|
2445
2430
|
name = "tar"
|
|
2446
|
-
version = "0.4.
|
|
2431
|
+
version = "0.4.45"
|
|
2447
2432
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2448
|
-
checksum = "
|
|
2433
|
+
checksum = "22692a6476a21fa75fdfc11d452fda482af402c008cdbaf3476414e122040973"
|
|
2449
2434
|
dependencies = [
|
|
2450
2435
|
"filetime",
|
|
2451
2436
|
"libc",
|
|
@@ -2454,15 +2439,15 @@ dependencies = [
|
|
|
2454
2439
|
|
|
2455
2440
|
[[package]]
|
|
2456
2441
|
name = "tempfile"
|
|
2457
|
-
version = "3.
|
|
2442
|
+
version = "3.25.0"
|
|
2458
2443
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2459
|
-
checksum = "
|
|
2444
|
+
checksum = "0136791f7c95b1f6dd99f9cc786b91bb81c3800b639b3478e561ddb7be95e5f1"
|
|
2460
2445
|
dependencies = [
|
|
2461
2446
|
"fastrand",
|
|
2462
|
-
"getrandom 0.
|
|
2447
|
+
"getrandom 0.4.1",
|
|
2463
2448
|
"once_cell",
|
|
2464
2449
|
"rustix",
|
|
2465
|
-
"windows-sys 0.
|
|
2450
|
+
"windows-sys 0.52.0",
|
|
2466
2451
|
]
|
|
2467
2452
|
|
|
2468
2453
|
[[package]]
|
|
@@ -2484,7 +2469,7 @@ dependencies = [
|
|
|
2484
2469
|
"temporalio-client",
|
|
2485
2470
|
"temporalio-common",
|
|
2486
2471
|
"temporalio-sdk-core",
|
|
2487
|
-
"thiserror
|
|
2472
|
+
"thiserror",
|
|
2488
2473
|
"tokio",
|
|
2489
2474
|
"tokio-stream",
|
|
2490
2475
|
"tonic",
|
|
@@ -2514,7 +2499,7 @@ dependencies = [
|
|
|
2514
2499
|
"rand 0.9.2",
|
|
2515
2500
|
"slotmap",
|
|
2516
2501
|
"temporalio-common",
|
|
2517
|
-
"thiserror
|
|
2502
|
+
"thiserror",
|
|
2518
2503
|
"tokio",
|
|
2519
2504
|
"tonic",
|
|
2520
2505
|
"tower",
|
|
@@ -2530,21 +2515,41 @@ dependencies = [
|
|
|
2530
2515
|
"anyhow",
|
|
2531
2516
|
"async-trait",
|
|
2532
2517
|
"base64",
|
|
2533
|
-
"
|
|
2518
|
+
"bon",
|
|
2519
|
+
"crc32fast",
|
|
2534
2520
|
"derive_more",
|
|
2521
|
+
"dirs",
|
|
2522
|
+
"erased-serde",
|
|
2523
|
+
"futures",
|
|
2524
|
+
"futures-channel",
|
|
2525
|
+
"http-body-util",
|
|
2526
|
+
"hyper",
|
|
2527
|
+
"hyper-util",
|
|
2535
2528
|
"opentelemetry",
|
|
2529
|
+
"opentelemetry-otlp",
|
|
2530
|
+
"opentelemetry_sdk",
|
|
2531
|
+
"parking_lot",
|
|
2532
|
+
"pbjson",
|
|
2533
|
+
"pbjson-build",
|
|
2534
|
+
"pbjson-types",
|
|
2535
|
+
"prometheus",
|
|
2536
2536
|
"prost",
|
|
2537
|
+
"prost-types",
|
|
2537
2538
|
"prost-wkt",
|
|
2538
2539
|
"prost-wkt-types",
|
|
2539
2540
|
"rand 0.9.2",
|
|
2541
|
+
"ringbuf",
|
|
2540
2542
|
"serde",
|
|
2541
2543
|
"serde_json",
|
|
2542
|
-
"thiserror
|
|
2544
|
+
"thiserror",
|
|
2545
|
+
"tokio",
|
|
2546
|
+
"toml",
|
|
2543
2547
|
"tonic",
|
|
2544
2548
|
"tonic-prost",
|
|
2545
2549
|
"tonic-prost-build",
|
|
2546
2550
|
"tracing",
|
|
2547
2551
|
"tracing-core",
|
|
2552
|
+
"tracing-subscriber",
|
|
2548
2553
|
"url",
|
|
2549
2554
|
"uuid",
|
|
2550
2555
|
]
|
|
@@ -2565,22 +2570,20 @@ version = "0.1.0"
|
|
|
2565
2570
|
dependencies = [
|
|
2566
2571
|
"anyhow",
|
|
2567
2572
|
"async-trait",
|
|
2573
|
+
"backoff",
|
|
2574
|
+
"bon",
|
|
2568
2575
|
"crossbeam-channel",
|
|
2569
2576
|
"crossbeam-queue",
|
|
2570
2577
|
"crossbeam-utils",
|
|
2571
2578
|
"dashmap",
|
|
2572
|
-
"derive_builder",
|
|
2573
2579
|
"derive_more",
|
|
2574
2580
|
"enum-iterator",
|
|
2575
2581
|
"enum_dispatch",
|
|
2576
2582
|
"flate2",
|
|
2577
|
-
"futures
|
|
2583
|
+
"futures",
|
|
2578
2584
|
"futures-util",
|
|
2579
2585
|
"gethostname",
|
|
2580
2586
|
"governor",
|
|
2581
|
-
"http-body-util",
|
|
2582
|
-
"hyper",
|
|
2583
|
-
"hyper-util",
|
|
2584
2587
|
"itertools",
|
|
2585
2588
|
"lru",
|
|
2586
2589
|
"mockall",
|
|
@@ -2590,12 +2593,10 @@ dependencies = [
|
|
|
2590
2593
|
"parking_lot",
|
|
2591
2594
|
"pid",
|
|
2592
2595
|
"pin-project",
|
|
2593
|
-
"prometheus",
|
|
2594
2596
|
"prost",
|
|
2595
2597
|
"prost-wkt-types",
|
|
2596
2598
|
"rand 0.9.2",
|
|
2597
2599
|
"reqwest",
|
|
2598
|
-
"ringbuf",
|
|
2599
2600
|
"serde",
|
|
2600
2601
|
"serde_json",
|
|
2601
2602
|
"siphasher",
|
|
@@ -2605,13 +2606,12 @@ dependencies = [
|
|
|
2605
2606
|
"temporalio-client",
|
|
2606
2607
|
"temporalio-common",
|
|
2607
2608
|
"temporalio-macros",
|
|
2608
|
-
"thiserror
|
|
2609
|
+
"thiserror",
|
|
2609
2610
|
"tokio",
|
|
2610
2611
|
"tokio-stream",
|
|
2611
2612
|
"tokio-util",
|
|
2612
2613
|
"tonic",
|
|
2613
2614
|
"tracing",
|
|
2614
|
-
"tracing-subscriber",
|
|
2615
2615
|
"url",
|
|
2616
2616
|
"uuid",
|
|
2617
2617
|
"zip",
|
|
@@ -2625,38 +2625,18 @@ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
|
|
|
2625
2625
|
|
|
2626
2626
|
[[package]]
|
|
2627
2627
|
name = "thiserror"
|
|
2628
|
-
version = "
|
|
2628
|
+
version = "2.0.18"
|
|
2629
2629
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2630
|
-
checksum = "
|
|
2630
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
2631
2631
|
dependencies = [
|
|
2632
|
-
"thiserror-impl
|
|
2633
|
-
]
|
|
2634
|
-
|
|
2635
|
-
[[package]]
|
|
2636
|
-
name = "thiserror"
|
|
2637
|
-
version = "2.0.14"
|
|
2638
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2639
|
-
checksum = "0b0949c3a6c842cbde3f1686d6eea5a010516deb7085f79db747562d4102f41e"
|
|
2640
|
-
dependencies = [
|
|
2641
|
-
"thiserror-impl 2.0.14",
|
|
2642
|
-
]
|
|
2643
|
-
|
|
2644
|
-
[[package]]
|
|
2645
|
-
name = "thiserror-impl"
|
|
2646
|
-
version = "1.0.69"
|
|
2647
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2648
|
-
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
2649
|
-
dependencies = [
|
|
2650
|
-
"proc-macro2",
|
|
2651
|
-
"quote",
|
|
2652
|
-
"syn",
|
|
2632
|
+
"thiserror-impl",
|
|
2653
2633
|
]
|
|
2654
2634
|
|
|
2655
2635
|
[[package]]
|
|
2656
2636
|
name = "thiserror-impl"
|
|
2657
|
-
version = "2.0.
|
|
2637
|
+
version = "2.0.18"
|
|
2658
2638
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2659
|
-
checksum = "
|
|
2639
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
2660
2640
|
dependencies = [
|
|
2661
2641
|
"proc-macro2",
|
|
2662
2642
|
"quote",
|
|
@@ -2674,9 +2654,9 @@ dependencies = [
|
|
|
2674
2654
|
|
|
2675
2655
|
[[package]]
|
|
2676
2656
|
name = "tinystr"
|
|
2677
|
-
version = "0.8.
|
|
2657
|
+
version = "0.8.2"
|
|
2678
2658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2679
|
-
checksum = "
|
|
2659
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
2680
2660
|
dependencies = [
|
|
2681
2661
|
"displaydoc",
|
|
2682
2662
|
"zerovec",
|
|
@@ -2684,9 +2664,9 @@ dependencies = [
|
|
|
2684
2664
|
|
|
2685
2665
|
[[package]]
|
|
2686
2666
|
name = "tinyvec"
|
|
2687
|
-
version = "1.
|
|
2667
|
+
version = "1.10.0"
|
|
2688
2668
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2689
|
-
checksum = "
|
|
2669
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
2690
2670
|
dependencies = [
|
|
2691
2671
|
"tinyvec_macros",
|
|
2692
2672
|
]
|
|
@@ -2699,29 +2679,26 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
2699
2679
|
|
|
2700
2680
|
[[package]]
|
|
2701
2681
|
name = "tokio"
|
|
2702
|
-
version = "1.
|
|
2682
|
+
version = "1.49.0"
|
|
2703
2683
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2704
|
-
checksum = "
|
|
2684
|
+
checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
|
|
2705
2685
|
dependencies = [
|
|
2706
|
-
"backtrace",
|
|
2707
2686
|
"bytes",
|
|
2708
|
-
"io-uring",
|
|
2709
2687
|
"libc",
|
|
2710
2688
|
"mio",
|
|
2711
2689
|
"parking_lot",
|
|
2712
2690
|
"pin-project-lite",
|
|
2713
2691
|
"signal-hook-registry",
|
|
2714
|
-
"
|
|
2715
|
-
"socket2 0.6.0",
|
|
2692
|
+
"socket2",
|
|
2716
2693
|
"tokio-macros",
|
|
2717
|
-
"windows-sys 0.
|
|
2694
|
+
"windows-sys 0.61.2",
|
|
2718
2695
|
]
|
|
2719
2696
|
|
|
2720
2697
|
[[package]]
|
|
2721
2698
|
name = "tokio-macros"
|
|
2722
|
-
version = "2.
|
|
2699
|
+
version = "2.6.0"
|
|
2723
2700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2724
|
-
checksum = "
|
|
2701
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
2725
2702
|
dependencies = [
|
|
2726
2703
|
"proc-macro2",
|
|
2727
2704
|
"quote",
|
|
@@ -2730,9 +2707,9 @@ dependencies = [
|
|
|
2730
2707
|
|
|
2731
2708
|
[[package]]
|
|
2732
2709
|
name = "tokio-rustls"
|
|
2733
|
-
version = "0.26.
|
|
2710
|
+
version = "0.26.4"
|
|
2734
2711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2735
|
-
checksum = "
|
|
2712
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
2736
2713
|
dependencies = [
|
|
2737
2714
|
"rustls",
|
|
2738
2715
|
"tokio",
|
|
@@ -2740,9 +2717,9 @@ dependencies = [
|
|
|
2740
2717
|
|
|
2741
2718
|
[[package]]
|
|
2742
2719
|
name = "tokio-stream"
|
|
2743
|
-
version = "0.1.
|
|
2720
|
+
version = "0.1.18"
|
|
2744
2721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2745
|
-
checksum = "
|
|
2722
|
+
checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
|
|
2746
2723
|
dependencies = [
|
|
2747
2724
|
"futures-core",
|
|
2748
2725
|
"pin-project-lite",
|
|
@@ -2751,9 +2728,9 @@ dependencies = [
|
|
|
2751
2728
|
|
|
2752
2729
|
[[package]]
|
|
2753
2730
|
name = "tokio-util"
|
|
2754
|
-
version = "0.7.
|
|
2731
|
+
version = "0.7.18"
|
|
2755
2732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2756
|
-
checksum = "
|
|
2733
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
2757
2734
|
dependencies = [
|
|
2758
2735
|
"bytes",
|
|
2759
2736
|
"futures-core",
|
|
@@ -2762,11 +2739,50 @@ dependencies = [
|
|
|
2762
2739
|
"tokio",
|
|
2763
2740
|
]
|
|
2764
2741
|
|
|
2742
|
+
[[package]]
|
|
2743
|
+
name = "toml"
|
|
2744
|
+
version = "0.9.12+spec-1.1.0"
|
|
2745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2746
|
+
checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
|
|
2747
|
+
dependencies = [
|
|
2748
|
+
"indexmap",
|
|
2749
|
+
"serde_core",
|
|
2750
|
+
"serde_spanned",
|
|
2751
|
+
"toml_datetime",
|
|
2752
|
+
"toml_parser",
|
|
2753
|
+
"toml_writer",
|
|
2754
|
+
"winnow",
|
|
2755
|
+
]
|
|
2756
|
+
|
|
2757
|
+
[[package]]
|
|
2758
|
+
name = "toml_datetime"
|
|
2759
|
+
version = "0.7.5+spec-1.1.0"
|
|
2760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2761
|
+
checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
|
|
2762
|
+
dependencies = [
|
|
2763
|
+
"serde_core",
|
|
2764
|
+
]
|
|
2765
|
+
|
|
2766
|
+
[[package]]
|
|
2767
|
+
name = "toml_parser"
|
|
2768
|
+
version = "1.0.9+spec-1.1.0"
|
|
2769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2770
|
+
checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4"
|
|
2771
|
+
dependencies = [
|
|
2772
|
+
"winnow",
|
|
2773
|
+
]
|
|
2774
|
+
|
|
2775
|
+
[[package]]
|
|
2776
|
+
name = "toml_writer"
|
|
2777
|
+
version = "1.0.6+spec-1.1.0"
|
|
2778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2779
|
+
checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
|
|
2780
|
+
|
|
2765
2781
|
[[package]]
|
|
2766
2782
|
name = "tonic"
|
|
2767
|
-
version = "0.14.
|
|
2783
|
+
version = "0.14.3"
|
|
2768
2784
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2769
|
-
checksum = "
|
|
2785
|
+
checksum = "a286e33f82f8a1ee2df63f4fa35c0becf4a85a0cb03091a15fd7bf0b402dc94a"
|
|
2770
2786
|
dependencies = [
|
|
2771
2787
|
"async-trait",
|
|
2772
2788
|
"axum",
|
|
@@ -2782,7 +2798,7 @@ dependencies = [
|
|
|
2782
2798
|
"percent-encoding",
|
|
2783
2799
|
"pin-project",
|
|
2784
2800
|
"rustls-native-certs",
|
|
2785
|
-
"socket2
|
|
2801
|
+
"socket2",
|
|
2786
2802
|
"sync_wrapper",
|
|
2787
2803
|
"tokio",
|
|
2788
2804
|
"tokio-rustls",
|
|
@@ -2795,9 +2811,9 @@ dependencies = [
|
|
|
2795
2811
|
|
|
2796
2812
|
[[package]]
|
|
2797
2813
|
name = "tonic-build"
|
|
2798
|
-
version = "0.14.
|
|
2814
|
+
version = "0.14.3"
|
|
2799
2815
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2800
|
-
checksum = "
|
|
2816
|
+
checksum = "27aac809edf60b741e2d7db6367214d078856b8a5bff0087e94ff330fb97b6fc"
|
|
2801
2817
|
dependencies = [
|
|
2802
2818
|
"prettyplease",
|
|
2803
2819
|
"proc-macro2",
|
|
@@ -2807,9 +2823,9 @@ dependencies = [
|
|
|
2807
2823
|
|
|
2808
2824
|
[[package]]
|
|
2809
2825
|
name = "tonic-prost"
|
|
2810
|
-
version = "0.14.
|
|
2826
|
+
version = "0.14.3"
|
|
2811
2827
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2812
|
-
checksum = "
|
|
2828
|
+
checksum = "d6c55a2d6a14174563de34409c9f92ff981d006f56da9c6ecd40d9d4a31500b0"
|
|
2813
2829
|
dependencies = [
|
|
2814
2830
|
"bytes",
|
|
2815
2831
|
"prost",
|
|
@@ -2818,9 +2834,9 @@ dependencies = [
|
|
|
2818
2834
|
|
|
2819
2835
|
[[package]]
|
|
2820
2836
|
name = "tonic-prost-build"
|
|
2821
|
-
version = "0.14.
|
|
2837
|
+
version = "0.14.3"
|
|
2822
2838
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2823
|
-
checksum = "
|
|
2839
|
+
checksum = "a4556786613791cfef4ed134aa670b61a85cfcacf71543ef33e8d801abae988f"
|
|
2824
2840
|
dependencies = [
|
|
2825
2841
|
"prettyplease",
|
|
2826
2842
|
"proc-macro2",
|
|
@@ -2834,9 +2850,9 @@ dependencies = [
|
|
|
2834
2850
|
|
|
2835
2851
|
[[package]]
|
|
2836
2852
|
name = "tower"
|
|
2837
|
-
version = "0.5.
|
|
2853
|
+
version = "0.5.3"
|
|
2838
2854
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2839
|
-
checksum = "
|
|
2855
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
2840
2856
|
dependencies = [
|
|
2841
2857
|
"futures-core",
|
|
2842
2858
|
"futures-util",
|
|
@@ -2853,9 +2869,9 @@ dependencies = [
|
|
|
2853
2869
|
|
|
2854
2870
|
[[package]]
|
|
2855
2871
|
name = "tower-http"
|
|
2856
|
-
version = "0.6.
|
|
2872
|
+
version = "0.6.8"
|
|
2857
2873
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2858
|
-
checksum = "
|
|
2874
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
2859
2875
|
dependencies = [
|
|
2860
2876
|
"bitflags",
|
|
2861
2877
|
"bytes",
|
|
@@ -2883,9 +2899,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
|
2883
2899
|
|
|
2884
2900
|
[[package]]
|
|
2885
2901
|
name = "tracing"
|
|
2886
|
-
version = "0.1.
|
|
2902
|
+
version = "0.1.44"
|
|
2887
2903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2888
|
-
checksum = "
|
|
2904
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
2889
2905
|
dependencies = [
|
|
2890
2906
|
"pin-project-lite",
|
|
2891
2907
|
"tracing-attributes",
|
|
@@ -2894,9 +2910,9 @@ dependencies = [
|
|
|
2894
2910
|
|
|
2895
2911
|
[[package]]
|
|
2896
2912
|
name = "tracing-attributes"
|
|
2897
|
-
version = "0.1.
|
|
2913
|
+
version = "0.1.31"
|
|
2898
2914
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2899
|
-
checksum = "
|
|
2915
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
2900
2916
|
dependencies = [
|
|
2901
2917
|
"proc-macro2",
|
|
2902
2918
|
"quote",
|
|
@@ -2905,9 +2921,9 @@ dependencies = [
|
|
|
2905
2921
|
|
|
2906
2922
|
[[package]]
|
|
2907
2923
|
name = "tracing-core"
|
|
2908
|
-
version = "0.1.
|
|
2924
|
+
version = "0.1.36"
|
|
2909
2925
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2910
|
-
checksum = "
|
|
2926
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
2911
2927
|
dependencies = [
|
|
2912
2928
|
"once_cell",
|
|
2913
2929
|
"valuable",
|
|
@@ -2915,9 +2931,9 @@ dependencies = [
|
|
|
2915
2931
|
|
|
2916
2932
|
[[package]]
|
|
2917
2933
|
name = "tracing-subscriber"
|
|
2918
|
-
version = "0.3.
|
|
2934
|
+
version = "0.3.22"
|
|
2919
2935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2920
|
-
checksum = "
|
|
2936
|
+
checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
|
|
2921
2937
|
dependencies = [
|
|
2922
2938
|
"matchers",
|
|
2923
2939
|
"nu-ansi-term",
|
|
@@ -2944,9 +2960,9 @@ checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
|
|
|
2944
2960
|
|
|
2945
2961
|
[[package]]
|
|
2946
2962
|
name = "typetag"
|
|
2947
|
-
version = "0.2.
|
|
2963
|
+
version = "0.2.21"
|
|
2948
2964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2949
|
-
checksum = "
|
|
2965
|
+
checksum = "be2212c8a9b9bcfca32024de14998494cf9a5dfa59ea1b829de98bac374b86bf"
|
|
2950
2966
|
dependencies = [
|
|
2951
2967
|
"erased-serde",
|
|
2952
2968
|
"inventory",
|
|
@@ -2957,9 +2973,9 @@ dependencies = [
|
|
|
2957
2973
|
|
|
2958
2974
|
[[package]]
|
|
2959
2975
|
name = "typetag-impl"
|
|
2960
|
-
version = "0.2.
|
|
2976
|
+
version = "0.2.21"
|
|
2961
2977
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2962
|
-
checksum = "
|
|
2978
|
+
checksum = "27a7a9b72ba121f6f1f6c3632b85604cac41aedb5ddc70accbebb6cac83de846"
|
|
2963
2979
|
dependencies = [
|
|
2964
2980
|
"proc-macro2",
|
|
2965
2981
|
"quote",
|
|
@@ -2968,15 +2984,15 @@ dependencies = [
|
|
|
2968
2984
|
|
|
2969
2985
|
[[package]]
|
|
2970
2986
|
name = "unicase"
|
|
2971
|
-
version = "2.
|
|
2987
|
+
version = "2.9.0"
|
|
2972
2988
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2973
|
-
checksum = "
|
|
2989
|
+
checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
|
|
2974
2990
|
|
|
2975
2991
|
[[package]]
|
|
2976
2992
|
name = "unicode-ident"
|
|
2977
|
-
version = "1.0.
|
|
2993
|
+
version = "1.0.23"
|
|
2978
2994
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2979
|
-
checksum = "
|
|
2995
|
+
checksum = "537dd038a89878be9b64dd4bd1b260315c1bb94f4d784956b81e27a088d9a09e"
|
|
2980
2996
|
|
|
2981
2997
|
[[package]]
|
|
2982
2998
|
name = "unicode-segmentation"
|
|
@@ -2998,13 +3014,14 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
|
2998
3014
|
|
|
2999
3015
|
[[package]]
|
|
3000
3016
|
name = "url"
|
|
3001
|
-
version = "2.5.
|
|
3017
|
+
version = "2.5.8"
|
|
3002
3018
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3003
|
-
checksum = "
|
|
3019
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
3004
3020
|
dependencies = [
|
|
3005
3021
|
"form_urlencoded",
|
|
3006
3022
|
"idna",
|
|
3007
3023
|
"percent-encoding",
|
|
3024
|
+
"serde",
|
|
3008
3025
|
]
|
|
3009
3026
|
|
|
3010
3027
|
[[package]]
|
|
@@ -3015,11 +3032,11 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
|
3015
3032
|
|
|
3016
3033
|
[[package]]
|
|
3017
3034
|
name = "uuid"
|
|
3018
|
-
version = "1.
|
|
3035
|
+
version = "1.20.0"
|
|
3019
3036
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3020
|
-
checksum = "
|
|
3037
|
+
checksum = "ee48d38b119b0cd71fe4141b30f5ba9c7c5d9f4e7a3a8b4a674e4b6ef789976f"
|
|
3021
3038
|
dependencies = [
|
|
3022
|
-
"getrandom 0.3.
|
|
3039
|
+
"getrandom 0.3.4",
|
|
3023
3040
|
"js-sys",
|
|
3024
3041
|
"wasm-bindgen",
|
|
3025
3042
|
]
|
|
@@ -3052,47 +3069,44 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3052
3069
|
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3053
3070
|
|
|
3054
3071
|
[[package]]
|
|
3055
|
-
name = "
|
|
3056
|
-
version = "0.
|
|
3072
|
+
name = "wasip2"
|
|
3073
|
+
version = "1.0.2+wasi-0.2.9"
|
|
3057
3074
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3058
|
-
checksum = "
|
|
3075
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
3059
3076
|
dependencies = [
|
|
3060
|
-
"wit-bindgen
|
|
3077
|
+
"wit-bindgen",
|
|
3061
3078
|
]
|
|
3062
3079
|
|
|
3063
3080
|
[[package]]
|
|
3064
|
-
name = "
|
|
3065
|
-
version = "0.
|
|
3081
|
+
name = "wasip3"
|
|
3082
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
3066
3083
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3067
|
-
checksum = "
|
|
3084
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
3068
3085
|
dependencies = [
|
|
3069
|
-
"
|
|
3070
|
-
"once_cell",
|
|
3071
|
-
"rustversion",
|
|
3072
|
-
"wasm-bindgen-macro",
|
|
3086
|
+
"wit-bindgen",
|
|
3073
3087
|
]
|
|
3074
3088
|
|
|
3075
3089
|
[[package]]
|
|
3076
|
-
name = "wasm-bindgen
|
|
3077
|
-
version = "0.2.
|
|
3090
|
+
name = "wasm-bindgen"
|
|
3091
|
+
version = "0.2.108"
|
|
3078
3092
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3079
|
-
checksum = "
|
|
3093
|
+
checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
|
|
3080
3094
|
dependencies = [
|
|
3081
|
-
"
|
|
3082
|
-
"
|
|
3083
|
-
"
|
|
3084
|
-
"
|
|
3085
|
-
"syn",
|
|
3095
|
+
"cfg-if",
|
|
3096
|
+
"once_cell",
|
|
3097
|
+
"rustversion",
|
|
3098
|
+
"wasm-bindgen-macro",
|
|
3086
3099
|
"wasm-bindgen-shared",
|
|
3087
3100
|
]
|
|
3088
3101
|
|
|
3089
3102
|
[[package]]
|
|
3090
3103
|
name = "wasm-bindgen-futures"
|
|
3091
|
-
version = "0.4.
|
|
3104
|
+
version = "0.4.58"
|
|
3092
3105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3093
|
-
checksum = "
|
|
3106
|
+
checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
|
|
3094
3107
|
dependencies = [
|
|
3095
3108
|
"cfg-if",
|
|
3109
|
+
"futures-util",
|
|
3096
3110
|
"js-sys",
|
|
3097
3111
|
"once_cell",
|
|
3098
3112
|
"wasm-bindgen",
|
|
@@ -3101,9 +3115,9 @@ dependencies = [
|
|
|
3101
3115
|
|
|
3102
3116
|
[[package]]
|
|
3103
3117
|
name = "wasm-bindgen-macro"
|
|
3104
|
-
version = "0.2.
|
|
3118
|
+
version = "0.2.108"
|
|
3105
3119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3106
|
-
checksum = "
|
|
3120
|
+
checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
|
|
3107
3121
|
dependencies = [
|
|
3108
3122
|
"quote",
|
|
3109
3123
|
"wasm-bindgen-macro-support",
|
|
@@ -3111,26 +3125,48 @@ dependencies = [
|
|
|
3111
3125
|
|
|
3112
3126
|
[[package]]
|
|
3113
3127
|
name = "wasm-bindgen-macro-support"
|
|
3114
|
-
version = "0.2.
|
|
3128
|
+
version = "0.2.108"
|
|
3115
3129
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3116
|
-
checksum = "
|
|
3130
|
+
checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
|
|
3117
3131
|
dependencies = [
|
|
3132
|
+
"bumpalo",
|
|
3118
3133
|
"proc-macro2",
|
|
3119
3134
|
"quote",
|
|
3120
3135
|
"syn",
|
|
3121
|
-
"wasm-bindgen-backend",
|
|
3122
3136
|
"wasm-bindgen-shared",
|
|
3123
3137
|
]
|
|
3124
3138
|
|
|
3125
3139
|
[[package]]
|
|
3126
3140
|
name = "wasm-bindgen-shared"
|
|
3127
|
-
version = "0.2.
|
|
3141
|
+
version = "0.2.108"
|
|
3128
3142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3129
|
-
checksum = "
|
|
3143
|
+
checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
|
|
3130
3144
|
dependencies = [
|
|
3131
3145
|
"unicode-ident",
|
|
3132
3146
|
]
|
|
3133
3147
|
|
|
3148
|
+
[[package]]
|
|
3149
|
+
name = "wasm-encoder"
|
|
3150
|
+
version = "0.244.0"
|
|
3151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3152
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
3153
|
+
dependencies = [
|
|
3154
|
+
"leb128fmt",
|
|
3155
|
+
"wasmparser",
|
|
3156
|
+
]
|
|
3157
|
+
|
|
3158
|
+
[[package]]
|
|
3159
|
+
name = "wasm-metadata"
|
|
3160
|
+
version = "0.244.0"
|
|
3161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3162
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
3163
|
+
dependencies = [
|
|
3164
|
+
"anyhow",
|
|
3165
|
+
"indexmap",
|
|
3166
|
+
"wasm-encoder",
|
|
3167
|
+
"wasmparser",
|
|
3168
|
+
]
|
|
3169
|
+
|
|
3134
3170
|
[[package]]
|
|
3135
3171
|
name = "wasm-streams"
|
|
3136
3172
|
version = "0.4.2"
|
|
@@ -3144,11 +3180,23 @@ dependencies = [
|
|
|
3144
3180
|
"web-sys",
|
|
3145
3181
|
]
|
|
3146
3182
|
|
|
3183
|
+
[[package]]
|
|
3184
|
+
name = "wasmparser"
|
|
3185
|
+
version = "0.244.0"
|
|
3186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3187
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
3188
|
+
dependencies = [
|
|
3189
|
+
"bitflags",
|
|
3190
|
+
"hashbrown 0.15.5",
|
|
3191
|
+
"indexmap",
|
|
3192
|
+
"semver",
|
|
3193
|
+
]
|
|
3194
|
+
|
|
3147
3195
|
[[package]]
|
|
3148
3196
|
name = "web-sys"
|
|
3149
|
-
version = "0.3.
|
|
3197
|
+
version = "0.3.85"
|
|
3150
3198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3151
|
-
checksum = "
|
|
3199
|
+
checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
|
|
3152
3200
|
dependencies = [
|
|
3153
3201
|
"js-sys",
|
|
3154
3202
|
"wasm-bindgen",
|
|
@@ -3195,7 +3243,7 @@ dependencies = [
|
|
|
3195
3243
|
"windows-collections",
|
|
3196
3244
|
"windows-core",
|
|
3197
3245
|
"windows-future",
|
|
3198
|
-
"windows-link",
|
|
3246
|
+
"windows-link 0.1.3",
|
|
3199
3247
|
"windows-numerics",
|
|
3200
3248
|
]
|
|
3201
3249
|
|
|
@@ -3216,7 +3264,7 @@ checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
|
|
3216
3264
|
dependencies = [
|
|
3217
3265
|
"windows-implement",
|
|
3218
3266
|
"windows-interface",
|
|
3219
|
-
"windows-link",
|
|
3267
|
+
"windows-link 0.1.3",
|
|
3220
3268
|
"windows-result",
|
|
3221
3269
|
"windows-strings",
|
|
3222
3270
|
]
|
|
@@ -3228,15 +3276,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3228
3276
|
checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
|
|
3229
3277
|
dependencies = [
|
|
3230
3278
|
"windows-core",
|
|
3231
|
-
"windows-link",
|
|
3279
|
+
"windows-link 0.1.3",
|
|
3232
3280
|
"windows-threading",
|
|
3233
3281
|
]
|
|
3234
3282
|
|
|
3235
3283
|
[[package]]
|
|
3236
3284
|
name = "windows-implement"
|
|
3237
|
-
version = "0.60.
|
|
3285
|
+
version = "0.60.2"
|
|
3238
3286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3239
|
-
checksum = "
|
|
3287
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
3240
3288
|
dependencies = [
|
|
3241
3289
|
"proc-macro2",
|
|
3242
3290
|
"quote",
|
|
@@ -3245,9 +3293,9 @@ dependencies = [
|
|
|
3245
3293
|
|
|
3246
3294
|
[[package]]
|
|
3247
3295
|
name = "windows-interface"
|
|
3248
|
-
version = "0.59.
|
|
3296
|
+
version = "0.59.3"
|
|
3249
3297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3250
|
-
checksum = "
|
|
3298
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
3251
3299
|
dependencies = [
|
|
3252
3300
|
"proc-macro2",
|
|
3253
3301
|
"quote",
|
|
@@ -3260,6 +3308,12 @@ version = "0.1.3"
|
|
|
3260
3308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3261
3309
|
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
3262
3310
|
|
|
3311
|
+
[[package]]
|
|
3312
|
+
name = "windows-link"
|
|
3313
|
+
version = "0.2.1"
|
|
3314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3315
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3316
|
+
|
|
3263
3317
|
[[package]]
|
|
3264
3318
|
name = "windows-numerics"
|
|
3265
3319
|
version = "0.2.0"
|
|
@@ -3267,7 +3321,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3267
3321
|
checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
|
|
3268
3322
|
dependencies = [
|
|
3269
3323
|
"windows-core",
|
|
3270
|
-
"windows-link",
|
|
3324
|
+
"windows-link 0.1.3",
|
|
3271
3325
|
]
|
|
3272
3326
|
|
|
3273
3327
|
[[package]]
|
|
@@ -3276,7 +3330,7 @@ version = "0.3.4"
|
|
|
3276
3330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3277
3331
|
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
|
3278
3332
|
dependencies = [
|
|
3279
|
-
"windows-link",
|
|
3333
|
+
"windows-link 0.1.3",
|
|
3280
3334
|
]
|
|
3281
3335
|
|
|
3282
3336
|
[[package]]
|
|
@@ -3285,7 +3339,7 @@ version = "0.4.2"
|
|
|
3285
3339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3286
3340
|
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
|
3287
3341
|
dependencies = [
|
|
3288
|
-
"windows-link",
|
|
3342
|
+
"windows-link 0.1.3",
|
|
3289
3343
|
]
|
|
3290
3344
|
|
|
3291
3345
|
[[package]]
|
|
@@ -3299,20 +3353,20 @@ dependencies = [
|
|
|
3299
3353
|
|
|
3300
3354
|
[[package]]
|
|
3301
3355
|
name = "windows-sys"
|
|
3302
|
-
version = "0.
|
|
3356
|
+
version = "0.60.2"
|
|
3303
3357
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3304
|
-
checksum = "
|
|
3358
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
3305
3359
|
dependencies = [
|
|
3306
|
-
"windows-targets 0.
|
|
3360
|
+
"windows-targets 0.53.5",
|
|
3307
3361
|
]
|
|
3308
3362
|
|
|
3309
3363
|
[[package]]
|
|
3310
3364
|
name = "windows-sys"
|
|
3311
|
-
version = "0.
|
|
3365
|
+
version = "0.61.2"
|
|
3312
3366
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3313
|
-
checksum = "
|
|
3367
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
3314
3368
|
dependencies = [
|
|
3315
|
-
"windows-
|
|
3369
|
+
"windows-link 0.2.1",
|
|
3316
3370
|
]
|
|
3317
3371
|
|
|
3318
3372
|
[[package]]
|
|
@@ -3333,19 +3387,19 @@ dependencies = [
|
|
|
3333
3387
|
|
|
3334
3388
|
[[package]]
|
|
3335
3389
|
name = "windows-targets"
|
|
3336
|
-
version = "0.53.
|
|
3390
|
+
version = "0.53.5"
|
|
3337
3391
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3338
|
-
checksum = "
|
|
3392
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
3339
3393
|
dependencies = [
|
|
3340
|
-
"windows-link",
|
|
3341
|
-
"windows_aarch64_gnullvm 0.53.
|
|
3342
|
-
"windows_aarch64_msvc 0.53.
|
|
3343
|
-
"windows_i686_gnu 0.53.
|
|
3344
|
-
"windows_i686_gnullvm 0.53.
|
|
3345
|
-
"windows_i686_msvc 0.53.
|
|
3346
|
-
"windows_x86_64_gnu 0.53.
|
|
3347
|
-
"windows_x86_64_gnullvm 0.53.
|
|
3348
|
-
"windows_x86_64_msvc 0.53.
|
|
3394
|
+
"windows-link 0.2.1",
|
|
3395
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
3396
|
+
"windows_aarch64_msvc 0.53.1",
|
|
3397
|
+
"windows_i686_gnu 0.53.1",
|
|
3398
|
+
"windows_i686_gnullvm 0.53.1",
|
|
3399
|
+
"windows_i686_msvc 0.53.1",
|
|
3400
|
+
"windows_x86_64_gnu 0.53.1",
|
|
3401
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
3402
|
+
"windows_x86_64_msvc 0.53.1",
|
|
3349
3403
|
]
|
|
3350
3404
|
|
|
3351
3405
|
[[package]]
|
|
@@ -3354,7 +3408,7 @@ version = "0.1.0"
|
|
|
3354
3408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3355
3409
|
checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
|
|
3356
3410
|
dependencies = [
|
|
3357
|
-
"windows-link",
|
|
3411
|
+
"windows-link 0.1.3",
|
|
3358
3412
|
]
|
|
3359
3413
|
|
|
3360
3414
|
[[package]]
|
|
@@ -3365,9 +3419,9 @@ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
|
3365
3419
|
|
|
3366
3420
|
[[package]]
|
|
3367
3421
|
name = "windows_aarch64_gnullvm"
|
|
3368
|
-
version = "0.53.
|
|
3422
|
+
version = "0.53.1"
|
|
3369
3423
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3370
|
-
checksum = "
|
|
3424
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
3371
3425
|
|
|
3372
3426
|
[[package]]
|
|
3373
3427
|
name = "windows_aarch64_msvc"
|
|
@@ -3377,9 +3431,9 @@ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
|
3377
3431
|
|
|
3378
3432
|
[[package]]
|
|
3379
3433
|
name = "windows_aarch64_msvc"
|
|
3380
|
-
version = "0.53.
|
|
3434
|
+
version = "0.53.1"
|
|
3381
3435
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3382
|
-
checksum = "
|
|
3436
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
3383
3437
|
|
|
3384
3438
|
[[package]]
|
|
3385
3439
|
name = "windows_i686_gnu"
|
|
@@ -3389,9 +3443,9 @@ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
|
3389
3443
|
|
|
3390
3444
|
[[package]]
|
|
3391
3445
|
name = "windows_i686_gnu"
|
|
3392
|
-
version = "0.53.
|
|
3446
|
+
version = "0.53.1"
|
|
3393
3447
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3394
|
-
checksum = "
|
|
3448
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
3395
3449
|
|
|
3396
3450
|
[[package]]
|
|
3397
3451
|
name = "windows_i686_gnullvm"
|
|
@@ -3401,9 +3455,9 @@ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
|
3401
3455
|
|
|
3402
3456
|
[[package]]
|
|
3403
3457
|
name = "windows_i686_gnullvm"
|
|
3404
|
-
version = "0.53.
|
|
3458
|
+
version = "0.53.1"
|
|
3405
3459
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3406
|
-
checksum = "
|
|
3460
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
3407
3461
|
|
|
3408
3462
|
[[package]]
|
|
3409
3463
|
name = "windows_i686_msvc"
|
|
@@ -3413,9 +3467,9 @@ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
|
3413
3467
|
|
|
3414
3468
|
[[package]]
|
|
3415
3469
|
name = "windows_i686_msvc"
|
|
3416
|
-
version = "0.53.
|
|
3470
|
+
version = "0.53.1"
|
|
3417
3471
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3418
|
-
checksum = "
|
|
3472
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
3419
3473
|
|
|
3420
3474
|
[[package]]
|
|
3421
3475
|
name = "windows_x86_64_gnu"
|
|
@@ -3425,9 +3479,9 @@ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
|
3425
3479
|
|
|
3426
3480
|
[[package]]
|
|
3427
3481
|
name = "windows_x86_64_gnu"
|
|
3428
|
-
version = "0.53.
|
|
3482
|
+
version = "0.53.1"
|
|
3429
3483
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3430
|
-
checksum = "
|
|
3484
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
3431
3485
|
|
|
3432
3486
|
[[package]]
|
|
3433
3487
|
name = "windows_x86_64_gnullvm"
|
|
@@ -3437,9 +3491,9 @@ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
|
3437
3491
|
|
|
3438
3492
|
[[package]]
|
|
3439
3493
|
name = "windows_x86_64_gnullvm"
|
|
3440
|
-
version = "0.53.
|
|
3494
|
+
version = "0.53.1"
|
|
3441
3495
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3442
|
-
checksum = "
|
|
3496
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
3443
3497
|
|
|
3444
3498
|
[[package]]
|
|
3445
3499
|
name = "windows_x86_64_msvc"
|
|
@@ -3449,30 +3503,115 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
|
3449
3503
|
|
|
3450
3504
|
[[package]]
|
|
3451
3505
|
name = "windows_x86_64_msvc"
|
|
3452
|
-
version = "0.53.
|
|
3506
|
+
version = "0.53.1"
|
|
3507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3508
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
3509
|
+
|
|
3510
|
+
[[package]]
|
|
3511
|
+
name = "winnow"
|
|
3512
|
+
version = "0.7.14"
|
|
3453
3513
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3454
|
-
checksum = "
|
|
3514
|
+
checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
|
|
3455
3515
|
|
|
3456
3516
|
[[package]]
|
|
3457
|
-
name = "wit-bindgen
|
|
3458
|
-
version = "0.
|
|
3517
|
+
name = "wit-bindgen"
|
|
3518
|
+
version = "0.51.0"
|
|
3459
3519
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3460
|
-
checksum = "
|
|
3520
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
3461
3521
|
dependencies = [
|
|
3522
|
+
"wit-bindgen-rust-macro",
|
|
3523
|
+
]
|
|
3524
|
+
|
|
3525
|
+
[[package]]
|
|
3526
|
+
name = "wit-bindgen-core"
|
|
3527
|
+
version = "0.51.0"
|
|
3528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3529
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
3530
|
+
dependencies = [
|
|
3531
|
+
"anyhow",
|
|
3532
|
+
"heck",
|
|
3533
|
+
"wit-parser",
|
|
3534
|
+
]
|
|
3535
|
+
|
|
3536
|
+
[[package]]
|
|
3537
|
+
name = "wit-bindgen-rust"
|
|
3538
|
+
version = "0.51.0"
|
|
3539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3540
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
3541
|
+
dependencies = [
|
|
3542
|
+
"anyhow",
|
|
3543
|
+
"heck",
|
|
3544
|
+
"indexmap",
|
|
3545
|
+
"prettyplease",
|
|
3546
|
+
"syn",
|
|
3547
|
+
"wasm-metadata",
|
|
3548
|
+
"wit-bindgen-core",
|
|
3549
|
+
"wit-component",
|
|
3550
|
+
]
|
|
3551
|
+
|
|
3552
|
+
[[package]]
|
|
3553
|
+
name = "wit-bindgen-rust-macro"
|
|
3554
|
+
version = "0.51.0"
|
|
3555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3556
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
3557
|
+
dependencies = [
|
|
3558
|
+
"anyhow",
|
|
3559
|
+
"prettyplease",
|
|
3560
|
+
"proc-macro2",
|
|
3561
|
+
"quote",
|
|
3562
|
+
"syn",
|
|
3563
|
+
"wit-bindgen-core",
|
|
3564
|
+
"wit-bindgen-rust",
|
|
3565
|
+
]
|
|
3566
|
+
|
|
3567
|
+
[[package]]
|
|
3568
|
+
name = "wit-component"
|
|
3569
|
+
version = "0.244.0"
|
|
3570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3571
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
3572
|
+
dependencies = [
|
|
3573
|
+
"anyhow",
|
|
3462
3574
|
"bitflags",
|
|
3575
|
+
"indexmap",
|
|
3576
|
+
"log",
|
|
3577
|
+
"serde",
|
|
3578
|
+
"serde_derive",
|
|
3579
|
+
"serde_json",
|
|
3580
|
+
"wasm-encoder",
|
|
3581
|
+
"wasm-metadata",
|
|
3582
|
+
"wasmparser",
|
|
3583
|
+
"wit-parser",
|
|
3584
|
+
]
|
|
3585
|
+
|
|
3586
|
+
[[package]]
|
|
3587
|
+
name = "wit-parser"
|
|
3588
|
+
version = "0.244.0"
|
|
3589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3590
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
3591
|
+
dependencies = [
|
|
3592
|
+
"anyhow",
|
|
3593
|
+
"id-arena",
|
|
3594
|
+
"indexmap",
|
|
3595
|
+
"log",
|
|
3596
|
+
"semver",
|
|
3597
|
+
"serde",
|
|
3598
|
+
"serde_derive",
|
|
3599
|
+
"serde_json",
|
|
3600
|
+
"unicode-xid",
|
|
3601
|
+
"wasmparser",
|
|
3463
3602
|
]
|
|
3464
3603
|
|
|
3465
3604
|
[[package]]
|
|
3466
3605
|
name = "writeable"
|
|
3467
|
-
version = "0.6.
|
|
3606
|
+
version = "0.6.2"
|
|
3468
3607
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3469
|
-
checksum = "
|
|
3608
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
3470
3609
|
|
|
3471
3610
|
[[package]]
|
|
3472
3611
|
name = "xattr"
|
|
3473
|
-
version = "1.
|
|
3612
|
+
version = "1.6.1"
|
|
3474
3613
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3475
|
-
checksum = "
|
|
3614
|
+
checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
|
|
3476
3615
|
dependencies = [
|
|
3477
3616
|
"libc",
|
|
3478
3617
|
"rustix",
|
|
@@ -3480,11 +3619,10 @@ dependencies = [
|
|
|
3480
3619
|
|
|
3481
3620
|
[[package]]
|
|
3482
3621
|
name = "yoke"
|
|
3483
|
-
version = "0.8.
|
|
3622
|
+
version = "0.8.1"
|
|
3484
3623
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3485
|
-
checksum = "
|
|
3624
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
3486
3625
|
dependencies = [
|
|
3487
|
-
"serde",
|
|
3488
3626
|
"stable_deref_trait",
|
|
3489
3627
|
"yoke-derive",
|
|
3490
3628
|
"zerofrom",
|
|
@@ -3492,9 +3630,9 @@ dependencies = [
|
|
|
3492
3630
|
|
|
3493
3631
|
[[package]]
|
|
3494
3632
|
name = "yoke-derive"
|
|
3495
|
-
version = "0.8.
|
|
3633
|
+
version = "0.8.1"
|
|
3496
3634
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3497
|
-
checksum = "
|
|
3635
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
3498
3636
|
dependencies = [
|
|
3499
3637
|
"proc-macro2",
|
|
3500
3638
|
"quote",
|
|
@@ -3504,18 +3642,18 @@ dependencies = [
|
|
|
3504
3642
|
|
|
3505
3643
|
[[package]]
|
|
3506
3644
|
name = "zerocopy"
|
|
3507
|
-
version = "0.8.
|
|
3645
|
+
version = "0.8.39"
|
|
3508
3646
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3509
|
-
checksum = "
|
|
3647
|
+
checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
|
|
3510
3648
|
dependencies = [
|
|
3511
3649
|
"zerocopy-derive",
|
|
3512
3650
|
]
|
|
3513
3651
|
|
|
3514
3652
|
[[package]]
|
|
3515
3653
|
name = "zerocopy-derive"
|
|
3516
|
-
version = "0.8.
|
|
3654
|
+
version = "0.8.39"
|
|
3517
3655
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3518
|
-
checksum = "
|
|
3656
|
+
checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
|
|
3519
3657
|
dependencies = [
|
|
3520
3658
|
"proc-macro2",
|
|
3521
3659
|
"quote",
|
|
@@ -3545,15 +3683,15 @@ dependencies = [
|
|
|
3545
3683
|
|
|
3546
3684
|
[[package]]
|
|
3547
3685
|
name = "zeroize"
|
|
3548
|
-
version = "1.8.
|
|
3686
|
+
version = "1.8.2"
|
|
3549
3687
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3550
|
-
checksum = "
|
|
3688
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
3551
3689
|
|
|
3552
3690
|
[[package]]
|
|
3553
3691
|
name = "zerotrie"
|
|
3554
|
-
version = "0.2.
|
|
3692
|
+
version = "0.2.3"
|
|
3555
3693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3556
|
-
checksum = "
|
|
3694
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
3557
3695
|
dependencies = [
|
|
3558
3696
|
"displaydoc",
|
|
3559
3697
|
"yoke",
|
|
@@ -3562,9 +3700,9 @@ dependencies = [
|
|
|
3562
3700
|
|
|
3563
3701
|
[[package]]
|
|
3564
3702
|
name = "zerovec"
|
|
3565
|
-
version = "0.11.
|
|
3703
|
+
version = "0.11.5"
|
|
3566
3704
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3567
|
-
checksum = "
|
|
3705
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
3568
3706
|
dependencies = [
|
|
3569
3707
|
"yoke",
|
|
3570
3708
|
"zerofrom",
|
|
@@ -3573,9 +3711,9 @@ dependencies = [
|
|
|
3573
3711
|
|
|
3574
3712
|
[[package]]
|
|
3575
3713
|
name = "zerovec-derive"
|
|
3576
|
-
version = "0.11.
|
|
3714
|
+
version = "0.11.2"
|
|
3577
3715
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3578
|
-
checksum = "
|
|
3716
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
3579
3717
|
dependencies = [
|
|
3580
3718
|
"proc-macro2",
|
|
3581
3719
|
"quote",
|
|
@@ -3600,15 +3738,21 @@ dependencies = [
|
|
|
3600
3738
|
|
|
3601
3739
|
[[package]]
|
|
3602
3740
|
name = "zlib-rs"
|
|
3603
|
-
version = "0.
|
|
3741
|
+
version = "0.6.0"
|
|
3604
3742
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3605
|
-
checksum = "
|
|
3743
|
+
checksum = "a7948af682ccbc3342b6e9420e8c51c1fe5d7bf7756002b4a3c6cabfe96a7e3c"
|
|
3744
|
+
|
|
3745
|
+
[[package]]
|
|
3746
|
+
name = "zmij"
|
|
3747
|
+
version = "1.0.20"
|
|
3748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3749
|
+
checksum = "4de98dfa5d5b7fef4ee834d0073d560c9ca7b6c46a71d058c48db7960f8cfaf7"
|
|
3606
3750
|
|
|
3607
3751
|
[[package]]
|
|
3608
3752
|
name = "zopfli"
|
|
3609
|
-
version = "0.8.
|
|
3753
|
+
version = "0.8.3"
|
|
3610
3754
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3611
|
-
checksum = "
|
|
3755
|
+
checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
|
|
3612
3756
|
dependencies = [
|
|
3613
3757
|
"bumpalo",
|
|
3614
3758
|
"crc32fast",
|
|
@@ -3636,9 +3780,9 @@ dependencies = [
|
|
|
3636
3780
|
|
|
3637
3781
|
[[package]]
|
|
3638
3782
|
name = "zstd-sys"
|
|
3639
|
-
version = "2.0.
|
|
3783
|
+
version = "2.0.16+zstd.1.5.7"
|
|
3640
3784
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3641
|
-
checksum = "
|
|
3785
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
3642
3786
|
dependencies = [
|
|
3643
3787
|
"cc",
|
|
3644
3788
|
"pkg-config",
|