@databricks/zerobus-ingest-sdk 0.1.0 → 0.2.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 CHANGED
@@ -2,6 +2,20 @@
2
2
  # It is not intended for manual editing.
3
3
  version = 4
4
4
 
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "const-random",
13
+ "getrandom 0.3.4",
14
+ "once_cell",
15
+ "version_check",
16
+ "zerocopy",
17
+ ]
18
+
5
19
  [[package]]
6
20
  name = "aho-corasick"
7
21
  version = "1.1.4"
@@ -11,6 +25,15 @@ dependencies = [
11
25
  "memchr",
12
26
  ]
13
27
 
28
+ [[package]]
29
+ name = "android_system_properties"
30
+ version = "0.1.5"
31
+ source = "registry+https://github.com/rust-lang/crates.io-index"
32
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
33
+ dependencies = [
34
+ "libc",
35
+ ]
36
+
14
37
  [[package]]
15
38
  name = "anyhow"
16
39
  version = "1.0.100"
@@ -18,25 +41,117 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
18
41
  checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
19
42
 
20
43
  [[package]]
21
- name = "async-stream"
22
- version = "0.3.6"
44
+ name = "arrow-array"
45
+ version = "56.2.0"
23
46
  source = "registry+https://github.com/rust-lang/crates.io-index"
24
- checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
47
+ checksum = "8548ca7c070d8db9ce7aa43f37393e4bfcf3f2d3681df278490772fd1673d08d"
25
48
  dependencies = [
26
- "async-stream-impl",
27
- "futures-core",
28
- "pin-project-lite",
49
+ "ahash",
50
+ "arrow-buffer",
51
+ "arrow-data",
52
+ "arrow-schema",
53
+ "chrono",
54
+ "half",
55
+ "hashbrown",
56
+ "num",
29
57
  ]
30
58
 
31
59
  [[package]]
32
- name = "async-stream-impl"
33
- version = "0.3.6"
60
+ name = "arrow-buffer"
61
+ version = "56.2.0"
34
62
  source = "registry+https://github.com/rust-lang/crates.io-index"
