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