deltalake-rb 0.1.7 → 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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/Cargo.lock +574 -532
- data/ext/deltalake/Cargo.toml +6 -6
- data/ext/deltalake/src/error.rs +0 -27
- data/ext/deltalake/src/lib.rs +104 -101
- data/lib/deltalake/table.rb +9 -3
- data/lib/deltalake/version.rb +1 -1
- metadata +2 -2
data/Cargo.lock
CHANGED
@@ -13,22 +13,22 @@ dependencies = [
|
|
13
13
|
|
14
14
|
[[package]]
|
15
15
|
name = "adler2"
|
16
|
-
version = "2.0.
|
16
|
+
version = "2.0.1"
|
17
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
|
-
checksum = "
|
18
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
19
19
|
|
20
20
|
[[package]]
|
21
21
|
name = "ahash"
|
22
|
-
version = "0.8.
|
22
|
+
version = "0.8.12"
|
23
23
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
-
checksum = "
|
24
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
25
25
|
dependencies = [
|
26
26
|
"cfg-if",
|
27
27
|
"const-random",
|
28
|
-
"getrandom 0.
|
28
|
+
"getrandom 0.3.3",
|
29
29
|
"once_cell",
|
30
30
|
"version_check",
|
31
|
-
"zerocopy
|
31
|
+
"zerocopy",
|
32
32
|
]
|
33
33
|
|
34
34
|
[[package]]
|
@@ -96,9 +96,9 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
96
96
|
|
97
97
|
[[package]]
|
98
98
|
name = "arrow"
|
99
|
-
version = "55.
|
99
|
+
version = "55.2.0"
|
100
100
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
101
|
-
checksum = "
|
101
|
+
checksum = "f3f15b4c6b148206ff3a2b35002e08929c2462467b62b9c02036d9c34f9ef994"
|
102
102
|
dependencies = [
|
103
103
|
"arrow-arith",
|
104
104
|
"arrow-array",
|
@@ -117,9 +117,9 @@ dependencies = [
|
|
117
117
|
|
118
118
|
[[package]]
|
119
119
|
name = "arrow-arith"
|
120
|
-
version = "55.
|
120
|
+
version = "55.2.0"
|
121
121
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
122
|
-
checksum = "
|
122
|
+
checksum = "30feb679425110209ae35c3fbf82404a39a4c0436bb3ec36164d8bffed2a4ce4"
|
123
123
|
dependencies = [
|
124
124
|
"arrow-array",
|
125
125
|
"arrow-buffer",
|
@@ -131,9 +131,9 @@ dependencies = [
|
|
131
131
|
|
132
132
|
[[package]]
|
133
133
|
name = "arrow-array"
|
134
|
-
version = "55.
|
134
|
+
version = "55.2.0"
|
135
135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
136
|
-
checksum = "
|
136
|
+
checksum = "70732f04d285d49054a48b72c54f791bb3424abae92d27aafdf776c98af161c8"
|
137
137
|
dependencies = [
|
138
138
|
"ahash",
|
139
139
|
"arrow-buffer",
|
@@ -142,15 +142,15 @@ dependencies = [
|
|
142
142
|
"chrono",
|
143
143
|
"chrono-tz",
|
144
144
|
"half",
|
145
|
-
"hashbrown 0.15.
|
145
|
+
"hashbrown 0.15.4",
|
146
146
|
"num",
|
147
147
|
]
|
148
148
|
|
149
149
|
[[package]]
|
150
150
|
name = "arrow-buffer"
|
151
|
-
version = "55.
|
151
|
+
version = "55.2.0"
|
152
152
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
153
|
-
checksum = "
|
153
|
+
checksum = "169b1d5d6cb390dd92ce582b06b23815c7953e9dfaaea75556e89d890d19993d"
|
154
154
|
dependencies = [
|
155
155
|
"bytes",
|
156
156
|
"half",
|
@@ -159,9 +159,9 @@ dependencies = [
|
|
159
159
|
|
160
160
|
[[package]]
|
161
161
|
name = "arrow-cast"
|
162
|
-
version = "55.
|
162
|
+
version = "55.2.0"
|
163
163
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
164
|
-
checksum = "
|
164
|
+
checksum = "e4f12eccc3e1c05a766cafb31f6a60a46c2f8efec9b74c6e0648766d30686af8"
|
165
165
|
dependencies = [
|
166
166
|
"arrow-array",
|
167
167
|
"arrow-buffer",
|
@@ -180,9 +180,9 @@ dependencies = [
|
|
180
180
|
|
181
181
|
[[package]]
|
182
182
|
name = "arrow-csv"
|
183
|
-
version = "55.
|
183
|
+
version = "55.2.0"
|
184
184
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
185
|
-
checksum = "
|
185
|
+
checksum = "012c9fef3f4a11573b2c74aec53712ff9fdae4a95f4ce452d1bbf088ee00f06b"
|
186
186
|
dependencies = [
|
187
187
|
"arrow-array",
|
188
188
|
"arrow-cast",
|
@@ -190,15 +190,14 @@ dependencies = [
|
|
190
190
|
"chrono",
|
191
191
|
"csv",
|
192
192
|
"csv-core",
|
193
|
-
"lazy_static",
|
194
193
|
"regex",
|
195
194
|
]
|
196
195
|
|
197
196
|
[[package]]
|
198
197
|
name = "arrow-data"
|
199
|
-
version = "55.
|
198
|
+
version = "55.2.0"
|
200
199
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
201
|
-
checksum = "
|
200
|
+
checksum = "8de1ce212d803199684b658fc4ba55fb2d7e87b213de5af415308d2fee3619c2"
|
202
201
|
dependencies = [
|
203
202
|
"arrow-buffer",
|
204
203
|
"arrow-schema",
|
@@ -208,9 +207,9 @@ dependencies = [
|
|
208
207
|
|
209
208
|
[[package]]
|
210
209
|
name = "arrow-ipc"
|
211
|
-
version = "55.
|
210
|
+
version = "55.2.0"
|
212
211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
213
|
-
checksum = "
|
212
|
+
checksum = "d9ea5967e8b2af39aff5d9de2197df16e305f47f404781d3230b2dc672da5d92"
|
214
213
|
dependencies = [
|
215
214
|
"arrow-array",
|
216
215
|
"arrow-buffer",
|
@@ -222,9 +221,9 @@ dependencies = [
|
|
222
221
|
|
223
222
|
[[package]]
|
224
223
|
name = "arrow-json"
|
225
|
-
version = "55.
|
224
|
+
version = "55.2.0"
|
226
225
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
227
|
-
checksum = "
|
226
|
+
checksum = "5709d974c4ea5be96d900c01576c7c0b99705f4a3eec343648cb1ca863988a9c"
|
228
227
|
dependencies = [
|
229
228
|
"arrow-array",
|
230
229
|
"arrow-buffer",
|
@@ -244,9 +243,9 @@ dependencies = [
|
|
244
243
|
|
245
244
|
[[package]]
|
246
245
|
name = "arrow-ord"
|
247
|
-
version = "55.
|
246
|
+
version = "55.2.0"
|
248
247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
249
|
-
checksum = "
|
248
|
+
checksum = "6506e3a059e3be23023f587f79c82ef0bcf6d293587e3272d20f2d30b969b5a7"
|
250
249
|
dependencies = [
|
251
250
|
"arrow-array",
|
252
251
|
"arrow-buffer",
|
@@ -257,9 +256,9 @@ dependencies = [
|
|
257
256
|
|
258
257
|
[[package]]
|
259
258
|
name = "arrow-row"
|
260
|
-
version = "55.
|
259
|
+
version = "55.2.0"
|
261
260
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
262
|
-
checksum = "
|
261
|
+
checksum = "52bf7393166beaf79b4bed9bfdf19e97472af32ce5b6b48169d321518a08cae2"
|
263
262
|
dependencies = [
|
264
263
|
"arrow-array",
|
265
264
|
"arrow-buffer",
|
@@ -270,19 +269,20 @@ dependencies = [
|
|
270
269
|
|
271
270
|
[[package]]
|
272
271
|
name = "arrow-schema"
|
273
|
-
version = "55.
|
272
|
+
version = "55.2.0"
|
274
273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
275
|
-
checksum = "
|
274
|
+
checksum = "af7686986a3bf2254c9fb130c623cdcb2f8e1f15763e7c71c310f0834da3d292"
|
276
275
|
dependencies = [
|
277
276
|
"bitflags",
|
278
277
|
"serde",
|
278
|
+
"serde_json",
|
279
279
|
]
|
280
280
|
|
281
281
|
[[package]]
|
282
282
|
name = "arrow-select"
|
283
|
-
version = "55.
|
283
|
+
version = "55.2.0"
|
284
284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
285
|
-
checksum = "
|
285
|
+
checksum = "dd2b45757d6a2373faa3352d02ff5b54b098f5e21dccebc45a21806bc34501e5"
|
286
286
|
dependencies = [
|
287
287
|
"ahash",
|
288
288
|
"arrow-array",
|
@@ -294,9 +294,9 @@ dependencies = [
|
|
294
294
|
|
295
295
|
[[package]]
|
296
296
|
name = "arrow-string"
|
297
|
-
version = "55.
|
297
|
+
version = "55.2.0"
|
298
298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
299
|
-
checksum = "
|
299
|
+
checksum = "0377d532850babb4d927a06294314b316e23311503ed580ec6ce6a0158f49d40"
|
300
300
|
dependencies = [
|
301
301
|
"arrow-array",
|
302
302
|
"arrow-buffer",
|
@@ -354,15 +354,15 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
354
354
|
|
355
355
|
[[package]]
|
356
356
|
name = "autocfg"
|
357
|
-
version = "1.
|
357
|
+
version = "1.5.0"
|
358
358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
359
|
-
checksum = "
|
359
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
360
360
|
|
361
361
|
[[package]]
|
362
362
|
name = "aws-config"
|
363
|
-
version = "1.6.
|
363
|
+
version = "1.6.3"
|
364
364
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
365
|
-
checksum = "
|
365
|
+
checksum = "02a18fd934af6ae7ca52410d4548b98eb895aab0f1ea417d168d85db1434a141"
|
366
366
|
dependencies = [
|
367
367
|
"aws-credential-types",
|
368
368
|
"aws-runtime",
|
@@ -402,9 +402,9 @@ dependencies = [
|
|
402
402
|
|
403
403
|
[[package]]
|
404
404
|
name = "aws-lc-rs"
|
405
|
-
version = "1.13.
|
405
|
+
version = "1.13.2"
|
406
406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
407
|
-
checksum = "
|
407
|
+
checksum = "08b5d4e069cbc868041a64bd68dc8cb39a0d79585cd6c5a24caa8c2d622121be"
|
408
408
|
dependencies = [
|
409
409
|
"aws-lc-sys",
|
410
410
|
"zeroize",
|
@@ -412,9 +412,9 @@ dependencies = [
|
|
412
412
|
|
413
413
|
[[package]]
|
414
414
|
name = "aws-lc-sys"
|
415
|
-
version = "0.
|
415
|
+
version = "0.30.0"
|
416
416
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
417
|
-
checksum = "
|
417
|
+
checksum = "dbfd150b5dbdb988bcc8fb1fe787eb6b7ee6180ca24da683b61ea5405f3d43ff"
|
418
418
|
dependencies = [
|
419
419
|
"bindgen",
|
420
420
|
"cc",
|
@@ -425,9 +425,9 @@ dependencies = [
|
|
425
425
|
|
426
426
|
[[package]]
|
427
427
|
name = "aws-runtime"
|
428
|
-
version = "1.5.
|
428
|
+
version = "1.5.8"
|
429
429
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
430
|
-
checksum = "
|
430
|
+
checksum = "4f6c68419d8ba16d9a7463671593c54f81ba58cab466e9b759418da606dcc2e2"
|
431
431
|
dependencies = [
|
432
432
|
"aws-credential-types",
|
433
433
|
"aws-sigv4",
|
@@ -449,9 +449,9 @@ dependencies = [
|
|
449
449
|
|
450
450
|
[[package]]
|
451
451
|
name = "aws-sdk-dynamodb"
|
452
|
-
version = "1.
|
452
|
+
version = "1.79.0"
|
453
453
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
454
|
-
checksum = "
|
454
|
+
checksum = "c3e30c5374787c7ec96b290e39a1b565c9508fee443dabcabf903ff157598fab"
|
455
455
|
dependencies = [
|
456
456
|
"aws-credential-types",
|
457
457
|
"aws-runtime",
|
@@ -465,16 +465,15 @@ dependencies = [
|
|
465
465
|
"bytes",
|
466
466
|
"fastrand",
|
467
467
|
"http 0.2.12",
|
468
|
-
"once_cell",
|
469
468
|
"regex-lite",
|
470
469
|
"tracing",
|
471
470
|
]
|
472
471
|
|
473
472
|
[[package]]
|
474
473
|
name = "aws-sdk-sso"
|
475
|
-
version = "1.
|
474
|
+
version = "1.72.0"
|
476
475
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
477
|
-
checksum = "
|
476
|
+
checksum = "13118ad30741222f67b1a18e5071385863914da05124652b38e172d6d3d9ce31"
|
478
477
|
dependencies = [
|
479
478
|
"aws-credential-types",
|
480
479
|
"aws-runtime",
|
@@ -488,16 +487,15 @@ dependencies = [
|
|
488
487
|
"bytes",
|
489
488
|
"fastrand",
|
490
489
|
"http 0.2.12",
|
491
|
-
"once_cell",
|
492
490
|
"regex-lite",
|
493
491
|
"tracing",
|
494
492
|
]
|
495
493
|
|
496
494
|
[[package]]
|
497
495
|
name = "aws-sdk-ssooidc"
|
498
|
-
version = "1.
|
496
|
+
version = "1.73.0"
|
499
497
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
500
|
-
checksum = "
|
498
|
+
checksum = "f879a8572b4683a8f84f781695bebf2f25cf11a81a2693c31fc0e0215c2c1726"
|
501
499
|
dependencies = [
|
502
500
|
"aws-credential-types",
|
503
501
|
"aws-runtime",
|
@@ -511,16 +509,15 @@ dependencies = [
|
|
511
509
|
"bytes",
|
512
510
|
"fastrand",
|
513
511
|
"http 0.2.12",
|
514
|
-
"once_cell",
|
515
512
|
"regex-lite",
|
516
513
|
"tracing",
|
517
514
|
]
|
518
515
|
|
519
516
|
[[package]]
|
520
517
|
name = "aws-sdk-sts"
|
521
|
-
version = "1.
|
518
|
+
version = "1.73.0"
|
522
519
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
523
|
-
checksum = "
|
520
|
+
checksum = "f1e9c3c24e36183e2f698235ed38dcfbbdff1d09b9232dc866c4be3011e0b47e"
|
524
521
|
dependencies = [
|
525
522
|
"aws-credential-types",
|
526
523
|
"aws-runtime",
|
@@ -535,16 +532,15 @@ dependencies = [
|
|
535
532
|
"aws-types",
|
536
533
|
"fastrand",
|
537
534
|
"http 0.2.12",
|
538
|
-
"once_cell",
|
539
535
|
"regex-lite",
|
540
536
|
"tracing",
|
541
537
|
]
|
542
538
|
|
543
539
|
[[package]]
|
544
540
|
name = "aws-sigv4"
|
545
|
-
version = "1.3.
|
541
|
+
version = "1.3.3"
|
546
542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
547
|
-
checksum = "
|
543
|
+
checksum = "ddfb9021f581b71870a17eac25b52335b82211cdc092e02b6876b2bcefa61666"
|
548
544
|
dependencies = [
|
549
545
|
"aws-credential-types",
|
550
546
|
"aws-smithy-http",
|
@@ -595,25 +591,26 @@ dependencies = [
|
|
595
591
|
|
596
592
|
[[package]]
|
597
593
|
name = "aws-smithy-http-client"
|
598
|
-
version = "1.0.
|
594
|
+
version = "1.0.6"
|
599
595
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
600
|
-
checksum = "
|
596
|
+
checksum = "f108f1ca850f3feef3009bdcc977be201bca9a91058864d9de0684e64514bee0"
|
601
597
|
dependencies = [
|
602
598
|
"aws-smithy-async",
|
603
599
|
"aws-smithy-runtime-api",
|
604
600
|
"aws-smithy-types",
|
605
|
-
"h2 0.
|
601
|
+
"h2 0.3.27",
|
602
|
+
"h2 0.4.11",
|
606
603
|
"http 0.2.12",
|
607
604
|
"http 1.3.1",
|
608
605
|
"http-body 0.4.6",
|
609
606
|
"hyper 0.14.32",
|
610
607
|
"hyper 1.6.0",
|
611
608
|
"hyper-rustls 0.24.2",
|
612
|
-
"hyper-rustls 0.27.
|
609
|
+
"hyper-rustls 0.27.7",
|
613
610
|
"hyper-util",
|
614
611
|
"pin-project-lite",
|
615
612
|
"rustls 0.21.12",
|
616
|
-
"rustls 0.23.
|
613
|
+
"rustls 0.23.29",
|
617
614
|
"rustls-native-certs 0.8.1",
|
618
615
|
"rustls-pki-types",
|
619
616
|
"tokio",
|
@@ -623,9 +620,9 @@ dependencies = [
|
|
623
620
|
|
624
621
|
[[package]]
|
625
622
|
name = "aws-smithy-json"
|
626
|
-
version = "0.61.
|
623
|
+
version = "0.61.4"
|
627
624
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
628
|
-
checksum = "
|
625
|
+
checksum = "a16e040799d29c17412943bdbf488fd75db04112d0c0d4b9290bacf5ae0014b9"
|
629
626
|
dependencies = [
|
630
627
|
"aws-smithy-types",
|
631
628
|
]
|
@@ -651,9 +648,9 @@ dependencies = [
|
|
651
648
|
|
652
649
|
[[package]]
|
653
650
|
name = "aws-smithy-runtime"
|
654
|
-
version = "1.8.
|
651
|
+
version = "1.8.4"
|
655
652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
656
|
-
checksum = "
|
653
|
+
checksum = "c3aaec682eb189e43c8a19c3dab2fe54590ad5f2cc2d26ab27608a20f2acf81c"
|
657
654
|
dependencies = [
|
658
655
|
"aws-smithy-async",
|
659
656
|
"aws-smithy-http",
|
@@ -675,9 +672,9 @@ dependencies = [
|
|
675
672
|
|
676
673
|
[[package]]
|
677
674
|
name = "aws-smithy-runtime-api"
|
678
|
-
version = "1.8.
|
675
|
+
version = "1.8.3"
|
679
676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
680
|
-
checksum = "
|
677
|
+
checksum = "9852b9226cb60b78ce9369022c0df678af1cac231c882d5da97a0c4e03be6e67"
|
681
678
|
dependencies = [
|
682
679
|
"aws-smithy-async",
|
683
680
|
"aws-smithy-types",
|
@@ -692,9 +689,9 @@ dependencies = [
|
|
692
689
|
|
693
690
|
[[package]]
|
694
691
|
name = "aws-smithy-types"
|
695
|
-
version = "1.3.
|
692
|
+
version = "1.3.2"
|
696
693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
697
|
-
checksum = "
|
694
|
+
checksum = "d498595448e43de7f4296b7b7a18a8a02c61ec9349128c80a368f7c3b4ab11a8"
|
698
695
|
dependencies = [
|
699
696
|
"base64-simd",
|
700
697
|
"bytes",
|
@@ -718,9 +715,9 @@ dependencies = [
|
|
718
715
|
|
719
716
|
[[package]]
|
720
717
|
name = "aws-smithy-xml"
|
721
|
-
version = "0.60.
|
718
|
+
version = "0.60.10"
|
722
719
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
723
|
-
checksum = "
|
720
|
+
checksum = "3db87b96cb1b16c024980f133968d52882ca0daaee3a086c6decc500f6c99728"
|
724
721
|
dependencies = [
|
725
722
|
"xmlparser",
|
726
723
|
]
|
@@ -741,9 +738,9 @@ dependencies = [
|
|
741
738
|
|
742
739
|
[[package]]
|
743
740
|
name = "backon"
|
744
|
-
version = "1.5.
|
741
|
+
version = "1.5.1"
|
745
742
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
746
|
-
checksum = "
|
743
|
+
checksum = "302eaff5357a264a2c42f127ecb8bac761cf99749fc3dc95677e2743991f99e7"
|
747
744
|
dependencies = [
|
748
745
|
"fastrand",
|
749
746
|
"tokio",
|
@@ -751,9 +748,9 @@ dependencies = [
|
|
751
748
|
|
752
749
|
[[package]]
|
753
750
|
name = "backtrace"
|
754
|
-
version = "0.3.
|
751
|
+
version = "0.3.75"
|
755
752
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
756
|
-
checksum = "
|
753
|
+
checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
|
757
754
|
dependencies = [
|
758
755
|
"addr2line",
|
759
756
|
"cfg-if",
|
@@ -824,9 +821,9 @@ dependencies = [
|
|
824
821
|
|
825
822
|
[[package]]
|
826
823
|
name = "bitflags"
|
827
|
-
version = "2.9.
|
824
|
+
version = "2.9.1"
|
828
825
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
829
|
-
checksum = "
|
826
|
+
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
|
830
827
|
|
831
828
|
[[package]]
|
832
829
|
name = "blake2"
|
@@ -861,9 +858,9 @@ dependencies = [
|
|
861
858
|
|
862
859
|
[[package]]
|
863
860
|
name = "brotli"
|
864
|
-
version = "
|
861
|
+
version = "8.0.1"
|
865
862
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
866
|
-
checksum = "
|
863
|
+
checksum = "9991eea70ea4f293524138648e41ee89b0b2b12ddef3b255effa43c8056e0e0d"
|
867
864
|
dependencies = [
|
868
865
|
"alloc-no-stdlib",
|
869
866
|
"alloc-stdlib",
|
@@ -872,9 +869,9 @@ dependencies = [
|
|
872
869
|
|
873
870
|
[[package]]
|
874
871
|
name = "brotli-decompressor"
|
875
|
-
version = "
|
872
|
+
version = "5.0.0"
|
876
873
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
877
|
-
checksum = "
|
874
|
+
checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
|
878
875
|
dependencies = [
|
879
876
|
"alloc-no-stdlib",
|
880
877
|
"alloc-stdlib",
|
@@ -882,15 +879,15 @@ dependencies = [
|
|
882
879
|
|
883
880
|
[[package]]
|
884
881
|
name = "bumpalo"
|
885
|
-
version = "3.
|
882
|
+
version = "3.19.0"
|
886
883
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
887
|
-
checksum = "
|
884
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
888
885
|
|
889
886
|
[[package]]
|
890
887
|
name = "bytemuck"
|
891
|
-
version = "1.23.
|
888
|
+
version = "1.23.1"
|
892
889
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
893
|
-
checksum = "
|
890
|
+
checksum = "5c76a5792e44e4abe34d3abf15636779261d45a7450612059293d1d2cfc63422"
|
894
891
|
|
895
892
|
[[package]]
|
896
893
|
name = "byteorder"
|
@@ -935,9 +932,9 @@ dependencies = [
|
|
935
932
|
|
936
933
|
[[package]]
|
937
934
|
name = "cc"
|
938
|
-
version = "1.2.
|
935
|
+
version = "1.2.29"
|
939
936
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
940
|
-
checksum = "
|
937
|
+
checksum = "5c1599538de2394445747c8cf7935946e3cc27e9625f889d979bfb2aaf569362"
|
941
938
|
dependencies = [
|
942
939
|
"jobserver",
|
943
940
|
"libc",
|
@@ -955,9 +952,9 @@ dependencies = [
|
|
955
952
|
|
956
953
|
[[package]]
|
957
954
|
name = "cfg-if"
|
958
|
-
version = "1.0.
|
955
|
+
version = "1.0.1"
|
959
956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
960
|
-
checksum = "
|
957
|
+
checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
|
961
958
|
|
962
959
|
[[package]]
|
963
960
|
name = "cfg_aliases"
|
@@ -982,25 +979,14 @@ dependencies = [
|
|
982
979
|
|
983
980
|
[[package]]
|
984
981
|
name = "chrono-tz"
|
985
|
-
version = "0.10.
|
982
|
+
version = "0.10.4"
|
986
983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
987
|
-
checksum = "
|
984
|
+
checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
|
988
985
|
dependencies = [
|
989
986
|
"chrono",
|
990
|
-
"chrono-tz-build",
|
991
987
|
"phf",
|
992
988
|
]
|
993
989
|
|
994
|
-
[[package]]
|
995
|
-
name = "chrono-tz-build"
|
996
|
-
version = "0.4.1"
|
997
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
998
|
-
checksum = "8f10f8c9340e31fc120ff885fcdb54a0b48e474bbd77cab557f0c30a3e569402"
|
999
|
-
dependencies = [
|
1000
|
-
"parse-zoneinfo",
|
1001
|
-
"phf_codegen",
|
1002
|
-
]
|
1003
|
-
|
1004
990
|
[[package]]
|
1005
991
|
name = "clang-sys"
|
1006
992
|
version = "1.8.1"
|
@@ -1078,9 +1064,9 @@ dependencies = [
|
|
1078
1064
|
|
1079
1065
|
[[package]]
|
1080
1066
|
name = "core-foundation"
|
1081
|
-
version = "0.10.
|
1067
|
+
version = "0.10.1"
|
1082
1068
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1083
|
-
checksum = "
|
1069
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
1084
1070
|
dependencies = [
|
1085
1071
|
"core-foundation-sys",
|
1086
1072
|
"libc",
|
@@ -1118,9 +1104,9 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
1118
1104
|
|
1119
1105
|
[[package]]
|
1120
1106
|
name = "crunchy"
|
1121
|
-
version = "0.2.
|
1107
|
+
version = "0.2.4"
|
1122
1108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1123
|
-
checksum = "
|
1109
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
1124
1110
|
|
1125
1111
|
[[package]]
|
1126
1112
|
name = "crypto-common"
|
@@ -1153,6 +1139,41 @@ dependencies = [
|
|
1153
1139
|
"memchr",
|
1154
1140
|
]
|
1155
1141
|
|
1142
|
+
[[package]]
|
1143
|
+
name = "darling"
|
1144
|
+
version = "0.20.11"
|
1145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1146
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
1147
|
+
dependencies = [
|
1148
|
+
"darling_core",
|
1149
|
+
"darling_macro",
|
1150
|
+
]
|
1151
|
+
|
1152
|
+
[[package]]
|
1153
|
+
name = "darling_core"
|
1154
|
+
version = "0.20.11"
|
1155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1156
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
1157
|
+
dependencies = [
|
1158
|
+
"fnv",
|
1159
|
+
"ident_case",
|
1160
|
+
"proc-macro2",
|
1161
|
+
"quote",
|
1162
|
+
"strsim",
|
1163
|
+
"syn",
|
1164
|
+
]
|
1165
|
+
|
1166
|
+
[[package]]
|
1167
|
+
name = "darling_macro"
|
1168
|
+
version = "0.20.11"
|
1169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1170
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
1171
|
+
dependencies = [
|
1172
|
+
"darling_core",
|
1173
|
+
"quote",
|
1174
|
+
"syn",
|
1175
|
+
]
|
1176
|
+
|
1156
1177
|
[[package]]
|
1157
1178
|
name = "dashmap"
|
1158
1179
|
version = "6.1.0"
|
@@ -1169,9 +1190,9 @@ dependencies = [
|
|
1169
1190
|
|
1170
1191
|
[[package]]
|
1171
1192
|
name = "datafusion"
|
1172
|
-
version = "
|
1193
|
+
version = "48.0.1"
|
1173
1194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1174
|
-
checksum = "
|
1195
|
+
checksum = "8a11e19a7ccc5bb979c95c1dceef663eab39c9061b3bbf8d1937faf0f03bf41f"
|
1175
1196
|
dependencies = [
|
1176
1197
|
"arrow",
|
1177
1198
|
"arrow-ipc",
|
@@ -1196,7 +1217,6 @@ dependencies = [
|
|
1196
1217
|
"datafusion-functions-nested",
|
1197
1218
|
"datafusion-functions-table",
|
1198
1219
|
"datafusion-functions-window",
|
1199
|
-
"datafusion-macros",
|
1200
1220
|
"datafusion-optimizer",
|
1201
1221
|
"datafusion-physical-expr",
|
1202
1222
|
"datafusion-physical-expr-common",
|
@@ -1211,7 +1231,7 @@ dependencies = [
|
|
1211
1231
|
"object_store",
|
1212
1232
|
"parking_lot",
|
1213
1233
|
"parquet",
|
1214
|
-
"rand 0.
|
1234
|
+
"rand 0.9.1",
|
1215
1235
|
"regex",
|
1216
1236
|
"sqlparser 0.55.0",
|
1217
1237
|
"tempfile",
|
@@ -1224,9 +1244,9 @@ dependencies = [
|
|
1224
1244
|
|
1225
1245
|
[[package]]
|
1226
1246
|
name = "datafusion-catalog"
|
1227
|
-
version = "
|
1247
|
+
version = "48.0.1"
|
1228
1248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1229
|
-
checksum = "
|
1249
|
+
checksum = "94985e67cab97b1099db2a7af11f31a45008b282aba921c1e1d35327c212ec18"
|
1230
1250
|
dependencies = [
|
1231
1251
|
"arrow",
|
1232
1252
|
"async-trait",
|
@@ -1250,9 +1270,9 @@ dependencies = [
|
|
1250
1270
|
|
1251
1271
|
[[package]]
|
1252
1272
|
name = "datafusion-catalog-listing"
|
1253
|
-
version = "
|
1273
|
+
version = "48.0.1"
|
1254
1274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1255
|
-
checksum = "
|
1275
|
+
checksum = "e002df133bdb7b0b9b429d89a69aa77b35caeadee4498b2ce1c7c23a99516988"
|
1256
1276
|
dependencies = [
|
1257
1277
|
"arrow",
|
1258
1278
|
"async-trait",
|
@@ -1273,9 +1293,9 @@ dependencies = [
|
|
1273
1293
|
|
1274
1294
|
[[package]]
|
1275
1295
|
name = "datafusion-common"
|
1276
|
-
version = "
|
1296
|
+
version = "48.0.1"
|
1277
1297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1278
|
-
checksum = "
|
1298
|
+
checksum = "e13242fc58fd753787b0a538e5ae77d356cb9d0656fa85a591a33c5f106267f6"
|
1279
1299
|
dependencies = [
|
1280
1300
|
"ahash",
|
1281
1301
|
"arrow",
|
@@ -1297,9 +1317,9 @@ dependencies = [
|
|
1297
1317
|
|
1298
1318
|
[[package]]
|
1299
1319
|
name = "datafusion-common-runtime"
|
1300
|
-
version = "
|
1320
|
+
version = "48.0.1"
|
1301
1321
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1302
|
-
checksum = "
|
1322
|
+
checksum = "d2239f964e95c3a5d6b4a8cde07e646de8995c1396a7fd62c6e784f5341db499"
|
1303
1323
|
dependencies = [
|
1304
1324
|
"futures",
|
1305
1325
|
"log",
|
@@ -1308,9 +1328,9 @@ dependencies = [
|
|
1308
1328
|
|
1309
1329
|
[[package]]
|
1310
1330
|
name = "datafusion-datasource"
|
1311
|
-
version = "
|
1331
|
+
version = "48.0.1"
|
1312
1332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1313
|
-
checksum = "
|
1333
|
+
checksum = "2cf792579bc8bf07d1b2f68c2d5382f8a63679cce8fbebfd4ba95742b6e08864"
|
1314
1334
|
dependencies = [
|
1315
1335
|
"arrow",
|
1316
1336
|
"async-compression",
|
@@ -1333,7 +1353,7 @@ dependencies = [
|
|
1333
1353
|
"log",
|
1334
1354
|
"object_store",
|
1335
1355
|
"parquet",
|
1336
|
-
"rand 0.
|
1356
|
+
"rand 0.9.1",
|
1337
1357
|
"tempfile",
|
1338
1358
|
"tokio",
|
1339
1359
|
"tokio-util",
|
@@ -1344,9 +1364,9 @@ dependencies = [
|
|
1344
1364
|
|
1345
1365
|
[[package]]
|
1346
1366
|
name = "datafusion-datasource-csv"
|
1347
|
-
version = "
|
1367
|
+
version = "48.0.1"
|
1348
1368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1349
|
-
checksum = "
|
1369
|
+
checksum = "cfc114f9a1415174f3e8d2719c371fc72092ef2195a7955404cfe6b2ba29a706"
|
1350
1370
|
dependencies = [
|
1351
1371
|
"arrow",
|
1352
1372
|
"async-trait",
|
@@ -1369,9 +1389,9 @@ dependencies = [
|
|
1369
1389
|
|
1370
1390
|
[[package]]
|
1371
1391
|
name = "datafusion-datasource-json"
|
1372
|
-
version = "
|
1392
|
+
version = "48.0.1"
|
1373
1393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1374
|
-
checksum = "
|
1394
|
+
checksum = "d88dd5e215c420a52362b9988ecd4cefd71081b730663d4f7d886f706111fc75"
|
1375
1395
|
dependencies = [
|
1376
1396
|
"arrow",
|
1377
1397
|
"async-trait",
|
@@ -1394,9 +1414,9 @@ dependencies = [
|
|
1394
1414
|
|
1395
1415
|
[[package]]
|
1396
1416
|
name = "datafusion-datasource-parquet"
|
1397
|
-
version = "
|
1417
|
+
version = "48.0.1"
|
1398
1418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1399
|
-
checksum = "
|
1419
|
+
checksum = "33692acdd1fbe75280d14f4676fe43f39e9cb36296df56575aa2cac9a819e4cf"
|
1400
1420
|
dependencies = [
|
1401
1421
|
"arrow",
|
1402
1422
|
"async-trait",
|
@@ -1419,21 +1439,21 @@ dependencies = [
|
|
1419
1439
|
"object_store",
|
1420
1440
|
"parking_lot",
|
1421
1441
|
"parquet",
|
1422
|
-
"rand 0.
|
1442
|
+
"rand 0.9.1",
|
1423
1443
|
"tokio",
|
1424
1444
|
]
|
1425
1445
|
|
1426
1446
|
[[package]]
|
1427
1447
|
name = "datafusion-doc"
|
1428
|
-
version = "
|
1448
|
+
version = "48.0.1"
|
1429
1449
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1430
|
-
checksum = "
|
1450
|
+
checksum = "e0e7b648387b0c1937b83cb328533c06c923799e73a9e3750b762667f32662c0"
|
1431
1451
|
|
1432
1452
|
[[package]]
|
1433
1453
|
name = "datafusion-execution"
|
1434
|
-
version = "
|
1454
|
+
version = "48.0.1"
|
1435
1455
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1436
|
-
checksum = "
|
1456
|
+
checksum = "9609d83d52ff8315283c6dad3b97566e877d8f366fab4c3297742f33dcd636c7"
|
1437
1457
|
dependencies = [
|
1438
1458
|
"arrow",
|
1439
1459
|
"dashmap",
|
@@ -1443,16 +1463,16 @@ dependencies = [
|
|
1443
1463
|
"log",
|
1444
1464
|
"object_store",
|
1445
1465
|
"parking_lot",
|
1446
|
-
"rand 0.
|
1466
|
+
"rand 0.9.1",
|
1447
1467
|
"tempfile",
|
1448
1468
|
"url",
|
1449
1469
|
]
|
1450
1470
|
|
1451
1471
|
[[package]]
|
1452
1472
|
name = "datafusion-expr"
|
1453
|
-
version = "
|
1473
|
+
version = "48.0.1"
|
1454
1474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1455
|
-
checksum = "
|
1475
|
+
checksum = "e75230cd67f650ef0399eb00f54d4a073698f2c0262948298e5299fc7324da63"
|
1456
1476
|
dependencies = [
|
1457
1477
|
"arrow",
|
1458
1478
|
"chrono",
|
@@ -1471,9 +1491,9 @@ dependencies = [
|
|
1471
1491
|
|
1472
1492
|
[[package]]
|
1473
1493
|
name = "datafusion-expr-common"
|
1474
|
-
version = "
|
1494
|
+
version = "48.0.1"
|
1475
1495
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1476
|
-
checksum = "
|
1496
|
+
checksum = "70fafb3a045ed6c49cfca0cd090f62cf871ca6326cc3355cb0aaf1260fa760b6"
|
1477
1497
|
dependencies = [
|
1478
1498
|
"arrow",
|
1479
1499
|
"datafusion-common",
|
@@ -1484,9 +1504,9 @@ dependencies = [
|
|
1484
1504
|
|
1485
1505
|
[[package]]
|
1486
1506
|
name = "datafusion-functions"
|
1487
|
-
version = "
|
1507
|
+
version = "48.0.1"
|
1488
1508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1489
|
-
checksum = "
|
1509
|
+
checksum = "cdf9a9cf655265861a20453b1e58357147eab59bdc90ce7f2f68f1f35104d3bb"
|
1490
1510
|
dependencies = [
|
1491
1511
|
"arrow",
|
1492
1512
|
"arrow-buffer",
|
@@ -1504,7 +1524,7 @@ dependencies = [
|
|
1504
1524
|
"itertools 0.14.0",
|
1505
1525
|
"log",
|
1506
1526
|
"md-5",
|
1507
|
-
"rand 0.
|
1527
|
+
"rand 0.9.1",
|
1508
1528
|
"regex",
|
1509
1529
|
"sha2",
|
1510
1530
|
"unicode-segmentation",
|
@@ -1513,9 +1533,9 @@ dependencies = [
|
|
1513
1533
|
|
1514
1534
|
[[package]]
|
1515
1535
|
name = "datafusion-functions-aggregate"
|
1516
|
-
version = "
|
1536
|
+
version = "48.0.1"
|
1517
1537
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1518
|
-
checksum = "
|
1538
|
+
checksum = "7f07e49733d847be0a05235e17b884d326a2fd402c97a89fe8bcf0bfba310005"
|
1519
1539
|
dependencies = [
|
1520
1540
|
"ahash",
|
1521
1541
|
"arrow",
|
@@ -1534,9 +1554,9 @@ dependencies = [
|
|
1534
1554
|
|
1535
1555
|
[[package]]
|
1536
1556
|
name = "datafusion-functions-aggregate-common"
|
1537
|
-
version = "
|
1557
|
+
version = "48.0.1"
|
1538
1558
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1539
|
-
checksum = "
|
1559
|
+
checksum = "4512607e10d72b0b0a1dc08f42cb5bd5284cb8348b7fea49dc83409493e32b1b"
|
1540
1560
|
dependencies = [
|
1541
1561
|
"ahash",
|
1542
1562
|
"arrow",
|
@@ -1547,9 +1567,9 @@ dependencies = [
|
|
1547
1567
|
|
1548
1568
|
[[package]]
|
1549
1569
|
name = "datafusion-functions-nested"
|
1550
|
-
version = "
|
1570
|
+
version = "48.0.1"
|
1551
1571
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1552
|
-
checksum = "
|
1572
|
+
checksum = "2ab331806e34f5545e5f03396e4d5068077395b1665795d8f88c14ec4f1e0b7a"
|
1553
1573
|
dependencies = [
|
1554
1574
|
"arrow",
|
1555
1575
|
"arrow-ord",
|
@@ -1568,9 +1588,9 @@ dependencies = [
|
|
1568
1588
|
|
1569
1589
|
[[package]]
|
1570
1590
|
name = "datafusion-functions-table"
|
1571
|
-
version = "
|
1591
|
+
version = "48.0.1"
|
1572
1592
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1573
|
-
checksum = "
|
1593
|
+
checksum = "d4ac2c0be983a06950ef077e34e0174aa0cb9e346f3aeae459823158037ade37"
|
1574
1594
|
dependencies = [
|
1575
1595
|
"arrow",
|
1576
1596
|
"async-trait",
|
@@ -1584,10 +1604,11 @@ dependencies = [
|
|
1584
1604
|
|
1585
1605
|
[[package]]
|
1586
1606
|
name = "datafusion-functions-window"
|
1587
|
-
version = "
|
1607
|
+
version = "48.0.1"
|
1588
1608
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1589
|
-
checksum = "
|
1609
|
+
checksum = "36f3d92731de384c90906941d36dcadf6a86d4128409a9c5cd916662baed5f53"
|
1590
1610
|
dependencies = [
|
1611
|
+
"arrow",
|
1591
1612
|
"datafusion-common",
|
1592
1613
|
"datafusion-doc",
|
1593
1614
|
"datafusion-expr",
|
@@ -1601,9 +1622,9 @@ dependencies = [
|
|
1601
1622
|
|
1602
1623
|
[[package]]
|
1603
1624
|
name = "datafusion-functions-window-common"
|
1604
|
-
version = "
|
1625
|
+
version = "48.0.1"
|
1605
1626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1606
|
-
checksum = "
|
1627
|
+
checksum = "c679f8bf0971704ec8fd4249fcbb2eb49d6a12cc3e7a840ac047b4928d3541b5"
|
1607
1628
|
dependencies = [
|
1608
1629
|
"datafusion-common",
|
1609
1630
|
"datafusion-physical-expr-common",
|
@@ -1611,9 +1632,9 @@ dependencies = [
|
|
1611
1632
|
|
1612
1633
|
[[package]]
|
1613
1634
|
name = "datafusion-macros"
|
1614
|
-
version = "
|
1635
|
+
version = "48.0.1"
|
1615
1636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1616
|
-
checksum = "
|
1637
|
+
checksum = "2821de7cb0362d12e75a5196b636a59ea3584ec1e1cc7dc6f5e34b9e8389d251"
|
1617
1638
|
dependencies = [
|
1618
1639
|
"datafusion-expr",
|
1619
1640
|
"quote",
|
@@ -1622,9 +1643,9 @@ dependencies = [
|
|
1622
1643
|
|
1623
1644
|
[[package]]
|
1624
1645
|
name = "datafusion-optimizer"
|
1625
|
-
version = "
|
1646
|
+
version = "48.0.1"
|
1626
1647
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1627
|
-
checksum = "
|
1648
|
+
checksum = "1594c7a97219ede334f25347ad8d57056621e7f4f35a0693c8da876e10dd6a53"
|
1628
1649
|
dependencies = [
|
1629
1650
|
"arrow",
|
1630
1651
|
"chrono",
|
@@ -1641,9 +1662,9 @@ dependencies = [
|
|
1641
1662
|
|
1642
1663
|
[[package]]
|
1643
1664
|
name = "datafusion-physical-expr"
|
1644
|
-
version = "
|
1665
|
+
version = "48.0.1"
|
1645
1666
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1646
|
-
checksum = "
|
1667
|
+
checksum = "dc6da0f2412088d23f6b01929dedd687b5aee63b19b674eb73d00c3eb3c883b7"
|
1647
1668
|
dependencies = [
|
1648
1669
|
"ahash",
|
1649
1670
|
"arrow",
|
@@ -1663,9 +1684,9 @@ dependencies = [
|
|
1663
1684
|
|
1664
1685
|
[[package]]
|
1665
1686
|
name = "datafusion-physical-expr-common"
|
1666
|
-
version = "
|
1687
|
+
version = "48.0.1"
|
1667
1688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1668
|
-
checksum = "
|
1689
|
+
checksum = "dcb0dbd9213078a593c3fe28783beaa625a4e6c6a6c797856ee2ba234311fb96"
|
1669
1690
|
dependencies = [
|
1670
1691
|
"ahash",
|
1671
1692
|
"arrow",
|
@@ -1677,9 +1698,9 @@ dependencies = [
|
|
1677
1698
|
|
1678
1699
|
[[package]]
|
1679
1700
|
name = "datafusion-physical-optimizer"
|
1680
|
-
version = "
|
1701
|
+
version = "48.0.1"
|
1681
1702
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1682
|
-
checksum = "
|
1703
|
+
checksum = "6d140854b2db3ef8ac611caad12bfb2e1e1de827077429322a6188f18fc0026a"
|
1683
1704
|
dependencies = [
|
1684
1705
|
"arrow",
|
1685
1706
|
"datafusion-common",
|
@@ -1696,9 +1717,9 @@ dependencies = [
|
|
1696
1717
|
|
1697
1718
|
[[package]]
|
1698
1719
|
name = "datafusion-physical-plan"
|
1699
|
-
version = "
|
1720
|
+
version = "48.0.1"
|
1700
1721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1701
|
-
checksum = "
|
1722
|
+
checksum = "b46cbdf21a01206be76d467f325273b22c559c744a012ead5018dfe79597de08"
|
1702
1723
|
dependencies = [
|
1703
1724
|
"ahash",
|
1704
1725
|
"arrow",
|
@@ -1726,9 +1747,9 @@ dependencies = [
|
|
1726
1747
|
|
1727
1748
|
[[package]]
|
1728
1749
|
name = "datafusion-proto"
|
1729
|
-
version = "
|
1750
|
+
version = "48.0.1"
|
1730
1751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1731
|
-
checksum = "
|
1752
|
+
checksum = "e3fc7a2744332c2ef8804274c21f9fa664b4ca5889169250a6fd6b649ee5d16c"
|
1732
1753
|
dependencies = [
|
1733
1754
|
"arrow",
|
1734
1755
|
"chrono",
|
@@ -1742,9 +1763,9 @@ dependencies = [
|
|
1742
1763
|
|
1743
1764
|
[[package]]
|
1744
1765
|
name = "datafusion-proto-common"
|
1745
|
-
version = "
|
1766
|
+
version = "48.0.1"
|
1746
1767
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1747
|
-
checksum = "
|
1768
|
+
checksum = "800add86852f12e3d249867425de2224c1e9fb7adc2930460548868781fbeded"
|
1748
1769
|
dependencies = [
|
1749
1770
|
"arrow",
|
1750
1771
|
"datafusion-common",
|
@@ -1753,9 +1774,9 @@ dependencies = [
|
|
1753
1774
|
|
1754
1775
|
[[package]]
|
1755
1776
|
name = "datafusion-session"
|
1756
|
-
version = "
|
1777
|
+
version = "48.0.1"
|
1757
1778
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1758
|
-
checksum = "
|
1779
|
+
checksum = "3a72733766ddb5b41534910926e8da5836622316f6283307fd9fb7e19811a59c"
|
1759
1780
|
dependencies = [
|
1760
1781
|
"arrow",
|
1761
1782
|
"async-trait",
|
@@ -1777,9 +1798,9 @@ dependencies = [
|
|
1777
1798
|
|
1778
1799
|
[[package]]
|
1779
1800
|
name = "datafusion-sql"
|
1780
|
-
version = "
|
1801
|
+
version = "48.0.1"
|
1781
1802
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1782
|
-
checksum = "
|
1803
|
+
checksum = "c5162338cdec9cc7ea13a0e6015c361acad5ec1d88d83f7c86301f789473971f"
|
1783
1804
|
dependencies = [
|
1784
1805
|
"arrow",
|
1785
1806
|
"bigdecimal",
|
@@ -1794,9 +1815,9 @@ dependencies = [
|
|
1794
1815
|
|
1795
1816
|
[[package]]
|
1796
1817
|
name = "delta_kernel"
|
1797
|
-
version = "0.
|
1818
|
+
version = "0.13.0"
|
1798
1819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1799
|
-
checksum = "
|
1820
|
+
checksum = "f06f3676832e713e44f65804cebf82f46962d3e126f64f3251eb5fbeb0ad94e4"
|
1800
1821
|
dependencies = [
|
1801
1822
|
"arrow",
|
1802
1823
|
"bytes",
|
@@ -1823,9 +1844,9 @@ dependencies = [
|
|
1823
1844
|
|
1824
1845
|
[[package]]
|
1825
1846
|
name = "delta_kernel_derive"
|
1826
|
-
version = "0.
|
1847
|
+
version = "0.13.0"
|
1827
1848
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1828
|
-
checksum = "
|
1849
|
+
checksum = "059e70a67ae0c827a0e7f393eb05db2985533b3b612f8b33243433853570db45"
|
1829
1850
|
dependencies = [
|
1830
1851
|
"proc-macro2",
|
1831
1852
|
"quote",
|
@@ -1834,13 +1855,13 @@ dependencies = [
|
|
1834
1855
|
|
1835
1856
|
[[package]]
|
1836
1857
|
name = "deltalake"
|
1837
|
-
version = "0.
|
1858
|
+
version = "0.2.0"
|
1838
1859
|
dependencies = [
|
1839
1860
|
"arrow",
|
1840
1861
|
"arrow-schema",
|
1841
1862
|
"chrono",
|
1842
1863
|
"delta_kernel",
|
1843
|
-
"deltalake 0.
|
1864
|
+
"deltalake 0.27.0",
|
1844
1865
|
"futures",
|
1845
1866
|
"magnus",
|
1846
1867
|
"num_cpus",
|
@@ -1851,10 +1872,11 @@ dependencies = [
|
|
1851
1872
|
|
1852
1873
|
[[package]]
|
1853
1874
|
name = "deltalake"
|
1854
|
-
version = "0.
|
1875
|
+
version = "0.27.0"
|
1855
1876
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1856
|
-
checksum = "
|
1877
|
+
checksum = "c0bc8093956854b2b096ca67e16bef496242a634bf477942404ab955fb99f28e"
|
1857
1878
|
dependencies = [
|
1879
|
+
"delta_kernel",
|
1858
1880
|
"deltalake-aws",
|
1859
1881
|
"deltalake-azure",
|
1860
1882
|
"deltalake-core",
|
@@ -1863,14 +1885,16 @@ dependencies = [
|
|
1863
1885
|
|
1864
1886
|
[[package]]
|
1865
1887
|
name = "deltalake-aws"
|
1866
|
-
version = "0.
|
1888
|
+
version = "0.10.0"
|
1867
1889
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1868
|
-
checksum = "
|
1890
|
+
checksum = "2d49a948b7545aaad4bc5affb4bbf9fde5c740c53c8e321df2d2772678f5825c"
|
1869
1891
|
dependencies = [
|
1870
1892
|
"async-trait",
|
1871
1893
|
"aws-config",
|
1872
1894
|
"aws-credential-types",
|
1873
1895
|
"aws-sdk-dynamodb",
|
1896
|
+
"aws-sdk-sso",
|
1897
|
+
"aws-sdk-ssooidc",
|
1874
1898
|
"aws-sdk-sts",
|
1875
1899
|
"aws-smithy-runtime-api",
|
1876
1900
|
"backon",
|
@@ -1890,9 +1914,9 @@ dependencies = [
|
|
1890
1914
|
|
1891
1915
|
[[package]]
|
1892
1916
|
name = "deltalake-azure"
|
1893
|
-
version = "0.
|
1917
|
+
version = "0.10.0"
|
1894
1918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1895
|
-
checksum = "
|
1919
|
+
checksum = "05985eea8ddd75f11c5e023541a269913c84fde3c9e1e6c0b4d24ad9955ce8bd"
|
1896
1920
|
dependencies = [
|
1897
1921
|
"async-trait",
|
1898
1922
|
"bytes",
|
@@ -1908,9 +1932,9 @@ dependencies = [
|
|
1908
1932
|
|
1909
1933
|
[[package]]
|
1910
1934
|
name = "deltalake-core"
|
1911
|
-
version = "0.
|
1935
|
+
version = "0.27.0"
|
1912
1936
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1913
|
-
checksum = "
|
1937
|
+
checksum = "5af7ca925315b5fe07ff61f8a6f12afff44fcc64a70c3a668c777d152b932ca8"
|
1914
1938
|
dependencies = [
|
1915
1939
|
"arrow",
|
1916
1940
|
"arrow-arith",
|
@@ -1929,14 +1953,7 @@ dependencies = [
|
|
1929
1953
|
"chrono",
|
1930
1954
|
"dashmap",
|
1931
1955
|
"datafusion",
|
1932
|
-
"datafusion-common",
|
1933
|
-
"datafusion-expr",
|
1934
|
-
"datafusion-functions",
|
1935
|
-
"datafusion-functions-aggregate",
|
1936
|
-
"datafusion-physical-expr",
|
1937
|
-
"datafusion-physical-plan",
|
1938
1956
|
"datafusion-proto",
|
1939
|
-
"datafusion-sql",
|
1940
1957
|
"delta_kernel",
|
1941
1958
|
"deltalake-derive",
|
1942
1959
|
"either",
|
@@ -1955,10 +1972,9 @@ dependencies = [
|
|
1955
1972
|
"pin-project-lite",
|
1956
1973
|
"rand 0.8.5",
|
1957
1974
|
"regex",
|
1958
|
-
"roaring",
|
1959
1975
|
"serde",
|
1960
1976
|
"serde_json",
|
1961
|
-
"sqlparser 0.
|
1977
|
+
"sqlparser 0.56.0",
|
1962
1978
|
"strum",
|
1963
1979
|
"thiserror",
|
1964
1980
|
"tokio",
|
@@ -1966,14 +1982,14 @@ dependencies = [
|
|
1966
1982
|
"url",
|
1967
1983
|
"urlencoding",
|
1968
1984
|
"uuid",
|
1969
|
-
"
|
1985
|
+
"validator",
|
1970
1986
|
]
|
1971
1987
|
|
1972
1988
|
[[package]]
|
1973
1989
|
name = "deltalake-derive"
|
1974
|
-
version = "0.
|
1990
|
+
version = "0.27.0"
|
1975
1991
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1976
|
-
checksum = "
|
1992
|
+
checksum = "e436342b66a8cafcb019e7ef0cc1de2b2ffad5ca246c45b7d99a4c5702849ece"
|
1977
1993
|
dependencies = [
|
1978
1994
|
"convert_case",
|
1979
1995
|
"itertools 0.14.0",
|
@@ -1984,9 +2000,9 @@ dependencies = [
|
|
1984
2000
|
|
1985
2001
|
[[package]]
|
1986
2002
|
name = "deltalake-gcp"
|
1987
|
-
version = "0.
|
2003
|
+
version = "0.11.0"
|
1988
2004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1989
|
-
checksum = "
|
2005
|
+
checksum = "297f1f1705966e27b0bfb696cf0afafcb686b5eb502ab6c5cb061174ef6dc539"
|
1990
2006
|
dependencies = [
|
1991
2007
|
"async-trait",
|
1992
2008
|
"bytes",
|
@@ -2051,12 +2067,12 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
2051
2067
|
|
2052
2068
|
[[package]]
|
2053
2069
|
name = "errno"
|
2054
|
-
version = "0.3.
|
2070
|
+
version = "0.3.13"
|
2055
2071
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2056
|
-
checksum = "
|
2072
|
+
checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
|
2057
2073
|
dependencies = [
|
2058
2074
|
"libc",
|
2059
|
-
"windows-sys 0.
|
2075
|
+
"windows-sys 0.60.2",
|
2060
2076
|
]
|
2061
2077
|
|
2062
2078
|
[[package]]
|
@@ -2083,9 +2099,9 @@ dependencies = [
|
|
2083
2099
|
|
2084
2100
|
[[package]]
|
2085
2101
|
name = "flate2"
|
2086
|
-
version = "1.1.
|
2102
|
+
version = "1.1.2"
|
2087
2103
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2088
|
-
checksum = "
|
2104
|
+
checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
|
2089
2105
|
dependencies = [
|
2090
2106
|
"crc32fast",
|
2091
2107
|
"libz-rs-sys",
|
@@ -2098,6 +2114,12 @@ version = "1.0.7"
|
|
2098
2114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2099
2115
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
2100
2116
|
|
2117
|
+
[[package]]
|
2118
|
+
name = "foldhash"
|
2119
|
+
version = "0.1.5"
|
2120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2121
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
2122
|
+
|
2101
2123
|
[[package]]
|
2102
2124
|
name = "form_urlencoded"
|
2103
2125
|
version = "1.2.1"
|
@@ -2221,15 +2243,15 @@ dependencies = [
|
|
2221
2243
|
"cfg-if",
|
2222
2244
|
"js-sys",
|
2223
2245
|
"libc",
|
2224
|
-
"wasi 0.11.
|
2246
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
2225
2247
|
"wasm-bindgen",
|
2226
2248
|
]
|
2227
2249
|
|
2228
2250
|
[[package]]
|
2229
2251
|
name = "getrandom"
|
2230
|
-
version = "0.3.
|
2252
|
+
version = "0.3.3"
|
2231
2253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2232
|
-
checksum = "
|
2254
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
2233
2255
|
dependencies = [
|
2234
2256
|
"cfg-if",
|
2235
2257
|
"js-sys",
|
@@ -2253,9 +2275,9 @@ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
2253
2275
|
|
2254
2276
|
[[package]]
|
2255
2277
|
name = "h2"
|
2256
|
-
version = "0.3.
|
2278
|
+
version = "0.3.27"
|
2257
2279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2258
|
-
checksum = "
|
2280
|
+
checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
|
2259
2281
|
dependencies = [
|
2260
2282
|
"bytes",
|
2261
2283
|
"fnv",
|
@@ -2272,9 +2294,9 @@ dependencies = [
|
|
2272
2294
|
|
2273
2295
|
[[package]]
|
2274
2296
|
name = "h2"
|
2275
|
-
version = "0.4.
|
2297
|
+
version = "0.4.11"
|
2276
2298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2277
|
-
checksum = "
|
2299
|
+
checksum = "17da50a276f1e01e0ba6c029e47b7100754904ee8a278f886546e98575380785"
|
2278
2300
|
dependencies = [
|
2279
2301
|
"atomic-waker",
|
2280
2302
|
"bytes",
|
@@ -2312,9 +2334,14 @@ dependencies = [
|
|
2312
2334
|
|
2313
2335
|
[[package]]
|
2314
2336
|
name = "hashbrown"
|
2315
|
-
version = "0.15.
|
2337
|
+
version = "0.15.4"
|
2316
2338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2317
|
-
checksum = "
|
2339
|
+
checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
|
2340
|
+
dependencies = [
|
2341
|
+
"allocator-api2",
|
2342
|
+
"equivalent",
|
2343
|
+
"foldhash",
|
2344
|
+
]
|
2318
2345
|
|
2319
2346
|
[[package]]
|
2320
2347
|
name = "heck"
|
@@ -2324,9 +2351,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
2324
2351
|
|
2325
2352
|
[[package]]
|
2326
2353
|
name = "hermit-abi"
|
2327
|
-
version = "0.
|
2354
|
+
version = "0.5.2"
|
2328
2355
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2329
|
-
checksum = "
|
2356
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
2330
2357
|
|
2331
2358
|
[[package]]
|
2332
2359
|
name = "hex"
|
@@ -2436,7 +2463,7 @@ dependencies = [
|
|
2436
2463
|
"futures-channel",
|
2437
2464
|
"futures-core",
|
2438
2465
|
"futures-util",
|
2439
|
-
"h2 0.3.
|
2466
|
+
"h2 0.3.27",
|
2440
2467
|
"http 0.2.12",
|
2441
2468
|
"http-body 0.4.6",
|
2442
2469
|
"httparse",
|
@@ -2459,7 +2486,7 @@ dependencies = [
|
|
2459
2486
|
"bytes",
|
2460
2487
|
"futures-channel",
|
2461
2488
|
"futures-util",
|
2462
|
-
"h2 0.4.
|
2489
|
+
"h2 0.4.11",
|
2463
2490
|
"http 1.3.1",
|
2464
2491
|
"http-body 1.0.1",
|
2465
2492
|
"httparse",
|
@@ -2488,15 +2515,14 @@ dependencies = [
|
|
2488
2515
|
|
2489
2516
|
[[package]]
|
2490
2517
|
name = "hyper-rustls"
|
2491
|
-
version = "0.27.
|
2518
|
+
version = "0.27.7"
|
2492
2519
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2493
|
-
checksum = "
|
2520
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
2494
2521
|
dependencies = [
|
2495
|
-
"futures-util",
|
2496
2522
|
"http 1.3.1",
|
2497
2523
|
"hyper 1.6.0",
|
2498
2524
|
"hyper-util",
|
2499
|
-
"rustls 0.23.
|
2525
|
+
"rustls 0.23.29",
|
2500
2526
|
"rustls-native-certs 0.8.1",
|
2501
2527
|
"rustls-pki-types",
|
2502
2528
|
"tokio",
|
@@ -2506,17 +2532,21 @@ dependencies = [
|
|
2506
2532
|
|
2507
2533
|
[[package]]
|
2508
2534
|
name = "hyper-util"
|
2509
|
-
version = "0.1.
|
2535
|
+
version = "0.1.15"
|
2510
2536
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2511
|
-
checksum = "
|
2537
|
+
checksum = "7f66d5bd4c6f02bf0542fad85d626775bab9258cf795a4256dcaf3161114d1df"
|
2512
2538
|
dependencies = [
|
2539
|
+
"base64 0.22.1",
|
2513
2540
|
"bytes",
|
2514
2541
|
"futures-channel",
|
2542
|
+
"futures-core",
|
2515
2543
|
"futures-util",
|
2516
2544
|
"http 1.3.1",
|
2517
2545
|
"http-body 1.0.1",
|
2518
2546
|
"hyper 1.6.0",
|
2547
|
+
"ipnet",
|
2519
2548
|
"libc",
|
2549
|
+
"percent-encoding",
|
2520
2550
|
"pin-project-lite",
|
2521
2551
|
"socket2",
|
2522
2552
|
"tokio",
|
@@ -2550,21 +2580,22 @@ dependencies = [
|
|
2550
2580
|
|
2551
2581
|
[[package]]
|
2552
2582
|
name = "icu_collections"
|
2553
|
-
version = "
|
2583
|
+
version = "2.0.0"
|
2554
2584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2555
|
-
checksum = "
|
2585
|
+
checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
|
2556
2586
|
dependencies = [
|
2557
2587
|
"displaydoc",
|
2588
|
+
"potential_utf",
|
2558
2589
|
"yoke",
|
2559
2590
|
"zerofrom",
|
2560
2591
|
"zerovec",
|
2561
2592
|
]
|
2562
2593
|
|
2563
2594
|
[[package]]
|
2564
|
-
name = "
|
2565
|
-
version = "
|
2595
|
+
name = "icu_locale_core"
|
2596
|
+
version = "2.0.0"
|
2566
2597
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2567
|
-
checksum = "
|
2598
|
+
checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
|
2568
2599
|
dependencies = [
|
2569
2600
|
"displaydoc",
|
2570
2601
|
"litemap",
|
@@ -2573,31 +2604,11 @@ dependencies = [
|
|
2573
2604
|
"zerovec",
|
2574
2605
|
]
|
2575
2606
|
|
2576
|
-
[[package]]
|
2577
|
-
name = "icu_locid_transform"
|
2578
|
-
version = "1.5.0"
|
2579
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2580
|
-
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
2581
|
-
dependencies = [
|
2582
|
-
"displaydoc",
|
2583
|
-
"icu_locid",
|
2584
|
-
"icu_locid_transform_data",
|
2585
|
-
"icu_provider",
|
2586
|
-
"tinystr",
|
2587
|
-
"zerovec",
|
2588
|
-
]
|
2589
|
-
|
2590
|
-
[[package]]
|
2591
|
-
name = "icu_locid_transform_data"
|
2592
|
-
version = "1.5.1"
|
2593
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2594
|
-
checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
|
2595
|
-
|
2596
2607
|
[[package]]
|
2597
2608
|
name = "icu_normalizer"
|
2598
|
-
version = "
|
2609
|
+
version = "2.0.0"
|
2599
2610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2600
|
-
checksum = "
|
2611
|
+
checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
|
2601
2612
|
dependencies = [
|
2602
2613
|
"displaydoc",
|
2603
2614
|
"icu_collections",
|
@@ -2605,66 +2616,59 @@ dependencies = [
|
|
2605
2616
|
"icu_properties",
|
2606
2617
|
"icu_provider",
|
2607
2618
|
"smallvec",
|
2608
|
-
"utf16_iter",
|
2609
|
-
"utf8_iter",
|
2610
|
-
"write16",
|
2611
2619
|
"zerovec",
|
2612
2620
|
]
|
2613
2621
|
|
2614
2622
|
[[package]]
|
2615
2623
|
name = "icu_normalizer_data"
|
2616
|
-
version = "
|
2624
|
+
version = "2.0.0"
|
2617
2625
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2618
|
-
checksum = "
|
2626
|
+
checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
|
2619
2627
|
|
2620
2628
|
[[package]]
|
2621
2629
|
name = "icu_properties"
|
2622
|
-
version = "
|
2630
|
+
version = "2.0.1"
|
2623
2631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2624
|
-
checksum = "
|
2632
|
+
checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
|
2625
2633
|
dependencies = [
|
2626
2634
|
"displaydoc",
|
2627
2635
|
"icu_collections",
|
2628
|
-
"
|
2636
|
+
"icu_locale_core",
|
2629
2637
|
"icu_properties_data",
|
2630
2638
|
"icu_provider",
|
2631
|
-
"
|
2639
|
+
"potential_utf",
|
2640
|
+
"zerotrie",
|
2632
2641
|
"zerovec",
|
2633
2642
|
]
|
2634
2643
|
|
2635
2644
|
[[package]]
|
2636
2645
|
name = "icu_properties_data"
|
2637
|
-
version = "
|
2646
|
+
version = "2.0.1"
|
2638
2647
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2639
|
-
checksum = "
|
2648
|
+
checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
|
2640
2649
|
|
2641
2650
|
[[package]]
|
2642
2651
|
name = "icu_provider"
|
2643
|
-
version = "
|
2652
|
+
version = "2.0.0"
|
2644
2653
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2645
|
-
checksum = "
|
2654
|
+
checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
|
2646
2655
|
dependencies = [
|
2647
2656
|
"displaydoc",
|
2648
|
-
"
|
2649
|
-
"icu_provider_macros",
|
2657
|
+
"icu_locale_core",
|
2650
2658
|
"stable_deref_trait",
|
2651
2659
|
"tinystr",
|
2652
2660
|
"writeable",
|
2653
2661
|
"yoke",
|
2654
2662
|
"zerofrom",
|
2663
|
+
"zerotrie",
|
2655
2664
|
"zerovec",
|
2656
2665
|
]
|
2657
2666
|
|
2658
2667
|
[[package]]
|
2659
|
-
name = "
|
2660
|
-
version = "1.
|
2668
|
+
name = "ident_case"
|
2669
|
+
version = "1.0.1"
|
2661
2670
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2662
|
-
checksum = "
|
2663
|
-
dependencies = [
|
2664
|
-
"proc-macro2",
|
2665
|
-
"quote",
|
2666
|
-
"syn",
|
2667
|
-
]
|
2671
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
2668
2672
|
|
2669
2673
|
[[package]]
|
2670
2674
|
name = "idna"
|
@@ -2679,9 +2683,9 @@ dependencies = [
|
|
2679
2683
|
|
2680
2684
|
[[package]]
|
2681
2685
|
name = "idna_adapter"
|
2682
|
-
version = "1.2.
|
2686
|
+
version = "1.2.1"
|
2683
2687
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2684
|
-
checksum = "
|
2688
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
2685
2689
|
dependencies = [
|
2686
2690
|
"icu_normalizer",
|
2687
2691
|
"icu_properties",
|
@@ -2689,12 +2693,12 @@ dependencies = [
|
|
2689
2693
|
|
2690
2694
|
[[package]]
|
2691
2695
|
name = "indexmap"
|
2692
|
-
version = "2.
|
2696
|
+
version = "2.10.0"
|
2693
2697
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2694
|
-
checksum = "
|
2698
|
+
checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
|
2695
2699
|
dependencies = [
|
2696
2700
|
"equivalent",
|
2697
|
-
"hashbrown 0.15.
|
2701
|
+
"hashbrown 0.15.4",
|
2698
2702
|
]
|
2699
2703
|
|
2700
2704
|
[[package]]
|
@@ -2703,12 +2707,33 @@ version = "3.0.4"
|
|
2703
2707
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2704
2708
|
checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
|
2705
2709
|
|
2710
|
+
[[package]]
|
2711
|
+
name = "io-uring"
|
2712
|
+
version = "0.7.8"
|
2713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2714
|
+
checksum = "b86e202f00093dcba4275d4636b93ef9dd75d025ae560d2521b45ea28ab49013"
|
2715
|
+
dependencies = [
|
2716
|
+
"bitflags",
|
2717
|
+
"cfg-if",
|
2718
|
+
"libc",
|
2719
|
+
]
|
2720
|
+
|
2706
2721
|
[[package]]
|
2707
2722
|
name = "ipnet"
|
2708
2723
|
version = "2.11.0"
|
2709
2724
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2710
2725
|
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
2711
2726
|
|
2727
|
+
[[package]]
|
2728
|
+
name = "iri-string"
|
2729
|
+
version = "0.7.8"
|
2730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2731
|
+
checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
|
2732
|
+
dependencies = [
|
2733
|
+
"memchr",
|
2734
|
+
"serde",
|
2735
|
+
]
|
2736
|
+
|
2712
2737
|
[[package]]
|
2713
2738
|
name = "itertools"
|
2714
2739
|
version = "0.12.1"
|
@@ -2739,7 +2764,7 @@ version = "0.1.33"
|
|
2739
2764
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2740
2765
|
checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
|
2741
2766
|
dependencies = [
|
2742
|
-
"getrandom 0.3.
|
2767
|
+
"getrandom 0.3.3",
|
2743
2768
|
"libc",
|
2744
2769
|
]
|
2745
2770
|
|
@@ -2831,31 +2856,31 @@ dependencies = [
|
|
2831
2856
|
|
2832
2857
|
[[package]]
|
2833
2858
|
name = "libc"
|
2834
|
-
version = "0.2.
|
2859
|
+
version = "0.2.174"
|
2835
2860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2836
|
-
checksum = "
|
2861
|
+
checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
|
2837
2862
|
|
2838
2863
|
[[package]]
|
2839
2864
|
name = "libloading"
|
2840
|
-
version = "0.8.
|
2865
|
+
version = "0.8.8"
|
2841
2866
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2842
|
-
checksum = "
|
2867
|
+
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
2843
2868
|
dependencies = [
|
2844
2869
|
"cfg-if",
|
2845
|
-
"windows-targets 0.
|
2870
|
+
"windows-targets 0.53.2",
|
2846
2871
|
]
|
2847
2872
|
|
2848
2873
|
[[package]]
|
2849
2874
|
name = "libm"
|
2850
|
-
version = "0.2.
|
2875
|
+
version = "0.2.15"
|
2851
2876
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2852
|
-
checksum = "
|
2877
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
2853
2878
|
|
2854
2879
|
[[package]]
|
2855
2880
|
name = "libz-rs-sys"
|
2856
|
-
version = "0.5.
|
2881
|
+
version = "0.5.1"
|
2857
2882
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2858
|
-
checksum = "
|
2883
|
+
checksum = "172a788537a2221661b480fee8dc5f96c580eb34fa88764d3205dc356c7e4221"
|
2859
2884
|
dependencies = [
|
2860
2885
|
"zlib-rs",
|
2861
2886
|
]
|
@@ -2874,15 +2899,15 @@ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
2874
2899
|
|
2875
2900
|
[[package]]
|
2876
2901
|
name = "litemap"
|
2877
|
-
version = "0.
|
2902
|
+
version = "0.8.0"
|
2878
2903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2879
|
-
checksum = "
|
2904
|
+
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
|
2880
2905
|
|
2881
2906
|
[[package]]
|
2882
2907
|
name = "lock_api"
|
2883
|
-
version = "0.4.
|
2908
|
+
version = "0.4.13"
|
2884
2909
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2885
|
-
checksum = "
|
2910
|
+
checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
|
2886
2911
|
dependencies = [
|
2887
2912
|
"autocfg",
|
2888
2913
|
"scopeguard",
|
@@ -2894,13 +2919,19 @@ version = "0.4.27"
|
|
2894
2919
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2895
2920
|
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
2896
2921
|
|
2922
|
+
[[package]]
|
2923
|
+
name = "lru-slab"
|
2924
|
+
version = "0.1.2"
|
2925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2926
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
2927
|
+
|
2897
2928
|
[[package]]
|
2898
2929
|
name = "lz4_flex"
|
2899
|
-
version = "0.11.
|
2930
|
+
version = "0.11.5"
|
2900
2931
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2901
|
-
checksum = "
|
2932
|
+
checksum = "08ab2867e3eeeca90e844d1940eab391c9dc5228783db2ed999acbc0a9ed375a"
|
2902
2933
|
dependencies = [
|
2903
|
-
"twox-hash
|
2934
|
+
"twox-hash",
|
2904
2935
|
]
|
2905
2936
|
|
2906
2937
|
[[package]]
|
@@ -2955,15 +2986,9 @@ dependencies = [
|
|
2955
2986
|
|
2956
2987
|
[[package]]
|
2957
2988
|
name = "memchr"
|
2958
|
-
version = "2.7.
|
2989
|
+
version = "2.7.5"
|
2959
2990
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2960
|
-
checksum = "
|
2961
|
-
|
2962
|
-
[[package]]
|
2963
|
-
name = "mime"
|
2964
|
-
version = "0.3.17"
|
2965
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2966
|
-
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
2991
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
2967
2992
|
|
2968
2993
|
[[package]]
|
2969
2994
|
name = "minimal-lexical"
|
@@ -2973,22 +2998,22 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
2973
2998
|
|
2974
2999
|
[[package]]
|
2975
3000
|
name = "miniz_oxide"
|
2976
|
-
version = "0.8.
|
3001
|
+
version = "0.8.9"
|
2977
3002
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2978
|
-
checksum = "
|
3003
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
2979
3004
|
dependencies = [
|
2980
3005
|
"adler2",
|
2981
3006
|
]
|
2982
3007
|
|
2983
3008
|
[[package]]
|
2984
3009
|
name = "mio"
|
2985
|
-
version = "1.0.
|
3010
|
+
version = "1.0.4"
|
2986
3011
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2987
|
-
checksum = "
|
3012
|
+
checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
|
2988
3013
|
dependencies = [
|
2989
3014
|
"libc",
|
2990
|
-
"wasi 0.11.
|
2991
|
-
"windows-sys 0.
|
3015
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
3016
|
+
"windows-sys 0.59.0",
|
2992
3017
|
]
|
2993
3018
|
|
2994
3019
|
[[package]]
|
@@ -3083,9 +3108,9 @@ dependencies = [
|
|
3083
3108
|
|
3084
3109
|
[[package]]
|
3085
3110
|
name = "num_cpus"
|
3086
|
-
version = "1.
|
3111
|
+
version = "1.17.0"
|
3087
3112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3088
|
-
checksum = "
|
3113
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
3089
3114
|
dependencies = [
|
3090
3115
|
"hermit-abi",
|
3091
3116
|
"libc",
|
@@ -3102,9 +3127,9 @@ dependencies = [
|
|
3102
3127
|
|
3103
3128
|
[[package]]
|
3104
3129
|
name = "object_store"
|
3105
|
-
version = "0.12.
|
3130
|
+
version = "0.12.2"
|
3106
3131
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3107
|
-
checksum = "
|
3132
|
+
checksum = "7781f96d79ed0f961a7021424ab01840efbda64ae7a505aaea195efc91eaaec4"
|
3108
3133
|
dependencies = [
|
3109
3134
|
"async-trait",
|
3110
3135
|
"base64 0.22.1",
|
@@ -3122,7 +3147,7 @@ dependencies = [
|
|
3122
3147
|
"parking_lot",
|
3123
3148
|
"percent-encoding",
|
3124
3149
|
"quick-xml",
|
3125
|
-
"rand 0.
|
3150
|
+
"rand 0.9.1",
|
3126
3151
|
"reqwest",
|
3127
3152
|
"ring",
|
3128
3153
|
"rustls-pemfile 2.2.0",
|
@@ -3134,6 +3159,8 @@ dependencies = [
|
|
3134
3159
|
"tracing",
|
3135
3160
|
"url",
|
3136
3161
|
"walkdir",
|
3162
|
+
"wasm-bindgen-futures",
|
3163
|
+
"web-time",
|
3137
3164
|
]
|
3138
3165
|
|
3139
3166
|
[[package]]
|
@@ -3165,9 +3192,9 @@ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
|
|
3165
3192
|
|
3166
3193
|
[[package]]
|
3167
3194
|
name = "parking_lot"
|
3168
|
-
version = "0.12.
|
3195
|
+
version = "0.12.4"
|
3169
3196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3170
|
-
checksum = "
|
3197
|
+
checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
|
3171
3198
|
dependencies = [
|
3172
3199
|
"lock_api",
|
3173
3200
|
"parking_lot_core",
|
@@ -3175,9 +3202,9 @@ dependencies = [
|
|
3175
3202
|
|
3176
3203
|
[[package]]
|
3177
3204
|
name = "parking_lot_core"
|
3178
|
-
version = "0.9.
|
3205
|
+
version = "0.9.11"
|
3179
3206
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3180
|
-
checksum = "
|
3207
|
+
checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
|
3181
3208
|
dependencies = [
|
3182
3209
|
"cfg-if",
|
3183
3210
|
"libc",
|
@@ -3188,9 +3215,9 @@ dependencies = [
|
|
3188
3215
|
|
3189
3216
|
[[package]]
|
3190
3217
|
name = "parquet"
|
3191
|
-
version = "55.
|
3218
|
+
version = "55.2.0"
|
3192
3219
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3193
|
-
checksum = "
|
3220
|
+
checksum = "b17da4150748086bd43352bc77372efa9b6e3dbd06a04831d2a98c041c225cfa"
|
3194
3221
|
dependencies = [
|
3195
3222
|
"ahash",
|
3196
3223
|
"arrow-array",
|
@@ -3207,7 +3234,7 @@ dependencies = [
|
|
3207
3234
|
"flate2",
|
3208
3235
|
"futures",
|
3209
3236
|
"half",
|
3210
|
-
"hashbrown 0.15.
|
3237
|
+
"hashbrown 0.15.4",
|
3211
3238
|
"lz4_flex",
|
3212
3239
|
"num",
|
3213
3240
|
"num-bigint",
|
@@ -3218,19 +3245,10 @@ dependencies = [
|
|
3218
3245
|
"snap",
|
3219
3246
|
"thrift",
|
3220
3247
|
"tokio",
|
3221
|
-
"twox-hash
|
3248
|
+
"twox-hash",
|
3222
3249
|
"zstd",
|
3223
3250
|
]
|
3224
3251
|
|
3225
|
-
[[package]]
|
3226
|
-
name = "parse-zoneinfo"
|
3227
|
-
version = "0.3.1"
|
3228
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3229
|
-
checksum = "1f2a05b18d44e2957b88f96ba460715e295bc1d7510468a2f3d3b44535d26c24"
|
3230
|
-
dependencies = [
|
3231
|
-
"regex",
|
3232
|
-
]
|
3233
|
-
|
3234
3252
|
[[package]]
|
3235
3253
|
name = "paste"
|
3236
3254
|
version = "1.0.15"
|
@@ -3245,48 +3263,30 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
3245
3263
|
|
3246
3264
|
[[package]]
|
3247
3265
|
name = "petgraph"
|
3248
|
-
version = "0.
|
3266
|
+
version = "0.8.2"
|
3249
3267
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3250
|
-
checksum = "
|
3268
|
+
checksum = "54acf3a685220b533e437e264e4d932cfbdc4cc7ec0cd232ed73c08d03b8a7ca"
|
3251
3269
|
dependencies = [
|
3252
3270
|
"fixedbitset",
|
3271
|
+
"hashbrown 0.15.4",
|
3253
3272
|
"indexmap",
|
3273
|
+
"serde",
|
3254
3274
|
]
|
3255
3275
|
|
3256
3276
|
[[package]]
|
3257
3277
|
name = "phf"
|
3258
|
-
version = "0.
|
3259
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3260
|
-
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
3261
|
-
dependencies = [
|
3262
|
-
"phf_shared",
|
3263
|
-
]
|
3264
|
-
|
3265
|
-
[[package]]
|
3266
|
-
name = "phf_codegen"
|
3267
|
-
version = "0.11.3"
|
3268
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3269
|
-
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
3270
|
-
dependencies = [
|
3271
|
-
"phf_generator",
|
3272
|
-
"phf_shared",
|
3273
|
-
]
|
3274
|
-
|
3275
|
-
[[package]]
|
3276
|
-
name = "phf_generator"
|
3277
|
-
version = "0.11.3"
|
3278
|
+
version = "0.12.1"
|
3278
3279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3279
|
-
checksum = "
|
3280
|
+
checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
|
3280
3281
|
dependencies = [
|
3281
3282
|
"phf_shared",
|
3282
|
-
"rand 0.8.5",
|
3283
3283
|
]
|
3284
3284
|
|
3285
3285
|
[[package]]
|
3286
3286
|
name = "phf_shared"
|
3287
|
-
version = "0.
|
3287
|
+
version = "0.12.1"
|
3288
3288
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3289
|
-
checksum = "
|
3289
|
+
checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
|
3290
3290
|
dependencies = [
|
3291
3291
|
"siphasher",
|
3292
3292
|
]
|
@@ -3309,6 +3309,15 @@ version = "0.3.32"
|
|
3309
3309
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3310
3310
|
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
3311
3311
|
|
3312
|
+
[[package]]
|
3313
|
+
name = "potential_utf"
|
3314
|
+
version = "0.1.2"
|
3315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3316
|
+
checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
|
3317
|
+
dependencies = [
|
3318
|
+
"zerovec",
|
3319
|
+
]
|
3320
|
+
|
3312
3321
|
[[package]]
|
3313
3322
|
name = "powerfmt"
|
3314
3323
|
version = "0.2.0"
|
@@ -3321,16 +3330,38 @@ version = "0.2.21"
|
|
3321
3330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3322
3331
|
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
3323
3332
|
dependencies = [
|
3324
|
-
"zerocopy
|
3333
|
+
"zerocopy",
|
3325
3334
|
]
|
3326
3335
|
|
3327
3336
|
[[package]]
|
3328
3337
|
name = "prettyplease"
|
3329
|
-
version = "0.2.
|
3338
|
+
version = "0.2.35"
|
3339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3340
|
+
checksum = "061c1221631e079b26479d25bbf2275bfe5917ae8419cd7e34f13bfc2aa7539a"
|
3341
|
+
dependencies = [
|
3342
|
+
"proc-macro2",
|
3343
|
+
"syn",
|
3344
|
+
]
|
3345
|
+
|
3346
|
+
[[package]]
|
3347
|
+
name = "proc-macro-error-attr2"
|
3348
|
+
version = "2.0.0"
|
3330
3349
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3331
|
-
checksum = "
|
3350
|
+
checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
|
3332
3351
|
dependencies = [
|
3333
3352
|
"proc-macro2",
|
3353
|
+
"quote",
|
3354
|
+
]
|
3355
|
+
|
3356
|
+
[[package]]
|
3357
|
+
name = "proc-macro-error2"
|
3358
|
+
version = "2.0.1"
|
3359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3360
|
+
checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
|
3361
|
+
dependencies = [
|
3362
|
+
"proc-macro-error-attr2",
|
3363
|
+
"proc-macro2",
|
3364
|
+
"quote",
|
3334
3365
|
"syn",
|
3335
3366
|
]
|
3336
3367
|
|
@@ -3387,9 +3418,9 @@ dependencies = [
|
|
3387
3418
|
|
3388
3419
|
[[package]]
|
3389
3420
|
name = "quinn"
|
3390
|
-
version = "0.11.
|
3421
|
+
version = "0.11.8"
|
3391
3422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3392
|
-
checksum = "
|
3423
|
+
checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8"
|
3393
3424
|
dependencies = [
|
3394
3425
|
"bytes",
|
3395
3426
|
"cfg_aliases",
|
@@ -3397,7 +3428,7 @@ dependencies = [
|
|
3397
3428
|
"quinn-proto",
|
3398
3429
|
"quinn-udp",
|
3399
3430
|
"rustc-hash 2.1.1",
|
3400
|
-
"rustls 0.23.
|
3431
|
+
"rustls 0.23.29",
|
3401
3432
|
"socket2",
|
3402
3433
|
"thiserror",
|
3403
3434
|
"tokio",
|
@@ -3407,16 +3438,17 @@ dependencies = [
|
|
3407
3438
|
|
3408
3439
|
[[package]]
|
3409
3440
|
name = "quinn-proto"
|
3410
|
-
version = "0.11.
|
3441
|
+
version = "0.11.12"
|
3411
3442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3412
|
-
checksum = "
|
3443
|
+
checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e"
|
3413
3444
|
dependencies = [
|
3414
3445
|
"bytes",
|
3415
|
-
"getrandom 0.3.
|
3446
|
+
"getrandom 0.3.3",
|
3447
|
+
"lru-slab",
|
3416
3448
|
"rand 0.9.1",
|
3417
3449
|
"ring",
|
3418
3450
|
"rustc-hash 2.1.1",
|
3419
|
-
"rustls 0.23.
|
3451
|
+
"rustls 0.23.29",
|
3420
3452
|
"rustls-pki-types",
|
3421
3453
|
"slab",
|
3422
3454
|
"thiserror",
|
@@ -3427,9 +3459,9 @@ dependencies = [
|
|
3427
3459
|
|
3428
3460
|
[[package]]
|
3429
3461
|
name = "quinn-udp"
|
3430
|
-
version = "0.5.
|
3462
|
+
version = "0.5.13"
|
3431
3463
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3432
|
-
checksum = "
|
3464
|
+
checksum = "fcebb1209ee276352ef14ff8732e24cc2b02bbac986cd74a4c81bcb2f9881970"
|
3433
3465
|
dependencies = [
|
3434
3466
|
"cfg_aliases",
|
3435
3467
|
"libc",
|
@@ -3450,9 +3482,9 @@ dependencies = [
|
|
3450
3482
|
|
3451
3483
|
[[package]]
|
3452
3484
|
name = "r-efi"
|
3453
|
-
version = "5.
|
3485
|
+
version = "5.3.0"
|
3454
3486
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3455
|
-
checksum = "
|
3487
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
3456
3488
|
|
3457
3489
|
[[package]]
|
3458
3490
|
name = "rand"
|
@@ -3510,23 +3542,23 @@ version = "0.9.3"
|
|
3510
3542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3511
3543
|
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
3512
3544
|
dependencies = [
|
3513
|
-
"getrandom 0.3.
|
3545
|
+
"getrandom 0.3.3",
|
3514
3546
|
]
|
3515
3547
|
|
3516
3548
|
[[package]]
|
3517
3549
|
name = "rb-sys"
|
3518
|
-
version = "0.9.
|
3550
|
+
version = "0.9.116"
|
3519
3551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3520
|
-
checksum = "
|
3552
|
+
checksum = "7059846f68396df83155779c75336ca24567741cb95256e6308c9fcc370e8dad"
|
3521
3553
|
dependencies = [
|
3522
3554
|
"rb-sys-build",
|
3523
3555
|
]
|
3524
3556
|
|
3525
3557
|
[[package]]
|
3526
3558
|
name = "rb-sys-build"
|
3527
|
-
version = "0.9.
|
3559
|
+
version = "0.9.116"
|
3528
3560
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3529
|
-
checksum = "
|
3561
|
+
checksum = "ac217510df41b9ffc041573e68d7a02aaff770c49943c7494441c4b224b0ecd0"
|
3530
3562
|
dependencies = [
|
3531
3563
|
"bindgen",
|
3532
3564
|
"lazy_static",
|
@@ -3565,9 +3597,9 @@ dependencies = [
|
|
3565
3597
|
|
3566
3598
|
[[package]]
|
3567
3599
|
name = "redox_syscall"
|
3568
|
-
version = "0.5.
|
3600
|
+
version = "0.5.13"
|
3569
3601
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3570
|
-
checksum = "
|
3602
|
+
checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6"
|
3571
3603
|
dependencies = [
|
3572
3604
|
"bitflags",
|
3573
3605
|
]
|
@@ -3609,32 +3641,28 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
3609
3641
|
|
3610
3642
|
[[package]]
|
3611
3643
|
name = "reqwest"
|
3612
|
-
version = "0.12.
|
3644
|
+
version = "0.12.22"
|
3613
3645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3614
|
-
checksum = "
|
3646
|
+
checksum = "cbc931937e6ca3a06e3b6c0aa7841849b160a90351d6ab467a8b9b9959767531"
|
3615
3647
|
dependencies = [
|
3616
3648
|
"base64 0.22.1",
|
3617
3649
|
"bytes",
|
3618
3650
|
"futures-core",
|
3619
3651
|
"futures-util",
|
3620
|
-
"h2 0.4.
|
3652
|
+
"h2 0.4.11",
|
3621
3653
|
"http 1.3.1",
|
3622
3654
|
"http-body 1.0.1",
|
3623
3655
|
"http-body-util",
|
3624
3656
|
"hyper 1.6.0",
|
3625
|
-
"hyper-rustls 0.27.
|
3657
|
+
"hyper-rustls 0.27.7",
|
3626
3658
|
"hyper-util",
|
3627
|
-
"ipnet",
|
3628
3659
|
"js-sys",
|
3629
3660
|
"log",
|
3630
|
-
"mime",
|
3631
|
-
"once_cell",
|
3632
3661
|
"percent-encoding",
|
3633
3662
|
"pin-project-lite",
|
3634
3663
|
"quinn",
|
3635
|
-
"rustls 0.23.
|
3664
|
+
"rustls 0.23.29",
|
3636
3665
|
"rustls-native-certs 0.8.1",
|
3637
|
-
"rustls-pemfile 2.2.0",
|
3638
3666
|
"rustls-pki-types",
|
3639
3667
|
"serde",
|
3640
3668
|
"serde_json",
|
@@ -3644,13 +3672,13 @@ dependencies = [
|
|
3644
3672
|
"tokio-rustls 0.26.2",
|
3645
3673
|
"tokio-util",
|
3646
3674
|
"tower",
|
3675
|
+
"tower-http",
|
3647
3676
|
"tower-service",
|
3648
3677
|
"url",
|
3649
3678
|
"wasm-bindgen",
|
3650
3679
|
"wasm-bindgen-futures",
|
3651
3680
|
"wasm-streams",
|
3652
3681
|
"web-sys",
|
3653
|
-
"windows-registry",
|
3654
3682
|
]
|
3655
3683
|
|
3656
3684
|
[[package]]
|
@@ -3679,9 +3707,9 @@ dependencies = [
|
|
3679
3707
|
|
3680
3708
|
[[package]]
|
3681
3709
|
name = "rustc-demangle"
|
3682
|
-
version = "0.1.
|
3710
|
+
version = "0.1.25"
|
3683
3711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3684
|
-
checksum = "
|
3712
|
+
checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f"
|
3685
3713
|
|
3686
3714
|
[[package]]
|
3687
3715
|
name = "rustc-hash"
|
@@ -3744,15 +3772,15 @@ dependencies = [
|
|
3744
3772
|
|
3745
3773
|
[[package]]
|
3746
3774
|
name = "rustls"
|
3747
|
-
version = "0.23.
|
3775
|
+
version = "0.23.29"
|
3748
3776
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3749
|
-
checksum = "
|
3777
|
+
checksum = "2491382039b29b9b11ff08b76ff6c97cf287671dbb74f0be44bda389fffe9bd1"
|
3750
3778
|
dependencies = [
|
3751
3779
|
"aws-lc-rs",
|
3752
3780
|
"once_cell",
|
3753
3781
|
"ring",
|
3754
3782
|
"rustls-pki-types",
|
3755
|
-
"rustls-webpki 0.103.
|
3783
|
+
"rustls-webpki 0.103.4",
|
3756
3784
|
"subtle",
|
3757
3785
|
"zeroize",
|
3758
3786
|
]
|
@@ -3801,11 +3829,12 @@ dependencies = [
|
|
3801
3829
|
|
3802
3830
|
[[package]]
|
3803
3831
|
name = "rustls-pki-types"
|
3804
|
-
version = "1.
|
3832
|
+
version = "1.12.0"
|
3805
3833
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3806
|
-
checksum = "
|
3834
|
+
checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
|
3807
3835
|
dependencies = [
|
3808
3836
|
"web-time",
|
3837
|
+
"zeroize",
|
3809
3838
|
]
|
3810
3839
|
|
3811
3840
|
[[package]]
|
@@ -3820,9 +3849,9 @@ dependencies = [
|
|
3820
3849
|
|
3821
3850
|
[[package]]
|
3822
3851
|
name = "rustls-webpki"
|
3823
|
-
version = "0.103.
|
3852
|
+
version = "0.103.4"
|
3824
3853
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3825
|
-
checksum = "
|
3854
|
+
checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
|
3826
3855
|
dependencies = [
|
3827
3856
|
"aws-lc-rs",
|
3828
3857
|
"ring",
|
@@ -3832,9 +3861,9 @@ dependencies = [
|
|
3832
3861
|
|
3833
3862
|
[[package]]
|
3834
3863
|
name = "rustversion"
|
3835
|
-
version = "1.0.
|
3864
|
+
version = "1.0.21"
|
3836
3865
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3837
|
-
checksum = "
|
3866
|
+
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
|
3838
3867
|
|
3839
3868
|
[[package]]
|
3840
3869
|
name = "ryu"
|
@@ -3896,7 +3925,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3896
3925
|
checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
|
3897
3926
|
dependencies = [
|
3898
3927
|
"bitflags",
|
3899
|
-
"core-foundation 0.10.
|
3928
|
+
"core-foundation 0.10.1",
|
3900
3929
|
"core-foundation-sys",
|
3901
3930
|
"libc",
|
3902
3931
|
"security-framework-sys",
|
@@ -4014,18 +4043,15 @@ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
4014
4043
|
|
4015
4044
|
[[package]]
|
4016
4045
|
name = "slab"
|
4017
|
-
version = "0.4.
|
4046
|
+
version = "0.4.10"
|
4018
4047
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4019
|
-
checksum = "
|
4020
|
-
dependencies = [
|
4021
|
-
"autocfg",
|
4022
|
-
]
|
4048
|
+
checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
|
4023
4049
|
|
4024
4050
|
[[package]]
|
4025
4051
|
name = "smallvec"
|
4026
|
-
version = "1.15.
|
4052
|
+
version = "1.15.1"
|
4027
4053
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4028
|
-
checksum = "
|
4054
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
4029
4055
|
|
4030
4056
|
[[package]]
|
4031
4057
|
name = "snap"
|
@@ -4035,9 +4061,9 @@ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
|
4035
4061
|
|
4036
4062
|
[[package]]
|
4037
4063
|
name = "socket2"
|
4038
|
-
version = "0.5.
|
4064
|
+
version = "0.5.10"
|
4039
4065
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4040
|
-
checksum = "
|
4066
|
+
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
|
4041
4067
|
dependencies = [
|
4042
4068
|
"libc",
|
4043
4069
|
"windows-sys 0.52.0",
|
@@ -4045,22 +4071,23 @@ dependencies = [
|
|
4045
4071
|
|
4046
4072
|
[[package]]
|
4047
4073
|
name = "sqlparser"
|
4048
|
-
version = "0.
|
4074
|
+
version = "0.55.0"
|
4049
4075
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4050
|
-
checksum = "
|
4076
|
+
checksum = "c4521174166bac1ff04fe16ef4524c70144cd29682a45978978ca3d7f4e0be11"
|
4051
4077
|
dependencies = [
|
4052
4078
|
"log",
|
4079
|
+
"recursive",
|
4080
|
+
"sqlparser_derive",
|
4053
4081
|
]
|
4054
4082
|
|
4055
4083
|
[[package]]
|
4056
4084
|
name = "sqlparser"
|
4057
|
-
version = "0.
|
4085
|
+
version = "0.56.0"
|
4058
4086
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4059
|
-
checksum = "
|
4087
|
+
checksum = "e68feb51ffa54fc841e086f58da543facfe3d7ae2a60d69b0a8cbbd30d16ae8d"
|
4060
4088
|
dependencies = [
|
4061
4089
|
"log",
|
4062
4090
|
"recursive",
|
4063
|
-
"sqlparser_derive",
|
4064
4091
|
]
|
4065
4092
|
|
4066
4093
|
[[package]]
|
@@ -4099,6 +4126,12 @@ version = "1.1.0"
|
|
4099
4126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4100
4127
|
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
4101
4128
|
|
4129
|
+
[[package]]
|
4130
|
+
name = "strsim"
|
4131
|
+
version = "0.11.1"
|
4132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4133
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
4134
|
+
|
4102
4135
|
[[package]]
|
4103
4136
|
name = "strum"
|
4104
4137
|
version = "0.27.1"
|
@@ -4129,9 +4162,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
4129
4162
|
|
4130
4163
|
[[package]]
|
4131
4164
|
name = "syn"
|
4132
|
-
version = "2.0.
|
4165
|
+
version = "2.0.104"
|
4133
4166
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4134
|
-
checksum = "
|
4167
|
+
checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
|
4135
4168
|
dependencies = [
|
4136
4169
|
"proc-macro2",
|
4137
4170
|
"quote",
|
@@ -4160,12 +4193,12 @@ dependencies = [
|
|
4160
4193
|
|
4161
4194
|
[[package]]
|
4162
4195
|
name = "tempfile"
|
4163
|
-
version = "3.
|
4196
|
+
version = "3.20.0"
|
4164
4197
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4165
|
-
checksum = "
|
4198
|
+
checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
|
4166
4199
|
dependencies = [
|
4167
4200
|
"fastrand",
|
4168
|
-
"getrandom 0.3.
|
4201
|
+
"getrandom 0.3.3",
|
4169
4202
|
"once_cell",
|
4170
4203
|
"rustix 1.0.7",
|
4171
4204
|
"windows-sys 0.59.0",
|
@@ -4243,9 +4276,9 @@ dependencies = [
|
|
4243
4276
|
|
4244
4277
|
[[package]]
|
4245
4278
|
name = "tinystr"
|
4246
|
-
version = "0.
|
4279
|
+
version = "0.8.1"
|
4247
4280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4248
|
-
checksum = "
|
4281
|
+
checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
|
4249
4282
|
dependencies = [
|
4250
4283
|
"displaydoc",
|
4251
4284
|
"zerovec",
|
@@ -4268,17 +4301,19 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
4268
4301
|
|
4269
4302
|
[[package]]
|
4270
4303
|
name = "tokio"
|
4271
|
-
version = "1.
|
4304
|
+
version = "1.46.1"
|
4272
4305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4273
|
-
checksum = "
|
4306
|
+
checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17"
|
4274
4307
|
dependencies = [
|
4275
4308
|
"backtrace",
|
4276
4309
|
"bytes",
|
4310
|
+
"io-uring",
|
4277
4311
|
"libc",
|
4278
4312
|
"mio",
|
4279
4313
|
"parking_lot",
|
4280
4314
|
"pin-project-lite",
|
4281
4315
|
"signal-hook-registry",
|
4316
|
+
"slab",
|
4282
4317
|
"socket2",
|
4283
4318
|
"tokio-macros",
|
4284
4319
|
"windows-sys 0.52.0",
|
@@ -4311,7 +4346,7 @@ version = "0.26.2"
|
|
4311
4346
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4312
4347
|
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
|
4313
4348
|
dependencies = [
|
4314
|
-
"rustls 0.23.
|
4349
|
+
"rustls 0.23.29",
|
4315
4350
|
"tokio",
|
4316
4351
|
]
|
4317
4352
|
|
@@ -4343,6 +4378,24 @@ dependencies = [
|
|
4343
4378
|
"tower-service",
|
4344
4379
|
]
|
4345
4380
|
|
4381
|
+
[[package]]
|
4382
|
+
name = "tower-http"
|
4383
|
+
version = "0.6.6"
|
4384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4385
|
+
checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
|
4386
|
+
dependencies = [
|
4387
|
+
"bitflags",
|
4388
|
+
"bytes",
|
4389
|
+
"futures-util",
|
4390
|
+
"http 1.3.1",
|
4391
|
+
"http-body 1.0.1",
|
4392
|
+
"iri-string",
|
4393
|
+
"pin-project-lite",
|
4394
|
+
"tower",
|
4395
|
+
"tower-layer",
|
4396
|
+
"tower-service",
|
4397
|
+
]
|
4398
|
+
|
4346
4399
|
[[package]]
|
4347
4400
|
name = "tower-layer"
|
4348
4401
|
version = "0.3.3"
|
@@ -4369,9 +4422,9 @@ dependencies = [
|
|
4369
4422
|
|
4370
4423
|
[[package]]
|
4371
4424
|
name = "tracing-attributes"
|
4372
|
-
version = "0.1.
|
4425
|
+
version = "0.1.30"
|
4373
4426
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4374
|
-
checksum = "
|
4427
|
+
checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
|
4375
4428
|
dependencies = [
|
4376
4429
|
"proc-macro2",
|
4377
4430
|
"quote",
|
@@ -4380,9 +4433,9 @@ dependencies = [
|
|
4380
4433
|
|
4381
4434
|
[[package]]
|
4382
4435
|
name = "tracing-core"
|
4383
|
-
version = "0.1.
|
4436
|
+
version = "0.1.34"
|
4384
4437
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4385
|
-
checksum = "
|
4438
|
+
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
|
4386
4439
|
dependencies = [
|
4387
4440
|
"once_cell",
|
4388
4441
|
]
|
@@ -4395,19 +4448,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
4395
4448
|
|
4396
4449
|
[[package]]
|
4397
4450
|
name = "twox-hash"
|
4398
|
-
version = "1.
|
4399
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4400
|
-
checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
|
4401
|
-
dependencies = [
|
4402
|
-
"cfg-if",
|
4403
|
-
"static_assertions",
|
4404
|
-
]
|
4405
|
-
|
4406
|
-
[[package]]
|
4407
|
-
name = "twox-hash"
|
4408
|
-
version = "2.1.0"
|
4451
|
+
version = "2.1.1"
|
4409
4452
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4410
|
-
checksum = "
|
4453
|
+
checksum = "8b907da542cbced5261bd3256de1b3a1bf340a3d37f93425a07362a1d687de56"
|
4411
4454
|
|
4412
4455
|
[[package]]
|
4413
4456
|
name = "typenum"
|
@@ -4429,9 +4472,9 @@ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
4429
4472
|
|
4430
4473
|
[[package]]
|
4431
4474
|
name = "unicode-width"
|
4432
|
-
version = "0.2.
|
4475
|
+
version = "0.2.1"
|
4433
4476
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4434
|
-
checksum = "
|
4477
|
+
checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
|
4435
4478
|
|
4436
4479
|
[[package]]
|
4437
4480
|
name = "untrusted"
|
@@ -4448,6 +4491,7 @@ dependencies = [
|
|
4448
4491
|
"form_urlencoded",
|
4449
4492
|
"idna",
|
4450
4493
|
"percent-encoding",
|
4494
|
+
"serde",
|
4451
4495
|
]
|
4452
4496
|
|
4453
4497
|
[[package]]
|
@@ -4456,12 +4500,6 @@ version = "2.1.3"
|
|
4456
4500
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4457
4501
|
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
4458
4502
|
|
4459
|
-
[[package]]
|
4460
|
-
name = "utf16_iter"
|
4461
|
-
version = "1.0.5"
|
4462
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4463
|
-
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
4464
|
-
|
4465
4503
|
[[package]]
|
4466
4504
|
name = "utf8_iter"
|
4467
4505
|
version = "1.0.4"
|
@@ -4470,17 +4508,47 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
4470
4508
|
|
4471
4509
|
[[package]]
|
4472
4510
|
name = "uuid"
|
4473
|
-
version = "1.
|
4511
|
+
version = "1.17.0"
|
4474
4512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4475
|
-
checksum = "
|
4513
|
+
checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
|
4476
4514
|
dependencies = [
|
4477
|
-
"getrandom 0.3.
|
4515
|
+
"getrandom 0.3.3",
|
4478
4516
|
"js-sys",
|
4479
4517
|
"rand 0.9.1",
|
4480
4518
|
"serde",
|
4481
4519
|
"wasm-bindgen",
|
4482
4520
|
]
|
4483
4521
|
|
4522
|
+
[[package]]
|
4523
|
+
name = "validator"
|
4524
|
+
version = "0.19.0"
|
4525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4526
|
+
checksum = "d0b4a29d8709210980a09379f27ee31549b73292c87ab9899beee1c0d3be6303"
|
4527
|
+
dependencies = [
|
4528
|
+
"idna",
|
4529
|
+
"once_cell",
|
4530
|
+
"regex",
|
4531
|
+
"serde",
|
4532
|
+
"serde_derive",
|
4533
|
+
"serde_json",
|
4534
|
+
"url",
|
4535
|
+
"validator_derive",
|
4536
|
+
]
|
4537
|
+
|
4538
|
+
[[package]]
|
4539
|
+
name = "validator_derive"
|
4540
|
+
version = "0.19.0"
|
4541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4542
|
+
checksum = "bac855a2ce6f843beb229757e6e570a42e837bcb15e5f449dd48d5747d41bf77"
|
4543
|
+
dependencies = [
|
4544
|
+
"darling",
|
4545
|
+
"once_cell",
|
4546
|
+
"proc-macro-error2",
|
4547
|
+
"proc-macro2",
|
4548
|
+
"quote",
|
4549
|
+
"syn",
|
4550
|
+
]
|
4551
|
+
|
4484
4552
|
[[package]]
|
4485
4553
|
name = "version_check"
|
4486
4554
|
version = "0.9.5"
|
@@ -4514,9 +4582,9 @@ dependencies = [
|
|
4514
4582
|
|
4515
4583
|
[[package]]
|
4516
4584
|
name = "wasi"
|
4517
|
-
version = "0.11.
|
4585
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
4518
4586
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4519
|
-
checksum = "
|
4587
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
4520
4588
|
|
4521
4589
|
[[package]]
|
4522
4590
|
name = "wasi"
|
@@ -4654,15 +4722,15 @@ dependencies = [
|
|
4654
4722
|
|
4655
4723
|
[[package]]
|
4656
4724
|
name = "windows-core"
|
4657
|
-
version = "0.61.
|
4725
|
+
version = "0.61.2"
|
4658
4726
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4659
|
-
checksum = "
|
4727
|
+
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
4660
4728
|
dependencies = [
|
4661
4729
|
"windows-implement",
|
4662
4730
|
"windows-interface",
|
4663
4731
|
"windows-link",
|
4664
4732
|
"windows-result",
|
4665
|
-
"windows-strings
|
4733
|
+
"windows-strings",
|
4666
4734
|
]
|
4667
4735
|
|
4668
4736
|
[[package]]
|
@@ -4689,44 +4757,24 @@ dependencies = [
|
|
4689
4757
|
|
4690
4758
|
[[package]]
|
4691
4759
|
name = "windows-link"
|
4692
|
-
version = "0.1.
|
4693
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4694
|
-
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
4695
|
-
|
4696
|
-
[[package]]
|
4697
|
-
name = "windows-registry"
|
4698
|
-
version = "0.4.0"
|
4760
|
+
version = "0.1.3"
|
4699
4761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4700
|
-
checksum = "
|
4701
|
-
dependencies = [
|
4702
|
-
"windows-result",
|
4703
|
-
"windows-strings 0.3.1",
|
4704
|
-
"windows-targets 0.53.0",
|
4705
|
-
]
|
4762
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
4706
4763
|
|
4707
4764
|
[[package]]
|
4708
4765
|
name = "windows-result"
|
4709
|
-
version = "0.3.
|
4766
|
+
version = "0.3.4"
|
4710
4767
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4711
|
-
checksum = "
|
4768
|
+
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
4712
4769
|
dependencies = [
|
4713
4770
|
"windows-link",
|
4714
4771
|
]
|
4715
4772
|
|
4716
4773
|
[[package]]
|
4717
4774
|
name = "windows-strings"
|
4718
|
-
version = "0.
|
4719
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4720
|
-
checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
|
4721
|
-
dependencies = [
|
4722
|
-
"windows-link",
|
4723
|
-
]
|
4724
|
-
|
4725
|
-
[[package]]
|
4726
|
-
name = "windows-strings"
|
4727
|
-
version = "0.4.0"
|
4775
|
+
version = "0.4.2"
|
4728
4776
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4729
|
-
checksum = "
|
4777
|
+
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
4730
4778
|
dependencies = [
|
4731
4779
|
"windows-link",
|
4732
4780
|
]
|
@@ -4749,6 +4797,15 @@ dependencies = [
|
|
4749
4797
|
"windows-targets 0.52.6",
|
4750
4798
|
]
|
4751
4799
|
|
4800
|
+
[[package]]
|
4801
|
+
name = "windows-sys"
|
4802
|
+
version = "0.60.2"
|
4803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4804
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
4805
|
+
dependencies = [
|
4806
|
+
"windows-targets 0.53.2",
|
4807
|
+
]
|
4808
|
+
|
4752
4809
|
[[package]]
|
4753
4810
|
name = "windows-targets"
|
4754
4811
|
version = "0.52.6"
|
@@ -4767,9 +4824,9 @@ dependencies = [
|
|
4767
4824
|
|
4768
4825
|
[[package]]
|
4769
4826
|
name = "windows-targets"
|
4770
|
-
version = "0.53.
|
4827
|
+
version = "0.53.2"
|
4771
4828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4772
|
-
checksum = "
|
4829
|
+
checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
|
4773
4830
|
dependencies = [
|
4774
4831
|
"windows_aarch64_gnullvm 0.53.0",
|
4775
4832
|
"windows_aarch64_msvc 0.53.0",
|
@@ -4886,17 +4943,11 @@ dependencies = [
|
|
4886
4943
|
"bitflags",
|
4887
4944
|
]
|
4888
4945
|
|
4889
|
-
[[package]]
|
4890
|
-
name = "write16"
|
4891
|
-
version = "1.0.0"
|
4892
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4893
|
-
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
4894
|
-
|
4895
4946
|
[[package]]
|
4896
4947
|
name = "writeable"
|
4897
|
-
version = "0.
|
4948
|
+
version = "0.6.1"
|
4898
4949
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4899
|
-
checksum = "
|
4950
|
+
checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
|
4900
4951
|
|
4901
4952
|
[[package]]
|
4902
4953
|
name = "xmlparser"
|
@@ -4915,9 +4966,9 @@ dependencies = [
|
|
4915
4966
|
|
4916
4967
|
[[package]]
|
4917
4968
|
name = "yoke"
|
4918
|
-
version = "0.
|
4969
|
+
version = "0.8.0"
|
4919
4970
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4920
|
-
checksum = "
|
4971
|
+
checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
|
4921
4972
|
dependencies = [
|
4922
4973
|
"serde",
|
4923
4974
|
"stable_deref_trait",
|
@@ -4927,9 +4978,9 @@ dependencies = [
|
|
4927
4978
|
|
4928
4979
|
[[package]]
|
4929
4980
|
name = "yoke-derive"
|
4930
|
-
version = "0.
|
4981
|
+
version = "0.8.0"
|
4931
4982
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4932
|
-
checksum = "
|
4983
|
+
checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
|
4933
4984
|
dependencies = [
|
4934
4985
|
"proc-macro2",
|
4935
4986
|
"quote",
|
@@ -4945,38 +4996,18 @@ checksum = "9b3a41ce106832b4da1c065baa4c31cf640cf965fa1483816402b7f6b96f0a64"
|
|
4945
4996
|
|
4946
4997
|
[[package]]
|
4947
4998
|
name = "zerocopy"
|
4948
|
-
version = "0.
|
4949
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4950
|
-
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
4951
|
-
dependencies = [
|
4952
|
-
"zerocopy-derive 0.7.35",
|
4953
|
-
]
|
4954
|
-
|
4955
|
-
[[package]]
|
4956
|
-
name = "zerocopy"
|
4957
|
-
version = "0.8.25"
|
4999
|
+
version = "0.8.26"
|
4958
5000
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4959
|
-
checksum = "
|
5001
|
+
checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
|
4960
5002
|
dependencies = [
|
4961
|
-
"zerocopy-derive
|
4962
|
-
]
|
4963
|
-
|
4964
|
-
[[package]]
|
4965
|
-
name = "zerocopy-derive"
|
4966
|
-
version = "0.7.35"
|
4967
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4968
|
-
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
4969
|
-
dependencies = [
|
4970
|
-
"proc-macro2",
|
4971
|
-
"quote",
|
4972
|
-
"syn",
|
5003
|
+
"zerocopy-derive",
|
4973
5004
|
]
|
4974
5005
|
|
4975
5006
|
[[package]]
|
4976
5007
|
name = "zerocopy-derive"
|
4977
|
-
version = "0.8.
|
5008
|
+
version = "0.8.26"
|
4978
5009
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4979
|
-
checksum = "
|
5010
|
+
checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
|
4980
5011
|
dependencies = [
|
4981
5012
|
"proc-macro2",
|
4982
5013
|
"quote",
|
@@ -5010,11 +5041,22 @@ version = "1.8.1"
|
|
5010
5041
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
5011
5042
|
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
5012
5043
|
|
5044
|
+
[[package]]
|
5045
|
+
name = "zerotrie"
|
5046
|
+
version = "0.2.2"
|
5047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
5048
|
+
checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
|
5049
|
+
dependencies = [
|
5050
|
+
"displaydoc",
|
5051
|
+
"yoke",
|
5052
|
+
"zerofrom",
|
5053
|
+
]
|
5054
|
+
|
5013
5055
|
[[package]]
|
5014
5056
|
name = "zerovec"
|
5015
|
-
version = "0.
|
5057
|
+
version = "0.11.2"
|
5016
5058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
5017
|
-
checksum = "
|
5059
|
+
checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
|
5018
5060
|
dependencies = [
|
5019
5061
|
"yoke",
|
5020
5062
|
"zerofrom",
|
@@ -5023,9 +5065,9 @@ dependencies = [
|
|
5023
5065
|
|
5024
5066
|
[[package]]
|
5025
5067
|
name = "zerovec-derive"
|
5026
|
-
version = "0.
|
5068
|
+
version = "0.11.1"
|
5027
5069
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
5028
|
-
checksum = "
|
5070
|
+
checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
|
5029
5071
|
dependencies = [
|
5030
5072
|
"proc-macro2",
|
5031
5073
|
"quote",
|
@@ -5034,9 +5076,9 @@ dependencies = [
|
|
5034
5076
|
|
5035
5077
|
[[package]]
|
5036
5078
|
name = "zlib-rs"
|
5037
|
-
version = "0.5.
|
5079
|
+
version = "0.5.1"
|
5038
5080
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
5039
|
-
checksum = "
|
5081
|
+
checksum = "626bd9fa9734751fc50d6060752170984d7053f5a39061f524cda68023d4db8a"
|
5040
5082
|
|
5041
5083
|
[[package]]
|
5042
5084
|
name = "zstd"
|