35
- checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
63
+ checksum = "e003216336f70446457e280807a73899dd822feaf02087d31febca1363e2fccc"
36
64
  dependencies = [
37
- "proc-macro2",
38
- "quote",
39
- "syn",
65
+ "bytes",
66
+ "half",
67
+ "num",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "arrow-cast"
72
+ version = "56.2.0"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "919418a0681298d3a77d1a315f625916cb5678ad0d74b9c60108eb15fd083023"
75
+ dependencies = [
76
+ "arrow-array",
77
+ "arrow-buffer",
78
+ "arrow-data",
79
+ "arrow-schema",
80
+ "arrow-select",
81
+ "atoi",
82
+ "base64 0.22.1",
83
+ "chrono",
84
+ "half",
85
+ "lexical-core",
86
+ "num",
87
+ "ryu",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "arrow-data"
92
+ version = "56.2.0"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "a5c64fff1d142f833d78897a772f2e5b55b36cb3e6320376f0961ab0db7bd6d0"
95
+ dependencies = [
96
+ "arrow-buffer",
97
+ "arrow-schema",
98
+ "half",
99
+ "num",
100
+ ]
101
+
102
+ [[package]]
103
+ name = "arrow-flight"
104
+ version = "56.2.0"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "8c8b0ba0784d56bc6266b79f5de7a24b47024e7b3a0045d2ad4df3d9b686099f"
107
+ dependencies = [
108
+ "arrow-array",
109
+ "arrow-buffer",
110
+ "arrow-cast",
111
+ "arrow-ipc",
112
+ "arrow-schema",
113
+ "base64 0.22.1",
114
+ "bytes",
115
+ "futures",
116
+ "prost",
117
+ "prost-types",
118
+ "tonic",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "arrow-ipc"
123
+ version = "56.2.0"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "1d3594dcddccc7f20fd069bc8e9828ce37220372680ff638c5e00dea427d88f5"
126
+ dependencies = [
127
+ "arrow-array",
128
+ "arrow-buffer",
129
+ "arrow-data",
130
+ "arrow-schema",
131
+ "arrow-select",
132
+ "flatbuffers",
133
+ "lz4_flex",
134
+ "zstd",
135
+ ]
136
+
137
+ [[package]]
138
+ name = "arrow-schema"
139
+ version = "56.2.0"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "b3aa9e59c611ebc291c28582077ef25c97f1975383f1479b12f3b9ffee2ffabe"
142
+
143
+ [[package]]
144
+ name = "arrow-select"
145
+ version = "56.2.0"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "8c41dbbd1e97bfcaee4fcb30e29105fb2c75e4d82ae4de70b792a5d3f66b2e7a"
148
+ dependencies = [
149
+ "ahash",
150
+ "arrow-array",
151
+ "arrow-buffer",
152
+ "arrow-data",
153
+ "arrow-schema",
154
+ "num",
40
155
  ]
41
156
 
42
157
  [[package]]
@@ -50,6 +165,15 @@ dependencies = [
50
165
  "syn",
51
166
  ]
52
167
 
168
+ [[package]]
169
+ name = "atoi"
170
+ version = "2.0.0"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
173
+ dependencies = [
174
+ "num-traits",
175
+ ]
176
+
53
177
  [[package]]
54
178
  name = "atomic-waker"
55
179
  version = "1.1.2"
@@ -64,11 +188,10 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
64
188
 
65
189
  [[package]]
66
190
  name = "axum"
67
- version = "0.7.9"
191
+ version = "0.8.8"
68
192
  source = "registry+https://github.com/rust-lang/crates.io-index"
69
- checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
193
+ checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
70
194
  dependencies = [
71
- "async-trait",
72
195
  "axum-core",
73
196
  "bytes",
74
197
  "futures-util",
@@ -81,29 +204,26 @@ dependencies = [
81
204
  "mime",
82
205
  "percent-encoding",
83
206
  "pin-project-lite",
84
- "rustversion",
85
- "serde",
207
+ "serde_core",
86
208
  "sync_wrapper",
87
- "tower 0.5.2",
209
+ "tower",
88
210
  "tower-layer",
89
211
  "tower-service",
90
212
  ]
91
213
 
92
214
  [[package]]
93
215
  name = "axum-core"
94
- version = "0.4.5"
216
+ version = "0.5.6"
95
217
  source = "registry+https://github.com/rust-lang/crates.io-index"
96
- checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
218
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
97
219
  dependencies = [
98
- "async-trait",
99
220
  "bytes",
100
- "futures-util",
221
+ "futures-core",
101
222
  "http",
102
223
  "http-body",
103
224
  "http-body-util",
104
225
  "mime",
105
226
  "pin-project-lite",
106
- "rustversion",
107
227
  "sync_wrapper",
108
228
  "tower-layer",
109
229
  "tower-service",
@@ -129,23 +249,25 @@ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
129
249
 
130
250
  [[package]]
131
251
  name = "bumpalo"
132
- version = "3.19.0"
252
+ version = "3.19.1"
133
253
  source = "registry+https://github.com/rust-lang/crates.io-index"
134
- checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
254
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
135
255
 
136
256
  [[package]]
137
257
  name = "bytes"
138
- version = "1.10.1"
258
+ version = "1.11.0"
139
259
  source = "registry+https://github.com/rust-lang/crates.io-index"
140
- checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
260
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
141
261
 
142
262
  [[package]]
143
263
  name = "cc"
144
- version = "1.2.45"
264
+ version = "1.2.54"
145
265
  source = "registry+https://github.com/rust-lang/crates.io-index"
146
- checksum = "35900b6c8d709fb1d854671ae27aeaa9eec2f8b01b364e1619a40da3e6fe2afe"
266
+ checksum = "6354c81bbfd62d9cfa9cb3c773c2b7b2a3a482d569de977fd0e961f6e7c00583"
147
267
  dependencies = [
148
268
  "find-msvc-tools",
269
+ "jobserver",
270
+ "libc",
149
271
  "shlex",
150
272
  ]
151
273
 
@@ -161,6 +283,37 @@ version = "0.2.1"
161
283
  source = "registry+https://github.com/rust-lang/crates.io-index"
162
284
  checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
163
285
 
286
+ [[package]]
287
+ name = "chrono"
288
+ version = "0.4.43"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
291
+ dependencies = [
292
+ "iana-time-zone",
293
+ "num-traits",
294
+ "windows-link",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "const-random"
299
+ version = "0.1.18"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
302
+ dependencies = [
303
+ "const-random-macro",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "const-random-macro"
308
+ version = "0.1.16"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
311
+ dependencies = [
312
+ "getrandom 0.2.17",
313
+ "once_cell",
314
+ "tiny-keccak",
315
+ ]
316
+
164
317
  [[package]]
165
318
  name = "convert_case"
166
319
  version = "0.6.0"
@@ -186,6 +339,12 @@ version = "0.8.7"
186
339
  source = "registry+https://github.com/rust-lang/crates.io-index"
187
340
  checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
188
341
 
342
+ [[package]]
343
+ name = "crunchy"
344
+ version = "0.2.4"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
347
+
189
348
  [[package]]
190
349
  name = "ctor"
191
350
  version = "0.2.9"
@@ -198,20 +357,27 @@ dependencies = [
198
357
 
199
358
  [[package]]
200
359
  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"
360
+ version = "0.4.0"
361
+ source = "git+https://github.com/databricks/zerobus-sdk-rs?tag=v0.4.0#68884197999a0c4f87a997f7327ae8561a70677a"
203
362
  dependencies = [
363
+ "arrow-array",
364
+ "arrow-flight",
365
+ "arrow-ipc",
366
+ "arrow-schema",
204
367
  "async-trait",
368
+ "futures",
205
369
  "prost",
206
370
  "prost-types",
207
371
  "protoc-bin-vendored",
208
372
  "reqwest",
373
+ "serde",
209
374
  "serde_json",
210
375
  "smallvec",
211
376
  "thiserror 1.0.69",
212
377
  "tokio",
213
378
  "tokio-retry",
214
379
  "tokio-stream",
380
+ "tokio-util",
215
381
  "tonic",
216
382
  "tonic-build",
217
383
  "tracing",
@@ -258,9 +424,9 @@ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
258
424
 
259
425
  [[package]]
260
426
  name = "find-msvc-tools"
261
- version = "0.1.4"
427
+ version = "0.1.8"
262
428
  source = "registry+https://github.com/rust-lang/crates.io-index"
263
- checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
429
+ checksum = "8591b0bcc8a98a64310a2fae1bb3e9b8564dd10e381e6e28010fde8e8e8568db"
264
430
 
265
431
  [[package]]
266
432
  name = "fixedbitset"
@@ -268,6 +434,16 @@ version = "0.5.7"
268
434
  source = "registry+https://github.com/rust-lang/crates.io-index"
269
435
  checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
270
436
 
437
+ [[package]]
438
+ name = "flatbuffers"
439
+ version = "25.12.19"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
442
+ dependencies = [
443
+ "bitflags",
444
+ "rustc_version",
445
+ ]
446
+
271
447
  [[package]]
272
448
  name = "fnv"
273
449
  version = "1.0.7"
@@ -283,6 +459,21 @@ dependencies = [
283
459
  "percent-encoding",
284
460
  ]
285
461
 
462
+ [[package]]
463
+ name = "futures"
464
+ version = "0.3.31"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
467
+ dependencies = [
468
+ "futures-channel",
469
+ "futures-core",
470
+ "futures-executor",
471
+ "futures-io",
472
+ "futures-sink",
473
+ "futures-task",
474
+ "futures-util",
475
+ ]
476
+
286
477
  [[package]]
287
478
  name = "futures-channel"
288
479
  version = "0.3.31"
@@ -290,6 +481,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
290
481
  checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
291
482
  dependencies = [
292
483
  "futures-core",
484
+ "futures-sink",
293
485
  ]
294
486
 
295
487
  [[package]]
@@ -298,6 +490,34 @@ version = "0.3.31"
298
490
  source = "registry+https://github.com/rust-lang/crates.io-index"
299
491
  checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
300
492
 
493
+ [[package]]
494
+ name = "futures-executor"
495
+ version = "0.3.31"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
498
+ dependencies = [
499
+ "futures-core",
500
+ "futures-task",
501
+ "futures-util",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "futures-io"
506
+ version = "0.3.31"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
509
+
510
+ [[package]]
511
+ name = "futures-macro"
512
+ version = "0.3.31"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
515
+ dependencies = [
516
+ "proc-macro2",
517
+ "quote",
518
+ "syn",
519
+ ]
520
+
301
521
  [[package]]
302
522
  name = "futures-sink"
303
523
  version = "0.3.31"
@@ -316,17 +536,23 @@ version = "0.3.31"
316
536
  source = "registry+https://github.com/rust-lang/crates.io-index"
317
537
  checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
318
538
  dependencies = [
539
+ "futures-channel",
319
540
  "futures-core",
541
+ "futures-io",
542
+ "futures-macro",
543
+ "futures-sink",
320
544
  "futures-task",
545
+ "memchr",
321
546
  "pin-project-lite",
322
547
  "pin-utils",
548
+ "slab",
323
549
  ]
324
550
 
325
551
  [[package]]
326
552
  name = "getrandom"
327
- version = "0.2.16"
553
+ version = "0.2.17"
328
554
  source = "registry+https://github.com/rust-lang/crates.io-index"
329
- checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
555
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
330
556
  dependencies = [
331
557
  "cfg-if",
332
558
  "js-sys",
@@ -351,9 +577,9 @@ dependencies = [
351
577
 
352
578
  [[package]]
353
579
  name = "h2"
354
- version = "0.4.12"
580
+ version = "0.4.13"
355
581
  source = "registry+https://github.com/rust-lang/crates.io-index"
356
- checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
582
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
357
583
  dependencies = [
358
584
  "atomic-waker",
359
585
  "bytes",
@@ -361,7 +587,7 @@ dependencies = [
361
587
  "futures-core",
362
588
  "futures-sink",
363
589
  "http",
364
- "indexmap 2.12.0",
590
+ "indexmap",
365
591
  "slab",
366
592
  "tokio",
367
593
  "tokio-util",
@@ -369,16 +595,22 @@ dependencies = [
369
595
  ]
370
596
 
371
597
  [[package]]
372
- name = "hashbrown"
373
- version = "0.12.3"
598
+ name = "half"
599
+ version = "2.7.1"
374
600
  source = "registry+https://github.com/rust-lang/crates.io-index"
375
- checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
601
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
602
+ dependencies = [
603
+ "cfg-if",
604
+ "crunchy",
605
+ "num-traits",
606
+ "zerocopy",
607
+ ]
376
608
 
377
609
  [[package]]
378
610
  name = "hashbrown"
379
- version = "0.16.0"
611
+ version = "0.16.1"
380
612
  source = "registry+https://github.com/rust-lang/crates.io-index"
381
- checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
613
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
382
614
 
383
615
  [[package]]
384
616
  name = "heck"
@@ -388,12 +620,11 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
388
620
 
389
621
  [[package]]
390
622
  name = "http"
391
- version = "1.3.1"
623
+ version = "1.4.0"
392
624
  source = "registry+https://github.com/rust-lang/crates.io-index"
393
- checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
625
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
394
626
  dependencies = [
395
627
  "bytes",
396
- "fnv",
397
628
  "itoa",
398
629
  ]
399
630
 
@@ -434,9 +665,9 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
434
665
 
435
666
  [[package]]
436
667
  name = "hyper"
437
- version = "1.8.0"
668
+ version = "1.8.1"
438
669
  source = "registry+https://github.com/rust-lang/crates.io-index"
439
- checksum = "1744436df46f0bde35af3eda22aeaba453aada65d8f1c171cd8a5f59030bd69f"
670
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
440
671
  dependencies = [
441
672
  "atomic-waker",
442
673
  "bytes",
@@ -487,9 +718,9 @@ dependencies = [
487
718
 
488
719
  [[package]]
489
720
  name = "hyper-util"
490
- version = "0.1.18"
721
+ version = "0.1.19"
491
722
  source = "registry+https://github.com/rust-lang/crates.io-index"
492
- checksum = "52e9a2a24dc5c6821e71a7030e1e14b7b632acac55c40e9d2e082c621261bb56"
723
+ checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
493
724
  dependencies = [
494
725
  "base64 0.22.1",
495
726
  "bytes",
@@ -503,12 +734,36 @@ dependencies = [
503
734
  "libc",
504
735
  "percent-encoding",
505
736
  "pin-project-lite",
506
- "socket2 0.6.1",
737
+ "socket2 0.6.2",
507
738
  "tokio",
508
739
  "tower-service",
509
740
  "tracing",
510
741
  ]
511
742
 
743
+ [[package]]
744
+ name = "iana-time-zone"
745
+ version = "0.1.65"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
748
+ dependencies = [
749
+ "android_system_properties",
750
+ "core-foundation-sys",
751
+ "iana-time-zone-haiku",
752
+ "js-sys",
753
+ "log",
754
+ "wasm-bindgen",
755
+ "windows-core",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "iana-time-zone-haiku"
760
+ version = "0.1.2"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
763
+ dependencies = [
764
+ "cc",
765
+ ]
766
+
512
767
  [[package]]
513
768
  name = "icu_collections"
514
769
  version = "2.1.1"
@@ -557,9 +812,9 @@ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
557
812
 
558
813
  [[package]]
559
814
  name = "icu_properties"
560
- version = "2.1.1"
815
+ version = "2.1.2"
561
816
  source = "registry+https://github.com/rust-lang/crates.io-index"
562
- checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99"
817
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
563
818
  dependencies = [
564
819
  "icu_collections",
565
820
  "icu_locale_core",
@@ -571,9 +826,9 @@ dependencies = [
571
826
 
572
827
  [[package]]
573
828
  name = "icu_properties_data"
574
- version = "2.1.1"
829
+ version = "2.1.2"
575
830
  source = "registry+https://github.com/rust-lang/crates.io-index"
576
- checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899"
831
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
577
832
 
578
833
  [[package]]
579
834
  name = "icu_provider"
@@ -613,22 +868,12 @@ dependencies = [
613
868
 
614
869
  [[package]]
615
870
  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"
871
+ version = "2.13.0"
627
872
  source = "registry+https://github.com/rust-lang/crates.io-index"
628
- checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
873
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
629
874
  dependencies = [
630
875
  "equivalent",
631
- "hashbrown 0.16.0",
876
+ "hashbrown",
632
877
  ]
633
878
 
634
879
  [[package]]
@@ -639,9 +884,9 @@ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
639
884
 
640
885
  [[package]]
641
886
  name = "iri-string"
642
- version = "0.7.9"
887
+ version = "0.7.10"
643
888
  source = "registry+https://github.com/rust-lang/crates.io-index"
644
- checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397"
889
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
645
890
  dependencies = [
646
891
  "memchr",
647
892
  "serde",
@@ -658,25 +903,92 @@ dependencies = [
658
903
 
659
904
  [[package]]
660
905
  name = "itoa"
661
- version = "1.0.15"
906
+ version = "1.0.17"
662
907
  source = "registry+https://github.com/rust-lang/crates.io-index"
663
- checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
908
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
909
+
910
+ [[package]]
911
+ name = "jobserver"
912
+ version = "0.1.34"
913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
914
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
915
+ dependencies = [
916
+ "getrandom 0.3.4",
917
+ "libc",
918
+ ]
664
919
 
665
920
  [[package]]
666
921
  name = "js-sys"
667
- version = "0.3.82"
922
+ version = "0.3.85"
668
923
  source = "registry+https://github.com/rust-lang/crates.io-index"
669
- checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
924
+ checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
670
925
  dependencies = [
671
926
  "once_cell",
672
927
  "wasm-bindgen",
673
928
  ]
674
929
 
930
+ [[package]]
931
+ name = "lexical-core"
932
+ version = "1.0.6"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
935
+ dependencies = [
936
+ "lexical-parse-float",
937
+ "lexical-parse-integer",
938
+ "lexical-util",
939
+ "lexical-write-float",
940
+ "lexical-write-integer",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "lexical-parse-float"
945
+ version = "1.0.6"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
948
+ dependencies = [
949
+ "lexical-parse-integer",
950
+ "lexical-util",
951
+ ]
952
+
953
+ [[package]]
954
+ name = "lexical-parse-integer"
955
+ version = "1.0.6"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
958
+ dependencies = [
959
+ "lexical-util",
960
+ ]
961
+
962
+ [[package]]
963
+ name = "lexical-util"
964
+ version = "1.0.7"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
967
+
968
+ [[package]]
969
+ name = "lexical-write-float"
970
+ version = "1.0.6"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
973
+ dependencies = [
974
+ "lexical-util",
975
+ "lexical-write-integer",
976
+ ]
977
+
978
+ [[package]]
979
+ name = "lexical-write-integer"
980
+ version = "1.0.6"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
983
+ dependencies = [
984
+ "lexical-util",
985
+ ]
986
+
675
987
  [[package]]
676
988
  name = "libc"
677
- version = "0.2.177"
989
+ version = "0.2.180"
678
990
  source = "registry+https://github.com/rust-lang/crates.io-index"
679
- checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
991
+ checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
680
992
 
681
993
  [[package]]
682
994
  name = "libloading"
@@ -688,6 +1000,12 @@ dependencies = [
688
1000
  "windows-link",
689
1001
  ]
690
1002
 
1003
+ [[package]]
1004
+ name = "libm"
1005
+ version = "0.2.16"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1008
+
691
1009
  [[package]]
692
1010
  name = "linux-raw-sys"
693
1011
  version = "0.11.0"
@@ -702,9 +1020,9 @@ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
702
1020
 
703
1021
  [[package]]
704
1022
  name = "log"
705
- version = "0.4.28"
1023
+ version = "0.4.29"
706
1024
  source = "registry+https://github.com/rust-lang/crates.io-index"
707
- checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
1025
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
708
1026
 
709
1027
  [[package]]
710
1028
  name = "lru-slab"
@@ -712,11 +1030,20 @@ version = "0.1.2"
712
1030
  source = "registry+https://github.com/rust-lang/crates.io-index"
713
1031
  checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
714
1032
 
1033
+ [[package]]
1034
+ name = "lz4_flex"
1035
+ version = "0.11.5"
1036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1037
+ checksum = "08ab2867e3eeeca90e844d1940eab391c9dc5228783db2ed999acbc0a9ed375a"
1038
+ dependencies = [
1039
+ "twox-hash",
1040
+ ]
1041
+
715
1042
  [[package]]
716
1043
  name = "matchit"
717
- version = "0.7.3"
1044
+ version = "0.8.4"
718
1045
  source = "registry+https://github.com/rust-lang/crates.io-index"
719
- checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
1046
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
720
1047
 
721
1048
  [[package]]
722
1049
  name = "memchr"
@@ -732,9 +1059,9 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
732
1059
 
733
1060
  [[package]]
734
1061
  name = "mio"
735
- version = "1.1.0"
1062
+ version = "1.1.1"
736
1063
  source = "registry+https://github.com/rust-lang/crates.io-index"
737
- checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873"
1064
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
738
1065
  dependencies = [
739
1066
  "libc",
740
1067
  "wasi",
@@ -807,6 +1134,80 @@ dependencies = [
807
1134
  "libloading",
808
1135
  ]
809
1136
 
1137
+ [[package]]
1138
+ name = "num"
1139
+ version = "0.4.3"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
1142
+ dependencies = [
1143
+ "num-bigint",
1144
+ "num-complex",
1145
+ "num-integer",
1146
+ "num-iter",
1147
+ "num-rational",
1148
+ "num-traits",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "num-bigint"
1153
+ version = "0.4.6"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1156
+ dependencies = [
1157
+ "num-integer",
1158
+ "num-traits",
1159
+ ]
1160
+
1161
+ [[package]]
1162
+ name = "num-complex"
1163
+ version = "0.4.6"
1164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1165
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1166
+ dependencies = [
1167
+ "num-traits",
1168
+ ]
1169
+
1170
+ [[package]]
1171
+ name = "num-integer"
1172
+ version = "0.1.46"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1175
+ dependencies = [
1176
+ "num-traits",
1177
+ ]
1178
+
1179
+ [[package]]
1180
+ name = "num-iter"
1181
+ version = "0.1.45"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1184
+ dependencies = [
1185
+ "autocfg",
1186
+ "num-integer",
1187
+ "num-traits",
1188
+ ]
1189
+
1190
+ [[package]]
1191
+ name = "num-rational"
1192
+ version = "0.4.2"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
1195
+ dependencies = [
1196
+ "num-bigint",
1197
+ "num-integer",
1198
+ "num-traits",
1199
+ ]
1200
+
1201
+ [[package]]
1202
+ name = "num-traits"
1203
+ version = "0.2.19"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1206
+ dependencies = [
1207
+ "autocfg",
1208
+ "libm",
1209
+ ]
1210
+
810
1211
  [[package]]
811
1212
  name = "once_cell"
812
1213
  version = "1.21.3"
@@ -815,9 +1216,9 @@ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
815
1216
 
816
1217
  [[package]]
817
1218
  name = "openssl-probe"
818
- version = "0.1.6"
1219
+ version = "0.2.1"
819
1220
  source = "registry+https://github.com/rust-lang/crates.io-index"
820
- checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1221
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
821
1222
 
822
1223
  [[package]]
823
1224
  name = "percent-encoding"
@@ -832,7 +1233,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
832
1233
  checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
833
1234
  dependencies = [
834
1235
  "fixedbitset",
835
- "indexmap 2.12.0",
1236
+ "indexmap",
836
1237
  ]
837
1238
 
838
1239
  [[package]]
@@ -867,6 +1268,12 @@ version = "0.1.0"
867
1268
  source = "registry+https://github.com/rust-lang/crates.io-index"
868
1269
  checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
869
1270
 
1271
+ [[package]]
1272
+ name = "pkg-config"
1273
+ version = "0.3.32"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1276
+
870
1277
  [[package]]
871
1278
  name = "potential_utf"
872
1279
  version = "0.1.4"
@@ -897,9 +1304,9 @@ dependencies = [
897
1304
 
898
1305
  [[package]]
899
1306
  name = "proc-macro2"
900
- version = "1.0.103"
1307
+ version = "1.0.106"
901
1308
  source = "registry+https://github.com/rust-lang/crates.io-index"
902
- checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
1309
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
903
1310
  dependencies = [
904
1311
  "unicode-ident",
905
1312
  ]
@@ -1033,8 +1440,8 @@ dependencies = [
1033
1440
  "quinn-udp",
1034
1441
  "rustc-hash",
1035
1442
  "rustls",
1036
- "socket2 0.6.1",
1037
- "thiserror 2.0.17",
1443
+ "socket2 0.6.2",
1444
+ "thiserror 2.0.18",
1038
1445
  "tokio",
1039
1446
  "tracing",
1040
1447
  "web-time",
@@ -1055,7 +1462,7 @@ dependencies = [
1055
1462
  "rustls",
1056
1463
  "rustls-pki-types",
1057
1464
  "slab",
1058
- "thiserror 2.0.17",
1465
+ "thiserror 2.0.18",
1059
1466
  "tinyvec",
1060
1467
  "tracing",
1061
1468
  "web-time",
@@ -1070,16 +1477,16 @@ dependencies = [
1070
1477
  "cfg_aliases",
1071
1478
  "libc",
1072
1479
  "once_cell",
1073
- "socket2 0.6.1",
1480
+ "socket2 0.6.2",
1074
1481
  "tracing",
1075
1482
  "windows-sys 0.60.2",
1076
1483
  ]
1077
1484
 
1078
1485
  [[package]]
1079
1486
  name = "quote"
1080
- version = "1.0.42"
1487
+ version = "1.0.44"
1081
1488
  source = "registry+https://github.com/rust-lang/crates.io-index"
1082
- checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
1489
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
1083
1490
  dependencies = [
1084
1491
  "proc-macro2",
1085
1492
  ]
@@ -1108,7 +1515,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
1515
  checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1109
1516
  dependencies = [
1110
1517
  "rand_chacha 0.9.0",
1111
- "rand_core 0.9.3",
1518
+ "rand_core 0.9.5",
1112
1519
  ]
1113
1520
 
1114
1521
  [[package]]
@@ -1128,7 +1535,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
1535
  checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1129
1536
  dependencies = [
1130
1537
  "ppv-lite86",
1131
- "rand_core 0.9.3",
1538
+ "rand_core 0.9.5",
1132
1539
  ]
1133
1540
 
1134
1541
  [[package]]
@@ -1137,14 +1544,14 @@ version = "0.6.4"
1137
1544
  source = "registry+https://github.com/rust-lang/crates.io-index"
1138
1545
  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1139
1546
  dependencies = [
1140
- "getrandom 0.2.16",
1547
+ "getrandom 0.2.17",
1141
1548
  ]
1142
1549
 
1143
1550
  [[package]]
1144
1551
  name = "rand_core"
1145
- version = "0.9.3"
1552
+ version = "0.9.5"
1146
1553
  source = "registry+https://github.com/rust-lang/crates.io-index"
1147
- checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
1554
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1148
1555
  dependencies = [
1149
1556
  "getrandom 0.3.4",
1150
1557
  ]
@@ -1180,9 +1587,9 @@ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
1180
1587
 
1181
1588
  [[package]]
1182
1589
  name = "reqwest"
1183
- version = "0.12.24"
1590
+ version = "0.12.28"
1184
1591
  source = "registry+https://github.com/rust-lang/crates.io-index"
1185
- checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f"
1592
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1186
1593
  dependencies = [
1187
1594
  "base64 0.22.1",
1188
1595
  "bytes",
@@ -1206,7 +1613,7 @@ dependencies = [
1206
1613
  "sync_wrapper",
1207
1614
  "tokio",
1208
1615
  "tokio-rustls",
1209
- "tower 0.5.2",
1616
+ "tower",
1210
1617
  "tower-http",
1211
1618
  "tower-service",
1212
1619
  "url",
@@ -1224,7 +1631,7 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1224
1631
  dependencies = [
1225
1632
  "cc",
1226
1633
  "cfg-if",
1227
- "getrandom 0.2.16",
1634
+ "getrandom 0.2.17",
1228
1635
  "libc",
1229
1636
  "untrusted",
1230
1637
  "windows-sys 0.52.0",
@@ -1236,11 +1643,20 @@ version = "2.1.1"
1236
1643
  source = "registry+https://github.com/rust-lang/crates.io-index"
1237
1644
  checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1238
1645
 
1646
+ [[package]]
1647
+ name = "rustc_version"
1648
+ version = "0.4.1"
1649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1650
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1651
+ dependencies = [
1652
+ "semver",
1653
+ ]
1654
+
1239
1655
  [[package]]
1240
1656
  name = "rustix"
1241
- version = "1.1.2"
1657
+ version = "1.1.3"
1242
1658
  source = "registry+https://github.com/rust-lang/crates.io-index"
1243
- checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
1659
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
1244
1660
  dependencies = [
1245
1661
  "bitflags",
1246
1662
  "errno",
@@ -1251,9 +1667,9 @@ dependencies = [
1251
1667
 
1252
1668
  [[package]]
1253
1669
  name = "rustls"
1254
- version = "0.23.35"
1670
+ version = "0.23.36"
1255
1671
  source = "registry+https://github.com/rust-lang/crates.io-index"
1256
- checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
1672
+ checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
1257
1673
  dependencies = [
1258
1674
  "log",
1259
1675
  "once_cell",
@@ -1266,9 +1682,9 @@ dependencies = [
1266
1682
 
1267
1683
  [[package]]
1268
1684
  name = "rustls-native-certs"
1269
- version = "0.8.2"
1685
+ version = "0.8.3"
1270
1686
  source = "registry+https://github.com/rust-lang/crates.io-index"
1271
- checksum = "9980d917ebb0c0536119ba501e90834767bffc3d60641457fd84a1f3fd337923"
1687
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
1272
1688
  dependencies = [
1273
1689
  "openssl-probe",
1274
1690
  "rustls-pki-types",
@@ -1276,20 +1692,11 @@ dependencies = [
1276
1692
  "security-framework",
1277
1693
  ]
1278
1694
 
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
1695
  [[package]]
1289
1696
  name = "rustls-pki-types"
1290
- version = "1.13.0"
1697
+ version = "1.14.0"
1291
1698
  source = "registry+https://github.com/rust-lang/crates.io-index"
1292
- checksum = "94182ad936a0c91c324cd46c6511b9510ed16af436d7b5bab34beab0afd55f7a"
1699
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
1293
1700
  dependencies = [
1294
1701
  "web-time",
1295
1702
  "zeroize",
@@ -1297,9 +1704,9 @@ dependencies = [
1297
1704
 
1298
1705
  [[package]]
1299
1706
  name = "rustls-webpki"
1300
- version = "0.103.8"
1707
+ version = "0.103.9"
1301
1708
  source = "registry+https://github.com/rust-lang/crates.io-index"
1302
- checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
1709
+ checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
1303
1710
  dependencies = [
1304
1711
  "ring",
1305
1712
  "rustls-pki-types",
@@ -1314,9 +1721,9 @@ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1314
1721
 
1315
1722
  [[package]]
1316
1723
  name = "ryu"
1317
- version = "1.0.20"
1724
+ version = "1.0.22"
1318
1725
  source = "registry+https://github.com/rust-lang/crates.io-index"
1319
- checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1726
+ checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
1320
1727
 
1321
1728
  [[package]]
1322
1729
  name = "schannel"
@@ -1388,15 +1795,15 @@ dependencies = [
1388
1795
 
1389
1796
  [[package]]
1390
1797
  name = "serde_json"
1391
- version = "1.0.145"
1798
+ version = "1.0.149"
1392
1799
  source = "registry+https://github.com/rust-lang/crates.io-index"
1393
- checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
1800
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1394
1801
  dependencies = [
1395
1802
  "itoa",
1396
1803
  "memchr",
1397
- "ryu",
1398
1804
  "serde",
1399
1805
  "serde_core",
1806
+ "zmij",
1400
1807
  ]
1401
1808
 
1402
1809
  [[package]]
@@ -1441,9 +1848,9 @@ dependencies = [
1441
1848
 
1442
1849
  [[package]]
1443
1850
  name = "socket2"
1444
- version = "0.6.1"
1851
+ version = "0.6.2"
1445
1852
  source = "registry+https://github.com/rust-lang/crates.io-index"
1446
- checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
1853
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
1447
1854
  dependencies = [
1448
1855
  "libc",
1449
1856
  "windows-sys 0.60.2",
@@ -1463,9 +1870,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1463
1870
 
1464
1871
  [[package]]
1465
1872
  name = "syn"
1466
- version = "2.0.110"
1873
+ version = "2.0.114"
1467
1874
  source = "registry+https://github.com/rust-lang/crates.io-index"
1468
- checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea"
1875
+ checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
1469
1876
  dependencies = [
1470
1877
  "proc-macro2",
1471
1878
  "quote",
@@ -1494,9 +1901,9 @@ dependencies = [
1494
1901
 
1495
1902
  [[package]]
1496
1903
  name = "tempfile"
1497
- version = "3.23.0"
1904
+ version = "3.24.0"
1498
1905
  source = "registry+https://github.com/rust-lang/crates.io-index"
1499
- checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
1906
+ checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
1500
1907
  dependencies = [
1501
1908
  "fastrand",
1502
1909
  "getrandom 0.3.4",
@@ -1516,11 +1923,11 @@ dependencies = [
1516
1923
 
1517
1924
  [[package]]
1518
1925
  name = "thiserror"
1519
- version = "2.0.17"
1926
+ version = "2.0.18"
1520
1927
  source = "registry+https://github.com/rust-lang/crates.io-index"
1521
- checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
1928
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1522
1929
  dependencies = [
1523
- "thiserror-impl 2.0.17",
1930
+ "thiserror-impl 2.0.18",
1524
1931
  ]
1525
1932
 
1526
1933
  [[package]]
@@ -1536,15 +1943,24 @@ dependencies = [
1536
1943
 
1537
1944
  [[package]]
1538
1945
  name = "thiserror-impl"
1539
- version = "2.0.17"
1946
+ version = "2.0.18"
1540
1947
  source = "registry+https://github.com/rust-lang/crates.io-index"
1541
- checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
1948
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1542
1949
  dependencies = [
1543
1950
  "proc-macro2",
1544
1951
  "quote",
1545
1952
  "syn",
1546
1953
  ]
1547
1954
 
1955
+ [[package]]
1956
+ name = "tiny-keccak"
1957
+ version = "2.0.2"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
1960
+ dependencies = [
1961
+ "crunchy",
1962
+ ]
1963
+
1548
1964
  [[package]]
1549
1965
  name = "tinystr"
1550
1966
  version = "0.8.2"
@@ -1572,15 +1988,15 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1572
1988
 
1573
1989
  [[package]]
1574
1990
  name = "tokio"
1575
- version = "1.48.0"
1991
+ version = "1.49.0"
1576
1992
  source = "registry+https://github.com/rust-lang/crates.io-index"
1577
- checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
1993
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
1578
1994
  dependencies = [
1579
1995
  "bytes",
1580
1996
  "libc",
1581
1997
  "mio",
1582
1998
  "pin-project-lite",
1583
- "socket2 0.6.1",
1999
+ "socket2 0.6.2",
1584
2000
  "tokio-macros",
1585
2001
  "windows-sys 0.61.2",
1586
2002
  ]
@@ -1619,9 +2035,9 @@ dependencies = [
1619
2035
 
1620
2036
  [[package]]
1621
2037
  name = "tokio-stream"
1622
- version = "0.1.17"
2038
+ version = "0.1.18"
1623
2039
  source = "registry+https://github.com/rust-lang/crates.io-index"
1624
- checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
2040
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
1625
2041
  dependencies = [
1626
2042
  "futures-core",
1627
2043
  "pin-project-lite",
@@ -1630,24 +2046,24 @@ dependencies = [
1630
2046
 
1631
2047
  [[package]]
1632
2048
  name = "tokio-util"
1633
- version = "0.7.17"
2049
+ version = "0.7.18"
1634
2050
  source = "registry+https://github.com/rust-lang/crates.io-index"
1635
- checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594"
2051
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1636
2052
  dependencies = [
1637
2053
  "bytes",
1638
2054
  "futures-core",
1639
2055
  "futures-sink",
2056
+ "futures-util",
1640
2057
  "pin-project-lite",
1641
2058
  "tokio",
1642
2059
  ]
1643
2060
 
1644
2061
  [[package]]
1645
2062
  name = "tonic"
1646
- version = "0.12.3"
2063
+ version = "0.13.1"
1647
2064
  source = "registry+https://github.com/rust-lang/crates.io-index"
1648
- checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52"
2065
+ checksum = "7e581ba15a835f4d9ea06c55ab1bd4dce26fc53752c69a04aac00703bfb49ba9"
1649
2066
  dependencies = [
1650
- "async-stream",
1651
2067
  "async-trait",
1652
2068
  "axum",
1653
2069
  "base64 0.22.1",
@@ -1663,12 +2079,11 @@ dependencies = [
1663
2079
  "pin-project",
1664
2080
  "prost",
1665
2081
  "rustls-native-certs",
1666
- "rustls-pemfile",
1667
2082
  "socket2 0.5.10",
1668
2083
  "tokio",
1669
2084
  "tokio-rustls",
1670
2085
  "tokio-stream",
1671
- "tower 0.4.13",
2086
+ "tower",
1672
2087
  "tower-layer",
1673
2088
  "tower-service",
1674
2089
  "tracing",
@@ -1676,9 +2091,9 @@ dependencies = [
1676
2091
 
1677
2092
  [[package]]
1678
2093
  name = "tonic-build"
1679
- version = "0.12.3"
2094
+ version = "0.13.1"
1680
2095
  source = "registry+https://github.com/rust-lang/crates.io-index"
1681
- checksum = "9557ce109ea773b399c9b9e5dca39294110b74f1f342cb347a80d1fce8c26a11"
2096
+ checksum = "eac6f67be712d12f0b41328db3137e0d0757645d8904b4cb7d51cd9c2279e847"
1682
2097
  dependencies = [
1683
2098
  "prettyplease",
1684
2099
  "proc-macro2",
@@ -1690,17 +2105,16 @@ dependencies = [
1690
2105
 
1691
2106
  [[package]]
1692
2107
  name = "tower"
1693
- version = "0.4.13"
2108
+ version = "0.5.3"
1694
2109
  source = "registry+https://github.com/rust-lang/crates.io-index"
1695
- checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
2110
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1696
2111
  dependencies = [
1697
2112
  "futures-core",
1698
2113
  "futures-util",
1699
- "indexmap 1.9.3",
1700
- "pin-project",
2114
+ "indexmap",
1701
2115
  "pin-project-lite",
1702
- "rand 0.8.5",
1703
2116
  "slab",
2117
+ "sync_wrapper",
1704
2118
  "tokio",
1705
2119
  "tokio-util",
1706
2120
  "tower-layer",
@@ -1708,26 +2122,11 @@ dependencies = [
1708
2122
  "tracing",
1709
2123
  ]
1710
2124
 
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
2125
  [[package]]
1727
2126
  name = "tower-http"
1728
- version = "0.6.6"
2127
+ version = "0.6.8"
1729
2128
  source = "registry+https://github.com/rust-lang/crates.io-index"
1730
- checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
2129
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
1731
2130
  dependencies = [
1732
2131
  "bitflags",
1733
2132
  "bytes",
@@ -1736,7 +2135,7 @@ dependencies = [
1736
2135
  "http-body",
1737
2136
  "iri-string",
1738
2137
  "pin-project-lite",
1739
- "tower 0.5.2",
2138
+ "tower",
1740
2139
  "tower-layer",
1741
2140
  "tower-service",
1742
2141
  ]
@@ -1755,9 +2154,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1755
2154
 
1756
2155
  [[package]]
1757
2156
  name = "tracing"
1758
- version = "0.1.41"
2157
+ version = "0.1.44"
1759
2158
  source = "registry+https://github.com/rust-lang/crates.io-index"
1760
- checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
2159
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1761
2160
  dependencies = [
1762
2161
  "pin-project-lite",
1763
2162
  "tracing-attributes",
@@ -1766,9 +2165,9 @@ dependencies = [
1766
2165
 
1767
2166
  [[package]]
1768
2167
  name = "tracing-attributes"
1769
- version = "0.1.30"
2168
+ version = "0.1.31"
1770
2169
  source = "registry+https://github.com/rust-lang/crates.io-index"
1771
- checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
2170
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1772
2171
  dependencies = [
1773
2172
  "proc-macro2",
1774
2173
  "quote",
@@ -1777,9 +2176,9 @@ dependencies = [
1777
2176
 
1778
2177
  [[package]]
1779
2178
  name = "tracing-core"
1780
- version = "0.1.34"
2179
+ version = "0.1.36"
1781
2180
  source = "registry+https://github.com/rust-lang/crates.io-index"
1782
- checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
2181
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1783
2182
  dependencies = [
1784
2183
  "once_cell",
1785
2184
  ]
@@ -1790,6 +2189,12 @@ version = "0.2.5"
1790
2189
  source = "registry+https://github.com/rust-lang/crates.io-index"
1791
2190
  checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1792
2191
 
2192
+ [[package]]
2193
+ name = "twox-hash"
2194
+ version = "2.1.2"
2195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2196
+ checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
2197
+
1793
2198
  [[package]]
1794
2199
  name = "unicode-ident"
1795
2200
  version = "1.0.22"
@@ -1810,9 +2215,9 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1810
2215
 
1811
2216
  [[package]]
1812
2217
  name = "url"
1813
- version = "2.5.7"
2218
+ version = "2.5.8"
1814
2219
  source = "registry+https://github.com/rust-lang/crates.io-index"
1815
- checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
2220
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1816
2221
  dependencies = [
1817
2222
  "form_urlencoded",
1818
2223
  "idna",
@@ -1826,6 +2231,12 @@ version = "1.0.4"
1826
2231
  source = "registry+https://github.com/rust-lang/crates.io-index"
1827
2232
  checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1828
2233
 
2234
+ [[package]]
2235
+ name = "version_check"
2236
+ version = "0.9.5"
2237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2238
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2239
+
1829
2240
  [[package]]
1830
2241
  name = "want"
1831
2242
  version = "0.3.1"
@@ -1843,18 +2254,18 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1843
2254
 
1844
2255
  [[package]]
1845
2256
  name = "wasip2"
1846
- version = "1.0.1+wasi-0.2.4"
2257
+ version = "1.0.2+wasi-0.2.9"
1847
2258
  source = "registry+https://github.com/rust-lang/crates.io-index"
1848
- checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
2259
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
1849
2260
  dependencies = [
1850
2261
  "wit-bindgen",
1851
2262
  ]
1852
2263
 
1853
2264
  [[package]]
1854
2265
  name = "wasm-bindgen"
1855
- version = "0.2.105"
2266
+ version = "0.2.108"
1856
2267
  source = "registry+https://github.com/rust-lang/crates.io-index"
1857
- checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
2268
+ checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
1858
2269
  dependencies = [
1859
2270
  "cfg-if",
1860
2271
  "once_cell",
@@ -1865,11 +2276,12 @@ dependencies = [
1865
2276
 
1866
2277
  [[package]]
1867
2278
  name = "wasm-bindgen-futures"
1868
- version = "0.4.55"
2279
+ version = "0.4.58"
1869
2280
  source = "registry+https://github.com/rust-lang/crates.io-index"
1870
- checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0"
2281
+ checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
1871
2282
  dependencies = [
1872
2283
  "cfg-if",
2284
+ "futures-util",
1873
2285
  "js-sys",
1874
2286
  "once_cell",
1875
2287
  "wasm-bindgen",
@@ -1878,9 +2290,9 @@ dependencies = [
1878
2290
 
1879
2291
  [[package]]
1880
2292
  name = "wasm-bindgen-macro"
1881
- version = "0.2.105"
2293
+ version = "0.2.108"
1882
2294
  source = "registry+https://github.com/rust-lang/crates.io-index"
1883
- checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
2295
+ checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
1884
2296
  dependencies = [
1885
2297
  "quote",
1886
2298
  "wasm-bindgen-macro-support",
@@ -1888,9 +2300,9 @@ dependencies = [
1888
2300
 
1889
2301
  [[package]]
1890
2302
  name = "wasm-bindgen-macro-support"
1891
- version = "0.2.105"
2303
+ version = "0.2.108"
1892
2304
  source = "registry+https://github.com/rust-lang/crates.io-index"
1893
- checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
2305
+ checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
1894
2306
  dependencies = [
1895
2307
  "bumpalo",
1896
2308
  "proc-macro2",
@@ -1901,18 +2313,18 @@ dependencies = [
1901
2313
 
1902
2314
  [[package]]
1903
2315
  name = "wasm-bindgen-shared"
1904
- version = "0.2.105"
2316
+ version = "0.2.108"
1905
2317
  source = "registry+https://github.com/rust-lang/crates.io-index"
1906
- checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
2318
+ checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
1907
2319
  dependencies = [
1908
2320
  "unicode-ident",
1909
2321
  ]
1910
2322
 
1911
2323
  [[package]]
1912
2324
  name = "web-sys"
1913
- version = "0.3.82"
2325
+ version = "0.3.85"
1914
2326
  source = "registry+https://github.com/rust-lang/crates.io-index"
1915
- checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
2327
+ checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
1916
2328
  dependencies = [
1917
2329
  "js-sys",
1918
2330
  "wasm-bindgen",
@@ -1930,19 +2342,72 @@ dependencies = [
1930
2342
 
1931
2343
  [[package]]
1932
2344
  name = "webpki-roots"
1933
- version = "1.0.4"
2345
+ version = "1.0.5"
1934
2346
  source = "registry+https://github.com/rust-lang/crates.io-index"
1935
- checksum = "b2878ef029c47c6e8cf779119f20fcf52bde7ad42a731b2a304bc221df17571e"
2347
+ checksum = "12bed680863276c63889429bfd6cab3b99943659923822de1c8a39c49e4d722c"
1936
2348
  dependencies = [
1937
2349
  "rustls-pki-types",
1938
2350
  ]
1939
2351
 
2352
+ [[package]]
2353
+ name = "windows-core"
2354
+ version = "0.62.2"
2355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2356
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2357
+ dependencies = [
2358
+ "windows-implement",
2359
+ "windows-interface",
2360
+ "windows-link",
2361
+ "windows-result",
2362
+ "windows-strings",
2363
+ ]
2364
+
2365
+ [[package]]
2366
+ name = "windows-implement"
2367
+ version = "0.60.2"
2368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2369
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2370
+ dependencies = [
2371
+ "proc-macro2",
2372
+ "quote",
2373
+ "syn",
2374
+ ]
2375
+
2376
+ [[package]]
2377
+ name = "windows-interface"
2378
+ version = "0.59.3"
2379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2380
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2381
+ dependencies = [
2382
+ "proc-macro2",
2383
+ "quote",
2384
+ "syn",
2385
+ ]
2386
+
1940
2387
  [[package]]
1941
2388
  name = "windows-link"
1942
2389
  version = "0.2.1"
1943
2390
  source = "registry+https://github.com/rust-lang/crates.io-index"
1944
2391
  checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1945
2392
 
2393
+ [[package]]
2394
+ name = "windows-result"
2395
+ version = "0.4.1"
2396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2397
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2398
+ dependencies = [
2399
+ "windows-link",
2400
+ ]
2401
+
2402
+ [[package]]
2403
+ name = "windows-strings"
2404
+ version = "0.5.1"
2405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2406
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2407
+ dependencies = [
2408
+ "windows-link",
2409
+ ]
2410
+
1946
2411
  [[package]]
1947
2412
  name = "windows-sys"
1948
2413
  version = "0.52.0"
@@ -2101,9 +2566,9 @@ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2101
2566
 
2102
2567
  [[package]]
2103
2568
  name = "wit-bindgen"
2104
- version = "0.46.0"
2569
+ version = "0.51.0"
2105
2570
  source = "registry+https://github.com/rust-lang/crates.io-index"
2106
- checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
2571
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2107
2572
 
2108
2573
  [[package]]
2109
2574
  name = "writeable"
@@ -2136,8 +2601,11 @@ dependencies = [
2136
2601
 
2137
2602
  [[package]]
2138
2603
  name = "zerobus-sdk-ts"
2139
- version = "0.1.0"
2604
+ version = "0.2.0"
2140
2605
  dependencies = [
2606
+ "arrow-array",
2607
+ "arrow-ipc",
2608
+ "arrow-schema",
2141
2609
  "async-trait",
2142
2610
  "base64 0.21.7",
2143
2611
  "databricks-zerobus-ingest-sdk",
@@ -2154,18 +2622,18 @@ dependencies = [
2154
2622
 
2155
2623
  [[package]]
2156
2624
  name = "zerocopy"
2157
- version = "0.8.27"
2625
+ version = "0.8.34"
2158
2626
  source = "registry+https://github.com/rust-lang/crates.io-index"
2159
- checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
2627
+ checksum = "71ddd76bcebeed25db614f82bf31a9f4222d3fbba300e6fb6c00afa26cbd4d9d"
2160
2628
  dependencies = [
2161
2629
  "zerocopy-derive",
2162
2630
  ]
2163
2631
 
2164
2632
  [[package]]
2165
2633
  name = "zerocopy-derive"
2166
- version = "0.8.27"
2634
+ version = "0.8.34"
2167
2635
  source = "registry+https://github.com/rust-lang/crates.io-index"
2168
- checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
2636
+ checksum = "d8187381b52e32220d50b255276aa16a084ec0a9017a0ca2152a1f55c539758d"
2169
2637
  dependencies = [
2170
2638
  "proc-macro2",
2171
2639
  "quote",
@@ -2231,3 +2699,37 @@ dependencies = [
2231
2699
  "quote",
2232
2700
  "syn",
2233
2701
  ]
2702
+
2703
+ [[package]]
2704
+ name = "zmij"
2705
+ version = "1.0.17"
2706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2707
+ checksum = "02aae0f83f69aafc94776e879363e9771d7ecbffe2c7fbb6c14c5e00dfe88439"
2708
+
2709
+ [[package]]
2710
+ name = "zstd"
2711
+ version = "0.13.3"
2712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2713
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
2714
+ dependencies = [
2715
+ "zstd-safe",
2716
+ ]
2717
+
2718
+ [[package]]
2719
+ name = "zstd-safe"
2720
+ version = "7.2.4"
2721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2722
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
2723
+ dependencies = [
2724
+ "zstd-sys",
2725
+ ]
2726
+
2727
+ [[package]]
2728
+ name = "zstd-sys"
2729
+ version = "2.0.16+zstd.1.5.7"
2730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2731
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
2732
+ dependencies = [
2733
+ "cc",
2734
+ "pkg-config",
2735
+ ]