@temporalio/core-bridge 1.8.6 → 1.9.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 +670 -594
- package/Cargo.toml +2 -1
- package/lib/errors.js +6 -6
- package/lib/errors.js.map +1 -1
- package/lib/index.d.ts +17 -44
- package/lib/index.js.map +1 -1
- package/package.json +5 -6
- 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/heavy.yml +4 -0
- package/sdk-core/.github/workflows/per-pr.yml +96 -0
- package/sdk-core/ARCHITECTURE.md +1 -1
- package/sdk-core/Cargo.toml +10 -0
- package/sdk-core/LICENSE.txt +0 -2
- package/sdk-core/README.md +37 -21
- package/sdk-core/client/Cargo.toml +7 -4
- package/sdk-core/client/src/lib.rs +274 -142
- package/sdk-core/client/src/metrics.rs +68 -57
- package/sdk-core/client/src/raw.rs +191 -45
- package/sdk-core/client/src/retry.rs +20 -0
- package/sdk-core/client/src/worker_registry/mod.rs +264 -0
- package/sdk-core/client/src/workflow_handle/mod.rs +2 -1
- package/sdk-core/core/Cargo.toml +17 -19
- package/sdk-core/core/src/core_tests/activity_tasks.rs +4 -2
- package/sdk-core/core/src/core_tests/child_workflows.rs +7 -7
- package/sdk-core/core/src/core_tests/mod.rs +1 -0
- package/sdk-core/core/src/core_tests/queries.rs +42 -1
- package/sdk-core/core/src/core_tests/replay_flag.rs +29 -39
- package/sdk-core/core/src/core_tests/updates.rs +73 -0
- package/sdk-core/core/src/core_tests/workflow_tasks.rs +52 -1
- package/sdk-core/core/src/ephemeral_server/mod.rs +34 -11
- package/sdk-core/core/src/internal_flags.rs +7 -1
- package/sdk-core/core/src/lib.rs +19 -36
- package/sdk-core/core/src/protosext/mod.rs +12 -4
- package/sdk-core/core/src/protosext/protocol_messages.rs +102 -0
- package/sdk-core/core/src/replay/mod.rs +99 -48
- package/sdk-core/core/src/telemetry/log_export.rs +161 -28
- package/sdk-core/core/src/telemetry/metrics.rs +869 -248
- package/sdk-core/core/src/telemetry/mod.rs +153 -257
- package/sdk-core/core/src/telemetry/prometheus_server.rs +36 -31
- package/sdk-core/core/src/test_help/mod.rs +64 -5
- package/sdk-core/core/src/worker/activities/activity_heartbeat_manager.rs +12 -2
- package/sdk-core/core/src/worker/activities.rs +276 -10
- package/sdk-core/core/src/worker/client/mocks.rs +18 -0
- package/sdk-core/core/src/worker/client.rs +16 -3
- package/sdk-core/core/src/worker/mod.rs +45 -28
- package/sdk-core/core/src/worker/slot_provider.rs +175 -0
- package/sdk-core/core/src/worker/workflow/driven_workflow.rs +27 -34
- package/sdk-core/core/src/worker/workflow/history_update.rs +5 -2
- package/sdk-core/core/src/worker/workflow/machines/activity_state_machine.rs +71 -95
- package/sdk-core/core/src/worker/workflow/machines/cancel_external_state_machine.rs +34 -22
- package/sdk-core/core/src/worker/workflow/machines/cancel_workflow_state_machine.rs +50 -34
- package/sdk-core/core/src/worker/workflow/machines/child_workflow_state_machine.rs +106 -92
- package/sdk-core/core/src/worker/workflow/machines/continue_as_new_workflow_state_machine.rs +22 -21
- package/sdk-core/core/src/worker/workflow/machines/local_activity_state_machine.rs +386 -499
- package/sdk-core/core/src/worker/workflow/machines/mod.rs +12 -2
- package/sdk-core/core/src/worker/workflow/machines/modify_workflow_properties_state_machine.rs +33 -26
- package/sdk-core/core/src/worker/workflow/machines/patch_state_machine.rs +198 -215
- package/sdk-core/core/src/worker/workflow/machines/signal_external_state_machine.rs +67 -63
- package/sdk-core/core/src/worker/workflow/machines/timer_state_machine.rs +88 -119
- package/sdk-core/core/src/worker/workflow/machines/transition_coverage.rs +3 -1
- package/sdk-core/core/src/worker/workflow/machines/update_state_machine.rs +411 -0
- package/sdk-core/core/src/worker/workflow/machines/upsert_search_attributes_state_machine.rs +27 -26
- package/sdk-core/core/src/worker/workflow/machines/workflow_machines.rs +319 -94
- package/sdk-core/core/src/worker/workflow/managed_run.rs +179 -132
- package/sdk-core/core/src/worker/workflow/mod.rs +129 -58
- package/sdk-core/core/src/worker/workflow/run_cache.rs +16 -26
- package/sdk-core/core/src/worker/workflow/workflow_stream/saved_wf_inputs.rs +2 -2
- package/sdk-core/core/src/worker/workflow/workflow_stream.rs +48 -43
- package/sdk-core/core-api/Cargo.toml +8 -7
- package/sdk-core/core-api/src/lib.rs +4 -12
- package/sdk-core/core-api/src/telemetry/metrics.rs +334 -0
- package/sdk-core/core-api/src/telemetry.rs +53 -42
- package/sdk-core/core-api/src/worker.rs +7 -0
- package/sdk-core/{.buildkite/docker → docker}/docker-compose.yaml +1 -1
- package/sdk-core/etc/dynamic-config.yaml +11 -1
- package/sdk-core/fsm/LICENSE.txt +0 -2
- package/sdk-core/fsm/rustfsm_procmacro/Cargo.toml +1 -1
- package/sdk-core/fsm/rustfsm_procmacro/LICENSE.txt +0 -2
- package/sdk-core/fsm/rustfsm_procmacro/src/lib.rs +1 -3
- package/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/no_handle_conversions_require_into_fail.stderr +2 -2
- package/sdk-core/fsm/rustfsm_trait/LICENSE.txt +0 -2
- package/sdk-core/sdk/Cargo.toml +2 -2
- package/sdk-core/sdk/src/lib.rs +85 -7
- package/sdk-core/sdk/src/workflow_context/options.rs +4 -0
- package/sdk-core/sdk/src/workflow_context.rs +43 -15
- package/sdk-core/sdk/src/workflow_future.rs +334 -204
- package/sdk-core/sdk-core-protos/Cargo.toml +3 -3
- package/sdk-core/sdk-core-protos/build.rs +14 -14
- package/sdk-core/sdk-core-protos/protos/api_upstream/.buildkite/Dockerfile +2 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/Makefile +99 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/api-linter.yaml +56 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/buf.gen.yaml +20 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/buf.lock +11 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/buf.yaml +18 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/google/api/annotations.proto +31 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/google/api/http.proto +379 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/google/protobuf/any.proto +162 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/google/protobuf/descriptor.proto +1212 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/google/protobuf/duration.proto +115 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/google/protobuf/empty.proto +51 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/google/protobuf/timestamp.proto +144 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/google/protobuf/wrappers.proto +123 -0
- package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/batch/v1/message.proto +12 -9
- package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/command/v1/message.proto +11 -13
- package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/common/v1/message.proto +33 -4
- package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/enums/v1/failed_cause.proto +2 -0
- package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/enums/v1/reset.proto +4 -4
- package/sdk-core/{protos/api_upstream/build/tools.go → sdk-core-protos/protos/api_upstream/temporal/api/export/v1/message.proto} +22 -6
- package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/filter/v1/message.proto +2 -4
- package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/history/v1/message.proto +21 -23
- package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/namespace/v1/message.proto +2 -4
- package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/operatorservice/v1/request_response.proto +2 -0
- package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/operatorservice/v1/service.proto +4 -0
- package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/replication/v1/message.proto +1 -3
- package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/schedule/v1/message.proto +36 -20
- package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/sdk/v1/task_complete_metadata.proto +13 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/sdk/v1/workflow_metadata.proto +66 -0
- package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/taskqueue/v1/message.proto +2 -4
- package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/update/v1/message.proto +1 -1
- package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/version/v1/message.proto +2 -3
- package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/workflow/v1/message.proto +24 -22
- package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/workflowservice/v1/request_response.proto +84 -32
- package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/workflowservice/v1/service.proto +205 -47
- package/sdk-core/{protos → sdk-core-protos/protos}/local/temporal/sdk/core/workflow_activation/workflow_activation.proto +57 -0
- package/sdk-core/{protos → sdk-core-protos/protos}/local/temporal/sdk/core/workflow_commands/workflow_commands.proto +27 -0
- package/sdk-core/sdk-core-protos/src/history_builder.rs +67 -2
- package/sdk-core/sdk-core-protos/src/history_info.rs +1 -1
- package/sdk-core/sdk-core-protos/src/lib.rs +76 -3
- package/sdk-core/sdk-core-protos/src/utilities.rs +14 -0
- package/sdk-core/test-utils/Cargo.toml +6 -1
- package/sdk-core/test-utils/src/canned_histories.rs +3 -57
- package/sdk-core/test-utils/src/interceptors.rs +46 -0
- package/sdk-core/test-utils/src/lib.rs +106 -38
- package/sdk-core/tests/integ_tests/metrics_tests.rs +110 -15
- package/sdk-core/tests/integ_tests/queries_tests.rs +174 -3
- package/sdk-core/tests/integ_tests/update_tests.rs +908 -0
- package/sdk-core/tests/integ_tests/visibility_tests.rs +4 -4
- package/sdk-core/tests/integ_tests/workflow_tests/activities.rs +44 -1
- package/sdk-core/tests/integ_tests/workflow_tests/cancel_external.rs +1 -1
- package/sdk-core/tests/integ_tests/workflow_tests/cancel_wf.rs +1 -1
- package/sdk-core/tests/integ_tests/workflow_tests/child_workflows.rs +4 -4
- package/sdk-core/tests/integ_tests/workflow_tests/eager.rs +61 -0
- package/sdk-core/tests/integ_tests/workflow_tests/replay.rs +27 -2
- package/sdk-core/tests/integ_tests/workflow_tests.rs +142 -3
- package/sdk-core/tests/main.rs +2 -1
- package/sdk-core/tests/runner.rs +15 -2
- package/src/conversions.rs +107 -96
- package/src/helpers.rs +74 -0
- package/src/runtime.rs +29 -15
- package/src/worker.rs +14 -61
- package/ts/index.ts +23 -54
- package/sdk-core/.buildkite/docker/Dockerfile +0 -9
- package/sdk-core/.buildkite/docker/build.sh +0 -5
- package/sdk-core/.buildkite/docker/docker-compose-ci.yaml +0 -27
- package/sdk-core/.buildkite/pipeline.yml +0 -57
- package/sdk-core/.github/workflows/semgrep.yml +0 -25
- package/sdk-core/client/LICENSE.txt +0 -23
- package/sdk-core/core/LICENSE.txt +0 -23
- package/sdk-core/core/src/worker/workflow/bridge.rs +0 -35
- package/sdk-core/core/src/worker/workflow/managed_run/managed_wf_test.rs +0 -215
- package/sdk-core/core-api/LICENSE.txt +0 -23
- package/sdk-core/protos/api_upstream/.buildkite/Dockerfile +0 -2
- package/sdk-core/protos/api_upstream/Makefile +0 -80
- package/sdk-core/protos/api_upstream/api-linter.yaml +0 -40
- package/sdk-core/protos/api_upstream/buf.yaml +0 -9
- package/sdk-core/protos/api_upstream/build/go.mod +0 -7
- package/sdk-core/protos/api_upstream/build/go.sum +0 -5
- package/sdk-core/protos/api_upstream/go.mod +0 -6
- package/sdk-core/protos/testsrv_upstream/dependencies/gogoproto/gogo.proto +0 -141
- package/sdk-core/sdk/LICENSE.txt +0 -23
- package/sdk-core/sdk-core-protos/LICENSE.txt +0 -23
- /package/sdk-core/{.buildkite/docker → docker}/docker-compose-telem.yaml +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/.buildkite/docker-compose.yml +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/.buildkite/pipeline.yml +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/.github/CODEOWNERS +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/.github/workflows/publish-docs.yml +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/.github/workflows/trigger-api-go-update.yml +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/LICENSE +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/README.md +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/enums/v1/batch_operation.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/enums/v1/command_type.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/enums/v1/common.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/enums/v1/event_type.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/enums/v1/namespace.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/enums/v1/query.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/enums/v1/schedule.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/enums/v1/task_queue.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/enums/v1/update.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/enums/v1/workflow.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/errordetails/v1/message.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/failure/v1/message.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/protocol/v1/message.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/api_upstream/temporal/api/query/v1/message.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/google/rpc/status.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/grpc/health/v1/health.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/local/temporal/sdk/core/activity_result/activity_result.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/local/temporal/sdk/core/activity_task/activity_task.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/local/temporal/sdk/core/child_workflow/child_workflow.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/local/temporal/sdk/core/common/common.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/local/temporal/sdk/core/core_interface.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/local/temporal/sdk/core/external_data/external_data.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/local/temporal/sdk/core/workflow_completion/workflow_completion.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/testsrv_upstream/Makefile +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/testsrv_upstream/api-linter.yaml +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/testsrv_upstream/buf.yaml +0 -0
- /package/sdk-core/{protos/api_upstream → sdk-core-protos/protos/testsrv_upstream}/dependencies/gogoproto/gogo.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/testsrv_upstream/temporal/api/testservice/v1/request_response.proto +0 -0
- /package/sdk-core/{protos → sdk-core-protos/protos}/testsrv_upstream/temporal/api/testservice/v1/service.proto +0 -0
package/Cargo.lock
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 3
|
|
4
4
|
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "addr2line"
|
|
7
|
+
version = "0.21.0"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"gimli",
|
|
12
|
+
]
|
|
13
|
+
|
|
5
14
|
[[package]]
|
|
6
15
|
name = "adler"
|
|
7
16
|
version = "1.0.2"
|
|
@@ -21,35 +30,36 @@ dependencies = [
|
|
|
21
30
|
|
|
22
31
|
[[package]]
|
|
23
32
|
name = "ahash"
|
|
24
|
-
version = "0.8.
|
|
33
|
+
version = "0.8.7"
|
|
25
34
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
26
|
-
checksum = "
|
|
35
|
+
checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01"
|
|
27
36
|
dependencies = [
|
|
28
37
|
"cfg-if",
|
|
29
38
|
"once_cell",
|
|
30
39
|
"version_check",
|
|
40
|
+
"zerocopy",
|
|
31
41
|
]
|
|
32
42
|
|
|
33
43
|
[[package]]
|
|
34
44
|
name = "aho-corasick"
|
|
35
|
-
version = "1.
|
|
45
|
+
version = "1.1.2"
|
|
36
46
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
37
|
-
checksum = "
|
|
47
|
+
checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
|
|
38
48
|
dependencies = [
|
|
39
49
|
"memchr",
|
|
40
50
|
]
|
|
41
51
|
|
|
42
52
|
[[package]]
|
|
43
|
-
name = "
|
|
44
|
-
version = "0.
|
|
53
|
+
name = "allocator-api2"
|
|
54
|
+
version = "0.2.16"
|
|
45
55
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
46
|
-
checksum = "
|
|
56
|
+
checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
|
|
47
57
|
|
|
48
58
|
[[package]]
|
|
49
59
|
name = "anyhow"
|
|
50
|
-
version = "1.0.
|
|
60
|
+
version = "1.0.79"
|
|
51
61
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
52
|
-
checksum = "
|
|
62
|
+
checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca"
|
|
53
63
|
|
|
54
64
|
[[package]]
|
|
55
65
|
name = "arc-swap"
|
|
@@ -76,18 +86,18 @@ checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
|
|
|
76
86
|
dependencies = [
|
|
77
87
|
"proc-macro2",
|
|
78
88
|
"quote",
|
|
79
|
-
"syn 2.0.
|
|
89
|
+
"syn 2.0.48",
|
|
80
90
|
]
|
|
81
91
|
|
|
82
92
|
[[package]]
|
|
83
93
|
name = "async-trait"
|
|
84
|
-
version = "0.1.
|
|
94
|
+
version = "0.1.77"
|
|
85
95
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
-
checksum = "
|
|
96
|
+
checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9"
|
|
87
97
|
dependencies = [
|
|
88
98
|
"proc-macro2",
|
|
89
99
|
"quote",
|
|
90
|
-
"syn 2.0.
|
|
100
|
+
"syn 2.0.48",
|
|
91
101
|
]
|
|
92
102
|
|
|
93
103
|
[[package]]
|
|
@@ -98,13 +108,13 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
|
98
108
|
|
|
99
109
|
[[package]]
|
|
100
110
|
name = "axum"
|
|
101
|
-
version = "0.6.
|
|
111
|
+
version = "0.6.20"
|
|
102
112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
-
checksum = "
|
|
113
|
+
checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf"
|
|
104
114
|
dependencies = [
|
|
105
115
|
"async-trait",
|
|
106
116
|
"axum-core",
|
|
107
|
-
"bitflags",
|
|
117
|
+
"bitflags 1.3.2",
|
|
108
118
|
"bytes",
|
|
109
119
|
"futures-util",
|
|
110
120
|
"http",
|
|
@@ -153,16 +163,25 @@ dependencies = [
|
|
|
153
163
|
]
|
|
154
164
|
|
|
155
165
|
[[package]]
|
|
156
|
-
name = "
|
|
157
|
-
version = "0.
|
|
166
|
+
name = "backtrace"
|
|
167
|
+
version = "0.3.69"
|
|
158
168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
-
checksum = "
|
|
169
|
+
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
|
|
170
|
+
dependencies = [
|
|
171
|
+
"addr2line",
|
|
172
|
+
"cc",
|
|
173
|
+
"cfg-if",
|
|
174
|
+
"libc",
|
|
175
|
+
"miniz_oxide",
|
|
176
|
+
"object",
|
|
177
|
+
"rustc-demangle",
|
|
178
|
+
]
|
|
160
179
|
|
|
161
180
|
[[package]]
|
|
162
181
|
name = "base64"
|
|
163
|
-
version = "0.21.
|
|
182
|
+
version = "0.21.6"
|
|
164
183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
-
checksum = "
|
|
184
|
+
checksum = "c79fed4cdb43e993fcdadc7e58a09fd0e3e649c4436fa11da71c9f1f3ee7feb9"
|
|
166
185
|
|
|
167
186
|
[[package]]
|
|
168
187
|
name = "base64ct"
|
|
@@ -176,6 +195,12 @@ version = "1.3.2"
|
|
|
176
195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
196
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
178
197
|
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "bitflags"
|
|
200
|
+
version = "2.4.1"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
|
|
203
|
+
|
|
179
204
|
[[package]]
|
|
180
205
|
name = "block-buffer"
|
|
181
206
|
version = "0.10.4"
|
|
@@ -187,21 +212,21 @@ dependencies = [
|
|
|
187
212
|
|
|
188
213
|
[[package]]
|
|
189
214
|
name = "bumpalo"
|
|
190
|
-
version = "3.
|
|
215
|
+
version = "3.14.0"
|
|
191
216
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
-
checksum = "
|
|
217
|
+
checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
|
|
193
218
|
|
|
194
219
|
[[package]]
|
|
195
220
|
name = "byteorder"
|
|
196
|
-
version = "1.
|
|
221
|
+
version = "1.5.0"
|
|
197
222
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
-
checksum = "
|
|
223
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
199
224
|
|
|
200
225
|
[[package]]
|
|
201
226
|
name = "bytes"
|
|
202
|
-
version = "1.
|
|
227
|
+
version = "1.5.0"
|
|
203
228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
-
checksum = "
|
|
229
|
+
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
|
|
205
230
|
|
|
206
231
|
[[package]]
|
|
207
232
|
name = "bzip2"
|
|
@@ -226,11 +251,12 @@ dependencies = [
|
|
|
226
251
|
|
|
227
252
|
[[package]]
|
|
228
253
|
name = "cc"
|
|
229
|
-
version = "1.0.
|
|
254
|
+
version = "1.0.83"
|
|
230
255
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
-
checksum = "
|
|
256
|
+
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
|
|
232
257
|
dependencies = [
|
|
233
258
|
"jobserver",
|
|
259
|
+
"libc",
|
|
234
260
|
]
|
|
235
261
|
|
|
236
262
|
[[package]]
|
|
@@ -241,11 +267,10 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
241
267
|
|
|
242
268
|
[[package]]
|
|
243
269
|
name = "chrono"
|
|
244
|
-
version = "0.4.
|
|
270
|
+
version = "0.4.31"
|
|
245
271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
-
checksum = "
|
|
272
|
+
checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38"
|
|
247
273
|
dependencies = [
|
|
248
|
-
"android-tzdata",
|
|
249
274
|
"num-traits",
|
|
250
275
|
"serde",
|
|
251
276
|
]
|
|
@@ -274,9 +299,9 @@ checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
|
|
|
274
299
|
|
|
275
300
|
[[package]]
|
|
276
301
|
name = "core-foundation"
|
|
277
|
-
version = "0.9.
|
|
302
|
+
version = "0.9.4"
|
|
278
303
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
-
checksum = "
|
|
304
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
280
305
|
dependencies = [
|
|
281
306
|
"core-foundation-sys",
|
|
282
307
|
"libc",
|
|
@@ -284,15 +309,15 @@ dependencies = [
|
|
|
284
309
|
|
|
285
310
|
[[package]]
|
|
286
311
|
name = "core-foundation-sys"
|
|
287
|
-
version = "0.8.
|
|
312
|
+
version = "0.8.6"
|
|
288
313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
289
|
-
checksum = "
|
|
314
|
+
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
|
290
315
|
|
|
291
316
|
[[package]]
|
|
292
317
|
name = "cpufeatures"
|
|
293
|
-
version = "0.2.
|
|
318
|
+
version = "0.2.12"
|
|
294
319
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
|
-
checksum = "
|
|
320
|
+
checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
|
|
296
321
|
dependencies = [
|
|
297
322
|
"libc",
|
|
298
323
|
]
|
|
@@ -308,11 +333,10 @@ dependencies = [
|
|
|
308
333
|
|
|
309
334
|
[[package]]
|
|
310
335
|
name = "crossbeam"
|
|
311
|
-
version = "0.8.
|
|
336
|
+
version = "0.8.4"
|
|
312
337
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
-
checksum = "
|
|
338
|
+
checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
|
|
314
339
|
dependencies = [
|
|
315
|
-
"cfg-if",
|
|
316
340
|
"crossbeam-channel",
|
|
317
341
|
"crossbeam-deque",
|
|
318
342
|
"crossbeam-epoch",
|
|
@@ -322,56 +346,46 @@ dependencies = [
|
|
|
322
346
|
|
|
323
347
|
[[package]]
|
|
324
348
|
name = "crossbeam-channel"
|
|
325
|
-
version = "0.5.
|
|
349
|
+
version = "0.5.11"
|
|
326
350
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
-
checksum = "
|
|
351
|
+
checksum = "176dc175b78f56c0f321911d9c8eb2b77a78a4860b9c19db83835fea1a46649b"
|
|
328
352
|
dependencies = [
|
|
329
|
-
"cfg-if",
|
|
330
353
|
"crossbeam-utils",
|
|
331
354
|
]
|
|
332
355
|
|
|
333
356
|
[[package]]
|
|
334
357
|
name = "crossbeam-deque"
|
|
335
|
-
version = "0.8.
|
|
358
|
+
version = "0.8.5"
|
|
336
359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
-
checksum = "
|
|
360
|
+
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
|
|
338
361
|
dependencies = [
|
|
339
|
-
"cfg-if",
|
|
340
362
|
"crossbeam-epoch",
|
|
341
363
|
"crossbeam-utils",
|
|
342
364
|
]
|
|
343
365
|
|
|
344
366
|
[[package]]
|
|
345
367
|
name = "crossbeam-epoch"
|
|
346
|
-
version = "0.9.
|
|
368
|
+
version = "0.9.18"
|
|
347
369
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
-
checksum = "
|
|
370
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
349
371
|
dependencies = [
|
|
350
|
-
"autocfg",
|
|
351
|
-
"cfg-if",
|
|
352
372
|
"crossbeam-utils",
|
|
353
|
-
"memoffset 0.9.0",
|
|
354
|
-
"scopeguard",
|
|
355
373
|
]
|
|
356
374
|
|
|
357
375
|
[[package]]
|
|
358
376
|
name = "crossbeam-queue"
|
|
359
|
-
version = "0.3.
|
|
377
|
+
version = "0.3.11"
|
|
360
378
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
|
-
checksum = "
|
|
379
|
+
checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35"
|
|
362
380
|
dependencies = [
|
|
363
|
-
"cfg-if",
|
|
364
381
|
"crossbeam-utils",
|
|
365
382
|
]
|
|
366
383
|
|
|
367
384
|
[[package]]
|
|
368
385
|
name = "crossbeam-utils"
|
|
369
|
-
version = "0.8.
|
|
386
|
+
version = "0.8.19"
|
|
370
387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
-
checksum = "
|
|
372
|
-
dependencies = [
|
|
373
|
-
"cfg-if",
|
|
374
|
-
]
|
|
388
|
+
checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
|
|
375
389
|
|
|
376
390
|
[[package]]
|
|
377
391
|
name = "crypto-common"
|
|
@@ -420,17 +434,26 @@ dependencies = [
|
|
|
420
434
|
|
|
421
435
|
[[package]]
|
|
422
436
|
name = "dashmap"
|
|
423
|
-
version = "5.
|
|
437
|
+
version = "5.5.3"
|
|
424
438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
-
checksum = "
|
|
439
|
+
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
|
|
426
440
|
dependencies = [
|
|
427
441
|
"cfg-if",
|
|
428
|
-
"hashbrown 0.
|
|
442
|
+
"hashbrown 0.14.3",
|
|
429
443
|
"lock_api",
|
|
430
444
|
"once_cell",
|
|
431
445
|
"parking_lot_core",
|
|
432
446
|
]
|
|
433
447
|
|
|
448
|
+
[[package]]
|
|
449
|
+
name = "deranged"
|
|
450
|
+
version = "0.3.11"
|
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
+
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
|
|
453
|
+
dependencies = [
|
|
454
|
+
"powerfmt",
|
|
455
|
+
]
|
|
456
|
+
|
|
434
457
|
[[package]]
|
|
435
458
|
name = "derive_builder"
|
|
436
459
|
version = "0.12.0"
|
|
@@ -500,15 +523,15 @@ checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1"
|
|
|
500
523
|
|
|
501
524
|
[[package]]
|
|
502
525
|
name = "either"
|
|
503
|
-
version = "1.
|
|
526
|
+
version = "1.9.0"
|
|
504
527
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
505
|
-
checksum = "
|
|
528
|
+
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
|
|
506
529
|
|
|
507
530
|
[[package]]
|
|
508
531
|
name = "encoding_rs"
|
|
509
|
-
version = "0.8.
|
|
532
|
+
version = "0.8.33"
|
|
510
533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
-
checksum = "
|
|
534
|
+
checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
|
|
512
535
|
dependencies = [
|
|
513
536
|
"cfg-if",
|
|
514
537
|
]
|
|
@@ -530,70 +553,62 @@ checksum = "eecf8589574ce9b895052fa12d69af7a233f99e6107f5cb8dd1044f2a17bfdcb"
|
|
|
530
553
|
dependencies = [
|
|
531
554
|
"proc-macro2",
|
|
532
555
|
"quote",
|
|
533
|
-
"syn 2.0.
|
|
556
|
+
"syn 2.0.48",
|
|
534
557
|
]
|
|
535
558
|
|
|
536
559
|
[[package]]
|
|
537
560
|
name = "enum_dispatch"
|
|
538
|
-
version = "0.3.
|
|
561
|
+
version = "0.3.12"
|
|
539
562
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
540
|
-
checksum = "
|
|
563
|
+
checksum = "8f33313078bb8d4d05a2733a94ac4c2d8a0df9a2b84424ebf4f33bfc224a890e"
|
|
541
564
|
dependencies = [
|
|
542
565
|
"once_cell",
|
|
543
566
|
"proc-macro2",
|
|
544
567
|
"quote",
|
|
545
|
-
"syn
|
|
568
|
+
"syn 2.0.48",
|
|
546
569
|
]
|
|
547
570
|
|
|
548
571
|
[[package]]
|
|
549
|
-
name = "
|
|
550
|
-
version = "0.
|
|
572
|
+
name = "equivalent"
|
|
573
|
+
version = "1.0.1"
|
|
551
574
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
-
checksum = "
|
|
553
|
-
dependencies = [
|
|
554
|
-
"serde",
|
|
555
|
-
]
|
|
575
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
556
576
|
|
|
557
577
|
[[package]]
|
|
558
|
-
name = "
|
|
559
|
-
version = "0.
|
|
578
|
+
name = "erased-serde"
|
|
579
|
+
version = "0.4.2"
|
|
560
580
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
-
checksum = "
|
|
581
|
+
checksum = "55d05712b2d8d88102bc9868020c9e5c7a1f5527c452b9b97450a1d006140ba7"
|
|
562
582
|
dependencies = [
|
|
563
|
-
"
|
|
564
|
-
"libc",
|
|
565
|
-
"windows-sys 0.48.0",
|
|
583
|
+
"serde",
|
|
566
584
|
]
|
|
567
585
|
|
|
568
586
|
[[package]]
|
|
569
|
-
name = "errno
|
|
570
|
-
version = "0.
|
|
587
|
+
name = "errno"
|
|
588
|
+
version = "0.3.8"
|
|
571
589
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
572
|
-
checksum = "
|
|
590
|
+
checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
|
|
573
591
|
dependencies = [
|
|
574
|
-
"cc",
|
|
575
592
|
"libc",
|
|
593
|
+
"windows-sys 0.52.0",
|
|
576
594
|
]
|
|
577
595
|
|
|
578
596
|
[[package]]
|
|
579
597
|
name = "fastrand"
|
|
580
|
-
version = "
|
|
598
|
+
version = "2.0.1"
|
|
581
599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
-
checksum = "
|
|
583
|
-
dependencies = [
|
|
584
|
-
"instant",
|
|
585
|
-
]
|
|
600
|
+
checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
|
|
586
601
|
|
|
587
602
|
[[package]]
|
|
588
603
|
name = "filetime"
|
|
589
|
-
version = "0.2.
|
|
604
|
+
version = "0.2.23"
|
|
590
605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
-
checksum = "
|
|
606
|
+
checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd"
|
|
592
607
|
dependencies = [
|
|
593
608
|
"cfg-if",
|
|
594
609
|
"libc",
|
|
595
|
-
"redox_syscall
|
|
596
|
-
"windows-sys 0.
|
|
610
|
+
"redox_syscall",
|
|
611
|
+
"windows-sys 0.52.0",
|
|
597
612
|
]
|
|
598
613
|
|
|
599
614
|
[[package]]
|
|
@@ -604,9 +619,9 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
|
604
619
|
|
|
605
620
|
[[package]]
|
|
606
621
|
name = "flate2"
|
|
607
|
-
version = "1.0.
|
|
622
|
+
version = "1.0.28"
|
|
608
623
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
609
|
-
checksum = "
|
|
624
|
+
checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
|
|
610
625
|
dependencies = [
|
|
611
626
|
"crc32fast",
|
|
612
627
|
"miniz_oxide",
|
|
@@ -629,9 +644,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
|
629
644
|
|
|
630
645
|
[[package]]
|
|
631
646
|
name = "form_urlencoded"
|
|
632
|
-
version = "1.2.
|
|
647
|
+
version = "1.2.1"
|
|
633
648
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
-
checksum = "
|
|
649
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
635
650
|
dependencies = [
|
|
636
651
|
"percent-encoding",
|
|
637
652
|
]
|
|
@@ -644,9 +659,9 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa"
|
|
|
644
659
|
|
|
645
660
|
[[package]]
|
|
646
661
|
name = "futures"
|
|
647
|
-
version = "0.3.
|
|
662
|
+
version = "0.3.30"
|
|
648
663
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
-
checksum = "
|
|
664
|
+
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
|
|
650
665
|
dependencies = [
|
|
651
666
|
"futures-channel",
|
|
652
667
|
"futures-core",
|
|
@@ -659,9 +674,9 @@ dependencies = [
|
|
|
659
674
|
|
|
660
675
|
[[package]]
|
|
661
676
|
name = "futures-channel"
|
|
662
|
-
version = "0.3.
|
|
677
|
+
version = "0.3.30"
|
|
663
678
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
-
checksum = "
|
|
679
|
+
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
|
|
665
680
|
dependencies = [
|
|
666
681
|
"futures-core",
|
|
667
682
|
"futures-sink",
|
|
@@ -669,15 +684,15 @@ dependencies = [
|
|
|
669
684
|
|
|
670
685
|
[[package]]
|
|
671
686
|
name = "futures-core"
|
|
672
|
-
version = "0.3.
|
|
687
|
+
version = "0.3.30"
|
|
673
688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
674
|
-
checksum = "
|
|
689
|
+
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
|
|
675
690
|
|
|
676
691
|
[[package]]
|
|
677
692
|
name = "futures-executor"
|
|
678
|
-
version = "0.3.
|
|
693
|
+
version = "0.3.30"
|
|
679
694
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
680
|
-
checksum = "
|
|
695
|
+
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
|
|
681
696
|
dependencies = [
|
|
682
697
|
"futures-core",
|
|
683
698
|
"futures-task",
|
|
@@ -686,19 +701,19 @@ dependencies = [
|
|
|
686
701
|
|
|
687
702
|
[[package]]
|
|
688
703
|
name = "futures-io"
|
|
689
|
-
version = "0.3.
|
|
704
|
+
version = "0.3.30"
|
|
690
705
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
-
checksum = "
|
|
706
|
+
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
|
|
692
707
|
|
|
693
708
|
[[package]]
|
|
694
709
|
name = "futures-macro"
|
|
695
|
-
version = "0.3.
|
|
710
|
+
version = "0.3.30"
|
|
696
711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
-
checksum = "
|
|
712
|
+
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
|
698
713
|
dependencies = [
|
|
699
714
|
"proc-macro2",
|
|
700
715
|
"quote",
|
|
701
|
-
"syn 2.0.
|
|
716
|
+
"syn 2.0.48",
|
|
702
717
|
]
|
|
703
718
|
|
|
704
719
|
[[package]]
|
|
@@ -714,15 +729,15 @@ dependencies = [
|
|
|
714
729
|
|
|
715
730
|
[[package]]
|
|
716
731
|
name = "futures-sink"
|
|
717
|
-
version = "0.3.
|
|
732
|
+
version = "0.3.30"
|
|
718
733
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
-
checksum = "
|
|
734
|
+
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
|
|
720
735
|
|
|
721
736
|
[[package]]
|
|
722
737
|
name = "futures-task"
|
|
723
|
-
version = "0.3.
|
|
738
|
+
version = "0.3.30"
|
|
724
739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
-
checksum = "
|
|
740
|
+
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
|
|
726
741
|
|
|
727
742
|
[[package]]
|
|
728
743
|
name = "futures-timer"
|
|
@@ -732,9 +747,9 @@ checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
|
|
|
732
747
|
|
|
733
748
|
[[package]]
|
|
734
749
|
name = "futures-util"
|
|
735
|
-
version = "0.3.
|
|
750
|
+
version = "0.3.30"
|
|
736
751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
737
|
-
checksum = "
|
|
752
|
+
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
|
|
738
753
|
dependencies = [
|
|
739
754
|
"futures-channel",
|
|
740
755
|
"futures-core",
|
|
@@ -760,31 +775,32 @@ dependencies = [
|
|
|
760
775
|
|
|
761
776
|
[[package]]
|
|
762
777
|
name = "getrandom"
|
|
763
|
-
version = "0.2.
|
|
778
|
+
version = "0.2.12"
|
|
764
779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
-
checksum = "
|
|
780
|
+
checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
|
|
766
781
|
dependencies = [
|
|
767
782
|
"cfg-if",
|
|
768
783
|
"libc",
|
|
769
|
-
"wasi
|
|
784
|
+
"wasi",
|
|
770
785
|
]
|
|
771
786
|
|
|
772
787
|
[[package]]
|
|
773
|
-
name = "
|
|
774
|
-
version = "0.1
|
|
788
|
+
name = "gimli"
|
|
789
|
+
version = "0.28.1"
|
|
775
790
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
776
|
-
checksum = "
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
"
|
|
780
|
-
"
|
|
781
|
-
|
|
791
|
+
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
|
|
792
|
+
|
|
793
|
+
[[package]]
|
|
794
|
+
name = "glob"
|
|
795
|
+
version = "0.3.1"
|
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
782
798
|
|
|
783
799
|
[[package]]
|
|
784
800
|
name = "governor"
|
|
785
|
-
version = "0.
|
|
801
|
+
version = "0.6.0"
|
|
786
802
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
787
|
-
checksum = "
|
|
803
|
+
checksum = "821239e5672ff23e2a7060901fa622950bbd80b649cdaadd78d1c1767ed14eb4"
|
|
788
804
|
dependencies = [
|
|
789
805
|
"cfg-if",
|
|
790
806
|
"dashmap",
|
|
@@ -800,9 +816,9 @@ dependencies = [
|
|
|
800
816
|
|
|
801
817
|
[[package]]
|
|
802
818
|
name = "h2"
|
|
803
|
-
version = "0.3.
|
|
819
|
+
version = "0.3.22"
|
|
804
820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
805
|
-
checksum = "
|
|
821
|
+
checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178"
|
|
806
822
|
dependencies = [
|
|
807
823
|
"bytes",
|
|
808
824
|
"fnv",
|
|
@@ -810,7 +826,7 @@ dependencies = [
|
|
|
810
826
|
"futures-sink",
|
|
811
827
|
"futures-util",
|
|
812
828
|
"http",
|
|
813
|
-
"indexmap",
|
|
829
|
+
"indexmap 2.1.0",
|
|
814
830
|
"slab",
|
|
815
831
|
"tokio",
|
|
816
832
|
"tokio-util",
|
|
@@ -825,11 +841,12 @@ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
|
825
841
|
|
|
826
842
|
[[package]]
|
|
827
843
|
name = "hashbrown"
|
|
828
|
-
version = "0.
|
|
844
|
+
version = "0.14.3"
|
|
829
845
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
-
checksum = "
|
|
846
|
+
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
|
|
831
847
|
dependencies = [
|
|
832
848
|
"ahash",
|
|
849
|
+
"allocator-api2",
|
|
833
850
|
]
|
|
834
851
|
|
|
835
852
|
[[package]]
|
|
@@ -840,18 +857,9 @@ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
|
840
857
|
|
|
841
858
|
[[package]]
|
|
842
859
|
name = "hermit-abi"
|
|
843
|
-
version = "0.
|
|
844
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
845
|
-
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
|
|
846
|
-
dependencies = [
|
|
847
|
-
"libc",
|
|
848
|
-
]
|
|
849
|
-
|
|
850
|
-
[[package]]
|
|
851
|
-
name = "hermit-abi"
|
|
852
|
-
version = "0.3.1"
|
|
860
|
+
version = "0.3.3"
|
|
853
861
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
|
-
checksum = "
|
|
862
|
+
checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
|
|
855
863
|
|
|
856
864
|
[[package]]
|
|
857
865
|
name = "hmac"
|
|
@@ -862,11 +870,20 @@ dependencies = [
|
|
|
862
870
|
"digest",
|
|
863
871
|
]
|
|
864
872
|
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "home"
|
|
875
|
+
version = "0.5.9"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
|
|
878
|
+
dependencies = [
|
|
879
|
+
"windows-sys 0.52.0",
|
|
880
|
+
]
|
|
881
|
+
|
|
865
882
|
[[package]]
|
|
866
883
|
name = "http"
|
|
867
|
-
version = "0.2.
|
|
884
|
+
version = "0.2.11"
|
|
868
885
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
-
checksum = "
|
|
886
|
+
checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb"
|
|
870
887
|
dependencies = [
|
|
871
888
|
"bytes",
|
|
872
889
|
"fnv",
|
|
@@ -875,9 +892,9 @@ dependencies = [
|
|
|
875
892
|
|
|
876
893
|
[[package]]
|
|
877
894
|
name = "http-body"
|
|
878
|
-
version = "0.4.
|
|
895
|
+
version = "0.4.6"
|
|
879
896
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
-
checksum = "
|
|
897
|
+
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
|
881
898
|
dependencies = [
|
|
882
899
|
"bytes",
|
|
883
900
|
"http",
|
|
@@ -892,15 +909,15 @@ checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
|
|
|
892
909
|
|
|
893
910
|
[[package]]
|
|
894
911
|
name = "httpdate"
|
|
895
|
-
version = "1.0.
|
|
912
|
+
version = "1.0.3"
|
|
896
913
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
897
|
-
checksum = "
|
|
914
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
898
915
|
|
|
899
916
|
[[package]]
|
|
900
917
|
name = "hyper"
|
|
901
|
-
version = "0.14.
|
|
918
|
+
version = "0.14.28"
|
|
902
919
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
903
|
-
checksum = "
|
|
920
|
+
checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
|
|
904
921
|
dependencies = [
|
|
905
922
|
"bytes",
|
|
906
923
|
"futures-channel",
|
|
@@ -922,15 +939,16 @@ dependencies = [
|
|
|
922
939
|
|
|
923
940
|
[[package]]
|
|
924
941
|
name = "hyper-rustls"
|
|
925
|
-
version = "0.24.
|
|
942
|
+
version = "0.24.2"
|
|
926
943
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
927
|
-
checksum = "
|
|
944
|
+
checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
|
|
928
945
|
dependencies = [
|
|
946
|
+
"futures-util",
|
|
929
947
|
"http",
|
|
930
948
|
"hyper",
|
|
931
|
-
"rustls
|
|
949
|
+
"rustls",
|
|
932
950
|
"tokio",
|
|
933
|
-
"tokio-rustls
|
|
951
|
+
"tokio-rustls",
|
|
934
952
|
]
|
|
935
953
|
|
|
936
954
|
[[package]]
|
|
@@ -953,9 +971,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
|
953
971
|
|
|
954
972
|
[[package]]
|
|
955
973
|
name = "idna"
|
|
956
|
-
version = "0.
|
|
974
|
+
version = "0.5.0"
|
|
957
975
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
958
|
-
checksum = "
|
|
976
|
+
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
|
|
959
977
|
dependencies = [
|
|
960
978
|
"unicode-bidi",
|
|
961
979
|
"unicode-normalization",
|
|
@@ -971,6 +989,16 @@ dependencies = [
|
|
|
971
989
|
"hashbrown 0.12.3",
|
|
972
990
|
]
|
|
973
991
|
|
|
992
|
+
[[package]]
|
|
993
|
+
name = "indexmap"
|
|
994
|
+
version = "2.1.0"
|
|
995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
996
|
+
checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
|
|
997
|
+
dependencies = [
|
|
998
|
+
"equivalent",
|
|
999
|
+
"hashbrown 0.14.3",
|
|
1000
|
+
]
|
|
1001
|
+
|
|
974
1002
|
[[package]]
|
|
975
1003
|
name = "inout"
|
|
976
1004
|
version = "0.1.3"
|
|
@@ -991,29 +1019,15 @@ dependencies = [
|
|
|
991
1019
|
|
|
992
1020
|
[[package]]
|
|
993
1021
|
name = "inventory"
|
|
994
|
-
version = "0.3.
|
|
1022
|
+
version = "0.3.14"
|
|
995
1023
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
996
|
-
checksum = "
|
|
997
|
-
dependencies = [
|
|
998
|
-
"ghost",
|
|
999
|
-
]
|
|
1000
|
-
|
|
1001
|
-
[[package]]
|
|
1002
|
-
name = "io-lifetimes"
|
|
1003
|
-
version = "1.0.11"
|
|
1004
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
-
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
|
|
1006
|
-
dependencies = [
|
|
1007
|
-
"hermit-abi 0.3.1",
|
|
1008
|
-
"libc",
|
|
1009
|
-
"windows-sys 0.48.0",
|
|
1010
|
-
]
|
|
1024
|
+
checksum = "c8573b2b1fb643a372c73b23f4da5f888677feef3305146d68a539250a9bccc7"
|
|
1011
1025
|
|
|
1012
1026
|
[[package]]
|
|
1013
1027
|
name = "ipnet"
|
|
1014
|
-
version = "2.
|
|
1028
|
+
version = "2.9.0"
|
|
1015
1029
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
-
checksum = "
|
|
1030
|
+
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
|
|
1017
1031
|
|
|
1018
1032
|
[[package]]
|
|
1019
1033
|
name = "itertools"
|
|
@@ -1024,26 +1038,35 @@ dependencies = [
|
|
|
1024
1038
|
"either",
|
|
1025
1039
|
]
|
|
1026
1040
|
|
|
1041
|
+
[[package]]
|
|
1042
|
+
name = "itertools"
|
|
1043
|
+
version = "0.11.0"
|
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
+
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
|
|
1046
|
+
dependencies = [
|
|
1047
|
+
"either",
|
|
1048
|
+
]
|
|
1049
|
+
|
|
1027
1050
|
[[package]]
|
|
1028
1051
|
name = "itoa"
|
|
1029
|
-
version = "1.0.
|
|
1052
|
+
version = "1.0.10"
|
|
1030
1053
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1031
|
-
checksum = "
|
|
1054
|
+
checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
|
|
1032
1055
|
|
|
1033
1056
|
[[package]]
|
|
1034
1057
|
name = "jobserver"
|
|
1035
|
-
version = "0.1.
|
|
1058
|
+
version = "0.1.27"
|
|
1036
1059
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
-
checksum = "
|
|
1060
|
+
checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d"
|
|
1038
1061
|
dependencies = [
|
|
1039
1062
|
"libc",
|
|
1040
1063
|
]
|
|
1041
1064
|
|
|
1042
1065
|
[[package]]
|
|
1043
1066
|
name = "js-sys"
|
|
1044
|
-
version = "0.3.
|
|
1067
|
+
version = "0.3.66"
|
|
1045
1068
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1046
|
-
checksum = "
|
|
1069
|
+
checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca"
|
|
1047
1070
|
dependencies = [
|
|
1048
1071
|
"wasm-bindgen",
|
|
1049
1072
|
]
|
|
@@ -1056,9 +1079,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
|
1056
1079
|
|
|
1057
1080
|
[[package]]
|
|
1058
1081
|
name = "libc"
|
|
1059
|
-
version = "0.2.
|
|
1082
|
+
version = "0.2.152"
|
|
1060
1083
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1061
|
-
checksum = "
|
|
1084
|
+
checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7"
|
|
1062
1085
|
|
|
1063
1086
|
[[package]]
|
|
1064
1087
|
name = "libloading"
|
|
@@ -1072,15 +1095,15 @@ dependencies = [
|
|
|
1072
1095
|
|
|
1073
1096
|
[[package]]
|
|
1074
1097
|
name = "linux-raw-sys"
|
|
1075
|
-
version = "0.
|
|
1098
|
+
version = "0.4.12"
|
|
1076
1099
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
-
checksum = "
|
|
1100
|
+
checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456"
|
|
1078
1101
|
|
|
1079
1102
|
[[package]]
|
|
1080
1103
|
name = "lock_api"
|
|
1081
|
-
version = "0.4.
|
|
1104
|
+
version = "0.4.11"
|
|
1082
1105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
-
checksum = "
|
|
1106
|
+
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
|
|
1084
1107
|
dependencies = [
|
|
1085
1108
|
"autocfg",
|
|
1086
1109
|
"scopeguard",
|
|
@@ -1088,24 +1111,24 @@ dependencies = [
|
|
|
1088
1111
|
|
|
1089
1112
|
[[package]]
|
|
1090
1113
|
name = "log"
|
|
1091
|
-
version = "0.4.
|
|
1114
|
+
version = "0.4.20"
|
|
1092
1115
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1093
|
-
checksum = "
|
|
1116
|
+
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
|
|
1094
1117
|
|
|
1095
1118
|
[[package]]
|
|
1096
1119
|
name = "lru"
|
|
1097
|
-
version = "0.
|
|
1120
|
+
version = "0.11.1"
|
|
1098
1121
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
-
checksum = "
|
|
1122
|
+
checksum = "a4a83fb7698b3643a0e34f9ae6f2e8f0178c0fd42f8b59d493aa271ff3a5bf21"
|
|
1100
1123
|
dependencies = [
|
|
1101
|
-
"hashbrown 0.
|
|
1124
|
+
"hashbrown 0.14.3",
|
|
1102
1125
|
]
|
|
1103
1126
|
|
|
1104
1127
|
[[package]]
|
|
1105
|
-
name = "
|
|
1106
|
-
version = "0.
|
|
1128
|
+
name = "mach2"
|
|
1129
|
+
version = "0.4.2"
|
|
1107
1130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1108
|
-
checksum = "
|
|
1131
|
+
checksum = "19b955cdeb2a02b9117f121ce63aa52d08ade45de53e48fe6a38b39c10f6f709"
|
|
1109
1132
|
dependencies = [
|
|
1110
1133
|
"libc",
|
|
1111
1134
|
]
|
|
@@ -1116,38 +1139,20 @@ version = "0.1.0"
|
|
|
1116
1139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1117
1140
|
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
|
|
1118
1141
|
dependencies = [
|
|
1119
|
-
"regex-automata",
|
|
1142
|
+
"regex-automata 0.1.10",
|
|
1120
1143
|
]
|
|
1121
1144
|
|
|
1122
1145
|
[[package]]
|
|
1123
1146
|
name = "matchit"
|
|
1124
|
-
version = "0.7.
|
|
1147
|
+
version = "0.7.3"
|
|
1125
1148
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1126
|
-
checksum = "
|
|
1149
|
+
checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
|
|
1127
1150
|
|
|
1128
1151
|
[[package]]
|
|
1129
1152
|
name = "memchr"
|
|
1130
|
-
version = "2.
|
|
1153
|
+
version = "2.7.1"
|
|
1131
1154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1132
|
-
checksum = "
|
|
1133
|
-
|
|
1134
|
-
[[package]]
|
|
1135
|
-
name = "memoffset"
|
|
1136
|
-
version = "0.7.1"
|
|
1137
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
-
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
|
|
1139
|
-
dependencies = [
|
|
1140
|
-
"autocfg",
|
|
1141
|
-
]
|
|
1142
|
-
|
|
1143
|
-
[[package]]
|
|
1144
|
-
name = "memoffset"
|
|
1145
|
-
version = "0.9.0"
|
|
1146
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1147
|
-
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
|
|
1148
|
-
dependencies = [
|
|
1149
|
-
"autocfg",
|
|
1150
|
-
]
|
|
1155
|
+
checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
|
|
1151
1156
|
|
|
1152
1157
|
[[package]]
|
|
1153
1158
|
name = "mime"
|
|
@@ -1166,12 +1171,12 @@ dependencies = [
|
|
|
1166
1171
|
|
|
1167
1172
|
[[package]]
|
|
1168
1173
|
name = "mio"
|
|
1169
|
-
version = "0.8.
|
|
1174
|
+
version = "0.8.10"
|
|
1170
1175
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1171
|
-
checksum = "
|
|
1176
|
+
checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09"
|
|
1172
1177
|
dependencies = [
|
|
1173
1178
|
"libc",
|
|
1174
|
-
"wasi
|
|
1179
|
+
"wasi",
|
|
1175
1180
|
"windows-sys 0.48.0",
|
|
1176
1181
|
]
|
|
1177
1182
|
|
|
@@ -1251,16 +1256,13 @@ dependencies = [
|
|
|
1251
1256
|
|
|
1252
1257
|
[[package]]
|
|
1253
1258
|
name = "nix"
|
|
1254
|
-
version = "0.
|
|
1259
|
+
version = "0.27.1"
|
|
1255
1260
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1256
|
-
checksum = "
|
|
1261
|
+
checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053"
|
|
1257
1262
|
dependencies = [
|
|
1258
|
-
"bitflags",
|
|
1263
|
+
"bitflags 2.4.1",
|
|
1259
1264
|
"cfg-if",
|
|
1260
1265
|
"libc",
|
|
1261
|
-
"memoffset 0.7.1",
|
|
1262
|
-
"pin-utils",
|
|
1263
|
-
"static_assertions",
|
|
1264
1266
|
]
|
|
1265
1267
|
|
|
1266
1268
|
[[package]]
|
|
@@ -1293,28 +1295,37 @@ dependencies = [
|
|
|
1293
1295
|
|
|
1294
1296
|
[[package]]
|
|
1295
1297
|
name = "num-traits"
|
|
1296
|
-
version = "0.2.
|
|
1298
|
+
version = "0.2.17"
|
|
1297
1299
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1298
|
-
checksum = "
|
|
1300
|
+
checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
|
|
1299
1301
|
dependencies = [
|
|
1300
1302
|
"autocfg",
|
|
1301
1303
|
]
|
|
1302
1304
|
|
|
1303
1305
|
[[package]]
|
|
1304
1306
|
name = "num_cpus"
|
|
1305
|
-
version = "1.
|
|
1307
|
+
version = "1.16.0"
|
|
1306
1308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1307
|
-
checksum = "
|
|
1309
|
+
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
|
1308
1310
|
dependencies = [
|
|
1309
|
-
"hermit-abi
|
|
1311
|
+
"hermit-abi",
|
|
1310
1312
|
"libc",
|
|
1311
1313
|
]
|
|
1312
1314
|
|
|
1315
|
+
[[package]]
|
|
1316
|
+
name = "object"
|
|
1317
|
+
version = "0.32.2"
|
|
1318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1319
|
+
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
|
|
1320
|
+
dependencies = [
|
|
1321
|
+
"memchr",
|
|
1322
|
+
]
|
|
1323
|
+
|
|
1313
1324
|
[[package]]
|
|
1314
1325
|
name = "once_cell"
|
|
1315
|
-
version = "1.
|
|
1326
|
+
version = "1.19.0"
|
|
1316
1327
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1317
|
-
checksum = "
|
|
1328
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
|
1318
1329
|
|
|
1319
1330
|
[[package]]
|
|
1320
1331
|
name = "openssl-probe"
|
|
@@ -1329,21 +1340,38 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1329
1340
|
checksum = "69d6c3d7288a106c0a363e4b0e8d308058d56902adefb16f4936f417ffef086e"
|
|
1330
1341
|
dependencies = [
|
|
1331
1342
|
"opentelemetry_api",
|
|
1332
|
-
"opentelemetry_sdk",
|
|
1343
|
+
"opentelemetry_sdk 0.18.0",
|
|
1344
|
+
]
|
|
1345
|
+
|
|
1346
|
+
[[package]]
|
|
1347
|
+
name = "opentelemetry"
|
|
1348
|
+
version = "0.21.0"
|
|
1349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1350
|
+
checksum = "1e32339a5dc40459130b3bd269e9892439f55b33e772d2a9d402a789baaf4e8a"
|
|
1351
|
+
dependencies = [
|
|
1352
|
+
"futures-core",
|
|
1353
|
+
"futures-sink",
|
|
1354
|
+
"indexmap 2.1.0",
|
|
1355
|
+
"js-sys",
|
|
1356
|
+
"once_cell",
|
|
1357
|
+
"pin-project-lite",
|
|
1358
|
+
"thiserror",
|
|
1359
|
+
"urlencoding",
|
|
1333
1360
|
]
|
|
1334
1361
|
|
|
1335
1362
|
[[package]]
|
|
1336
1363
|
name = "opentelemetry-otlp"
|
|
1337
|
-
version = "0.
|
|
1364
|
+
version = "0.14.0"
|
|
1338
1365
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1339
|
-
checksum = "
|
|
1366
|
+
checksum = "f24cda83b20ed2433c68241f918d0f6fdec8b1d43b7a9590ab4420c5095ca930"
|
|
1340
1367
|
dependencies = [
|
|
1341
1368
|
"async-trait",
|
|
1342
|
-
"futures",
|
|
1343
|
-
"futures-util",
|
|
1369
|
+
"futures-core",
|
|
1344
1370
|
"http",
|
|
1345
|
-
"opentelemetry",
|
|
1371
|
+
"opentelemetry 0.21.0",
|
|
1346
1372
|
"opentelemetry-proto",
|
|
1373
|
+
"opentelemetry-semantic-conventions",
|
|
1374
|
+
"opentelemetry_sdk 0.21.2",
|
|
1347
1375
|
"prost",
|
|
1348
1376
|
"thiserror",
|
|
1349
1377
|
"tokio",
|
|
@@ -1352,27 +1380,36 @@ dependencies = [
|
|
|
1352
1380
|
|
|
1353
1381
|
[[package]]
|
|
1354
1382
|
name = "opentelemetry-prometheus"
|
|
1355
|
-
version = "0.
|
|
1383
|
+
version = "0.14.1"
|
|
1356
1384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1357
|
-
checksum = "
|
|
1385
|
+
checksum = "6f8f082da115b0dcb250829e3ed0b8792b8f963a1ad42466e48422fbe6a079bd"
|
|
1358
1386
|
dependencies = [
|
|
1359
|
-
"
|
|
1387
|
+
"once_cell",
|
|
1388
|
+
"opentelemetry 0.21.0",
|
|
1389
|
+
"opentelemetry_sdk 0.21.2",
|
|
1360
1390
|
"prometheus",
|
|
1361
1391
|
"protobuf",
|
|
1362
1392
|
]
|
|
1363
1393
|
|
|
1364
1394
|
[[package]]
|
|
1365
1395
|
name = "opentelemetry-proto"
|
|
1366
|
-
version = "0.
|
|
1396
|
+
version = "0.4.0"
|
|
1367
1397
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1368
|
-
checksum = "
|
|
1398
|
+
checksum = "a2e155ce5cc812ea3d1dffbd1539aed653de4bf4882d60e6e04dcf0901d674e1"
|
|
1369
1399
|
dependencies = [
|
|
1370
|
-
"
|
|
1371
|
-
"
|
|
1372
|
-
"opentelemetry",
|
|
1400
|
+
"opentelemetry 0.21.0",
|
|
1401
|
+
"opentelemetry_sdk 0.21.2",
|
|
1373
1402
|
"prost",
|
|
1374
1403
|
"tonic",
|
|
1375
|
-
|
|
1404
|
+
]
|
|
1405
|
+
|
|
1406
|
+
[[package]]
|
|
1407
|
+
name = "opentelemetry-semantic-conventions"
|
|
1408
|
+
version = "0.13.0"
|
|
1409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1410
|
+
checksum = "f5774f1ef1f982ef2a447f6ee04ec383981a3ab99c8e77a1a7b30182e65bbc84"
|
|
1411
|
+
dependencies = [
|
|
1412
|
+
"opentelemetry 0.21.0",
|
|
1376
1413
|
]
|
|
1377
1414
|
|
|
1378
1415
|
[[package]]
|
|
@@ -1381,10 +1418,9 @@ version = "0.18.0"
|
|
|
1381
1418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1382
1419
|
checksum = "c24f96e21e7acc813c7a8394ee94978929db2bcc46cf6b5014fc612bf7760c22"
|
|
1383
1420
|
dependencies = [
|
|
1384
|
-
"fnv",
|
|
1385
1421
|
"futures-channel",
|
|
1386
1422
|
"futures-util",
|
|
1387
|
-
"indexmap",
|
|
1423
|
+
"indexmap 1.9.3",
|
|
1388
1424
|
"js-sys",
|
|
1389
1425
|
"once_cell",
|
|
1390
1426
|
"pin-project-lite",
|
|
@@ -1399,8 +1435,6 @@ checksum = "1ca41c4933371b61c2a2f214bf16931499af4ec90543604ec828f7a625c09113"
|
|
|
1399
1435
|
dependencies = [
|
|
1400
1436
|
"async-trait",
|
|
1401
1437
|
"crossbeam-channel",
|
|
1402
|
-
"dashmap",
|
|
1403
|
-
"fnv",
|
|
1404
1438
|
"futures-channel",
|
|
1405
1439
|
"futures-executor",
|
|
1406
1440
|
"futures-util",
|
|
@@ -1409,10 +1443,39 @@ dependencies = [
|
|
|
1409
1443
|
"percent-encoding",
|
|
1410
1444
|
"rand",
|
|
1411
1445
|
"thiserror",
|
|
1446
|
+
]
|
|
1447
|
+
|
|
1448
|
+
[[package]]
|
|
1449
|
+
name = "opentelemetry_sdk"
|
|
1450
|
+
version = "0.21.2"
|
|
1451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1452
|
+
checksum = "2f16aec8a98a457a52664d69e0091bac3a0abd18ead9b641cb00202ba4e0efe4"
|
|
1453
|
+
dependencies = [
|
|
1454
|
+
"async-trait",
|
|
1455
|
+
"crossbeam-channel",
|
|
1456
|
+
"futures-channel",
|
|
1457
|
+
"futures-executor",
|
|
1458
|
+
"futures-util",
|
|
1459
|
+
"glob",
|
|
1460
|
+
"once_cell",
|
|
1461
|
+
"opentelemetry 0.21.0",
|
|
1462
|
+
"ordered-float",
|
|
1463
|
+
"percent-encoding",
|
|
1464
|
+
"rand",
|
|
1465
|
+
"thiserror",
|
|
1412
1466
|
"tokio",
|
|
1413
1467
|
"tokio-stream",
|
|
1414
1468
|
]
|
|
1415
1469
|
|
|
1470
|
+
[[package]]
|
|
1471
|
+
name = "ordered-float"
|
|
1472
|
+
version = "4.2.0"
|
|
1473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1474
|
+
checksum = "a76df7075c7d4d01fdcb46c912dd17fba5b60c78ea480b475f2b6ab6f666584e"
|
|
1475
|
+
dependencies = [
|
|
1476
|
+
"num-traits",
|
|
1477
|
+
]
|
|
1478
|
+
|
|
1416
1479
|
[[package]]
|
|
1417
1480
|
name = "overload"
|
|
1418
1481
|
version = "0.1.1"
|
|
@@ -1431,15 +1494,15 @@ dependencies = [
|
|
|
1431
1494
|
|
|
1432
1495
|
[[package]]
|
|
1433
1496
|
name = "parking_lot_core"
|
|
1434
|
-
version = "0.9.
|
|
1497
|
+
version = "0.9.9"
|
|
1435
1498
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1436
|
-
checksum = "
|
|
1499
|
+
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
|
|
1437
1500
|
dependencies = [
|
|
1438
1501
|
"cfg-if",
|
|
1439
1502
|
"libc",
|
|
1440
|
-
"redox_syscall
|
|
1503
|
+
"redox_syscall",
|
|
1441
1504
|
"smallvec",
|
|
1442
|
-
"windows-targets",
|
|
1505
|
+
"windows-targets 0.48.5",
|
|
1443
1506
|
]
|
|
1444
1507
|
|
|
1445
1508
|
[[package]]
|
|
@@ -1467,45 +1530,45 @@ dependencies = [
|
|
|
1467
1530
|
|
|
1468
1531
|
[[package]]
|
|
1469
1532
|
name = "percent-encoding"
|
|
1470
|
-
version = "2.3.
|
|
1533
|
+
version = "2.3.1"
|
|
1471
1534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1472
|
-
checksum = "
|
|
1535
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
1473
1536
|
|
|
1474
1537
|
[[package]]
|
|
1475
1538
|
name = "petgraph"
|
|
1476
|
-
version = "0.6.
|
|
1539
|
+
version = "0.6.4"
|
|
1477
1540
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1478
|
-
checksum = "
|
|
1541
|
+
checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9"
|
|
1479
1542
|
dependencies = [
|
|
1480
1543
|
"fixedbitset",
|
|
1481
|
-
"indexmap",
|
|
1544
|
+
"indexmap 2.1.0",
|
|
1482
1545
|
]
|
|
1483
1546
|
|
|
1484
1547
|
[[package]]
|
|
1485
1548
|
name = "pin-project"
|
|
1486
|
-
version = "1.1.
|
|
1549
|
+
version = "1.1.3"
|
|
1487
1550
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1488
|
-
checksum = "
|
|
1551
|
+
checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422"
|
|
1489
1552
|
dependencies = [
|
|
1490
1553
|
"pin-project-internal",
|
|
1491
1554
|
]
|
|
1492
1555
|
|
|
1493
1556
|
[[package]]
|
|
1494
1557
|
name = "pin-project-internal"
|
|
1495
|
-
version = "1.1.
|
|
1558
|
+
version = "1.1.3"
|
|
1496
1559
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1497
|
-
checksum = "
|
|
1560
|
+
checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
|
|
1498
1561
|
dependencies = [
|
|
1499
1562
|
"proc-macro2",
|
|
1500
1563
|
"quote",
|
|
1501
|
-
"syn 2.0.
|
|
1564
|
+
"syn 2.0.48",
|
|
1502
1565
|
]
|
|
1503
1566
|
|
|
1504
1567
|
[[package]]
|
|
1505
1568
|
name = "pin-project-lite"
|
|
1506
|
-
version = "0.2.
|
|
1569
|
+
version = "0.2.13"
|
|
1507
1570
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1508
|
-
checksum = "
|
|
1571
|
+
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
|
|
1509
1572
|
|
|
1510
1573
|
[[package]]
|
|
1511
1574
|
name = "pin-utils"
|
|
@@ -1515,9 +1578,15 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
|
1515
1578
|
|
|
1516
1579
|
[[package]]
|
|
1517
1580
|
name = "pkg-config"
|
|
1518
|
-
version = "0.3.
|
|
1581
|
+
version = "0.3.28"
|
|
1582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1583
|
+
checksum = "69d3587f8a9e599cc7ec2c00e331f71c4e69a5f9a4b8a6efd5b07466b9736f9a"
|
|
1584
|
+
|
|
1585
|
+
[[package]]
|
|
1586
|
+
name = "powerfmt"
|
|
1587
|
+
version = "0.2.0"
|
|
1519
1588
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1520
|
-
checksum = "
|
|
1589
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1521
1590
|
|
|
1522
1591
|
[[package]]
|
|
1523
1592
|
name = "ppv-lite86"
|
|
@@ -1533,7 +1602,7 @@ checksum = "59230a63c37f3e18569bdb90e4a89cbf5bf8b06fea0b84e65ea10cc4df47addd"
|
|
|
1533
1602
|
dependencies = [
|
|
1534
1603
|
"difflib",
|
|
1535
1604
|
"float-cmp",
|
|
1536
|
-
"itertools",
|
|
1605
|
+
"itertools 0.10.5",
|
|
1537
1606
|
"normalize-line-endings",
|
|
1538
1607
|
"predicates-core",
|
|
1539
1608
|
"regex",
|
|
@@ -1567,9 +1636,9 @@ dependencies = [
|
|
|
1567
1636
|
|
|
1568
1637
|
[[package]]
|
|
1569
1638
|
name = "proc-macro2"
|
|
1570
|
-
version = "1.0.
|
|
1639
|
+
version = "1.0.76"
|
|
1571
1640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1572
|
-
checksum = "
|
|
1641
|
+
checksum = "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c"
|
|
1573
1642
|
dependencies = [
|
|
1574
1643
|
"unicode-ident",
|
|
1575
1644
|
]
|
|
@@ -1607,7 +1676,7 @@ checksum = "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270"
|
|
|
1607
1676
|
dependencies = [
|
|
1608
1677
|
"bytes",
|
|
1609
1678
|
"heck",
|
|
1610
|
-
"itertools",
|
|
1679
|
+
"itertools 0.10.5",
|
|
1611
1680
|
"lazy_static",
|
|
1612
1681
|
"log",
|
|
1613
1682
|
"multimap",
|
|
@@ -1628,7 +1697,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1628
1697
|
checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4"
|
|
1629
1698
|
dependencies = [
|
|
1630
1699
|
"anyhow",
|
|
1631
|
-
"itertools",
|
|
1700
|
+
"itertools 0.10.5",
|
|
1632
1701
|
"proc-macro2",
|
|
1633
1702
|
"quote",
|
|
1634
1703
|
"syn 1.0.109",
|
|
@@ -1697,25 +1766,25 @@ checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
|
|
|
1697
1766
|
|
|
1698
1767
|
[[package]]
|
|
1699
1768
|
name = "quanta"
|
|
1700
|
-
version = "0.
|
|
1769
|
+
version = "0.11.1"
|
|
1701
1770
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1702
|
-
checksum = "
|
|
1771
|
+
checksum = "a17e662a7a8291a865152364c20c7abc5e60486ab2001e8ec10b24862de0b9ab"
|
|
1703
1772
|
dependencies = [
|
|
1704
1773
|
"crossbeam-utils",
|
|
1705
1774
|
"libc",
|
|
1706
|
-
"
|
|
1775
|
+
"mach2",
|
|
1707
1776
|
"once_cell",
|
|
1708
1777
|
"raw-cpuid",
|
|
1709
|
-
"wasi
|
|
1778
|
+
"wasi",
|
|
1710
1779
|
"web-sys",
|
|
1711
1780
|
"winapi",
|
|
1712
1781
|
]
|
|
1713
1782
|
|
|
1714
1783
|
[[package]]
|
|
1715
1784
|
name = "quote"
|
|
1716
|
-
version = "1.0.
|
|
1785
|
+
version = "1.0.35"
|
|
1717
1786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1718
|
-
checksum = "
|
|
1787
|
+
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
|
|
1719
1788
|
dependencies = [
|
|
1720
1789
|
"proc-macro2",
|
|
1721
1790
|
]
|
|
@@ -1756,36 +1825,28 @@ version = "10.7.0"
|
|
|
1756
1825
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1757
1826
|
checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332"
|
|
1758
1827
|
dependencies = [
|
|
1759
|
-
"bitflags",
|
|
1828
|
+
"bitflags 1.3.2",
|
|
1760
1829
|
]
|
|
1761
1830
|
|
|
1762
1831
|
[[package]]
|
|
1763
1832
|
name = "redox_syscall"
|
|
1764
|
-
version = "0.
|
|
1765
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1766
|
-
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
|
|
1767
|
-
dependencies = [
|
|
1768
|
-
"bitflags",
|
|
1769
|
-
]
|
|
1770
|
-
|
|
1771
|
-
[[package]]
|
|
1772
|
-
name = "redox_syscall"
|
|
1773
|
-
version = "0.3.5"
|
|
1833
|
+
version = "0.4.1"
|
|
1774
1834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1775
|
-
checksum = "
|
|
1835
|
+
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
|
1776
1836
|
dependencies = [
|
|
1777
|
-
"bitflags",
|
|
1837
|
+
"bitflags 1.3.2",
|
|
1778
1838
|
]
|
|
1779
1839
|
|
|
1780
1840
|
[[package]]
|
|
1781
1841
|
name = "regex"
|
|
1782
|
-
version = "1.
|
|
1842
|
+
version = "1.10.2"
|
|
1783
1843
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1784
|
-
checksum = "
|
|
1844
|
+
checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
|
|
1785
1845
|
dependencies = [
|
|
1786
1846
|
"aho-corasick",
|
|
1787
1847
|
"memchr",
|
|
1788
|
-
"regex-
|
|
1848
|
+
"regex-automata 0.4.3",
|
|
1849
|
+
"regex-syntax 0.8.2",
|
|
1789
1850
|
]
|
|
1790
1851
|
|
|
1791
1852
|
[[package]]
|
|
@@ -1797,6 +1858,17 @@ dependencies = [
|
|
|
1797
1858
|
"regex-syntax 0.6.29",
|
|
1798
1859
|
]
|
|
1799
1860
|
|
|
1861
|
+
[[package]]
|
|
1862
|
+
name = "regex-automata"
|
|
1863
|
+
version = "0.4.3"
|
|
1864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1865
|
+
checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
|
|
1866
|
+
dependencies = [
|
|
1867
|
+
"aho-corasick",
|
|
1868
|
+
"memchr",
|
|
1869
|
+
"regex-syntax 0.8.2",
|
|
1870
|
+
]
|
|
1871
|
+
|
|
1800
1872
|
[[package]]
|
|
1801
1873
|
name = "regex-syntax"
|
|
1802
1874
|
version = "0.6.29"
|
|
@@ -1805,17 +1877,17 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
|
1805
1877
|
|
|
1806
1878
|
[[package]]
|
|
1807
1879
|
name = "regex-syntax"
|
|
1808
|
-
version = "0.
|
|
1880
|
+
version = "0.8.2"
|
|
1809
1881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1810
|
-
checksum = "
|
|
1882
|
+
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
|
|
1811
1883
|
|
|
1812
1884
|
[[package]]
|
|
1813
1885
|
name = "reqwest"
|
|
1814
|
-
version = "0.11.
|
|
1886
|
+
version = "0.11.23"
|
|
1815
1887
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1816
|
-
checksum = "
|
|
1888
|
+
checksum = "37b1ae8d9ac08420c66222fb9096fc5de435c3c48542bc5336c51892cffafb41"
|
|
1817
1889
|
dependencies = [
|
|
1818
|
-
"base64
|
|
1890
|
+
"base64",
|
|
1819
1891
|
"bytes",
|
|
1820
1892
|
"encoding_rs",
|
|
1821
1893
|
"futures-core",
|
|
@@ -1832,13 +1904,14 @@ dependencies = [
|
|
|
1832
1904
|
"once_cell",
|
|
1833
1905
|
"percent-encoding",
|
|
1834
1906
|
"pin-project-lite",
|
|
1835
|
-
"rustls
|
|
1907
|
+
"rustls",
|
|
1836
1908
|
"rustls-pemfile",
|
|
1837
1909
|
"serde",
|
|
1838
1910
|
"serde_json",
|
|
1839
1911
|
"serde_urlencoded",
|
|
1912
|
+
"system-configuration",
|
|
1840
1913
|
"tokio",
|
|
1841
|
-
"tokio-rustls
|
|
1914
|
+
"tokio-rustls",
|
|
1842
1915
|
"tokio-util",
|
|
1843
1916
|
"tower-service",
|
|
1844
1917
|
"url",
|
|
@@ -1852,17 +1925,16 @@ dependencies = [
|
|
|
1852
1925
|
|
|
1853
1926
|
[[package]]
|
|
1854
1927
|
name = "ring"
|
|
1855
|
-
version = "0.
|
|
1928
|
+
version = "0.17.7"
|
|
1856
1929
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1857
|
-
checksum = "
|
|
1930
|
+
checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74"
|
|
1858
1931
|
dependencies = [
|
|
1859
1932
|
"cc",
|
|
1933
|
+
"getrandom",
|
|
1860
1934
|
"libc",
|
|
1861
|
-
"once_cell",
|
|
1862
1935
|
"spin",
|
|
1863
1936
|
"untrusted",
|
|
1864
|
-
"
|
|
1865
|
-
"winapi",
|
|
1937
|
+
"windows-sys 0.48.0",
|
|
1866
1938
|
]
|
|
1867
1939
|
|
|
1868
1940
|
[[package]]
|
|
@@ -1874,13 +1946,19 @@ dependencies = [
|
|
|
1874
1946
|
"crossbeam-utils",
|
|
1875
1947
|
]
|
|
1876
1948
|
|
|
1949
|
+
[[package]]
|
|
1950
|
+
name = "rustc-demangle"
|
|
1951
|
+
version = "0.1.23"
|
|
1952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1953
|
+
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
|
|
1954
|
+
|
|
1877
1955
|
[[package]]
|
|
1878
1956
|
name = "rustc_version"
|
|
1879
1957
|
version = "0.4.0"
|
|
1880
1958
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1881
1959
|
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
|
1882
1960
|
dependencies = [
|
|
1883
|
-
"semver 1.0.
|
|
1961
|
+
"semver 1.0.21",
|
|
1884
1962
|
]
|
|
1885
1963
|
|
|
1886
1964
|
[[package]]
|
|
@@ -1899,7 +1977,7 @@ dependencies = [
|
|
|
1899
1977
|
"proc-macro2",
|
|
1900
1978
|
"quote",
|
|
1901
1979
|
"rustfsm_trait",
|
|
1902
|
-
"syn
|
|
1980
|
+
"syn 2.0.48",
|
|
1903
1981
|
]
|
|
1904
1982
|
|
|
1905
1983
|
[[package]]
|
|
@@ -1908,35 +1986,22 @@ version = "0.1.0"
|
|
|
1908
1986
|
|
|
1909
1987
|
[[package]]
|
|
1910
1988
|
name = "rustix"
|
|
1911
|
-
version = "0.
|
|
1989
|
+
version = "0.38.28"
|
|
1912
1990
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1913
|
-
checksum = "
|
|
1991
|
+
checksum = "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316"
|
|
1914
1992
|
dependencies = [
|
|
1915
|
-
"bitflags",
|
|
1993
|
+
"bitflags 2.4.1",
|
|
1916
1994
|
"errno",
|
|
1917
|
-
"io-lifetimes",
|
|
1918
1995
|
"libc",
|
|
1919
1996
|
"linux-raw-sys",
|
|
1920
|
-
"windows-sys 0.
|
|
1997
|
+
"windows-sys 0.52.0",
|
|
1921
1998
|
]
|
|
1922
1999
|
|
|
1923
2000
|
[[package]]
|
|
1924
2001
|
name = "rustls"
|
|
1925
|
-
version = "0.
|
|
2002
|
+
version = "0.21.10"
|
|
1926
2003
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1927
|
-
checksum = "
|
|
1928
|
-
dependencies = [
|
|
1929
|
-
"log",
|
|
1930
|
-
"ring",
|
|
1931
|
-
"sct",
|
|
1932
|
-
"webpki",
|
|
1933
|
-
]
|
|
1934
|
-
|
|
1935
|
-
[[package]]
|
|
1936
|
-
name = "rustls"
|
|
1937
|
-
version = "0.21.2"
|
|
1938
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1939
|
-
checksum = "e32ca28af694bc1bbf399c33a516dbdf1c90090b8ab23c2bc24f834aa2247f5f"
|
|
2004
|
+
checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba"
|
|
1940
2005
|
dependencies = [
|
|
1941
2006
|
"log",
|
|
1942
2007
|
"ring",
|
|
@@ -1958,18 +2023,18 @@ dependencies = [
|
|
|
1958
2023
|
|
|
1959
2024
|
[[package]]
|
|
1960
2025
|
name = "rustls-pemfile"
|
|
1961
|
-
version = "1.0.
|
|
2026
|
+
version = "1.0.4"
|
|
1962
2027
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1963
|
-
checksum = "
|
|
2028
|
+
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
|
|
1964
2029
|
dependencies = [
|
|
1965
|
-
"base64
|
|
2030
|
+
"base64",
|
|
1966
2031
|
]
|
|
1967
2032
|
|
|
1968
2033
|
[[package]]
|
|
1969
2034
|
name = "rustls-webpki"
|
|
1970
|
-
version = "0.
|
|
2035
|
+
version = "0.101.7"
|
|
1971
2036
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1972
|
-
checksum = "
|
|
2037
|
+
checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
|
|
1973
2038
|
dependencies = [
|
|
1974
2039
|
"ring",
|
|
1975
2040
|
"untrusted",
|
|
@@ -1977,36 +2042,36 @@ dependencies = [
|
|
|
1977
2042
|
|
|
1978
2043
|
[[package]]
|
|
1979
2044
|
name = "rustversion"
|
|
1980
|
-
version = "1.0.
|
|
2045
|
+
version = "1.0.14"
|
|
1981
2046
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1982
|
-
checksum = "
|
|
2047
|
+
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
|
|
1983
2048
|
|
|
1984
2049
|
[[package]]
|
|
1985
2050
|
name = "ryu"
|
|
1986
|
-
version = "1.0.
|
|
2051
|
+
version = "1.0.16"
|
|
1987
2052
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1988
|
-
checksum = "
|
|
2053
|
+
checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
|
|
1989
2054
|
|
|
1990
2055
|
[[package]]
|
|
1991
2056
|
name = "schannel"
|
|
1992
|
-
version = "0.1.
|
|
2057
|
+
version = "0.1.23"
|
|
1993
2058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1994
|
-
checksum = "
|
|
2059
|
+
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
|
|
1995
2060
|
dependencies = [
|
|
1996
|
-
"windows-sys 0.
|
|
2061
|
+
"windows-sys 0.52.0",
|
|
1997
2062
|
]
|
|
1998
2063
|
|
|
1999
2064
|
[[package]]
|
|
2000
2065
|
name = "scopeguard"
|
|
2001
|
-
version = "1.
|
|
2066
|
+
version = "1.2.0"
|
|
2002
2067
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2003
|
-
checksum = "
|
|
2068
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2004
2069
|
|
|
2005
2070
|
[[package]]
|
|
2006
2071
|
name = "sct"
|
|
2007
|
-
version = "0.7.
|
|
2072
|
+
version = "0.7.1"
|
|
2008
2073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2009
|
-
checksum = "
|
|
2074
|
+
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
|
|
2010
2075
|
dependencies = [
|
|
2011
2076
|
"ring",
|
|
2012
2077
|
"untrusted",
|
|
@@ -2014,11 +2079,11 @@ dependencies = [
|
|
|
2014
2079
|
|
|
2015
2080
|
[[package]]
|
|
2016
2081
|
name = "security-framework"
|
|
2017
|
-
version = "2.9.
|
|
2082
|
+
version = "2.9.2"
|
|
2018
2083
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2019
|
-
checksum = "
|
|
2084
|
+
checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
|
|
2020
2085
|
dependencies = [
|
|
2021
|
-
"bitflags",
|
|
2086
|
+
"bitflags 1.3.2",
|
|
2022
2087
|
"core-foundation",
|
|
2023
2088
|
"core-foundation-sys",
|
|
2024
2089
|
"libc",
|
|
@@ -2027,9 +2092,9 @@ dependencies = [
|
|
|
2027
2092
|
|
|
2028
2093
|
[[package]]
|
|
2029
2094
|
name = "security-framework-sys"
|
|
2030
|
-
version = "2.9.
|
|
2095
|
+
version = "2.9.1"
|
|
2031
2096
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2032
|
-
checksum = "
|
|
2097
|
+
checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
|
|
2033
2098
|
dependencies = [
|
|
2034
2099
|
"core-foundation-sys",
|
|
2035
2100
|
"libc",
|
|
@@ -2046,9 +2111,9 @@ dependencies = [
|
|
|
2046
2111
|
|
|
2047
2112
|
[[package]]
|
|
2048
2113
|
name = "semver"
|
|
2049
|
-
version = "1.0.
|
|
2114
|
+
version = "1.0.21"
|
|
2050
2115
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2051
|
-
checksum = "
|
|
2116
|
+
checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0"
|
|
2052
2117
|
|
|
2053
2118
|
[[package]]
|
|
2054
2119
|
name = "semver-parser"
|
|
@@ -2058,29 +2123,29 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
|
|
|
2058
2123
|
|
|
2059
2124
|
[[package]]
|
|
2060
2125
|
name = "serde"
|
|
2061
|
-
version = "1.0.
|
|
2126
|
+
version = "1.0.195"
|
|
2062
2127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2063
|
-
checksum = "
|
|
2128
|
+
checksum = "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02"
|
|
2064
2129
|
dependencies = [
|
|
2065
2130
|
"serde_derive",
|
|
2066
2131
|
]
|
|
2067
2132
|
|
|
2068
2133
|
[[package]]
|
|
2069
2134
|
name = "serde_derive"
|
|
2070
|
-
version = "1.0.
|
|
2135
|
+
version = "1.0.195"
|
|
2071
2136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2072
|
-
checksum = "
|
|
2137
|
+
checksum = "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c"
|
|
2073
2138
|
dependencies = [
|
|
2074
2139
|
"proc-macro2",
|
|
2075
2140
|
"quote",
|
|
2076
|
-
"syn 2.0.
|
|
2141
|
+
"syn 2.0.48",
|
|
2077
2142
|
]
|
|
2078
2143
|
|
|
2079
2144
|
[[package]]
|
|
2080
2145
|
name = "serde_json"
|
|
2081
|
-
version = "1.0.
|
|
2146
|
+
version = "1.0.111"
|
|
2082
2147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2083
|
-
checksum = "
|
|
2148
|
+
checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4"
|
|
2084
2149
|
dependencies = [
|
|
2085
2150
|
"itoa",
|
|
2086
2151
|
"ryu",
|
|
@@ -2101,9 +2166,9 @@ dependencies = [
|
|
|
2101
2166
|
|
|
2102
2167
|
[[package]]
|
|
2103
2168
|
name = "sha1"
|
|
2104
|
-
version = "0.10.
|
|
2169
|
+
version = "0.10.6"
|
|
2105
2170
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2106
|
-
checksum = "
|
|
2171
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
2107
2172
|
dependencies = [
|
|
2108
2173
|
"cfg-if",
|
|
2109
2174
|
"cpufeatures",
|
|
@@ -2112,9 +2177,9 @@ dependencies = [
|
|
|
2112
2177
|
|
|
2113
2178
|
[[package]]
|
|
2114
2179
|
name = "sha2"
|
|
2115
|
-
version = "0.10.
|
|
2180
|
+
version = "0.10.8"
|
|
2116
2181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2117
|
-
checksum = "
|
|
2182
|
+
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
|
|
2118
2183
|
dependencies = [
|
|
2119
2184
|
"cfg-if",
|
|
2120
2185
|
"cpufeatures",
|
|
@@ -2123,9 +2188,9 @@ dependencies = [
|
|
|
2123
2188
|
|
|
2124
2189
|
[[package]]
|
|
2125
2190
|
name = "sharded-slab"
|
|
2126
|
-
version = "0.1.
|
|
2191
|
+
version = "0.1.7"
|
|
2127
2192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2128
|
-
checksum = "
|
|
2193
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
2129
2194
|
dependencies = [
|
|
2130
2195
|
"lazy_static",
|
|
2131
2196
|
]
|
|
@@ -2141,55 +2206,49 @@ dependencies = [
|
|
|
2141
2206
|
|
|
2142
2207
|
[[package]]
|
|
2143
2208
|
name = "siphasher"
|
|
2144
|
-
version = "0.
|
|
2209
|
+
version = "1.0.0"
|
|
2145
2210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2146
|
-
checksum = "
|
|
2211
|
+
checksum = "54ac45299ccbd390721be55b412d41931911f654fa99e2cb8bfb57184b2061fe"
|
|
2147
2212
|
|
|
2148
2213
|
[[package]]
|
|
2149
2214
|
name = "slab"
|
|
2150
|
-
version = "0.4.
|
|
2215
|
+
version = "0.4.9"
|
|
2151
2216
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2152
|
-
checksum = "
|
|
2217
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
|
2153
2218
|
dependencies = [
|
|
2154
2219
|
"autocfg",
|
|
2155
2220
|
]
|
|
2156
2221
|
|
|
2157
2222
|
[[package]]
|
|
2158
2223
|
name = "slotmap"
|
|
2159
|
-
version = "1.0.
|
|
2224
|
+
version = "1.0.7"
|
|
2160
2225
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2161
|
-
checksum = "
|
|
2226
|
+
checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
|
|
2162
2227
|
dependencies = [
|
|
2163
2228
|
"version_check",
|
|
2164
2229
|
]
|
|
2165
2230
|
|
|
2166
2231
|
[[package]]
|
|
2167
2232
|
name = "smallvec"
|
|
2168
|
-
version = "1.
|
|
2233
|
+
version = "1.11.2"
|
|
2169
2234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2170
|
-
checksum = "
|
|
2235
|
+
checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
|
|
2171
2236
|
|
|
2172
2237
|
[[package]]
|
|
2173
2238
|
name = "socket2"
|
|
2174
|
-
version = "0.
|
|
2239
|
+
version = "0.5.5"
|
|
2175
2240
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2176
|
-
checksum = "
|
|
2241
|
+
checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
|
|
2177
2242
|
dependencies = [
|
|
2178
2243
|
"libc",
|
|
2179
|
-
"
|
|
2244
|
+
"windows-sys 0.48.0",
|
|
2180
2245
|
]
|
|
2181
2246
|
|
|
2182
2247
|
[[package]]
|
|
2183
2248
|
name = "spin"
|
|
2184
|
-
version = "0.
|
|
2185
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2186
|
-
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
|
|
2187
|
-
|
|
2188
|
-
[[package]]
|
|
2189
|
-
name = "static_assertions"
|
|
2190
|
-
version = "1.1.0"
|
|
2249
|
+
version = "0.9.8"
|
|
2191
2250
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2192
|
-
checksum = "
|
|
2251
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
2193
2252
|
|
|
2194
2253
|
[[package]]
|
|
2195
2254
|
name = "strsim"
|
|
@@ -2216,9 +2275,9 @@ dependencies = [
|
|
|
2216
2275
|
|
|
2217
2276
|
[[package]]
|
|
2218
2277
|
name = "syn"
|
|
2219
|
-
version = "2.0.
|
|
2278
|
+
version = "2.0.48"
|
|
2220
2279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2221
|
-
checksum = "
|
|
2280
|
+
checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
|
|
2222
2281
|
dependencies = [
|
|
2223
2282
|
"proc-macro2",
|
|
2224
2283
|
"quote",
|
|
@@ -2227,9 +2286,9 @@ dependencies = [
|
|
|
2227
2286
|
|
|
2228
2287
|
[[package]]
|
|
2229
2288
|
name = "syn-mid"
|
|
2230
|
-
version = "0.5.
|
|
2289
|
+
version = "0.5.4"
|
|
2231
2290
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2232
|
-
checksum = "
|
|
2291
|
+
checksum = "fea305d57546cc8cd04feb14b62ec84bf17f50e3f7b12560d7bfa9265f39d9ed"
|
|
2233
2292
|
dependencies = [
|
|
2234
2293
|
"proc-macro2",
|
|
2235
2294
|
"quote",
|
|
@@ -2242,11 +2301,32 @@ version = "0.1.2"
|
|
|
2242
2301
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2243
2302
|
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
|
|
2244
2303
|
|
|
2304
|
+
[[package]]
|
|
2305
|
+
name = "system-configuration"
|
|
2306
|
+
version = "0.5.1"
|
|
2307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2308
|
+
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
|
|
2309
|
+
dependencies = [
|
|
2310
|
+
"bitflags 1.3.2",
|
|
2311
|
+
"core-foundation",
|
|
2312
|
+
"system-configuration-sys",
|
|
2313
|
+
]
|
|
2314
|
+
|
|
2315
|
+
[[package]]
|
|
2316
|
+
name = "system-configuration-sys"
|
|
2317
|
+
version = "0.5.0"
|
|
2318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2319
|
+
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
|
|
2320
|
+
dependencies = [
|
|
2321
|
+
"core-foundation-sys",
|
|
2322
|
+
"libc",
|
|
2323
|
+
]
|
|
2324
|
+
|
|
2245
2325
|
[[package]]
|
|
2246
2326
|
name = "tar"
|
|
2247
|
-
version = "0.4.
|
|
2327
|
+
version = "0.4.40"
|
|
2248
2328
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2249
|
-
checksum = "
|
|
2329
|
+
checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb"
|
|
2250
2330
|
dependencies = [
|
|
2251
2331
|
"filetime",
|
|
2252
2332
|
"libc",
|
|
@@ -2255,16 +2335,15 @@ dependencies = [
|
|
|
2255
2335
|
|
|
2256
2336
|
[[package]]
|
|
2257
2337
|
name = "tempfile"
|
|
2258
|
-
version = "3.
|
|
2338
|
+
version = "3.9.0"
|
|
2259
2339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2260
|
-
checksum = "
|
|
2340
|
+
checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa"
|
|
2261
2341
|
dependencies = [
|
|
2262
|
-
"autocfg",
|
|
2263
2342
|
"cfg-if",
|
|
2264
2343
|
"fastrand",
|
|
2265
|
-
"redox_syscall
|
|
2344
|
+
"redox_syscall",
|
|
2266
2345
|
"rustix",
|
|
2267
|
-
"windows-sys 0.
|
|
2346
|
+
"windows-sys 0.52.0",
|
|
2268
2347
|
]
|
|
2269
2348
|
|
|
2270
2349
|
[[package]]
|
|
@@ -2280,9 +2359,11 @@ dependencies = [
|
|
|
2280
2359
|
"futures-retry",
|
|
2281
2360
|
"http",
|
|
2282
2361
|
"once_cell",
|
|
2283
|
-
"opentelemetry",
|
|
2362
|
+
"opentelemetry 0.21.0",
|
|
2284
2363
|
"parking_lot",
|
|
2285
2364
|
"prost-types",
|
|
2365
|
+
"slotmap",
|
|
2366
|
+
"temporal-sdk-core-api",
|
|
2286
2367
|
"temporal-sdk-core-protos",
|
|
2287
2368
|
"thiserror",
|
|
2288
2369
|
"tokio",
|
|
@@ -2300,7 +2381,7 @@ dependencies = [
|
|
|
2300
2381
|
"anyhow",
|
|
2301
2382
|
"arc-swap",
|
|
2302
2383
|
"async-trait",
|
|
2303
|
-
"base64
|
|
2384
|
+
"base64",
|
|
2304
2385
|
"crossbeam",
|
|
2305
2386
|
"dashmap",
|
|
2306
2387
|
"derive_builder",
|
|
@@ -2313,15 +2394,17 @@ dependencies = [
|
|
|
2313
2394
|
"governor",
|
|
2314
2395
|
"http",
|
|
2315
2396
|
"hyper",
|
|
2316
|
-
"itertools",
|
|
2397
|
+
"itertools 0.11.0",
|
|
2317
2398
|
"lazy_static",
|
|
2399
|
+
"log",
|
|
2318
2400
|
"lru",
|
|
2319
2401
|
"mockall",
|
|
2320
2402
|
"nix",
|
|
2321
2403
|
"once_cell",
|
|
2322
|
-
"opentelemetry",
|
|
2404
|
+
"opentelemetry 0.21.0",
|
|
2323
2405
|
"opentelemetry-otlp",
|
|
2324
2406
|
"opentelemetry-prometheus",
|
|
2407
|
+
"opentelemetry_sdk 0.21.2",
|
|
2325
2408
|
"parking_lot",
|
|
2326
2409
|
"pin-project",
|
|
2327
2410
|
"prometheus",
|
|
@@ -2347,7 +2430,6 @@ dependencies = [
|
|
|
2347
2430
|
"tonic-build",
|
|
2348
2431
|
"tracing",
|
|
2349
2432
|
"tracing-futures",
|
|
2350
|
-
"tracing-opentelemetry",
|
|
2351
2433
|
"tracing-subscriber",
|
|
2352
2434
|
"url",
|
|
2353
2435
|
"uuid",
|
|
@@ -2360,10 +2442,11 @@ version = "0.1.0"
|
|
|
2360
2442
|
dependencies = [
|
|
2361
2443
|
"async-trait",
|
|
2362
2444
|
"derive_builder",
|
|
2445
|
+
"derive_more",
|
|
2446
|
+
"opentelemetry 0.21.0",
|
|
2363
2447
|
"prost-types",
|
|
2364
2448
|
"serde",
|
|
2365
2449
|
"serde_json",
|
|
2366
|
-
"temporal-client",
|
|
2367
2450
|
"temporal-sdk-core-protos",
|
|
2368
2451
|
"thiserror",
|
|
2369
2452
|
"tokio",
|
|
@@ -2377,7 +2460,7 @@ name = "temporal-sdk-core-protos"
|
|
|
2377
2460
|
version = "0.1.0"
|
|
2378
2461
|
dependencies = [
|
|
2379
2462
|
"anyhow",
|
|
2380
|
-
"base64
|
|
2463
|
+
"base64",
|
|
2381
2464
|
"derive_more",
|
|
2382
2465
|
"prost",
|
|
2383
2466
|
"prost-wkt",
|
|
@@ -2400,10 +2483,11 @@ dependencies = [
|
|
|
2400
2483
|
"log",
|
|
2401
2484
|
"neon",
|
|
2402
2485
|
"once_cell",
|
|
2403
|
-
"opentelemetry",
|
|
2486
|
+
"opentelemetry 0.18.0",
|
|
2404
2487
|
"parking_lot",
|
|
2405
2488
|
"prost",
|
|
2406
2489
|
"prost-types",
|
|
2490
|
+
"serde_json",
|
|
2407
2491
|
"temporal-client",
|
|
2408
2492
|
"temporal-sdk-core",
|
|
2409
2493
|
"tokio",
|
|
@@ -2418,22 +2502,22 @@ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
|
|
|
2418
2502
|
|
|
2419
2503
|
[[package]]
|
|
2420
2504
|
name = "thiserror"
|
|
2421
|
-
version = "1.0.
|
|
2505
|
+
version = "1.0.56"
|
|
2422
2506
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2423
|
-
checksum = "
|
|
2507
|
+
checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
|
|
2424
2508
|
dependencies = [
|
|
2425
2509
|
"thiserror-impl",
|
|
2426
2510
|
]
|
|
2427
2511
|
|
|
2428
2512
|
[[package]]
|
|
2429
2513
|
name = "thiserror-impl"
|
|
2430
|
-
version = "1.0.
|
|
2514
|
+
version = "1.0.56"
|
|
2431
2515
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2432
|
-
checksum = "
|
|
2516
|
+
checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
|
|
2433
2517
|
dependencies = [
|
|
2434
2518
|
"proc-macro2",
|
|
2435
2519
|
"quote",
|
|
2436
|
-
"syn 2.0.
|
|
2520
|
+
"syn 2.0.48",
|
|
2437
2521
|
]
|
|
2438
2522
|
|
|
2439
2523
|
[[package]]
|
|
@@ -2448,19 +2532,21 @@ dependencies = [
|
|
|
2448
2532
|
|
|
2449
2533
|
[[package]]
|
|
2450
2534
|
name = "time"
|
|
2451
|
-
version = "0.3.
|
|
2535
|
+
version = "0.3.31"
|
|
2452
2536
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2453
|
-
checksum = "
|
|
2537
|
+
checksum = "f657ba42c3f86e7680e53c8cd3af8abbe56b5491790b46e22e19c0d57463583e"
|
|
2454
2538
|
dependencies = [
|
|
2539
|
+
"deranged",
|
|
2540
|
+
"powerfmt",
|
|
2455
2541
|
"serde",
|
|
2456
2542
|
"time-core",
|
|
2457
2543
|
]
|
|
2458
2544
|
|
|
2459
2545
|
[[package]]
|
|
2460
2546
|
name = "time-core"
|
|
2461
|
-
version = "0.1.
|
|
2547
|
+
version = "0.1.2"
|
|
2462
2548
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2463
|
-
checksum = "
|
|
2549
|
+
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
|
2464
2550
|
|
|
2465
2551
|
[[package]]
|
|
2466
2552
|
name = "tinyvec"
|
|
@@ -2479,11 +2565,11 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
2479
2565
|
|
|
2480
2566
|
[[package]]
|
|
2481
2567
|
name = "tokio"
|
|
2482
|
-
version = "1.
|
|
2568
|
+
version = "1.35.1"
|
|
2483
2569
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2484
|
-
checksum = "
|
|
2570
|
+
checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104"
|
|
2485
2571
|
dependencies = [
|
|
2486
|
-
"
|
|
2572
|
+
"backtrace",
|
|
2487
2573
|
"bytes",
|
|
2488
2574
|
"libc",
|
|
2489
2575
|
"mio",
|
|
@@ -2508,24 +2594,13 @@ dependencies = [
|
|
|
2508
2594
|
|
|
2509
2595
|
[[package]]
|
|
2510
2596
|
name = "tokio-macros"
|
|
2511
|
-
version = "2.
|
|
2597
|
+
version = "2.2.0"
|
|
2512
2598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2513
|
-
checksum = "
|
|
2599
|
+
checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
|
|
2514
2600
|
dependencies = [
|
|
2515
2601
|
"proc-macro2",
|
|
2516
2602
|
"quote",
|
|
2517
|
-
"syn 2.0.
|
|
2518
|
-
]
|
|
2519
|
-
|
|
2520
|
-
[[package]]
|
|
2521
|
-
name = "tokio-rustls"
|
|
2522
|
-
version = "0.23.4"
|
|
2523
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2524
|
-
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
|
|
2525
|
-
dependencies = [
|
|
2526
|
-
"rustls 0.20.8",
|
|
2527
|
-
"tokio",
|
|
2528
|
-
"webpki",
|
|
2603
|
+
"syn 2.0.48",
|
|
2529
2604
|
]
|
|
2530
2605
|
|
|
2531
2606
|
[[package]]
|
|
@@ -2534,7 +2609,7 @@ version = "0.24.1"
|
|
|
2534
2609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2535
2610
|
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
|
|
2536
2611
|
dependencies = [
|
|
2537
|
-
"rustls
|
|
2612
|
+
"rustls",
|
|
2538
2613
|
"tokio",
|
|
2539
2614
|
]
|
|
2540
2615
|
|
|
@@ -2551,9 +2626,9 @@ dependencies = [
|
|
|
2551
2626
|
|
|
2552
2627
|
[[package]]
|
|
2553
2628
|
name = "tokio-util"
|
|
2554
|
-
version = "0.7.
|
|
2629
|
+
version = "0.7.10"
|
|
2555
2630
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2556
|
-
checksum = "
|
|
2631
|
+
checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
|
|
2557
2632
|
dependencies = [
|
|
2558
2633
|
"bytes",
|
|
2559
2634
|
"futures-core",
|
|
@@ -2565,14 +2640,14 @@ dependencies = [
|
|
|
2565
2640
|
|
|
2566
2641
|
[[package]]
|
|
2567
2642
|
name = "tonic"
|
|
2568
|
-
version = "0.
|
|
2643
|
+
version = "0.9.2"
|
|
2569
2644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2570
|
-
checksum = "
|
|
2645
|
+
checksum = "3082666a3a6433f7f511c7192923fa1fe07c69332d3c6a2e6bb040b569199d5a"
|
|
2571
2646
|
dependencies = [
|
|
2572
2647
|
"async-stream",
|
|
2573
2648
|
"async-trait",
|
|
2574
2649
|
"axum",
|
|
2575
|
-
"base64
|
|
2650
|
+
"base64",
|
|
2576
2651
|
"bytes",
|
|
2577
2652
|
"futures-core",
|
|
2578
2653
|
"futures-util",
|
|
@@ -2584,25 +2659,22 @@ dependencies = [
|
|
|
2584
2659
|
"percent-encoding",
|
|
2585
2660
|
"pin-project",
|
|
2586
2661
|
"prost",
|
|
2587
|
-
"prost-derive",
|
|
2588
2662
|
"rustls-native-certs",
|
|
2589
2663
|
"rustls-pemfile",
|
|
2590
2664
|
"tokio",
|
|
2591
|
-
"tokio-rustls
|
|
2665
|
+
"tokio-rustls",
|
|
2592
2666
|
"tokio-stream",
|
|
2593
|
-
"tokio-util",
|
|
2594
2667
|
"tower",
|
|
2595
2668
|
"tower-layer",
|
|
2596
2669
|
"tower-service",
|
|
2597
2670
|
"tracing",
|
|
2598
|
-
"tracing-futures",
|
|
2599
2671
|
]
|
|
2600
2672
|
|
|
2601
2673
|
[[package]]
|
|
2602
2674
|
name = "tonic-build"
|
|
2603
|
-
version = "0.
|
|
2675
|
+
version = "0.9.2"
|
|
2604
2676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2605
|
-
checksum = "
|
|
2677
|
+
checksum = "a6fdaae4c2c638bb70fe42803a26fbd6fc6ac8c72f5c59f67ecc2a2dcabf4b07"
|
|
2606
2678
|
dependencies = [
|
|
2607
2679
|
"prettyplease",
|
|
2608
2680
|
"proc-macro2",
|
|
@@ -2619,7 +2691,7 @@ checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
|
|
|
2619
2691
|
dependencies = [
|
|
2620
2692
|
"futures-core",
|
|
2621
2693
|
"futures-util",
|
|
2622
|
-
"indexmap",
|
|
2694
|
+
"indexmap 1.9.3",
|
|
2623
2695
|
"pin-project",
|
|
2624
2696
|
"pin-project-lite",
|
|
2625
2697
|
"rand",
|
|
@@ -2645,11 +2717,10 @@ checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
|
|
|
2645
2717
|
|
|
2646
2718
|
[[package]]
|
|
2647
2719
|
name = "tracing"
|
|
2648
|
-
version = "0.1.
|
|
2720
|
+
version = "0.1.40"
|
|
2649
2721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2650
|
-
checksum = "
|
|
2722
|
+
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
|
|
2651
2723
|
dependencies = [
|
|
2652
|
-
"cfg-if",
|
|
2653
2724
|
"log",
|
|
2654
2725
|
"pin-project-lite",
|
|
2655
2726
|
"tracing-attributes",
|
|
@@ -2658,20 +2729,20 @@ dependencies = [
|
|
|
2658
2729
|
|
|
2659
2730
|
[[package]]
|
|
2660
2731
|
name = "tracing-attributes"
|
|
2661
|
-
version = "0.1.
|
|
2732
|
+
version = "0.1.27"
|
|
2662
2733
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2663
|
-
checksum = "
|
|
2734
|
+
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
|
|
2664
2735
|
dependencies = [
|
|
2665
2736
|
"proc-macro2",
|
|
2666
2737
|
"quote",
|
|
2667
|
-
"syn 2.0.
|
|
2738
|
+
"syn 2.0.48",
|
|
2668
2739
|
]
|
|
2669
2740
|
|
|
2670
2741
|
[[package]]
|
|
2671
2742
|
name = "tracing-core"
|
|
2672
|
-
version = "0.1.
|
|
2743
|
+
version = "0.1.32"
|
|
2673
2744
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2674
|
-
checksum = "
|
|
2745
|
+
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
|
|
2675
2746
|
dependencies = [
|
|
2676
2747
|
"once_cell",
|
|
2677
2748
|
"valuable",
|
|
@@ -2689,34 +2760,20 @@ dependencies = [
|
|
|
2689
2760
|
|
|
2690
2761
|
[[package]]
|
|
2691
2762
|
name = "tracing-log"
|
|
2692
|
-
version = "0.
|
|
2763
|
+
version = "0.2.0"
|
|
2693
2764
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2694
|
-
checksum = "
|
|
2765
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
2695
2766
|
dependencies = [
|
|
2696
|
-
"lazy_static",
|
|
2697
2767
|
"log",
|
|
2698
|
-
"tracing-core",
|
|
2699
|
-
]
|
|
2700
|
-
|
|
2701
|
-
[[package]]
|
|
2702
|
-
name = "tracing-opentelemetry"
|
|
2703
|
-
version = "0.18.0"
|
|
2704
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2705
|
-
checksum = "21ebb87a95ea13271332df069020513ab70bdb5637ca42d6e492dc3bbbad48de"
|
|
2706
|
-
dependencies = [
|
|
2707
2768
|
"once_cell",
|
|
2708
|
-
"opentelemetry",
|
|
2709
|
-
"tracing",
|
|
2710
2769
|
"tracing-core",
|
|
2711
|
-
"tracing-log",
|
|
2712
|
-
"tracing-subscriber",
|
|
2713
2770
|
]
|
|
2714
2771
|
|
|
2715
2772
|
[[package]]
|
|
2716
2773
|
name = "tracing-subscriber"
|
|
2717
|
-
version = "0.3.
|
|
2774
|
+
version = "0.3.18"
|
|
2718
2775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2719
|
-
checksum = "
|
|
2776
|
+
checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
|
|
2720
2777
|
dependencies = [
|
|
2721
2778
|
"matchers",
|
|
2722
2779
|
"nu-ansi-term",
|
|
@@ -2733,21 +2790,21 @@ dependencies = [
|
|
|
2733
2790
|
|
|
2734
2791
|
[[package]]
|
|
2735
2792
|
name = "try-lock"
|
|
2736
|
-
version = "0.2.
|
|
2793
|
+
version = "0.2.5"
|
|
2737
2794
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2738
|
-
checksum = "
|
|
2795
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
2739
2796
|
|
|
2740
2797
|
[[package]]
|
|
2741
2798
|
name = "typenum"
|
|
2742
|
-
version = "1.
|
|
2799
|
+
version = "1.17.0"
|
|
2743
2800
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2744
|
-
checksum = "
|
|
2801
|
+
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
2745
2802
|
|
|
2746
2803
|
[[package]]
|
|
2747
2804
|
name = "typetag"
|
|
2748
|
-
version = "0.2.
|
|
2805
|
+
version = "0.2.15"
|
|
2749
2806
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2750
|
-
checksum = "
|
|
2807
|
+
checksum = "c43148481c7b66502c48f35b8eef38b6ccdc7a9f04bd4cc294226d901ccc9bc7"
|
|
2751
2808
|
dependencies = [
|
|
2752
2809
|
"erased-serde",
|
|
2753
2810
|
"inventory",
|
|
@@ -2758,26 +2815,26 @@ dependencies = [
|
|
|
2758
2815
|
|
|
2759
2816
|
[[package]]
|
|
2760
2817
|
name = "typetag-impl"
|
|
2761
|
-
version = "0.2.
|
|
2818
|
+
version = "0.2.15"
|
|
2762
2819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2763
|
-
checksum = "
|
|
2820
|
+
checksum = "291db8a81af4840c10d636e047cac67664e343be44e24dfdbd1492df9a5d3390"
|
|
2764
2821
|
dependencies = [
|
|
2765
2822
|
"proc-macro2",
|
|
2766
2823
|
"quote",
|
|
2767
|
-
"syn 2.0.
|
|
2824
|
+
"syn 2.0.48",
|
|
2768
2825
|
]
|
|
2769
2826
|
|
|
2770
2827
|
[[package]]
|
|
2771
2828
|
name = "unicode-bidi"
|
|
2772
|
-
version = "0.3.
|
|
2829
|
+
version = "0.3.14"
|
|
2773
2830
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2774
|
-
checksum = "
|
|
2831
|
+
checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416"
|
|
2775
2832
|
|
|
2776
2833
|
[[package]]
|
|
2777
2834
|
name = "unicode-ident"
|
|
2778
|
-
version = "1.0.
|
|
2835
|
+
version = "1.0.12"
|
|
2779
2836
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2780
|
-
checksum = "
|
|
2837
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
2781
2838
|
|
|
2782
2839
|
[[package]]
|
|
2783
2840
|
name = "unicode-normalization"
|
|
@@ -2790,26 +2847,32 @@ dependencies = [
|
|
|
2790
2847
|
|
|
2791
2848
|
[[package]]
|
|
2792
2849
|
name = "untrusted"
|
|
2793
|
-
version = "0.
|
|
2850
|
+
version = "0.9.0"
|
|
2794
2851
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2795
|
-
checksum = "
|
|
2852
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
2796
2853
|
|
|
2797
2854
|
[[package]]
|
|
2798
2855
|
name = "url"
|
|
2799
|
-
version = "2.
|
|
2856
|
+
version = "2.5.0"
|
|
2800
2857
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2801
|
-
checksum = "
|
|
2858
|
+
checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
|
|
2802
2859
|
dependencies = [
|
|
2803
2860
|
"form_urlencoded",
|
|
2804
2861
|
"idna",
|
|
2805
2862
|
"percent-encoding",
|
|
2806
2863
|
]
|
|
2807
2864
|
|
|
2865
|
+
[[package]]
|
|
2866
|
+
name = "urlencoding"
|
|
2867
|
+
version = "2.1.3"
|
|
2868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2869
|
+
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
|
2870
|
+
|
|
2808
2871
|
[[package]]
|
|
2809
2872
|
name = "uuid"
|
|
2810
|
-
version = "1.
|
|
2873
|
+
version = "1.6.1"
|
|
2811
2874
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2812
|
-
checksum = "
|
|
2875
|
+
checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560"
|
|
2813
2876
|
dependencies = [
|
|
2814
2877
|
"getrandom",
|
|
2815
2878
|
]
|
|
@@ -2835,12 +2898,6 @@ dependencies = [
|
|
|
2835
2898
|
"try-lock",
|
|
2836
2899
|
]
|
|
2837
2900
|
|
|
2838
|
-
[[package]]
|
|
2839
|
-
name = "wasi"
|
|
2840
|
-
version = "0.10.2+wasi-snapshot-preview1"
|
|
2841
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2842
|
-
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
|
|
2843
|
-
|
|
2844
2901
|
[[package]]
|
|
2845
2902
|
name = "wasi"
|
|
2846
2903
|
version = "0.11.0+wasi-snapshot-preview1"
|
|
@@ -2849,9 +2906,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
2849
2906
|
|
|
2850
2907
|
[[package]]
|
|
2851
2908
|
name = "wasm-bindgen"
|
|
2852
|
-
version = "0.2.
|
|
2909
|
+
version = "0.2.89"
|
|
2853
2910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2854
|
-
checksum = "
|
|
2911
|
+
checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e"
|
|
2855
2912
|
dependencies = [
|
|
2856
2913
|
"cfg-if",
|
|
2857
2914
|
"wasm-bindgen-macro",
|
|
@@ -2859,24 +2916,24 @@ dependencies = [
|
|
|
2859
2916
|
|
|
2860
2917
|
[[package]]
|
|
2861
2918
|
name = "wasm-bindgen-backend"
|
|
2862
|
-
version = "0.2.
|
|
2919
|
+
version = "0.2.89"
|
|
2863
2920
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2864
|
-
checksum = "
|
|
2921
|
+
checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826"
|
|
2865
2922
|
dependencies = [
|
|
2866
2923
|
"bumpalo",
|
|
2867
2924
|
"log",
|
|
2868
2925
|
"once_cell",
|
|
2869
2926
|
"proc-macro2",
|
|
2870
2927
|
"quote",
|
|
2871
|
-
"syn 2.0.
|
|
2928
|
+
"syn 2.0.48",
|
|
2872
2929
|
"wasm-bindgen-shared",
|
|
2873
2930
|
]
|
|
2874
2931
|
|
|
2875
2932
|
[[package]]
|
|
2876
2933
|
name = "wasm-bindgen-futures"
|
|
2877
|
-
version = "0.4.
|
|
2934
|
+
version = "0.4.39"
|
|
2878
2935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2879
|
-
checksum = "
|
|
2936
|
+
checksum = "ac36a15a220124ac510204aec1c3e5db8a22ab06fd6706d881dc6149f8ed9a12"
|
|
2880
2937
|
dependencies = [
|
|
2881
2938
|
"cfg-if",
|
|
2882
2939
|
"js-sys",
|
|
@@ -2886,9 +2943,9 @@ dependencies = [
|
|
|
2886
2943
|
|
|
2887
2944
|
[[package]]
|
|
2888
2945
|
name = "wasm-bindgen-macro"
|
|
2889
|
-
version = "0.2.
|
|
2946
|
+
version = "0.2.89"
|
|
2890
2947
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2891
|
-
checksum = "
|
|
2948
|
+
checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2"
|
|
2892
2949
|
dependencies = [
|
|
2893
2950
|
"quote",
|
|
2894
2951
|
"wasm-bindgen-macro-support",
|
|
@@ -2896,28 +2953,28 @@ dependencies = [
|
|
|
2896
2953
|
|
|
2897
2954
|
[[package]]
|
|
2898
2955
|
name = "wasm-bindgen-macro-support"
|
|
2899
|
-
version = "0.2.
|
|
2956
|
+
version = "0.2.89"
|
|
2900
2957
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2901
|
-
checksum = "
|
|
2958
|
+
checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283"
|
|
2902
2959
|
dependencies = [
|
|
2903
2960
|
"proc-macro2",
|
|
2904
2961
|
"quote",
|
|
2905
|
-
"syn 2.0.
|
|
2962
|
+
"syn 2.0.48",
|
|
2906
2963
|
"wasm-bindgen-backend",
|
|
2907
2964
|
"wasm-bindgen-shared",
|
|
2908
2965
|
]
|
|
2909
2966
|
|
|
2910
2967
|
[[package]]
|
|
2911
2968
|
name = "wasm-bindgen-shared"
|
|
2912
|
-
version = "0.2.
|
|
2969
|
+
version = "0.2.89"
|
|
2913
2970
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2914
|
-
checksum = "
|
|
2971
|
+
checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f"
|
|
2915
2972
|
|
|
2916
2973
|
[[package]]
|
|
2917
2974
|
name = "wasm-streams"
|
|
2918
|
-
version = "0.
|
|
2975
|
+
version = "0.3.0"
|
|
2919
2976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2920
|
-
checksum = "
|
|
2977
|
+
checksum = "b4609d447824375f43e1ffbc051b50ad8f4b3ae8219680c94452ea05eb240ac7"
|
|
2921
2978
|
dependencies = [
|
|
2922
2979
|
"futures-util",
|
|
2923
2980
|
"js-sys",
|
|
@@ -2928,42 +2985,30 @@ dependencies = [
|
|
|
2928
2985
|
|
|
2929
2986
|
[[package]]
|
|
2930
2987
|
name = "web-sys"
|
|
2931
|
-
version = "0.3.
|
|
2988
|
+
version = "0.3.66"
|
|
2932
2989
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2933
|
-
checksum = "
|
|
2990
|
+
checksum = "50c24a44ec86bb68fbecd1b3efed7e85ea5621b39b35ef2766b66cd984f8010f"
|
|
2934
2991
|
dependencies = [
|
|
2935
2992
|
"js-sys",
|
|
2936
2993
|
"wasm-bindgen",
|
|
2937
2994
|
]
|
|
2938
2995
|
|
|
2939
|
-
[[package]]
|
|
2940
|
-
name = "webpki"
|
|
2941
|
-
version = "0.22.0"
|
|
2942
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2943
|
-
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
|
|
2944
|
-
dependencies = [
|
|
2945
|
-
"ring",
|
|
2946
|
-
"untrusted",
|
|
2947
|
-
]
|
|
2948
|
-
|
|
2949
2996
|
[[package]]
|
|
2950
2997
|
name = "webpki-roots"
|
|
2951
|
-
version = "0.
|
|
2998
|
+
version = "0.25.3"
|
|
2952
2999
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2953
|
-
checksum = "
|
|
2954
|
-
dependencies = [
|
|
2955
|
-
"webpki",
|
|
2956
|
-
]
|
|
3000
|
+
checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10"
|
|
2957
3001
|
|
|
2958
3002
|
[[package]]
|
|
2959
3003
|
name = "which"
|
|
2960
|
-
version = "4.4.
|
|
3004
|
+
version = "4.4.2"
|
|
2961
3005
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2962
|
-
checksum = "
|
|
3006
|
+
checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
|
|
2963
3007
|
dependencies = [
|
|
2964
3008
|
"either",
|
|
2965
|
-
"
|
|
3009
|
+
"home",
|
|
2966
3010
|
"once_cell",
|
|
3011
|
+
"rustix",
|
|
2967
3012
|
]
|
|
2968
3013
|
|
|
2969
3014
|
[[package]]
|
|
@@ -2990,143 +3035,175 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
2990
3035
|
|
|
2991
3036
|
[[package]]
|
|
2992
3037
|
name = "windows-sys"
|
|
2993
|
-
version = "0.
|
|
3038
|
+
version = "0.48.0"
|
|
2994
3039
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2995
|
-
checksum = "
|
|
3040
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
2996
3041
|
dependencies = [
|
|
2997
|
-
"
|
|
2998
|
-
"windows_aarch64_msvc 0.42.2",
|
|
2999
|
-
"windows_i686_gnu 0.42.2",
|
|
3000
|
-
"windows_i686_msvc 0.42.2",
|
|
3001
|
-
"windows_x86_64_gnu 0.42.2",
|
|
3002
|
-
"windows_x86_64_gnullvm 0.42.2",
|
|
3003
|
-
"windows_x86_64_msvc 0.42.2",
|
|
3042
|
+
"windows-targets 0.48.5",
|
|
3004
3043
|
]
|
|
3005
3044
|
|
|
3006
3045
|
[[package]]
|
|
3007
3046
|
name = "windows-sys"
|
|
3008
|
-
version = "0.
|
|
3047
|
+
version = "0.52.0"
|
|
3009
3048
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3010
|
-
checksum = "
|
|
3049
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3011
3050
|
dependencies = [
|
|
3012
|
-
"windows-targets",
|
|
3051
|
+
"windows-targets 0.52.0",
|
|
3013
3052
|
]
|
|
3014
3053
|
|
|
3015
3054
|
[[package]]
|
|
3016
3055
|
name = "windows-targets"
|
|
3017
|
-
version = "0.48.
|
|
3056
|
+
version = "0.48.5"
|
|
3018
3057
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3019
|
-
checksum = "
|
|
3058
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
3020
3059
|
dependencies = [
|
|
3021
|
-
"windows_aarch64_gnullvm 0.48.
|
|
3022
|
-
"windows_aarch64_msvc 0.48.
|
|
3023
|
-
"windows_i686_gnu 0.48.
|
|
3024
|
-
"windows_i686_msvc 0.48.
|
|
3025
|
-
"windows_x86_64_gnu 0.48.
|
|
3026
|
-
"windows_x86_64_gnullvm 0.48.
|
|
3027
|
-
"windows_x86_64_msvc 0.48.
|
|
3060
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
3061
|
+
"windows_aarch64_msvc 0.48.5",
|
|
3062
|
+
"windows_i686_gnu 0.48.5",
|
|
3063
|
+
"windows_i686_msvc 0.48.5",
|
|
3064
|
+
"windows_x86_64_gnu 0.48.5",
|
|
3065
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
3066
|
+
"windows_x86_64_msvc 0.48.5",
|
|
3067
|
+
]
|
|
3068
|
+
|
|
3069
|
+
[[package]]
|
|
3070
|
+
name = "windows-targets"
|
|
3071
|
+
version = "0.52.0"
|
|
3072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3073
|
+
checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
|
|
3074
|
+
dependencies = [
|
|
3075
|
+
"windows_aarch64_gnullvm 0.52.0",
|
|
3076
|
+
"windows_aarch64_msvc 0.52.0",
|
|
3077
|
+
"windows_i686_gnu 0.52.0",
|
|
3078
|
+
"windows_i686_msvc 0.52.0",
|
|
3079
|
+
"windows_x86_64_gnu 0.52.0",
|
|
3080
|
+
"windows_x86_64_gnullvm 0.52.0",
|
|
3081
|
+
"windows_x86_64_msvc 0.52.0",
|
|
3028
3082
|
]
|
|
3029
3083
|
|
|
3030
3084
|
[[package]]
|
|
3031
3085
|
name = "windows_aarch64_gnullvm"
|
|
3032
|
-
version = "0.
|
|
3086
|
+
version = "0.48.5"
|
|
3033
3087
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3034
|
-
checksum = "
|
|
3088
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
3035
3089
|
|
|
3036
3090
|
[[package]]
|
|
3037
3091
|
name = "windows_aarch64_gnullvm"
|
|
3038
|
-
version = "0.
|
|
3092
|
+
version = "0.52.0"
|
|
3039
3093
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3040
|
-
checksum = "
|
|
3094
|
+
checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
|
|
3041
3095
|
|
|
3042
3096
|
[[package]]
|
|
3043
3097
|
name = "windows_aarch64_msvc"
|
|
3044
|
-
version = "0.
|
|
3098
|
+
version = "0.48.5"
|
|
3045
3099
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3046
|
-
checksum = "
|
|
3100
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
3047
3101
|
|
|
3048
3102
|
[[package]]
|
|
3049
3103
|
name = "windows_aarch64_msvc"
|
|
3050
|
-
version = "0.
|
|
3104
|
+
version = "0.52.0"
|
|
3051
3105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3052
|
-
checksum = "
|
|
3106
|
+
checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
|
|
3053
3107
|
|
|
3054
3108
|
[[package]]
|
|
3055
3109
|
name = "windows_i686_gnu"
|
|
3056
|
-
version = "0.
|
|
3110
|
+
version = "0.48.5"
|
|
3057
3111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3058
|
-
checksum = "
|
|
3112
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
3059
3113
|
|
|
3060
3114
|
[[package]]
|
|
3061
3115
|
name = "windows_i686_gnu"
|
|
3062
|
-
version = "0.
|
|
3116
|
+
version = "0.52.0"
|
|
3063
3117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3064
|
-
checksum = "
|
|
3118
|
+
checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
|
|
3065
3119
|
|
|
3066
3120
|
[[package]]
|
|
3067
3121
|
name = "windows_i686_msvc"
|
|
3068
|
-
version = "0.
|
|
3122
|
+
version = "0.48.5"
|
|
3069
3123
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3070
|
-
checksum = "
|
|
3124
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
3071
3125
|
|
|
3072
3126
|
[[package]]
|
|
3073
3127
|
name = "windows_i686_msvc"
|
|
3074
|
-
version = "0.
|
|
3128
|
+
version = "0.52.0"
|
|
3075
3129
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3076
|
-
checksum = "
|
|
3130
|
+
checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
|
|
3077
3131
|
|
|
3078
3132
|
[[package]]
|
|
3079
3133
|
name = "windows_x86_64_gnu"
|
|
3080
|
-
version = "0.
|
|
3134
|
+
version = "0.48.5"
|
|
3081
3135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3082
|
-
checksum = "
|
|
3136
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
3083
3137
|
|
|
3084
3138
|
[[package]]
|
|
3085
3139
|
name = "windows_x86_64_gnu"
|
|
3086
|
-
version = "0.
|
|
3140
|
+
version = "0.52.0"
|
|
3087
3141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3088
|
-
checksum = "
|
|
3142
|
+
checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
|
|
3089
3143
|
|
|
3090
3144
|
[[package]]
|
|
3091
3145
|
name = "windows_x86_64_gnullvm"
|
|
3092
|
-
version = "0.
|
|
3146
|
+
version = "0.48.5"
|
|
3093
3147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3094
|
-
checksum = "
|
|
3148
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
3095
3149
|
|
|
3096
3150
|
[[package]]
|
|
3097
3151
|
name = "windows_x86_64_gnullvm"
|
|
3098
|
-
version = "0.
|
|
3152
|
+
version = "0.52.0"
|
|
3099
3153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3100
|
-
checksum = "
|
|
3154
|
+
checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
|
|
3101
3155
|
|
|
3102
3156
|
[[package]]
|
|
3103
3157
|
name = "windows_x86_64_msvc"
|
|
3104
|
-
version = "0.
|
|
3158
|
+
version = "0.48.5"
|
|
3105
3159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3106
|
-
checksum = "
|
|
3160
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
3107
3161
|
|
|
3108
3162
|
[[package]]
|
|
3109
3163
|
name = "windows_x86_64_msvc"
|
|
3110
|
-
version = "0.
|
|
3164
|
+
version = "0.52.0"
|
|
3111
3165
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3112
|
-
checksum = "
|
|
3166
|
+
checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
|
|
3113
3167
|
|
|
3114
3168
|
[[package]]
|
|
3115
3169
|
name = "winreg"
|
|
3116
|
-
version = "0.
|
|
3170
|
+
version = "0.50.0"
|
|
3117
3171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3118
|
-
checksum = "
|
|
3172
|
+
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
|
|
3119
3173
|
dependencies = [
|
|
3120
|
-
"
|
|
3174
|
+
"cfg-if",
|
|
3175
|
+
"windows-sys 0.48.0",
|
|
3121
3176
|
]
|
|
3122
3177
|
|
|
3123
3178
|
[[package]]
|
|
3124
3179
|
name = "xattr"
|
|
3125
|
-
version = "
|
|
3180
|
+
version = "1.2.0"
|
|
3126
3181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3127
|
-
checksum = "
|
|
3182
|
+
checksum = "914566e6413e7fa959cc394fb30e563ba80f3541fbd40816d4c05a0fc3f2a0f1"
|
|
3128
3183
|
dependencies = [
|
|
3129
3184
|
"libc",
|
|
3185
|
+
"linux-raw-sys",
|
|
3186
|
+
"rustix",
|
|
3187
|
+
]
|
|
3188
|
+
|
|
3189
|
+
[[package]]
|
|
3190
|
+
name = "zerocopy"
|
|
3191
|
+
version = "0.7.32"
|
|
3192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3193
|
+
checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
|
|
3194
|
+
dependencies = [
|
|
3195
|
+
"zerocopy-derive",
|
|
3196
|
+
]
|
|
3197
|
+
|
|
3198
|
+
[[package]]
|
|
3199
|
+
name = "zerocopy-derive"
|
|
3200
|
+
version = "0.7.32"
|
|
3201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3202
|
+
checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
|
|
3203
|
+
dependencies = [
|
|
3204
|
+
"proc-macro2",
|
|
3205
|
+
"quote",
|
|
3206
|
+
"syn 2.0.48",
|
|
3130
3207
|
]
|
|
3131
3208
|
|
|
3132
3209
|
[[package]]
|
|
@@ -3170,11 +3247,10 @@ dependencies = [
|
|
|
3170
3247
|
|
|
3171
3248
|
[[package]]
|
|
3172
3249
|
name = "zstd-sys"
|
|
3173
|
-
version = "2.0.
|
|
3250
|
+
version = "2.0.9+zstd.1.5.5"
|
|
3174
3251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3175
|
-
checksum = "
|
|
3252
|
+
checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656"
|
|
3176
3253
|
dependencies = [
|
|
3177
3254
|
"cc",
|
|
3178
|
-
"libc",
|
|
3179
3255
|
"pkg-config",
|
|
3180
3256
|
]
|