@databricks/zerobus-ingest-sdk 0.0.1 → 0.1.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 +2233 -0
- package/Cargo.toml +46 -0
- package/LICENSE +69 -0
- package/README.md +1220 -0
- package/build.rs +5 -0
- package/index.d.ts +387 -0
- package/index.js +318 -0
- package/package.json +88 -6
- package/schemas/air_quality.proto +10 -0
- package/schemas/air_quality_descriptor.pb +9 -0
- package/src/headers_provider.ts +82 -0
- package/src/lib.rs +815 -0
- package/utils/descriptor.ts +103 -0
- package/zerobus-sdk-ts.linux-x64-gnu.node +0 -0
package/Cargo.lock
ADDED
|
@@ -0,0 +1,2233 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.4"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "anyhow"
|
|
16
|
+
version = "1.0.100"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "async-stream"
|
|
22
|
+
version = "0.3.6"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"async-stream-impl",
|
|
27
|
+
"futures-core",
|
|
28
|
+
"pin-project-lite",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[[package]]
|
|
32
|
+
name = "async-stream-impl"
|
|
33
|
+
version = "0.3.6"
|
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
+
checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
|
36
|
+
dependencies = [
|
|
37
|
+
"proc-macro2",
|
|
38
|
+
"quote",
|
|
39
|
+
"syn",
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
[[package]]
|
|
43
|
+
name = "async-trait"
|
|
44
|
+
version = "0.1.89"
|
|
45
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
46
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
47
|
+
dependencies = [
|
|
48
|
+
"proc-macro2",
|
|
49
|
+
"quote",
|
|
50
|
+
"syn",
|
|
51
|
+
]
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "atomic-waker"
|
|
55
|
+
version = "1.1.2"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "autocfg"
|
|
61
|
+
version = "1.5.0"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "axum"
|
|
67
|
+
version = "0.7.9"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"async-trait",
|
|
72
|
+
"axum-core",
|
|
73
|
+
"bytes",
|
|
74
|
+
"futures-util",
|
|
75
|
+
"http",
|
|
76
|
+
"http-body",
|
|
77
|
+
"http-body-util",
|
|
78
|
+
"itoa",
|
|
79
|
+
"matchit",
|
|
80
|
+
"memchr",
|
|
81
|
+
"mime",
|
|
82
|
+
"percent-encoding",
|
|
83
|
+
"pin-project-lite",
|
|
84
|
+
"rustversion",
|
|
85
|
+
"serde",
|
|
86
|
+
"sync_wrapper",
|
|
87
|
+
"tower 0.5.2",
|
|
88
|
+
"tower-layer",
|
|
89
|
+
"tower-service",
|
|
90
|
+
]
|
|
91
|
+
|
|
92
|
+
[[package]]
|
|
93
|
+
name = "axum-core"
|
|
94
|
+
version = "0.4.5"
|
|
95
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
96
|
+
checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
|
|
97
|
+
dependencies = [
|
|
98
|
+
"async-trait",
|
|
99
|
+
"bytes",
|
|
100
|
+
"futures-util",
|
|
101
|
+
"http",
|
|
102
|
+
"http-body",
|
|
103
|
+
"http-body-util",
|
|
104
|
+
"mime",
|
|
105
|
+
"pin-project-lite",
|
|
106
|
+
"rustversion",
|
|
107
|
+
"sync_wrapper",
|
|
108
|
+
"tower-layer",
|
|
109
|
+
"tower-service",
|
|
110
|
+
]
|
|
111
|
+
|
|
112
|
+
[[package]]
|
|
113
|
+
name = "base64"
|
|
114
|
+
version = "0.21.7"
|
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
117
|
+
|
|
118
|
+
[[package]]
|
|
119
|
+
name = "base64"
|
|
120
|
+
version = "0.22.1"
|
|
121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "bitflags"
|
|
126
|
+
version = "2.10.0"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "bumpalo"
|
|
132
|
+
version = "3.19.0"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "bytes"
|
|
138
|
+
version = "1.10.1"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "cc"
|
|
144
|
+
version = "1.2.45"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "35900b6c8d709fb1d854671ae27aeaa9eec2f8b01b364e1619a40da3e6fe2afe"
|
|
147
|
+
dependencies = [
|
|
148
|
+
"find-msvc-tools",
|
|
149
|
+
"shlex",
|
|
150
|
+
]
|
|
151
|
+
|
|
152
|
+
[[package]]
|
|
153
|
+
name = "cfg-if"
|
|
154
|
+
version = "1.0.4"
|
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
157
|
+
|
|
158
|
+
[[package]]
|
|
159
|
+
name = "cfg_aliases"
|
|
160
|
+
version = "0.2.1"
|
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
163
|
+
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "convert_case"
|
|
166
|
+
version = "0.6.0"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
|
|
169
|
+
dependencies = [
|
|
170
|
+
"unicode-segmentation",
|
|
171
|
+
]
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "core-foundation"
|
|
175
|
+
version = "0.10.1"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
178
|
+
dependencies = [
|
|
179
|
+
"core-foundation-sys",
|
|
180
|
+
"libc",
|
|
181
|
+
]
|
|
182
|
+
|
|
183
|
+
[[package]]
|
|
184
|
+
name = "core-foundation-sys"
|
|
185
|
+
version = "0.8.7"
|
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "ctor"
|
|
191
|
+
version = "0.2.9"
|
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
+
checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
|
|
194
|
+
dependencies = [
|
|
195
|
+
"quote",
|
|
196
|
+
"syn",
|
|
197
|
+
]
|
|
198
|
+
|
|
199
|
+
[[package]]
|
|
200
|
+
name = "databricks-zerobus-ingest-sdk"
|
|
201
|
+
version = "0.2.0"
|
|
202
|
+
source = "git+https://github.com/databricks/zerobus-sdk-rs?tag=v0.2.0#c6b48d921d395db7f526fba98f122f1e088a07e3"
|
|
203
|
+
dependencies = [
|
|
204
|
+
"async-trait",
|
|
205
|
+
"prost",
|
|
206
|
+
"prost-types",
|
|
207
|
+
"protoc-bin-vendored",
|
|
208
|
+
"reqwest",
|
|
209
|
+
"serde_json",
|
|
210
|
+
"smallvec",
|
|
211
|
+
"thiserror 1.0.69",
|
|
212
|
+
"tokio",
|
|
213
|
+
"tokio-retry",
|
|
214
|
+
"tokio-stream",
|
|
215
|
+
"tonic",
|
|
216
|
+
"tonic-build",
|
|
217
|
+
"tracing",
|
|
218
|
+
]
|
|
219
|
+
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "displaydoc"
|
|
222
|
+
version = "0.2.5"
|
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
225
|
+
dependencies = [
|
|
226
|
+
"proc-macro2",
|
|
227
|
+
"quote",
|
|
228
|
+
"syn",
|
|
229
|
+
]
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "either"
|
|
233
|
+
version = "1.15.0"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
236
|
+
|
|
237
|
+
[[package]]
|
|
238
|
+
name = "equivalent"
|
|
239
|
+
version = "1.0.2"
|
|
240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
241
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "errno"
|
|
245
|
+
version = "0.3.14"
|
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
248
|
+
dependencies = [
|
|
249
|
+
"libc",
|
|
250
|
+
"windows-sys 0.61.2",
|
|
251
|
+
]
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "fastrand"
|
|
255
|
+
version = "2.3.0"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
258
|
+
|
|
259
|
+
[[package]]
|
|
260
|
+
name = "find-msvc-tools"
|
|
261
|
+
version = "0.1.4"
|
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
+
checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "fixedbitset"
|
|
267
|
+
version = "0.5.7"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
270
|
+
|
|
271
|
+
[[package]]
|
|
272
|
+
name = "fnv"
|
|
273
|
+
version = "1.0.7"
|
|
274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "form_urlencoded"
|
|
279
|
+
version = "1.2.2"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
282
|
+
dependencies = [
|
|
283
|
+
"percent-encoding",
|
|
284
|
+
]
|
|
285
|
+
|
|
286
|
+
[[package]]
|
|
287
|
+
name = "futures-channel"
|
|
288
|
+
version = "0.3.31"
|
|
289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
291
|
+
dependencies = [
|
|
292
|
+
"futures-core",
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "futures-core"
|
|
297
|
+
version = "0.3.31"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "futures-sink"
|
|
303
|
+
version = "0.3.31"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
306
|
+
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "futures-task"
|
|
309
|
+
version = "0.3.31"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "futures-util"
|
|
315
|
+
version = "0.3.31"
|
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
318
|
+
dependencies = [
|
|
319
|
+
"futures-core",
|
|
320
|
+
"futures-task",
|
|
321
|
+
"pin-project-lite",
|
|
322
|
+
"pin-utils",
|
|
323
|
+
]
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "getrandom"
|
|
327
|
+
version = "0.2.16"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
330
|
+
dependencies = [
|
|
331
|
+
"cfg-if",
|
|
332
|
+
"js-sys",
|
|
333
|
+
"libc",
|
|
334
|
+
"wasi",
|
|
335
|
+
"wasm-bindgen",
|
|
336
|
+
]
|
|
337
|
+
|
|
338
|
+
[[package]]
|
|
339
|
+
name = "getrandom"
|
|
340
|
+
version = "0.3.4"
|
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
343
|
+
dependencies = [
|
|
344
|
+
"cfg-if",
|
|
345
|
+
"js-sys",
|
|
346
|
+
"libc",
|
|
347
|
+
"r-efi",
|
|
348
|
+
"wasip2",
|
|
349
|
+
"wasm-bindgen",
|
|
350
|
+
]
|
|
351
|
+
|
|
352
|
+
[[package]]
|
|
353
|
+
name = "h2"
|
|
354
|
+
version = "0.4.12"
|
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
+
checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
|
|
357
|
+
dependencies = [
|
|
358
|
+
"atomic-waker",
|
|
359
|
+
"bytes",
|
|
360
|
+
"fnv",
|
|
361
|
+
"futures-core",
|
|
362
|
+
"futures-sink",
|
|
363
|
+
"http",
|
|
364
|
+
"indexmap 2.12.0",
|
|
365
|
+
"slab",
|
|
366
|
+
"tokio",
|
|
367
|
+
"tokio-util",
|
|
368
|
+
"tracing",
|
|
369
|
+
]
|
|
370
|
+
|
|
371
|
+
[[package]]
|
|
372
|
+
name = "hashbrown"
|
|
373
|
+
version = "0.12.3"
|
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
376
|
+
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "hashbrown"
|
|
379
|
+
version = "0.16.0"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "heck"
|
|
385
|
+
version = "0.5.0"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "http"
|
|
391
|
+
version = "1.3.1"
|
|
392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
|
394
|
+
dependencies = [
|
|
395
|
+
"bytes",
|
|
396
|
+
"fnv",
|
|
397
|
+
"itoa",
|
|
398
|
+
]
|
|
399
|
+
|
|
400
|
+
[[package]]
|
|
401
|
+
name = "http-body"
|
|
402
|
+
version = "1.0.1"
|
|
403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
405
|
+
dependencies = [
|
|
406
|
+
"bytes",
|
|
407
|
+
"http",
|
|
408
|
+
]
|
|
409
|
+
|
|
410
|
+
[[package]]
|
|
411
|
+
name = "http-body-util"
|
|
412
|
+
version = "0.1.3"
|
|
413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
414
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
415
|
+
dependencies = [
|
|
416
|
+
"bytes",
|
|
417
|
+
"futures-core",
|
|
418
|
+
"http",
|
|
419
|
+
"http-body",
|
|
420
|
+
"pin-project-lite",
|
|
421
|
+
]
|
|
422
|
+
|
|
423
|
+
[[package]]
|
|
424
|
+
name = "httparse"
|
|
425
|
+
version = "1.10.1"
|
|
426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
427
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
428
|
+
|
|
429
|
+
[[package]]
|
|
430
|
+
name = "httpdate"
|
|
431
|
+
version = "1.0.3"
|
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
434
|
+
|
|
435
|
+
[[package]]
|
|
436
|
+
name = "hyper"
|
|
437
|
+
version = "1.8.0"
|
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
+
checksum = "1744436df46f0bde35af3eda22aeaba453aada65d8f1c171cd8a5f59030bd69f"
|
|
440
|
+
dependencies = [
|
|
441
|
+
"atomic-waker",
|
|
442
|
+
"bytes",
|
|
443
|
+
"futures-channel",
|
|
444
|
+
"futures-core",
|
|
445
|
+
"h2",
|
|
446
|
+
"http",
|
|
447
|
+
"http-body",
|
|
448
|
+
"httparse",
|
|
449
|
+
"httpdate",
|
|
450
|
+
"itoa",
|
|
451
|
+
"pin-project-lite",
|
|
452
|
+
"pin-utils",
|
|
453
|
+
"smallvec",
|
|
454
|
+
"tokio",
|
|
455
|
+
"want",
|
|
456
|
+
]
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "hyper-rustls"
|
|
460
|
+
version = "0.27.7"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
463
|
+
dependencies = [
|
|
464
|
+
"http",
|
|
465
|
+
"hyper",
|
|
466
|
+
"hyper-util",
|
|
467
|
+
"rustls",
|
|
468
|
+
"rustls-pki-types",
|
|
469
|
+
"tokio",
|
|
470
|
+
"tokio-rustls",
|
|
471
|
+
"tower-service",
|
|
472
|
+
"webpki-roots",
|
|
473
|
+
]
|
|
474
|
+
|
|
475
|
+
[[package]]
|
|
476
|
+
name = "hyper-timeout"
|
|
477
|
+
version = "0.5.2"
|
|
478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
|
+
checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
|
|
480
|
+
dependencies = [
|
|
481
|
+
"hyper",
|
|
482
|
+
"hyper-util",
|
|
483
|
+
"pin-project-lite",
|
|
484
|
+
"tokio",
|
|
485
|
+
"tower-service",
|
|
486
|
+
]
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "hyper-util"
|
|
490
|
+
version = "0.1.18"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "52e9a2a24dc5c6821e71a7030e1e14b7b632acac55c40e9d2e082c621261bb56"
|
|
493
|
+
dependencies = [
|
|
494
|
+
"base64 0.22.1",
|
|
495
|
+
"bytes",
|
|
496
|
+
"futures-channel",
|
|
497
|
+
"futures-core",
|
|
498
|
+
"futures-util",
|
|
499
|
+
"http",
|
|
500
|
+
"http-body",
|
|
501
|
+
"hyper",
|
|
502
|
+
"ipnet",
|
|
503
|
+
"libc",
|
|
504
|
+
"percent-encoding",
|
|
505
|
+
"pin-project-lite",
|
|
506
|
+
"socket2 0.6.1",
|
|
507
|
+
"tokio",
|
|
508
|
+
"tower-service",
|
|
509
|
+
"tracing",
|
|
510
|
+
]
|
|
511
|
+
|
|
512
|
+
[[package]]
|
|
513
|
+
name = "icu_collections"
|
|
514
|
+
version = "2.1.1"
|
|
515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
516
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
517
|
+
dependencies = [
|
|
518
|
+
"displaydoc",
|
|
519
|
+
"potential_utf",
|
|
520
|
+
"yoke",
|
|
521
|
+
"zerofrom",
|
|
522
|
+
"zerovec",
|
|
523
|
+
]
|
|
524
|
+
|
|
525
|
+
[[package]]
|
|
526
|
+
name = "icu_locale_core"
|
|
527
|
+
version = "2.1.1"
|
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
530
|
+
dependencies = [
|
|
531
|
+
"displaydoc",
|
|
532
|
+
"litemap",
|
|
533
|
+
"tinystr",
|
|
534
|
+
"writeable",
|
|
535
|
+
"zerovec",
|
|
536
|
+
]
|
|
537
|
+
|
|
538
|
+
[[package]]
|
|
539
|
+
name = "icu_normalizer"
|
|
540
|
+
version = "2.1.1"
|
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
543
|
+
dependencies = [
|
|
544
|
+
"icu_collections",
|
|
545
|
+
"icu_normalizer_data",
|
|
546
|
+
"icu_properties",
|
|
547
|
+
"icu_provider",
|
|
548
|
+
"smallvec",
|
|
549
|
+
"zerovec",
|
|
550
|
+
]
|
|
551
|
+
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "icu_normalizer_data"
|
|
554
|
+
version = "2.1.1"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
557
|
+
|
|
558
|
+
[[package]]
|
|
559
|
+
name = "icu_properties"
|
|
560
|
+
version = "2.1.1"
|
|
561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
562
|
+
checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99"
|
|
563
|
+
dependencies = [
|
|
564
|
+
"icu_collections",
|
|
565
|
+
"icu_locale_core",
|
|
566
|
+
"icu_properties_data",
|
|
567
|
+
"icu_provider",
|
|
568
|
+
"zerotrie",
|
|
569
|
+
"zerovec",
|
|
570
|
+
]
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "icu_properties_data"
|
|
574
|
+
version = "2.1.1"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899"
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "icu_provider"
|
|
580
|
+
version = "2.1.1"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
583
|
+
dependencies = [
|
|
584
|
+
"displaydoc",
|
|
585
|
+
"icu_locale_core",
|
|
586
|
+
"writeable",
|
|
587
|
+
"yoke",
|
|
588
|
+
"zerofrom",
|
|
589
|
+
"zerotrie",
|
|
590
|
+
"zerovec",
|
|
591
|
+
]
|
|
592
|
+
|
|
593
|
+
[[package]]
|
|
594
|
+
name = "idna"
|
|
595
|
+
version = "1.1.0"
|
|
596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
598
|
+
dependencies = [
|
|
599
|
+
"idna_adapter",
|
|
600
|
+
"smallvec",
|
|
601
|
+
"utf8_iter",
|
|
602
|
+
]
|
|
603
|
+
|
|
604
|
+
[[package]]
|
|
605
|
+
name = "idna_adapter"
|
|
606
|
+
version = "1.2.1"
|
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
609
|
+
dependencies = [
|
|
610
|
+
"icu_normalizer",
|
|
611
|
+
"icu_properties",
|
|
612
|
+
]
|
|
613
|
+
|
|
614
|
+
[[package]]
|
|
615
|
+
name = "indexmap"
|
|
616
|
+
version = "1.9.3"
|
|
617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
619
|
+
dependencies = [
|
|
620
|
+
"autocfg",
|
|
621
|
+
"hashbrown 0.12.3",
|
|
622
|
+
]
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "indexmap"
|
|
626
|
+
version = "2.12.0"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
|
|
629
|
+
dependencies = [
|
|
630
|
+
"equivalent",
|
|
631
|
+
"hashbrown 0.16.0",
|
|
632
|
+
]
|
|
633
|
+
|
|
634
|
+
[[package]]
|
|
635
|
+
name = "ipnet"
|
|
636
|
+
version = "2.11.0"
|
|
637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
638
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
639
|
+
|
|
640
|
+
[[package]]
|
|
641
|
+
name = "iri-string"
|
|
642
|
+
version = "0.7.9"
|
|
643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
644
|
+
checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397"
|
|
645
|
+
dependencies = [
|
|
646
|
+
"memchr",
|
|
647
|
+
"serde",
|
|
648
|
+
]
|
|
649
|
+
|
|
650
|
+
[[package]]
|
|
651
|
+
name = "itertools"
|
|
652
|
+
version = "0.14.0"
|
|
653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
655
|
+
dependencies = [
|
|
656
|
+
"either",
|
|
657
|
+
]
|
|
658
|
+
|
|
659
|
+
[[package]]
|
|
660
|
+
name = "itoa"
|
|
661
|
+
version = "1.0.15"
|
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
664
|
+
|
|
665
|
+
[[package]]
|
|
666
|
+
name = "js-sys"
|
|
667
|
+
version = "0.3.82"
|
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
669
|
+
checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
|
|
670
|
+
dependencies = [
|
|
671
|
+
"once_cell",
|
|
672
|
+
"wasm-bindgen",
|
|
673
|
+
]
|
|
674
|
+
|
|
675
|
+
[[package]]
|
|
676
|
+
name = "libc"
|
|
677
|
+
version = "0.2.177"
|
|
678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
|
|
680
|
+
|
|
681
|
+
[[package]]
|
|
682
|
+
name = "libloading"
|
|
683
|
+
version = "0.8.9"
|
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
685
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
686
|
+
dependencies = [
|
|
687
|
+
"cfg-if",
|
|
688
|
+
"windows-link",
|
|
689
|
+
]
|
|
690
|
+
|
|
691
|
+
[[package]]
|
|
692
|
+
name = "linux-raw-sys"
|
|
693
|
+
version = "0.11.0"
|
|
694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
695
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
696
|
+
|
|
697
|
+
[[package]]
|
|
698
|
+
name = "litemap"
|
|
699
|
+
version = "0.8.1"
|
|
700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
701
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
702
|
+
|
|
703
|
+
[[package]]
|
|
704
|
+
name = "log"
|
|
705
|
+
version = "0.4.28"
|
|
706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
+
checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
|
|
708
|
+
|
|
709
|
+
[[package]]
|
|
710
|
+
name = "lru-slab"
|
|
711
|
+
version = "0.1.2"
|
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "matchit"
|
|
717
|
+
version = "0.7.3"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "memchr"
|
|
723
|
+
version = "2.7.6"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
726
|
+
|
|
727
|
+
[[package]]
|
|
728
|
+
name = "mime"
|
|
729
|
+
version = "0.3.17"
|
|
730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
732
|
+
|
|
733
|
+
[[package]]
|
|
734
|
+
name = "mio"
|
|
735
|
+
version = "1.1.0"
|
|
736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
737
|
+
checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873"
|
|
738
|
+
dependencies = [
|
|
739
|
+
"libc",
|
|
740
|
+
"wasi",
|
|
741
|
+
"windows-sys 0.61.2",
|
|
742
|
+
]
|
|
743
|
+
|
|
744
|
+
[[package]]
|
|
745
|
+
name = "multimap"
|
|
746
|
+
version = "0.10.1"
|
|
747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
+
checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
|
|
749
|
+
|
|
750
|
+
[[package]]
|
|
751
|
+
name = "napi"
|
|
752
|
+
version = "2.16.17"
|
|
753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
754
|
+
checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
|
|
755
|
+
dependencies = [
|
|
756
|
+
"bitflags",
|
|
757
|
+
"ctor",
|
|
758
|
+
"napi-derive",
|
|
759
|
+
"napi-sys",
|
|
760
|
+
"once_cell",
|
|
761
|
+
"serde",
|
|
762
|
+
"serde_json",
|
|
763
|
+
"tokio",
|
|
764
|
+
]
|
|
765
|
+
|
|
766
|
+
[[package]]
|
|
767
|
+
name = "napi-build"
|
|
768
|
+
version = "2.3.1"
|
|
769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
|
+
checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
|
|
771
|
+
|
|
772
|
+
[[package]]
|
|
773
|
+
name = "napi-derive"
|
|
774
|
+
version = "2.16.13"
|
|
775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
776
|
+
checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
|
|
777
|
+
dependencies = [
|
|
778
|
+
"cfg-if",
|
|
779
|
+
"convert_case",
|
|
780
|
+
"napi-derive-backend",
|
|
781
|
+
"proc-macro2",
|
|
782
|
+
"quote",
|
|
783
|
+
"syn",
|
|
784
|
+
]
|
|
785
|
+
|
|
786
|
+
[[package]]
|
|
787
|
+
name = "napi-derive-backend"
|
|
788
|
+
version = "1.0.75"
|
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
+
checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
|
|
791
|
+
dependencies = [
|
|
792
|
+
"convert_case",
|
|
793
|
+
"once_cell",
|
|
794
|
+
"proc-macro2",
|
|
795
|
+
"quote",
|
|
796
|
+
"regex",
|
|
797
|
+
"semver",
|
|
798
|
+
"syn",
|
|
799
|
+
]
|
|
800
|
+
|
|
801
|
+
[[package]]
|
|
802
|
+
name = "napi-sys"
|
|
803
|
+
version = "2.4.0"
|
|
804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
805
|
+
checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
|
|
806
|
+
dependencies = [
|
|
807
|
+
"libloading",
|
|
808
|
+
]
|
|
809
|
+
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "once_cell"
|
|
812
|
+
version = "1.21.3"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
815
|
+
|
|
816
|
+
[[package]]
|
|
817
|
+
name = "openssl-probe"
|
|
818
|
+
version = "0.1.6"
|
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
821
|
+
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "percent-encoding"
|
|
824
|
+
version = "2.3.2"
|
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
827
|
+
|
|
828
|
+
[[package]]
|
|
829
|
+
name = "petgraph"
|
|
830
|
+
version = "0.7.1"
|
|
831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
832
|
+
checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
|
|
833
|
+
dependencies = [
|
|
834
|
+
"fixedbitset",
|
|
835
|
+
"indexmap 2.12.0",
|
|
836
|
+
]
|
|
837
|
+
|
|
838
|
+
[[package]]
|
|
839
|
+
name = "pin-project"
|
|
840
|
+
version = "1.1.10"
|
|
841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
842
|
+
checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
|
|
843
|
+
dependencies = [
|
|
844
|
+
"pin-project-internal",
|
|
845
|
+
]
|
|
846
|
+
|
|
847
|
+
[[package]]
|
|
848
|
+
name = "pin-project-internal"
|
|
849
|
+
version = "1.1.10"
|
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
+
checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
|
|
852
|
+
dependencies = [
|
|
853
|
+
"proc-macro2",
|
|
854
|
+
"quote",
|
|
855
|
+
"syn",
|
|
856
|
+
]
|
|
857
|
+
|
|
858
|
+
[[package]]
|
|
859
|
+
name = "pin-project-lite"
|
|
860
|
+
version = "0.2.16"
|
|
861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
862
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
863
|
+
|
|
864
|
+
[[package]]
|
|
865
|
+
name = "pin-utils"
|
|
866
|
+
version = "0.1.0"
|
|
867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
868
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
869
|
+
|
|
870
|
+
[[package]]
|
|
871
|
+
name = "potential_utf"
|
|
872
|
+
version = "0.1.4"
|
|
873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
874
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
875
|
+
dependencies = [
|
|
876
|
+
"zerovec",
|
|
877
|
+
]
|
|
878
|
+
|
|
879
|
+
[[package]]
|
|
880
|
+
name = "ppv-lite86"
|
|
881
|
+
version = "0.2.21"
|
|
882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
884
|
+
dependencies = [
|
|
885
|
+
"zerocopy",
|
|
886
|
+
]
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "prettyplease"
|
|
890
|
+
version = "0.2.37"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
893
|
+
dependencies = [
|
|
894
|
+
"proc-macro2",
|
|
895
|
+
"syn",
|
|
896
|
+
]
|
|
897
|
+
|
|
898
|
+
[[package]]
|
|
899
|
+
name = "proc-macro2"
|
|
900
|
+
version = "1.0.103"
|
|
901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
902
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
903
|
+
dependencies = [
|
|
904
|
+
"unicode-ident",
|
|
905
|
+
]
|
|
906
|
+
|
|
907
|
+
[[package]]
|
|
908
|
+
name = "prost"
|
|
909
|
+
version = "0.13.5"
|
|
910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
+
checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
|
|
912
|
+
dependencies = [
|
|
913
|
+
"bytes",
|
|
914
|
+
"prost-derive",
|
|
915
|
+
]
|
|
916
|
+
|
|
917
|
+
[[package]]
|
|
918
|
+
name = "prost-build"
|
|
919
|
+
version = "0.13.5"
|
|
920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
921
|
+
checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf"
|
|
922
|
+
dependencies = [
|
|
923
|
+
"heck",
|
|
924
|
+
"itertools",
|
|
925
|
+
"log",
|
|
926
|
+
"multimap",
|
|
927
|
+
"once_cell",
|
|
928
|
+
"petgraph",
|
|
929
|
+
"prettyplease",
|
|
930
|
+
"prost",
|
|
931
|
+
"prost-types",
|
|
932
|
+
"regex",
|
|
933
|
+
"syn",
|
|
934
|
+
"tempfile",
|
|
935
|
+
]
|
|
936
|
+
|
|
937
|
+
[[package]]
|
|
938
|
+
name = "prost-derive"
|
|
939
|
+
version = "0.13.5"
|
|
940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
941
|
+
checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
|
|
942
|
+
dependencies = [
|
|
943
|
+
"anyhow",
|
|
944
|
+
"itertools",
|
|
945
|
+
"proc-macro2",
|
|
946
|
+
"quote",
|
|
947
|
+
"syn",
|
|
948
|
+
]
|
|
949
|
+
|
|
950
|
+
[[package]]
|
|
951
|
+
name = "prost-types"
|
|
952
|
+
version = "0.13.5"
|
|
953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
954
|
+
checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16"
|
|
955
|
+
dependencies = [
|
|
956
|
+
"prost",
|
|
957
|
+
]
|
|
958
|
+
|
|
959
|
+
[[package]]
|
|
960
|
+
name = "protoc-bin-vendored"
|
|
961
|
+
version = "3.2.0"
|
|
962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
963
|
+
checksum = "d1c381df33c98266b5f08186583660090a4ffa0889e76c7e9a5e175f645a67fa"
|
|
964
|
+
dependencies = [
|
|
965
|
+
"protoc-bin-vendored-linux-aarch_64",
|
|
966
|
+
"protoc-bin-vendored-linux-ppcle_64",
|
|
967
|
+
"protoc-bin-vendored-linux-s390_64",
|
|
968
|
+
"protoc-bin-vendored-linux-x86_32",
|
|
969
|
+
"protoc-bin-vendored-linux-x86_64",
|
|
970
|
+
"protoc-bin-vendored-macos-aarch_64",
|
|
971
|
+
"protoc-bin-vendored-macos-x86_64",
|
|
972
|
+
"protoc-bin-vendored-win32",
|
|
973
|
+
]
|
|
974
|
+
|
|
975
|
+
[[package]]
|
|
976
|
+
name = "protoc-bin-vendored-linux-aarch_64"
|
|
977
|
+
version = "3.2.0"
|
|
978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
979
|
+
checksum = "c350df4d49b5b9e3ca79f7e646fde2377b199e13cfa87320308397e1f37e1a4c"
|
|
980
|
+
|
|
981
|
+
[[package]]
|
|
982
|
+
name = "protoc-bin-vendored-linux-ppcle_64"
|
|
983
|
+
version = "3.2.0"
|
|
984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
985
|
+
checksum = "a55a63e6c7244f19b5c6393f025017eb5d793fd5467823a099740a7a4222440c"
|
|
986
|
+
|
|
987
|
+
[[package]]
|
|
988
|
+
name = "protoc-bin-vendored-linux-s390_64"
|
|
989
|
+
version = "3.2.0"
|
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
+
checksum = "1dba5565db4288e935d5330a07c264a4ee8e4a5b4a4e6f4e83fad824cc32f3b0"
|
|
992
|
+
|
|
993
|
+
[[package]]
|
|
994
|
+
name = "protoc-bin-vendored-linux-x86_32"
|
|
995
|
+
version = "3.2.0"
|
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
+
checksum = "8854774b24ee28b7868cd71dccaae8e02a2365e67a4a87a6cd11ee6cdbdf9cf5"
|
|
998
|
+
|
|
999
|
+
[[package]]
|
|
1000
|
+
name = "protoc-bin-vendored-linux-x86_64"
|
|
1001
|
+
version = "3.2.0"
|
|
1002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
|
+
checksum = "b38b07546580df720fa464ce124c4b03630a6fb83e05c336fea2a241df7e5d78"
|
|
1004
|
+
|
|
1005
|
+
[[package]]
|
|
1006
|
+
name = "protoc-bin-vendored-macos-aarch_64"
|
|
1007
|
+
version = "3.2.0"
|
|
1008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1009
|
+
checksum = "89278a9926ce312e51f1d999fee8825d324d603213344a9a706daa009f1d8092"
|
|
1010
|
+
|
|
1011
|
+
[[package]]
|
|
1012
|
+
name = "protoc-bin-vendored-macos-x86_64"
|
|
1013
|
+
version = "3.2.0"
|
|
1014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1015
|
+
checksum = "81745feda7ccfb9471d7a4de888f0652e806d5795b61480605d4943176299756"
|
|
1016
|
+
|
|
1017
|
+
[[package]]
|
|
1018
|
+
name = "protoc-bin-vendored-win32"
|
|
1019
|
+
version = "3.2.0"
|
|
1020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1021
|
+
checksum = "95067976aca6421a523e491fce939a3e65249bac4b977adee0ee9771568e8aa3"
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "quinn"
|
|
1025
|
+
version = "0.11.9"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
1028
|
+
dependencies = [
|
|
1029
|
+
"bytes",
|
|
1030
|
+
"cfg_aliases",
|
|
1031
|
+
"pin-project-lite",
|
|
1032
|
+
"quinn-proto",
|
|
1033
|
+
"quinn-udp",
|
|
1034
|
+
"rustc-hash",
|
|
1035
|
+
"rustls",
|
|
1036
|
+
"socket2 0.6.1",
|
|
1037
|
+
"thiserror 2.0.17",
|
|
1038
|
+
"tokio",
|
|
1039
|
+
"tracing",
|
|
1040
|
+
"web-time",
|
|
1041
|
+
]
|
|
1042
|
+
|
|
1043
|
+
[[package]]
|
|
1044
|
+
name = "quinn-proto"
|
|
1045
|
+
version = "0.11.13"
|
|
1046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1047
|
+
checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
|
|
1048
|
+
dependencies = [
|
|
1049
|
+
"bytes",
|
|
1050
|
+
"getrandom 0.3.4",
|
|
1051
|
+
"lru-slab",
|
|
1052
|
+
"rand 0.9.2",
|
|
1053
|
+
"ring",
|
|
1054
|
+
"rustc-hash",
|
|
1055
|
+
"rustls",
|
|
1056
|
+
"rustls-pki-types",
|
|
1057
|
+
"slab",
|
|
1058
|
+
"thiserror 2.0.17",
|
|
1059
|
+
"tinyvec",
|
|
1060
|
+
"tracing",
|
|
1061
|
+
"web-time",
|
|
1062
|
+
]
|
|
1063
|
+
|
|
1064
|
+
[[package]]
|
|
1065
|
+
name = "quinn-udp"
|
|
1066
|
+
version = "0.5.14"
|
|
1067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
1069
|
+
dependencies = [
|
|
1070
|
+
"cfg_aliases",
|
|
1071
|
+
"libc",
|
|
1072
|
+
"once_cell",
|
|
1073
|
+
"socket2 0.6.1",
|
|
1074
|
+
"tracing",
|
|
1075
|
+
"windows-sys 0.60.2",
|
|
1076
|
+
]
|
|
1077
|
+
|
|
1078
|
+
[[package]]
|
|
1079
|
+
name = "quote"
|
|
1080
|
+
version = "1.0.42"
|
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
+
checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
|
|
1083
|
+
dependencies = [
|
|
1084
|
+
"proc-macro2",
|
|
1085
|
+
]
|
|
1086
|
+
|
|
1087
|
+
[[package]]
|
|
1088
|
+
name = "r-efi"
|
|
1089
|
+
version = "5.3.0"
|
|
1090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1092
|
+
|
|
1093
|
+
[[package]]
|
|
1094
|
+
name = "rand"
|
|
1095
|
+
version = "0.8.5"
|
|
1096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1097
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
1098
|
+
dependencies = [
|
|
1099
|
+
"libc",
|
|
1100
|
+
"rand_chacha 0.3.1",
|
|
1101
|
+
"rand_core 0.6.4",
|
|
1102
|
+
]
|
|
1103
|
+
|
|
1104
|
+
[[package]]
|
|
1105
|
+
name = "rand"
|
|
1106
|
+
version = "0.9.2"
|
|
1107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1108
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
1109
|
+
dependencies = [
|
|
1110
|
+
"rand_chacha 0.9.0",
|
|
1111
|
+
"rand_core 0.9.3",
|
|
1112
|
+
]
|
|
1113
|
+
|
|
1114
|
+
[[package]]
|
|
1115
|
+
name = "rand_chacha"
|
|
1116
|
+
version = "0.3.1"
|
|
1117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1118
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1119
|
+
dependencies = [
|
|
1120
|
+
"ppv-lite86",
|
|
1121
|
+
"rand_core 0.6.4",
|
|
1122
|
+
]
|
|
1123
|
+
|
|
1124
|
+
[[package]]
|
|
1125
|
+
name = "rand_chacha"
|
|
1126
|
+
version = "0.9.0"
|
|
1127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1129
|
+
dependencies = [
|
|
1130
|
+
"ppv-lite86",
|
|
1131
|
+
"rand_core 0.9.3",
|
|
1132
|
+
]
|
|
1133
|
+
|
|
1134
|
+
[[package]]
|
|
1135
|
+
name = "rand_core"
|
|
1136
|
+
version = "0.6.4"
|
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1139
|
+
dependencies = [
|
|
1140
|
+
"getrandom 0.2.16",
|
|
1141
|
+
]
|
|
1142
|
+
|
|
1143
|
+
[[package]]
|
|
1144
|
+
name = "rand_core"
|
|
1145
|
+
version = "0.9.3"
|
|
1146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1147
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
1148
|
+
dependencies = [
|
|
1149
|
+
"getrandom 0.3.4",
|
|
1150
|
+
]
|
|
1151
|
+
|
|
1152
|
+
[[package]]
|
|
1153
|
+
name = "regex"
|
|
1154
|
+
version = "1.12.2"
|
|
1155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
1157
|
+
dependencies = [
|
|
1158
|
+
"aho-corasick",
|
|
1159
|
+
"memchr",
|
|
1160
|
+
"regex-automata",
|
|
1161
|
+
"regex-syntax",
|
|
1162
|
+
]
|
|
1163
|
+
|
|
1164
|
+
[[package]]
|
|
1165
|
+
name = "regex-automata"
|
|
1166
|
+
version = "0.4.13"
|
|
1167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1168
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
1169
|
+
dependencies = [
|
|
1170
|
+
"aho-corasick",
|
|
1171
|
+
"memchr",
|
|
1172
|
+
"regex-syntax",
|
|
1173
|
+
]
|
|
1174
|
+
|
|
1175
|
+
[[package]]
|
|
1176
|
+
name = "regex-syntax"
|
|
1177
|
+
version = "0.8.8"
|
|
1178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1179
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
1180
|
+
|
|
1181
|
+
[[package]]
|
|
1182
|
+
name = "reqwest"
|
|
1183
|
+
version = "0.12.24"
|
|
1184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1185
|
+
checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f"
|
|
1186
|
+
dependencies = [
|
|
1187
|
+
"base64 0.22.1",
|
|
1188
|
+
"bytes",
|
|
1189
|
+
"futures-core",
|
|
1190
|
+
"http",
|
|
1191
|
+
"http-body",
|
|
1192
|
+
"http-body-util",
|
|
1193
|
+
"hyper",
|
|
1194
|
+
"hyper-rustls",
|
|
1195
|
+
"hyper-util",
|
|
1196
|
+
"js-sys",
|
|
1197
|
+
"log",
|
|
1198
|
+
"percent-encoding",
|
|
1199
|
+
"pin-project-lite",
|
|
1200
|
+
"quinn",
|
|
1201
|
+
"rustls",
|
|
1202
|
+
"rustls-pki-types",
|
|
1203
|
+
"serde",
|
|
1204
|
+
"serde_json",
|
|
1205
|
+
"serde_urlencoded",
|
|
1206
|
+
"sync_wrapper",
|
|
1207
|
+
"tokio",
|
|
1208
|
+
"tokio-rustls",
|
|
1209
|
+
"tower 0.5.2",
|
|
1210
|
+
"tower-http",
|
|
1211
|
+
"tower-service",
|
|
1212
|
+
"url",
|
|
1213
|
+
"wasm-bindgen",
|
|
1214
|
+
"wasm-bindgen-futures",
|
|
1215
|
+
"web-sys",
|
|
1216
|
+
"webpki-roots",
|
|
1217
|
+
]
|
|
1218
|
+
|
|
1219
|
+
[[package]]
|
|
1220
|
+
name = "ring"
|
|
1221
|
+
version = "0.17.14"
|
|
1222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1223
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1224
|
+
dependencies = [
|
|
1225
|
+
"cc",
|
|
1226
|
+
"cfg-if",
|
|
1227
|
+
"getrandom 0.2.16",
|
|
1228
|
+
"libc",
|
|
1229
|
+
"untrusted",
|
|
1230
|
+
"windows-sys 0.52.0",
|
|
1231
|
+
]
|
|
1232
|
+
|
|
1233
|
+
[[package]]
|
|
1234
|
+
name = "rustc-hash"
|
|
1235
|
+
version = "2.1.1"
|
|
1236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1237
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
1238
|
+
|
|
1239
|
+
[[package]]
|
|
1240
|
+
name = "rustix"
|
|
1241
|
+
version = "1.1.2"
|
|
1242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1243
|
+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
|
1244
|
+
dependencies = [
|
|
1245
|
+
"bitflags",
|
|
1246
|
+
"errno",
|
|
1247
|
+
"libc",
|
|
1248
|
+
"linux-raw-sys",
|
|
1249
|
+
"windows-sys 0.61.2",
|
|
1250
|
+
]
|
|
1251
|
+
|
|
1252
|
+
[[package]]
|
|
1253
|
+
name = "rustls"
|
|
1254
|
+
version = "0.23.35"
|
|
1255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1256
|
+
checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
|
|
1257
|
+
dependencies = [
|
|
1258
|
+
"log",
|
|
1259
|
+
"once_cell",
|
|
1260
|
+
"ring",
|
|
1261
|
+
"rustls-pki-types",
|
|
1262
|
+
"rustls-webpki",
|
|
1263
|
+
"subtle",
|
|
1264
|
+
"zeroize",
|
|
1265
|
+
]
|
|
1266
|
+
|
|
1267
|
+
[[package]]
|
|
1268
|
+
name = "rustls-native-certs"
|
|
1269
|
+
version = "0.8.2"
|
|
1270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1271
|
+
checksum = "9980d917ebb0c0536119ba501e90834767bffc3d60641457fd84a1f3fd337923"
|
|
1272
|
+
dependencies = [
|
|
1273
|
+
"openssl-probe",
|
|
1274
|
+
"rustls-pki-types",
|
|
1275
|
+
"schannel",
|
|
1276
|
+
"security-framework",
|
|
1277
|
+
]
|
|
1278
|
+
|
|
1279
|
+
[[package]]
|
|
1280
|
+
name = "rustls-pemfile"
|
|
1281
|
+
version = "2.2.0"
|
|
1282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1283
|
+
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
|
1284
|
+
dependencies = [
|
|
1285
|
+
"rustls-pki-types",
|
|
1286
|
+
]
|
|
1287
|
+
|
|
1288
|
+
[[package]]
|
|
1289
|
+
name = "rustls-pki-types"
|
|
1290
|
+
version = "1.13.0"
|
|
1291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1292
|
+
checksum = "94182ad936a0c91c324cd46c6511b9510ed16af436d7b5bab34beab0afd55f7a"
|
|
1293
|
+
dependencies = [
|
|
1294
|
+
"web-time",
|
|
1295
|
+
"zeroize",
|
|
1296
|
+
]
|
|
1297
|
+
|
|
1298
|
+
[[package]]
|
|
1299
|
+
name = "rustls-webpki"
|
|
1300
|
+
version = "0.103.8"
|
|
1301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1302
|
+
checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
|
|
1303
|
+
dependencies = [
|
|
1304
|
+
"ring",
|
|
1305
|
+
"rustls-pki-types",
|
|
1306
|
+
"untrusted",
|
|
1307
|
+
]
|
|
1308
|
+
|
|
1309
|
+
[[package]]
|
|
1310
|
+
name = "rustversion"
|
|
1311
|
+
version = "1.0.22"
|
|
1312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1313
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1314
|
+
|
|
1315
|
+
[[package]]
|
|
1316
|
+
name = "ryu"
|
|
1317
|
+
version = "1.0.20"
|
|
1318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1319
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
1320
|
+
|
|
1321
|
+
[[package]]
|
|
1322
|
+
name = "schannel"
|
|
1323
|
+
version = "0.1.28"
|
|
1324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1325
|
+
checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
|
|
1326
|
+
dependencies = [
|
|
1327
|
+
"windows-sys 0.61.2",
|
|
1328
|
+
]
|
|
1329
|
+
|
|
1330
|
+
[[package]]
|
|
1331
|
+
name = "security-framework"
|
|
1332
|
+
version = "3.5.1"
|
|
1333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
+
checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
|
|
1335
|
+
dependencies = [
|
|
1336
|
+
"bitflags",
|
|
1337
|
+
"core-foundation",
|
|
1338
|
+
"core-foundation-sys",
|
|
1339
|
+
"libc",
|
|
1340
|
+
"security-framework-sys",
|
|
1341
|
+
]
|
|
1342
|
+
|
|
1343
|
+
[[package]]
|
|
1344
|
+
name = "security-framework-sys"
|
|
1345
|
+
version = "2.15.0"
|
|
1346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1347
|
+
checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
|
|
1348
|
+
dependencies = [
|
|
1349
|
+
"core-foundation-sys",
|
|
1350
|
+
"libc",
|
|
1351
|
+
]
|
|
1352
|
+
|
|
1353
|
+
[[package]]
|
|
1354
|
+
name = "semver"
|
|
1355
|
+
version = "1.0.27"
|
|
1356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1357
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
1358
|
+
|
|
1359
|
+
[[package]]
|
|
1360
|
+
name = "serde"
|
|
1361
|
+
version = "1.0.228"
|
|
1362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1363
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1364
|
+
dependencies = [
|
|
1365
|
+
"serde_core",
|
|
1366
|
+
"serde_derive",
|
|
1367
|
+
]
|
|
1368
|
+
|
|
1369
|
+
[[package]]
|
|
1370
|
+
name = "serde_core"
|
|
1371
|
+
version = "1.0.228"
|
|
1372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1373
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1374
|
+
dependencies = [
|
|
1375
|
+
"serde_derive",
|
|
1376
|
+
]
|
|
1377
|
+
|
|
1378
|
+
[[package]]
|
|
1379
|
+
name = "serde_derive"
|
|
1380
|
+
version = "1.0.228"
|
|
1381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1382
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1383
|
+
dependencies = [
|
|
1384
|
+
"proc-macro2",
|
|
1385
|
+
"quote",
|
|
1386
|
+
"syn",
|
|
1387
|
+
]
|
|
1388
|
+
|
|
1389
|
+
[[package]]
|
|
1390
|
+
name = "serde_json"
|
|
1391
|
+
version = "1.0.145"
|
|
1392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1393
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
1394
|
+
dependencies = [
|
|
1395
|
+
"itoa",
|
|
1396
|
+
"memchr",
|
|
1397
|
+
"ryu",
|
|
1398
|
+
"serde",
|
|
1399
|
+
"serde_core",
|
|
1400
|
+
]
|
|
1401
|
+
|
|
1402
|
+
[[package]]
|
|
1403
|
+
name = "serde_urlencoded"
|
|
1404
|
+
version = "0.7.1"
|
|
1405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1406
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
1407
|
+
dependencies = [
|
|
1408
|
+
"form_urlencoded",
|
|
1409
|
+
"itoa",
|
|
1410
|
+
"ryu",
|
|
1411
|
+
"serde",
|
|
1412
|
+
]
|
|
1413
|
+
|
|
1414
|
+
[[package]]
|
|
1415
|
+
name = "shlex"
|
|
1416
|
+
version = "1.3.0"
|
|
1417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1418
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1419
|
+
|
|
1420
|
+
[[package]]
|
|
1421
|
+
name = "slab"
|
|
1422
|
+
version = "0.4.11"
|
|
1423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1424
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
1425
|
+
|
|
1426
|
+
[[package]]
|
|
1427
|
+
name = "smallvec"
|
|
1428
|
+
version = "1.15.1"
|
|
1429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1430
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1431
|
+
|
|
1432
|
+
[[package]]
|
|
1433
|
+
name = "socket2"
|
|
1434
|
+
version = "0.5.10"
|
|
1435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1436
|
+
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
|
|
1437
|
+
dependencies = [
|
|
1438
|
+
"libc",
|
|
1439
|
+
"windows-sys 0.52.0",
|
|
1440
|
+
]
|
|
1441
|
+
|
|
1442
|
+
[[package]]
|
|
1443
|
+
name = "socket2"
|
|
1444
|
+
version = "0.6.1"
|
|
1445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1446
|
+
checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
|
|
1447
|
+
dependencies = [
|
|
1448
|
+
"libc",
|
|
1449
|
+
"windows-sys 0.60.2",
|
|
1450
|
+
]
|
|
1451
|
+
|
|
1452
|
+
[[package]]
|
|
1453
|
+
name = "stable_deref_trait"
|
|
1454
|
+
version = "1.2.1"
|
|
1455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1456
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1457
|
+
|
|
1458
|
+
[[package]]
|
|
1459
|
+
name = "subtle"
|
|
1460
|
+
version = "2.6.1"
|
|
1461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1462
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1463
|
+
|
|
1464
|
+
[[package]]
|
|
1465
|
+
name = "syn"
|
|
1466
|
+
version = "2.0.110"
|
|
1467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1468
|
+
checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea"
|
|
1469
|
+
dependencies = [
|
|
1470
|
+
"proc-macro2",
|
|
1471
|
+
"quote",
|
|
1472
|
+
"unicode-ident",
|
|
1473
|
+
]
|
|
1474
|
+
|
|
1475
|
+
[[package]]
|
|
1476
|
+
name = "sync_wrapper"
|
|
1477
|
+
version = "1.0.2"
|
|
1478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1479
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
1480
|
+
dependencies = [
|
|
1481
|
+
"futures-core",
|
|
1482
|
+
]
|
|
1483
|
+
|
|
1484
|
+
[[package]]
|
|
1485
|
+
name = "synstructure"
|
|
1486
|
+
version = "0.13.2"
|
|
1487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1488
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1489
|
+
dependencies = [
|
|
1490
|
+
"proc-macro2",
|
|
1491
|
+
"quote",
|
|
1492
|
+
"syn",
|
|
1493
|
+
]
|
|
1494
|
+
|
|
1495
|
+
[[package]]
|
|
1496
|
+
name = "tempfile"
|
|
1497
|
+
version = "3.23.0"
|
|
1498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1499
|
+
checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
|
|
1500
|
+
dependencies = [
|
|
1501
|
+
"fastrand",
|
|
1502
|
+
"getrandom 0.3.4",
|
|
1503
|
+
"once_cell",
|
|
1504
|
+
"rustix",
|
|
1505
|
+
"windows-sys 0.61.2",
|
|
1506
|
+
]
|
|
1507
|
+
|
|
1508
|
+
[[package]]
|
|
1509
|
+
name = "thiserror"
|
|
1510
|
+
version = "1.0.69"
|
|
1511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1512
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1513
|
+
dependencies = [
|
|
1514
|
+
"thiserror-impl 1.0.69",
|
|
1515
|
+
]
|
|
1516
|
+
|
|
1517
|
+
[[package]]
|
|
1518
|
+
name = "thiserror"
|
|
1519
|
+
version = "2.0.17"
|
|
1520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1521
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
1522
|
+
dependencies = [
|
|
1523
|
+
"thiserror-impl 2.0.17",
|
|
1524
|
+
]
|
|
1525
|
+
|
|
1526
|
+
[[package]]
|
|
1527
|
+
name = "thiserror-impl"
|
|
1528
|
+
version = "1.0.69"
|
|
1529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1530
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1531
|
+
dependencies = [
|
|
1532
|
+
"proc-macro2",
|
|
1533
|
+
"quote",
|
|
1534
|
+
"syn",
|
|
1535
|
+
]
|
|
1536
|
+
|
|
1537
|
+
[[package]]
|
|
1538
|
+
name = "thiserror-impl"
|
|
1539
|
+
version = "2.0.17"
|
|
1540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1541
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
1542
|
+
dependencies = [
|
|
1543
|
+
"proc-macro2",
|
|
1544
|
+
"quote",
|
|
1545
|
+
"syn",
|
|
1546
|
+
]
|
|
1547
|
+
|
|
1548
|
+
[[package]]
|
|
1549
|
+
name = "tinystr"
|
|
1550
|
+
version = "0.8.2"
|
|
1551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1552
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
1553
|
+
dependencies = [
|
|
1554
|
+
"displaydoc",
|
|
1555
|
+
"zerovec",
|
|
1556
|
+
]
|
|
1557
|
+
|
|
1558
|
+
[[package]]
|
|
1559
|
+
name = "tinyvec"
|
|
1560
|
+
version = "1.10.0"
|
|
1561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
1563
|
+
dependencies = [
|
|
1564
|
+
"tinyvec_macros",
|
|
1565
|
+
]
|
|
1566
|
+
|
|
1567
|
+
[[package]]
|
|
1568
|
+
name = "tinyvec_macros"
|
|
1569
|
+
version = "0.1.1"
|
|
1570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1571
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1572
|
+
|
|
1573
|
+
[[package]]
|
|
1574
|
+
name = "tokio"
|
|
1575
|
+
version = "1.48.0"
|
|
1576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1577
|
+
checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
|
|
1578
|
+
dependencies = [
|
|
1579
|
+
"bytes",
|
|
1580
|
+
"libc",
|
|
1581
|
+
"mio",
|
|
1582
|
+
"pin-project-lite",
|
|
1583
|
+
"socket2 0.6.1",
|
|
1584
|
+
"tokio-macros",
|
|
1585
|
+
"windows-sys 0.61.2",
|
|
1586
|
+
]
|
|
1587
|
+
|
|
1588
|
+
[[package]]
|
|
1589
|
+
name = "tokio-macros"
|
|
1590
|
+
version = "2.6.0"
|
|
1591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1592
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
1593
|
+
dependencies = [
|
|
1594
|
+
"proc-macro2",
|
|
1595
|
+
"quote",
|
|
1596
|
+
"syn",
|
|
1597
|
+
]
|
|
1598
|
+
|
|
1599
|
+
[[package]]
|
|
1600
|
+
name = "tokio-retry"
|
|
1601
|
+
version = "0.3.0"
|
|
1602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1603
|
+
checksum = "7f57eb36ecbe0fc510036adff84824dd3c24bb781e21bfa67b69d556aa85214f"
|
|
1604
|
+
dependencies = [
|
|
1605
|
+
"pin-project",
|
|
1606
|
+
"rand 0.8.5",
|
|
1607
|
+
"tokio",
|
|
1608
|
+
]
|
|
1609
|
+
|
|
1610
|
+
[[package]]
|
|
1611
|
+
name = "tokio-rustls"
|
|
1612
|
+
version = "0.26.4"
|
|
1613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1614
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
1615
|
+
dependencies = [
|
|
1616
|
+
"rustls",
|
|
1617
|
+
"tokio",
|
|
1618
|
+
]
|
|
1619
|
+
|
|
1620
|
+
[[package]]
|
|
1621
|
+
name = "tokio-stream"
|
|
1622
|
+
version = "0.1.17"
|
|
1623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1624
|
+
checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
|
|
1625
|
+
dependencies = [
|
|
1626
|
+
"futures-core",
|
|
1627
|
+
"pin-project-lite",
|
|
1628
|
+
"tokio",
|
|
1629
|
+
]
|
|
1630
|
+
|
|
1631
|
+
[[package]]
|
|
1632
|
+
name = "tokio-util"
|
|
1633
|
+
version = "0.7.17"
|
|
1634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1635
|
+
checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594"
|
|
1636
|
+
dependencies = [
|
|
1637
|
+
"bytes",
|
|
1638
|
+
"futures-core",
|
|
1639
|
+
"futures-sink",
|
|
1640
|
+
"pin-project-lite",
|
|
1641
|
+
"tokio",
|
|
1642
|
+
]
|
|
1643
|
+
|
|
1644
|
+
[[package]]
|
|
1645
|
+
name = "tonic"
|
|
1646
|
+
version = "0.12.3"
|
|
1647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1648
|
+
checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52"
|
|
1649
|
+
dependencies = [
|
|
1650
|
+
"async-stream",
|
|
1651
|
+
"async-trait",
|
|
1652
|
+
"axum",
|
|
1653
|
+
"base64 0.22.1",
|
|
1654
|
+
"bytes",
|
|
1655
|
+
"h2",
|
|
1656
|
+
"http",
|
|
1657
|
+
"http-body",
|
|
1658
|
+
"http-body-util",
|
|
1659
|
+
"hyper",
|
|
1660
|
+
"hyper-timeout",
|
|
1661
|
+
"hyper-util",
|
|
1662
|
+
"percent-encoding",
|
|
1663
|
+
"pin-project",
|
|
1664
|
+
"prost",
|
|
1665
|
+
"rustls-native-certs",
|
|
1666
|
+
"rustls-pemfile",
|
|
1667
|
+
"socket2 0.5.10",
|
|
1668
|
+
"tokio",
|
|
1669
|
+
"tokio-rustls",
|
|
1670
|
+
"tokio-stream",
|
|
1671
|
+
"tower 0.4.13",
|
|
1672
|
+
"tower-layer",
|
|
1673
|
+
"tower-service",
|
|
1674
|
+
"tracing",
|
|
1675
|
+
]
|
|
1676
|
+
|
|
1677
|
+
[[package]]
|
|
1678
|
+
name = "tonic-build"
|
|
1679
|
+
version = "0.12.3"
|
|
1680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1681
|
+
checksum = "9557ce109ea773b399c9b9e5dca39294110b74f1f342cb347a80d1fce8c26a11"
|
|
1682
|
+
dependencies = [
|
|
1683
|
+
"prettyplease",
|
|
1684
|
+
"proc-macro2",
|
|
1685
|
+
"prost-build",
|
|
1686
|
+
"prost-types",
|
|
1687
|
+
"quote",
|
|
1688
|
+
"syn",
|
|
1689
|
+
]
|
|
1690
|
+
|
|
1691
|
+
[[package]]
|
|
1692
|
+
name = "tower"
|
|
1693
|
+
version = "0.4.13"
|
|
1694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1695
|
+
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
|
|
1696
|
+
dependencies = [
|
|
1697
|
+
"futures-core",
|
|
1698
|
+
"futures-util",
|
|
1699
|
+
"indexmap 1.9.3",
|
|
1700
|
+
"pin-project",
|
|
1701
|
+
"pin-project-lite",
|
|
1702
|
+
"rand 0.8.5",
|
|
1703
|
+
"slab",
|
|
1704
|
+
"tokio",
|
|
1705
|
+
"tokio-util",
|
|
1706
|
+
"tower-layer",
|
|
1707
|
+
"tower-service",
|
|
1708
|
+
"tracing",
|
|
1709
|
+
]
|
|
1710
|
+
|
|
1711
|
+
[[package]]
|
|
1712
|
+
name = "tower"
|
|
1713
|
+
version = "0.5.2"
|
|
1714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1715
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
|
1716
|
+
dependencies = [
|
|
1717
|
+
"futures-core",
|
|
1718
|
+
"futures-util",
|
|
1719
|
+
"pin-project-lite",
|
|
1720
|
+
"sync_wrapper",
|
|
1721
|
+
"tokio",
|
|
1722
|
+
"tower-layer",
|
|
1723
|
+
"tower-service",
|
|
1724
|
+
]
|
|
1725
|
+
|
|
1726
|
+
[[package]]
|
|
1727
|
+
name = "tower-http"
|
|
1728
|
+
version = "0.6.6"
|
|
1729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1730
|
+
checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
|
|
1731
|
+
dependencies = [
|
|
1732
|
+
"bitflags",
|
|
1733
|
+
"bytes",
|
|
1734
|
+
"futures-util",
|
|
1735
|
+
"http",
|
|
1736
|
+
"http-body",
|
|
1737
|
+
"iri-string",
|
|
1738
|
+
"pin-project-lite",
|
|
1739
|
+
"tower 0.5.2",
|
|
1740
|
+
"tower-layer",
|
|
1741
|
+
"tower-service",
|
|
1742
|
+
]
|
|
1743
|
+
|
|
1744
|
+
[[package]]
|
|
1745
|
+
name = "tower-layer"
|
|
1746
|
+
version = "0.3.3"
|
|
1747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1748
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
1749
|
+
|
|
1750
|
+
[[package]]
|
|
1751
|
+
name = "tower-service"
|
|
1752
|
+
version = "0.3.3"
|
|
1753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1754
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
1755
|
+
|
|
1756
|
+
[[package]]
|
|
1757
|
+
name = "tracing"
|
|
1758
|
+
version = "0.1.41"
|
|
1759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1760
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
1761
|
+
dependencies = [
|
|
1762
|
+
"pin-project-lite",
|
|
1763
|
+
"tracing-attributes",
|
|
1764
|
+
"tracing-core",
|
|
1765
|
+
]
|
|
1766
|
+
|
|
1767
|
+
[[package]]
|
|
1768
|
+
name = "tracing-attributes"
|
|
1769
|
+
version = "0.1.30"
|
|
1770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1771
|
+
checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
|
|
1772
|
+
dependencies = [
|
|
1773
|
+
"proc-macro2",
|
|
1774
|
+
"quote",
|
|
1775
|
+
"syn",
|
|
1776
|
+
]
|
|
1777
|
+
|
|
1778
|
+
[[package]]
|
|
1779
|
+
name = "tracing-core"
|
|
1780
|
+
version = "0.1.34"
|
|
1781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1782
|
+
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
|
|
1783
|
+
dependencies = [
|
|
1784
|
+
"once_cell",
|
|
1785
|
+
]
|
|
1786
|
+
|
|
1787
|
+
[[package]]
|
|
1788
|
+
name = "try-lock"
|
|
1789
|
+
version = "0.2.5"
|
|
1790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1791
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
1792
|
+
|
|
1793
|
+
[[package]]
|
|
1794
|
+
name = "unicode-ident"
|
|
1795
|
+
version = "1.0.22"
|
|
1796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1797
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
1798
|
+
|
|
1799
|
+
[[package]]
|
|
1800
|
+
name = "unicode-segmentation"
|
|
1801
|
+
version = "1.12.0"
|
|
1802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1803
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
1804
|
+
|
|
1805
|
+
[[package]]
|
|
1806
|
+
name = "untrusted"
|
|
1807
|
+
version = "0.9.0"
|
|
1808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1809
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
1810
|
+
|
|
1811
|
+
[[package]]
|
|
1812
|
+
name = "url"
|
|
1813
|
+
version = "2.5.7"
|
|
1814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1815
|
+
checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
|
|
1816
|
+
dependencies = [
|
|
1817
|
+
"form_urlencoded",
|
|
1818
|
+
"idna",
|
|
1819
|
+
"percent-encoding",
|
|
1820
|
+
"serde",
|
|
1821
|
+
]
|
|
1822
|
+
|
|
1823
|
+
[[package]]
|
|
1824
|
+
name = "utf8_iter"
|
|
1825
|
+
version = "1.0.4"
|
|
1826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1827
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1828
|
+
|
|
1829
|
+
[[package]]
|
|
1830
|
+
name = "want"
|
|
1831
|
+
version = "0.3.1"
|
|
1832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1833
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
1834
|
+
dependencies = [
|
|
1835
|
+
"try-lock",
|
|
1836
|
+
]
|
|
1837
|
+
|
|
1838
|
+
[[package]]
|
|
1839
|
+
name = "wasi"
|
|
1840
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1842
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1843
|
+
|
|
1844
|
+
[[package]]
|
|
1845
|
+
name = "wasip2"
|
|
1846
|
+
version = "1.0.1+wasi-0.2.4"
|
|
1847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1848
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
1849
|
+
dependencies = [
|
|
1850
|
+
"wit-bindgen",
|
|
1851
|
+
]
|
|
1852
|
+
|
|
1853
|
+
[[package]]
|
|
1854
|
+
name = "wasm-bindgen"
|
|
1855
|
+
version = "0.2.105"
|
|
1856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1857
|
+
checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
|
|
1858
|
+
dependencies = [
|
|
1859
|
+
"cfg-if",
|
|
1860
|
+
"once_cell",
|
|
1861
|
+
"rustversion",
|
|
1862
|
+
"wasm-bindgen-macro",
|
|
1863
|
+
"wasm-bindgen-shared",
|
|
1864
|
+
]
|
|
1865
|
+
|
|
1866
|
+
[[package]]
|
|
1867
|
+
name = "wasm-bindgen-futures"
|
|
1868
|
+
version = "0.4.55"
|
|
1869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1870
|
+
checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0"
|
|
1871
|
+
dependencies = [
|
|
1872
|
+
"cfg-if",
|
|
1873
|
+
"js-sys",
|
|
1874
|
+
"once_cell",
|
|
1875
|
+
"wasm-bindgen",
|
|
1876
|
+
"web-sys",
|
|
1877
|
+
]
|
|
1878
|
+
|
|
1879
|
+
[[package]]
|
|
1880
|
+
name = "wasm-bindgen-macro"
|
|
1881
|
+
version = "0.2.105"
|
|
1882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1883
|
+
checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
|
|
1884
|
+
dependencies = [
|
|
1885
|
+
"quote",
|
|
1886
|
+
"wasm-bindgen-macro-support",
|
|
1887
|
+
]
|
|
1888
|
+
|
|
1889
|
+
[[package]]
|
|
1890
|
+
name = "wasm-bindgen-macro-support"
|
|
1891
|
+
version = "0.2.105"
|
|
1892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1893
|
+
checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
|
|
1894
|
+
dependencies = [
|
|
1895
|
+
"bumpalo",
|
|
1896
|
+
"proc-macro2",
|
|
1897
|
+
"quote",
|
|
1898
|
+
"syn",
|
|
1899
|
+
"wasm-bindgen-shared",
|
|
1900
|
+
]
|
|
1901
|
+
|
|
1902
|
+
[[package]]
|
|
1903
|
+
name = "wasm-bindgen-shared"
|
|
1904
|
+
version = "0.2.105"
|
|
1905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1906
|
+
checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
|
|
1907
|
+
dependencies = [
|
|
1908
|
+
"unicode-ident",
|
|
1909
|
+
]
|
|
1910
|
+
|
|
1911
|
+
[[package]]
|
|
1912
|
+
name = "web-sys"
|
|
1913
|
+
version = "0.3.82"
|
|
1914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1915
|
+
checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
|
|
1916
|
+
dependencies = [
|
|
1917
|
+
"js-sys",
|
|
1918
|
+
"wasm-bindgen",
|
|
1919
|
+
]
|
|
1920
|
+
|
|
1921
|
+
[[package]]
|
|
1922
|
+
name = "web-time"
|
|
1923
|
+
version = "1.1.0"
|
|
1924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1925
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
1926
|
+
dependencies = [
|
|
1927
|
+
"js-sys",
|
|
1928
|
+
"wasm-bindgen",
|
|
1929
|
+
]
|
|
1930
|
+
|
|
1931
|
+
[[package]]
|
|
1932
|
+
name = "webpki-roots"
|
|
1933
|
+
version = "1.0.4"
|
|
1934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1935
|
+
checksum = "b2878ef029c47c6e8cf779119f20fcf52bde7ad42a731b2a304bc221df17571e"
|
|
1936
|
+
dependencies = [
|
|
1937
|
+
"rustls-pki-types",
|
|
1938
|
+
]
|
|
1939
|
+
|
|
1940
|
+
[[package]]
|
|
1941
|
+
name = "windows-link"
|
|
1942
|
+
version = "0.2.1"
|
|
1943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1944
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1945
|
+
|
|
1946
|
+
[[package]]
|
|
1947
|
+
name = "windows-sys"
|
|
1948
|
+
version = "0.52.0"
|
|
1949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1950
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
1951
|
+
dependencies = [
|
|
1952
|
+
"windows-targets 0.52.6",
|
|
1953
|
+
]
|
|
1954
|
+
|
|
1955
|
+
[[package]]
|
|
1956
|
+
name = "windows-sys"
|
|
1957
|
+
version = "0.60.2"
|
|
1958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1959
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
1960
|
+
dependencies = [
|
|
1961
|
+
"windows-targets 0.53.5",
|
|
1962
|
+
]
|
|
1963
|
+
|
|
1964
|
+
[[package]]
|
|
1965
|
+
name = "windows-sys"
|
|
1966
|
+
version = "0.61.2"
|
|
1967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1968
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1969
|
+
dependencies = [
|
|
1970
|
+
"windows-link",
|
|
1971
|
+
]
|
|
1972
|
+
|
|
1973
|
+
[[package]]
|
|
1974
|
+
name = "windows-targets"
|
|
1975
|
+
version = "0.52.6"
|
|
1976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1977
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1978
|
+
dependencies = [
|
|
1979
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
1980
|
+
"windows_aarch64_msvc 0.52.6",
|
|
1981
|
+
"windows_i686_gnu 0.52.6",
|
|
1982
|
+
"windows_i686_gnullvm 0.52.6",
|
|
1983
|
+
"windows_i686_msvc 0.52.6",
|
|
1984
|
+
"windows_x86_64_gnu 0.52.6",
|
|
1985
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
1986
|
+
"windows_x86_64_msvc 0.52.6",
|
|
1987
|
+
]
|
|
1988
|
+
|
|
1989
|
+
[[package]]
|
|
1990
|
+
name = "windows-targets"
|
|
1991
|
+
version = "0.53.5"
|
|
1992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1993
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
1994
|
+
dependencies = [
|
|
1995
|
+
"windows-link",
|
|
1996
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
1997
|
+
"windows_aarch64_msvc 0.53.1",
|
|
1998
|
+
"windows_i686_gnu 0.53.1",
|
|
1999
|
+
"windows_i686_gnullvm 0.53.1",
|
|
2000
|
+
"windows_i686_msvc 0.53.1",
|
|
2001
|
+
"windows_x86_64_gnu 0.53.1",
|
|
2002
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
2003
|
+
"windows_x86_64_msvc 0.53.1",
|
|
2004
|
+
]
|
|
2005
|
+
|
|
2006
|
+
[[package]]
|
|
2007
|
+
name = "windows_aarch64_gnullvm"
|
|
2008
|
+
version = "0.52.6"
|
|
2009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2010
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2011
|
+
|
|
2012
|
+
[[package]]
|
|
2013
|
+
name = "windows_aarch64_gnullvm"
|
|
2014
|
+
version = "0.53.1"
|
|
2015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2016
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
2017
|
+
|
|
2018
|
+
[[package]]
|
|
2019
|
+
name = "windows_aarch64_msvc"
|
|
2020
|
+
version = "0.52.6"
|
|
2021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2022
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2023
|
+
|
|
2024
|
+
[[package]]
|
|
2025
|
+
name = "windows_aarch64_msvc"
|
|
2026
|
+
version = "0.53.1"
|
|
2027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2028
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
2029
|
+
|
|
2030
|
+
[[package]]
|
|
2031
|
+
name = "windows_i686_gnu"
|
|
2032
|
+
version = "0.52.6"
|
|
2033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2034
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2035
|
+
|
|
2036
|
+
[[package]]
|
|
2037
|
+
name = "windows_i686_gnu"
|
|
2038
|
+
version = "0.53.1"
|
|
2039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2040
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
2041
|
+
|
|
2042
|
+
[[package]]
|
|
2043
|
+
name = "windows_i686_gnullvm"
|
|
2044
|
+
version = "0.52.6"
|
|
2045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2046
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2047
|
+
|
|
2048
|
+
[[package]]
|
|
2049
|
+
name = "windows_i686_gnullvm"
|
|
2050
|
+
version = "0.53.1"
|
|
2051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2052
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
2053
|
+
|
|
2054
|
+
[[package]]
|
|
2055
|
+
name = "windows_i686_msvc"
|
|
2056
|
+
version = "0.52.6"
|
|
2057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2058
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2059
|
+
|
|
2060
|
+
[[package]]
|
|
2061
|
+
name = "windows_i686_msvc"
|
|
2062
|
+
version = "0.53.1"
|
|
2063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2064
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
2065
|
+
|
|
2066
|
+
[[package]]
|
|
2067
|
+
name = "windows_x86_64_gnu"
|
|
2068
|
+
version = "0.52.6"
|
|
2069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2070
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2071
|
+
|
|
2072
|
+
[[package]]
|
|
2073
|
+
name = "windows_x86_64_gnu"
|
|
2074
|
+
version = "0.53.1"
|
|
2075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2076
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
2077
|
+
|
|
2078
|
+
[[package]]
|
|
2079
|
+
name = "windows_x86_64_gnullvm"
|
|
2080
|
+
version = "0.52.6"
|
|
2081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2082
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2083
|
+
|
|
2084
|
+
[[package]]
|
|
2085
|
+
name = "windows_x86_64_gnullvm"
|
|
2086
|
+
version = "0.53.1"
|
|
2087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2088
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
2089
|
+
|
|
2090
|
+
[[package]]
|
|
2091
|
+
name = "windows_x86_64_msvc"
|
|
2092
|
+
version = "0.52.6"
|
|
2093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2094
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2095
|
+
|
|
2096
|
+
[[package]]
|
|
2097
|
+
name = "windows_x86_64_msvc"
|
|
2098
|
+
version = "0.53.1"
|
|
2099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2100
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
2101
|
+
|
|
2102
|
+
[[package]]
|
|
2103
|
+
name = "wit-bindgen"
|
|
2104
|
+
version = "0.46.0"
|
|
2105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2106
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
2107
|
+
|
|
2108
|
+
[[package]]
|
|
2109
|
+
name = "writeable"
|
|
2110
|
+
version = "0.6.2"
|
|
2111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2112
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
2113
|
+
|
|
2114
|
+
[[package]]
|
|
2115
|
+
name = "yoke"
|
|
2116
|
+
version = "0.8.1"
|
|
2117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2118
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
2119
|
+
dependencies = [
|
|
2120
|
+
"stable_deref_trait",
|
|
2121
|
+
"yoke-derive",
|
|
2122
|
+
"zerofrom",
|
|
2123
|
+
]
|
|
2124
|
+
|
|
2125
|
+
[[package]]
|
|
2126
|
+
name = "yoke-derive"
|
|
2127
|
+
version = "0.8.1"
|
|
2128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2129
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
2130
|
+
dependencies = [
|
|
2131
|
+
"proc-macro2",
|
|
2132
|
+
"quote",
|
|
2133
|
+
"syn",
|
|
2134
|
+
"synstructure",
|
|
2135
|
+
]
|
|
2136
|
+
|
|
2137
|
+
[[package]]
|
|
2138
|
+
name = "zerobus-sdk-ts"
|
|
2139
|
+
version = "0.1.0"
|
|
2140
|
+
dependencies = [
|
|
2141
|
+
"async-trait",
|
|
2142
|
+
"base64 0.21.7",
|
|
2143
|
+
"databricks-zerobus-ingest-sdk",
|
|
2144
|
+
"napi",
|
|
2145
|
+
"napi-build",
|
|
2146
|
+
"napi-derive",
|
|
2147
|
+
"prost",
|
|
2148
|
+
"prost-types",
|
|
2149
|
+
"serde",
|
|
2150
|
+
"serde_json",
|
|
2151
|
+
"thiserror 1.0.69",
|
|
2152
|
+
"tokio",
|
|
2153
|
+
]
|
|
2154
|
+
|
|
2155
|
+
[[package]]
|
|
2156
|
+
name = "zerocopy"
|
|
2157
|
+
version = "0.8.27"
|
|
2158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2159
|
+
checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
|
|
2160
|
+
dependencies = [
|
|
2161
|
+
"zerocopy-derive",
|
|
2162
|
+
]
|
|
2163
|
+
|
|
2164
|
+
[[package]]
|
|
2165
|
+
name = "zerocopy-derive"
|
|
2166
|
+
version = "0.8.27"
|
|
2167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2168
|
+
checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
|
|
2169
|
+
dependencies = [
|
|
2170
|
+
"proc-macro2",
|
|
2171
|
+
"quote",
|
|
2172
|
+
"syn",
|
|
2173
|
+
]
|
|
2174
|
+
|
|
2175
|
+
[[package]]
|
|
2176
|
+
name = "zerofrom"
|
|
2177
|
+
version = "0.1.6"
|
|
2178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2179
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
2180
|
+
dependencies = [
|
|
2181
|
+
"zerofrom-derive",
|
|
2182
|
+
]
|
|
2183
|
+
|
|
2184
|
+
[[package]]
|
|
2185
|
+
name = "zerofrom-derive"
|
|
2186
|
+
version = "0.1.6"
|
|
2187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2188
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
2189
|
+
dependencies = [
|
|
2190
|
+
"proc-macro2",
|
|
2191
|
+
"quote",
|
|
2192
|
+
"syn",
|
|
2193
|
+
"synstructure",
|
|
2194
|
+
]
|
|
2195
|
+
|
|
2196
|
+
[[package]]
|
|
2197
|
+
name = "zeroize"
|
|
2198
|
+
version = "1.8.2"
|
|
2199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2200
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
2201
|
+
|
|
2202
|
+
[[package]]
|
|
2203
|
+
name = "zerotrie"
|
|
2204
|
+
version = "0.2.3"
|
|
2205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2206
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
2207
|
+
dependencies = [
|
|
2208
|
+
"displaydoc",
|
|
2209
|
+
"yoke",
|
|
2210
|
+
"zerofrom",
|
|
2211
|
+
]
|
|
2212
|
+
|
|
2213
|
+
[[package]]
|
|
2214
|
+
name = "zerovec"
|
|
2215
|
+
version = "0.11.5"
|
|
2216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2217
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
2218
|
+
dependencies = [
|
|
2219
|
+
"yoke",
|
|
2220
|
+
"zerofrom",
|
|
2221
|
+
"zerovec-derive",
|
|
2222
|
+
]
|
|
2223
|
+
|
|
2224
|
+
[[package]]
|
|
2225
|
+
name = "zerovec-derive"
|
|
2226
|
+
version = "0.11.2"
|
|
2227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2228
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
2229
|
+
dependencies = [
|
|
2230
|
+
"proc-macro2",
|
|
2231
|
+
"quote",
|
|
2232
|
+
"syn",
|
|
2233
|
+
]
|