deltalake-rb 0.2.9 → 0.3.1
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 +10 -0
- data/Cargo.lock +700 -384
- data/ext/deltalake/Cargo.toml +7 -6
- data/ext/deltalake/src/error.rs +11 -22
- data/ext/deltalake/src/lib.rs +581 -346
- data/ext/deltalake/src/ruby.rs +74 -0
- data/ext/deltalake/src/schema.rs +1 -0
- data/lib/deltalake/version.rb +1 -1
- metadata +4 -3
data/Cargo.lock
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# This file is automatically @generated by Cargo.
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
|
-
version =
|
|
3
|
+
version = 4
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "adler2"
|
|
@@ -81,9 +81,9 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
|
81
81
|
|
|
82
82
|
[[package]]
|
|
83
83
|
name = "arrow"
|
|
84
|
-
version = "
|
|
84
|
+
version = "58.1.0"
|
|
85
85
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
-
checksum = "
|
|
86
|
+
checksum = "d441fdda254b65f3e9025910eb2c2066b6295d9c8ed409522b8d2ace1ff8574c"
|
|
87
87
|
dependencies = [
|
|
88
88
|
"arrow-arith",
|
|
89
89
|
"arrow-array",
|
|
@@ -102,9 +102,9 @@ dependencies = [
|
|
|
102
102
|
|
|
103
103
|
[[package]]
|
|
104
104
|
name = "arrow-arith"
|
|
105
|
-
version = "
|
|
105
|
+
version = "58.1.0"
|
|
106
106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
-
checksum = "
|
|
107
|
+
checksum = "ced5406f8b720cc0bc3aa9cf5758f93e8593cda5490677aa194e4b4b383f9a59"
|
|
108
108
|
dependencies = [
|
|
109
109
|
"arrow-array",
|
|
110
110
|
"arrow-buffer",
|
|
@@ -116,9 +116,9 @@ dependencies = [
|
|
|
116
116
|
|
|
117
117
|
[[package]]
|
|
118
118
|
name = "arrow-array"
|
|
119
|
-
version = "
|
|
119
|
+
version = "58.1.0"
|
|
120
120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
-
checksum = "
|
|
121
|
+
checksum = "772bd34cacdda8baec9418d80d23d0fb4d50ef0735685bd45158b83dfeb6e62d"
|
|
122
122
|
dependencies = [
|
|
123
123
|
"ahash",
|
|
124
124
|
"arrow-buffer",
|
|
@@ -135,9 +135,9 @@ dependencies = [
|
|
|
135
135
|
|
|
136
136
|
[[package]]
|
|
137
137
|
name = "arrow-buffer"
|
|
138
|
-
version = "
|
|
138
|
+
version = "58.1.0"
|
|
139
139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
-
checksum = "
|
|
140
|
+
checksum = "898f4cf1e9598fdb77f356fdf2134feedfd0ee8d5a4e0a5f573e7d0aec16baa4"
|
|
141
141
|
dependencies = [
|
|
142
142
|
"bytes",
|
|
143
143
|
"half",
|
|
@@ -147,9 +147,9 @@ dependencies = [
|
|
|
147
147
|
|
|
148
148
|
[[package]]
|
|
149
149
|
name = "arrow-cast"
|
|
150
|
-
version = "
|
|
150
|
+
version = "58.1.0"
|
|
151
151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
-
checksum = "
|
|
152
|
+
checksum = "b0127816c96533d20fc938729f48c52d3e48f99717e7a0b5ade77d742510736d"
|
|
153
153
|
dependencies = [
|
|
154
154
|
"arrow-array",
|
|
155
155
|
"arrow-buffer",
|
|
@@ -169,9 +169,9 @@ dependencies = [
|
|
|
169
169
|
|
|
170
170
|
[[package]]
|
|
171
171
|
name = "arrow-csv"
|
|
172
|
-
version = "
|
|
172
|
+
version = "58.1.0"
|
|
173
173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
-
checksum = "
|
|
174
|
+
checksum = "ca025bd0f38eeecb57c2153c0123b960494138e6a957bbda10da2b25415209fe"
|
|
175
175
|
dependencies = [
|
|
176
176
|
"arrow-array",
|
|
177
177
|
"arrow-cast",
|
|
@@ -184,9 +184,9 @@ dependencies = [
|
|
|
184
184
|
|
|
185
185
|
[[package]]
|
|
186
186
|
name = "arrow-data"
|
|
187
|
-
version = "
|
|
187
|
+
version = "58.1.0"
|
|
188
188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
-
checksum = "
|
|
189
|
+
checksum = "42d10beeab2b1c3bb0b53a00f7c944a178b622173a5c7bcabc3cb45d90238df4"
|
|
190
190
|
dependencies = [
|
|
191
191
|
"arrow-buffer",
|
|
192
192
|
"arrow-schema",
|
|
@@ -197,9 +197,9 @@ dependencies = [
|
|
|
197
197
|
|
|
198
198
|
[[package]]
|
|
199
199
|
name = "arrow-ipc"
|
|
200
|
-
version = "
|
|
200
|
+
version = "58.1.0"
|
|
201
201
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
-
checksum = "
|
|
202
|
+
checksum = "609a441080e338147a84e8e6904b6da482cefb957c5cdc0f3398872f69a315d0"
|
|
203
203
|
dependencies = [
|
|
204
204
|
"arrow-array",
|
|
205
205
|
"arrow-buffer",
|
|
@@ -213,9 +213,9 @@ dependencies = [
|
|
|
213
213
|
|
|
214
214
|
[[package]]
|
|
215
215
|
name = "arrow-json"
|
|
216
|
-
version = "
|
|
216
|
+
version = "58.1.0"
|
|
217
217
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
-
checksum = "
|
|
218
|
+
checksum = "6ead0914e4861a531be48fe05858265cf854a4880b9ed12618b1d08cba9bebc8"
|
|
219
219
|
dependencies = [
|
|
220
220
|
"arrow-array",
|
|
221
221
|
"arrow-buffer",
|
|
@@ -237,9 +237,9 @@ dependencies = [
|
|
|
237
237
|
|
|
238
238
|
[[package]]
|
|
239
239
|
name = "arrow-ord"
|
|
240
|
-
version = "
|
|
240
|
+
version = "58.1.0"
|
|
241
241
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
-
checksum = "
|
|
242
|
+
checksum = "763a7ba279b20b52dad300e68cfc37c17efa65e68623169076855b3a9e941ca5"
|
|
243
243
|
dependencies = [
|
|
244
244
|
"arrow-array",
|
|
245
245
|
"arrow-buffer",
|
|
@@ -250,9 +250,9 @@ dependencies = [
|
|
|
250
250
|
|
|
251
251
|
[[package]]
|
|
252
252
|
name = "arrow-row"
|
|
253
|
-
version = "
|
|
253
|
+
version = "58.1.0"
|
|
254
254
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
|
-
checksum = "
|
|
255
|
+
checksum = "e14fe367802f16d7668163ff647830258e6e0aeea9a4d79aaedf273af3bdcd3e"
|
|
256
256
|
dependencies = [
|
|
257
257
|
"arrow-array",
|
|
258
258
|
"arrow-buffer",
|
|
@@ -263,9 +263,9 @@ dependencies = [
|
|
|
263
263
|
|
|
264
264
|
[[package]]
|
|
265
265
|
name = "arrow-schema"
|
|
266
|
-
version = "
|
|
266
|
+
version = "58.1.0"
|
|
267
267
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
268
|
-
checksum = "
|
|
268
|
+
checksum = "c30a1365d7a7dc50cc847e54154e6af49e4c4b0fddc9f607b687f29212082743"
|
|
269
269
|
dependencies = [
|
|
270
270
|
"bitflags",
|
|
271
271
|
"serde",
|
|
@@ -275,9 +275,9 @@ dependencies = [
|
|
|
275
275
|
|
|
276
276
|
[[package]]
|
|
277
277
|
name = "arrow-select"
|
|
278
|
-
version = "
|
|
278
|
+
version = "58.1.0"
|
|
279
279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
280
|
-
checksum = "
|
|
280
|
+
checksum = "78694888660a9e8ac949853db393af2a8b8fc82c19ce333132dfa2e72cc1a7fe"
|
|
281
281
|
dependencies = [
|
|
282
282
|
"ahash",
|
|
283
283
|
"arrow-array",
|
|
@@ -289,9 +289,9 @@ dependencies = [
|
|
|
289
289
|
|
|
290
290
|
[[package]]
|
|
291
291
|
name = "arrow-string"
|
|
292
|
-
version = "
|
|
292
|
+
version = "58.1.0"
|
|
293
293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
-
checksum = "
|
|
294
|
+
checksum = "61e04a01f8bb73ce54437514c5fd3ee2aa3e8abe4c777ee5cc55853b1652f79e"
|
|
295
295
|
dependencies = [
|
|
296
296
|
"arrow-array",
|
|
297
297
|
"arrow-buffer",
|
|
@@ -306,9 +306,9 @@ dependencies = [
|
|
|
306
306
|
|
|
307
307
|
[[package]]
|
|
308
308
|
name = "async-compression"
|
|
309
|
-
version = "0.4.
|
|
309
|
+
version = "0.4.42"
|
|
310
310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
-
checksum = "
|
|
311
|
+
checksum = "e79b3f8a79cccc2898f31920fc69f304859b3bd567490f75ebf51ae1c792a9ac"
|
|
312
312
|
dependencies = [
|
|
313
313
|
"compression-codecs",
|
|
314
314
|
"compression-core",
|
|
@@ -380,9 +380,9 @@ dependencies = [
|
|
|
380
380
|
|
|
381
381
|
[[package]]
|
|
382
382
|
name = "aws-credential-types"
|
|
383
|
-
version = "1.2.
|
|
383
|
+
version = "1.2.14"
|
|
384
384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
385
|
-
checksum = "
|
|
385
|
+
checksum = "8f20799b373a1be121fe3005fba0c2090af9411573878f224df44b42727fcaf7"
|
|
386
386
|
dependencies = [
|
|
387
387
|
"aws-smithy-async",
|
|
388
388
|
"aws-smithy-runtime-api",
|
|
@@ -414,9 +414,9 @@ dependencies = [
|
|
|
414
414
|
|
|
415
415
|
[[package]]
|
|
416
416
|
name = "aws-runtime"
|
|
417
|
-
version = "1.7.
|
|
417
|
+
version = "1.7.3"
|
|
418
418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
-
checksum = "
|
|
419
|
+
checksum = "5dcd93c82209ac7413532388067dce79be5a8780c1786e5fae3df22e4dee2864"
|
|
420
420
|
dependencies = [
|
|
421
421
|
"aws-credential-types",
|
|
422
422
|
"aws-sigv4",
|
|
@@ -439,9 +439,9 @@ dependencies = [
|
|
|
439
439
|
|
|
440
440
|
[[package]]
|
|
441
441
|
name = "aws-sdk-dynamodb"
|
|
442
|
-
version = "1.
|
|
442
|
+
version = "1.111.0"
|
|
443
443
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
-
checksum = "
|
|
444
|
+
checksum = "fc418346e3cb248c7d59e642acbcb06488b7c7cd2ba6ebc79e8003f618c60099"
|
|
445
445
|
dependencies = [
|
|
446
446
|
"aws-credential-types",
|
|
447
447
|
"aws-runtime",
|
|
@@ -507,9 +507,9 @@ dependencies = [
|
|
|
507
507
|
|
|
508
508
|
[[package]]
|
|
509
509
|
name = "aws-sdk-sts"
|
|
510
|
-
version = "1.
|
|
510
|
+
version = "1.103.0"
|
|
511
511
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
-
checksum = "
|
|
512
|
+
checksum = "c2249b81a2e73a8027c41c378463a81ec39b8510f184f2caab87de912af0f49b"
|
|
513
513
|
dependencies = [
|
|
514
514
|
"aws-credential-types",
|
|
515
515
|
"aws-runtime",
|
|
@@ -532,9 +532,9 @@ dependencies = [
|
|
|
532
532
|
|
|
533
533
|
[[package]]
|
|
534
534
|
name = "aws-sigv4"
|
|
535
|
-
version = "1.4.
|
|
535
|
+
version = "1.4.3"
|
|
536
536
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
537
|
-
checksum = "
|
|
537
|
+
checksum = "68dc0b907359b120170613b5c09ccc61304eac3998ff6274b97d93ee6490115a"
|
|
538
538
|
dependencies = [
|
|
539
539
|
"aws-credential-types",
|
|
540
540
|
"aws-smithy-http 0.63.6",
|
|
@@ -547,7 +547,7 @@ dependencies = [
|
|
|
547
547
|
"http 0.2.12",
|
|
548
548
|
"http 1.3.1",
|
|
549
549
|
"percent-encoding",
|
|
550
|
-
"sha2",
|
|
550
|
+
"sha2 0.11.0",
|
|
551
551
|
"time",
|
|
552
552
|
"tracing",
|
|
553
553
|
]
|
|
@@ -667,9 +667,9 @@ dependencies = [
|
|
|
667
667
|
|
|
668
668
|
[[package]]
|
|
669
669
|
name = "aws-smithy-runtime"
|
|
670
|
-
version = "1.
|
|
670
|
+
version = "1.11.1"
|
|
671
671
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
-
checksum = "
|
|
672
|
+
checksum = "0504b1ab12debb5959e5165ee5fe97dd387e7aa7ea6a477bfd7635dfe769a4f5"
|
|
673
673
|
dependencies = [
|
|
674
674
|
"aws-smithy-async",
|
|
675
675
|
"aws-smithy-http 0.63.6",
|
|
@@ -692,11 +692,12 @@ dependencies = [
|
|
|
692
692
|
|
|
693
693
|
[[package]]
|
|
694
694
|
name = "aws-smithy-runtime-api"
|
|
695
|
-
version = "1.
|
|
695
|
+
version = "1.12.0"
|
|
696
696
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
-
checksum = "
|
|
697
|
+
checksum = "b71a13df6ada0aafbf21a73bdfcdf9324cfa9df77d96b8446045be3cde61b42e"
|
|
698
698
|
dependencies = [
|
|
699
699
|
"aws-smithy-async",
|
|
700
|
+
"aws-smithy-runtime-api-macros",
|
|
700
701
|
"aws-smithy-types",
|
|
701
702
|
"bytes",
|
|
702
703
|
"http 0.2.12",
|
|
@@ -707,11 +708,22 @@ dependencies = [
|
|
|
707
708
|
"zeroize",
|
|
708
709
|
]
|
|
709
710
|
|
|
711
|
+
[[package]]
|
|
712
|
+
name = "aws-smithy-runtime-api-macros"
|
|
713
|
+
version = "1.0.0"
|
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
|
+
checksum = "8d7396fd9500589e62e460e987ecb671bad374934e55ec3b5f498cc7a8a8a7b7"
|
|
716
|
+
dependencies = [
|
|
717
|
+
"proc-macro2",
|
|
718
|
+
"quote",
|
|
719
|
+
"syn",
|
|
720
|
+
]
|
|
721
|
+
|
|
710
722
|
[[package]]
|
|
711
723
|
name = "aws-smithy-types"
|
|
712
|
-
version = "1.4.
|
|
724
|
+
version = "1.4.7"
|
|
713
725
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
714
|
-
checksum = "
|
|
726
|
+
checksum = "9d73dbfbaa8e4bc57b9045137680b958d274823509a360abfd8e1d514d40c95c"
|
|
715
727
|
dependencies = [
|
|
716
728
|
"base64-simd",
|
|
717
729
|
"bytes",
|
|
@@ -744,9 +756,9 @@ dependencies = [
|
|
|
744
756
|
|
|
745
757
|
[[package]]
|
|
746
758
|
name = "aws-types"
|
|
747
|
-
version = "1.3.
|
|
759
|
+
version = "1.3.15"
|
|
748
760
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
749
|
-
checksum = "
|
|
761
|
+
checksum = "2f4bbcaa9304ea40902d3d5f42a0428d1bd895a2b0f6999436fb279ffddc58ac"
|
|
750
762
|
dependencies = [
|
|
751
763
|
"aws-credential-types",
|
|
752
764
|
"aws-smithy-async",
|
|
@@ -817,9 +829,9 @@ dependencies = [
|
|
|
817
829
|
|
|
818
830
|
[[package]]
|
|
819
831
|
name = "bitflags"
|
|
820
|
-
version = "2.
|
|
832
|
+
version = "2.11.1"
|
|
821
833
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
-
checksum = "
|
|
834
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
823
835
|
|
|
824
836
|
[[package]]
|
|
825
837
|
name = "blake2"
|
|
@@ -827,7 +839,7 @@ version = "0.10.6"
|
|
|
827
839
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
828
840
|
checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
|
|
829
841
|
dependencies = [
|
|
830
|
-
"digest",
|
|
842
|
+
"digest 0.10.7",
|
|
831
843
|
]
|
|
832
844
|
|
|
833
845
|
[[package]]
|
|
@@ -852,6 +864,15 @@ dependencies = [
|
|
|
852
864
|
"generic-array",
|
|
853
865
|
]
|
|
854
866
|
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "block-buffer"
|
|
869
|
+
version = "0.12.0"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
|
|
872
|
+
dependencies = [
|
|
873
|
+
"hybrid-array",
|
|
874
|
+
]
|
|
875
|
+
|
|
855
876
|
[[package]]
|
|
856
877
|
name = "brotli"
|
|
857
878
|
version = "8.0.1"
|
|
@@ -879,6 +900,48 @@ version = "3.19.0"
|
|
|
879
900
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
901
|
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
881
902
|
|
|
903
|
+
[[package]]
|
|
904
|
+
name = "buoyant_kernel"
|
|
905
|
+
version = "0.21.103"
|
|
906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
+
checksum = "091ea1cbe1aa4ccda750be5267761d1508b94e98f3c004f08264ac9630ae5da5"
|
|
908
|
+
dependencies = [
|
|
909
|
+
"arrow",
|
|
910
|
+
"buoyant_kernel_derive",
|
|
911
|
+
"bytes",
|
|
912
|
+
"chrono",
|
|
913
|
+
"crc",
|
|
914
|
+
"futures",
|
|
915
|
+
"indexmap",
|
|
916
|
+
"itertools 0.14.0",
|
|
917
|
+
"object_store",
|
|
918
|
+
"parquet",
|
|
919
|
+
"rand 0.9.4",
|
|
920
|
+
"reqwest 0.13.2",
|
|
921
|
+
"roaring",
|
|
922
|
+
"rustc_version",
|
|
923
|
+
"serde",
|
|
924
|
+
"serde_json",
|
|
925
|
+
"strum 0.27.1",
|
|
926
|
+
"thiserror 2.0.12",
|
|
927
|
+
"tokio",
|
|
928
|
+
"tracing",
|
|
929
|
+
"url",
|
|
930
|
+
"uuid",
|
|
931
|
+
"z85",
|
|
932
|
+
]
|
|
933
|
+
|
|
934
|
+
[[package]]
|
|
935
|
+
name = "buoyant_kernel_derive"
|
|
936
|
+
version = "1.0.0"
|
|
937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
938
|
+
checksum = "3448e05bba811d98c73a466843abd8c16d0416dc083f92b66847693fcb0714f4"
|
|
939
|
+
dependencies = [
|
|
940
|
+
"proc-macro2",
|
|
941
|
+
"quote",
|
|
942
|
+
"syn",
|
|
943
|
+
]
|
|
944
|
+
|
|
882
945
|
[[package]]
|
|
883
946
|
name = "bytemuck"
|
|
884
947
|
version = "1.23.1"
|
|
@@ -927,6 +990,12 @@ dependencies = [
|
|
|
927
990
|
"shlex",
|
|
928
991
|
]
|
|
929
992
|
|
|
993
|
+
[[package]]
|
|
994
|
+
name = "cesu8"
|
|
995
|
+
version = "1.1.0"
|
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
+
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
998
|
+
|
|
930
999
|
[[package]]
|
|
931
1000
|
name = "cexpr"
|
|
932
1001
|
version = "0.6.0"
|
|
@@ -948,11 +1017,22 @@ version = "0.2.1"
|
|
|
948
1017
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
1018
|
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
950
1019
|
|
|
1020
|
+
[[package]]
|
|
1021
|
+
name = "chacha20"
|
|
1022
|
+
version = "0.10.0"
|
|
1023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1024
|
+
checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
|
|
1025
|
+
dependencies = [
|
|
1026
|
+
"cfg-if",
|
|
1027
|
+
"cpufeatures 0.3.0",
|
|
1028
|
+
"rand_core 0.10.1",
|
|
1029
|
+
]
|
|
1030
|
+
|
|
951
1031
|
[[package]]
|
|
952
1032
|
name = "chrono"
|
|
953
|
-
version = "0.4.
|
|
1033
|
+
version = "0.4.44"
|
|
954
1034
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
-
checksum = "
|
|
1035
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
956
1036
|
dependencies = [
|
|
957
1037
|
"iana-time-zone",
|
|
958
1038
|
"js-sys",
|
|
@@ -992,14 +1072,28 @@ dependencies = [
|
|
|
992
1072
|
"cc",
|
|
993
1073
|
]
|
|
994
1074
|
|
|
1075
|
+
[[package]]
|
|
1076
|
+
name = "cmov"
|
|
1077
|
+
version = "0.5.3"
|
|
1078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1079
|
+
checksum = "3f88a43d011fc4a6876cb7344703e297c71dda42494fee094d5f7c76bf13f746"
|
|
1080
|
+
|
|
1081
|
+
[[package]]
|
|
1082
|
+
name = "combine"
|
|
1083
|
+
version = "4.6.7"
|
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1085
|
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
1086
|
+
dependencies = [
|
|
1087
|
+
"bytes",
|
|
1088
|
+
"memchr",
|
|
1089
|
+
]
|
|
1090
|
+
|
|
995
1091
|
[[package]]
|
|
996
1092
|
name = "comfy-table"
|
|
997
1093
|
version = "7.1.2"
|
|
998
1094
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
999
1095
|
checksum = "e0d05af1e006a2407bedef5af410552494ce5be9090444dbbcb57258c1af3d56"
|
|
1000
1096
|
dependencies = [
|
|
1001
|
-
"crossterm 0.27.0",
|
|
1002
|
-
"crossterm 0.28.1",
|
|
1003
1097
|
"strum 0.26.3",
|
|
1004
1098
|
"strum_macros 0.26.4",
|
|
1005
1099
|
"unicode-width",
|
|
@@ -1007,9 +1101,9 @@ dependencies = [
|
|
|
1007
1101
|
|
|
1008
1102
|
[[package]]
|
|
1009
1103
|
name = "compression-codecs"
|
|
1010
|
-
version = "0.4.
|
|
1104
|
+
version = "0.4.38"
|
|
1011
1105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1012
|
-
checksum = "
|
|
1106
|
+
checksum = "ce2548391e9c1929c21bf6aa2680af86fe4c1b33e6cea9ac1cfeec0bd11218cf"
|
|
1013
1107
|
dependencies = [
|
|
1014
1108
|
"bzip2",
|
|
1015
1109
|
"compression-core",
|
|
@@ -1022,9 +1116,15 @@ dependencies = [
|
|
|
1022
1116
|
|
|
1023
1117
|
[[package]]
|
|
1024
1118
|
name = "compression-core"
|
|
1025
|
-
version = "0.4.
|
|
1119
|
+
version = "0.4.32"
|
|
1120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1121
|
+
checksum = "cc14f565cf027a105f7a44ccf9e5b424348421a1d8952a8fc9d499d313107789"
|
|
1122
|
+
|
|
1123
|
+
[[package]]
|
|
1124
|
+
name = "const-oid"
|
|
1125
|
+
version = "0.10.2"
|
|
1026
1126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
-
checksum = "
|
|
1127
|
+
checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
|
|
1028
1128
|
|
|
1029
1129
|
[[package]]
|
|
1030
1130
|
name = "const-random"
|
|
@@ -1061,6 +1161,16 @@ dependencies = [
|
|
|
1061
1161
|
"unicode-segmentation",
|
|
1062
1162
|
]
|
|
1063
1163
|
|
|
1164
|
+
[[package]]
|
|
1165
|
+
name = "core-foundation"
|
|
1166
|
+
version = "0.9.4"
|
|
1167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1168
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
1169
|
+
dependencies = [
|
|
1170
|
+
"core-foundation-sys",
|
|
1171
|
+
"libc",
|
|
1172
|
+
]
|
|
1173
|
+
|
|
1064
1174
|
[[package]]
|
|
1065
1175
|
name = "core-foundation"
|
|
1066
1176
|
version = "0.10.1"
|
|
@@ -1086,6 +1196,15 @@ dependencies = [
|
|
|
1086
1196
|
"libc",
|
|
1087
1197
|
]
|
|
1088
1198
|
|
|
1199
|
+
[[package]]
|
|
1200
|
+
name = "cpufeatures"
|
|
1201
|
+
version = "0.3.0"
|
|
1202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1203
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
1204
|
+
dependencies = [
|
|
1205
|
+
"libc",
|
|
1206
|
+
]
|
|
1207
|
+
|
|
1089
1208
|
[[package]]
|
|
1090
1209
|
name = "crc"
|
|
1091
1210
|
version = "3.4.0"
|
|
@@ -1116,39 +1235,6 @@ version = "0.8.21"
|
|
|
1116
1235
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1117
1236
|
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
1118
1237
|
|
|
1119
|
-
[[package]]
|
|
1120
|
-
name = "crossterm"
|
|
1121
|
-
version = "0.27.0"
|
|
1122
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1123
|
-
checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df"
|
|
1124
|
-
dependencies = [
|
|
1125
|
-
"bitflags",
|
|
1126
|
-
"crossterm_winapi",
|
|
1127
|
-
"libc",
|
|
1128
|
-
"parking_lot",
|
|
1129
|
-
"winapi",
|
|
1130
|
-
]
|
|
1131
|
-
|
|
1132
|
-
[[package]]
|
|
1133
|
-
name = "crossterm"
|
|
1134
|
-
version = "0.28.1"
|
|
1135
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1136
|
-
checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
|
|
1137
|
-
dependencies = [
|
|
1138
|
-
"bitflags",
|
|
1139
|
-
"parking_lot",
|
|
1140
|
-
"rustix 0.38.44",
|
|
1141
|
-
]
|
|
1142
|
-
|
|
1143
|
-
[[package]]
|
|
1144
|
-
name = "crossterm_winapi"
|
|
1145
|
-
version = "0.9.1"
|
|
1146
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1147
|
-
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
|
1148
|
-
dependencies = [
|
|
1149
|
-
"winapi",
|
|
1150
|
-
]
|
|
1151
|
-
|
|
1152
1238
|
[[package]]
|
|
1153
1239
|
name = "crunchy"
|
|
1154
1240
|
version = "0.2.4"
|
|
@@ -1165,6 +1251,15 @@ dependencies = [
|
|
|
1165
1251
|
"typenum",
|
|
1166
1252
|
]
|
|
1167
1253
|
|
|
1254
|
+
[[package]]
|
|
1255
|
+
name = "crypto-common"
|
|
1256
|
+
version = "0.2.1"
|
|
1257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1258
|
+
checksum = "77727bb15fa921304124b128af125e7e3b968275d1b108b379190264f4423710"
|
|
1259
|
+
dependencies = [
|
|
1260
|
+
"hybrid-array",
|
|
1261
|
+
]
|
|
1262
|
+
|
|
1168
1263
|
[[package]]
|
|
1169
1264
|
name = "csv"
|
|
1170
1265
|
version = "1.3.1"
|
|
@@ -1188,19 +1283,29 @@ dependencies = [
|
|
|
1188
1283
|
|
|
1189
1284
|
[[package]]
|
|
1190
1285
|
name = "ctor"
|
|
1191
|
-
version = "0.
|
|
1286
|
+
version = "0.10.0"
|
|
1192
1287
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1193
|
-
checksum = "
|
|
1288
|
+
checksum = "95d0d11eb38e7642efca359c3cf6eb7b2e528182d09110165de70192b0352775"
|
|
1194
1289
|
dependencies = [
|
|
1195
1290
|
"ctor-proc-macro",
|
|
1196
1291
|
"dtor",
|
|
1292
|
+
"link-section",
|
|
1197
1293
|
]
|
|
1198
1294
|
|
|
1199
1295
|
[[package]]
|
|
1200
1296
|
name = "ctor-proc-macro"
|
|
1201
|
-
version = "0.0.
|
|
1297
|
+
version = "0.0.12"
|
|
1298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1299
|
+
checksum = "a7ab264ea985f1bd27887d7b21ea2bb046728e05d11909ca138d700c494730db"
|
|
1300
|
+
|
|
1301
|
+
[[package]]
|
|
1302
|
+
name = "ctutils"
|
|
1303
|
+
version = "0.4.2"
|
|
1202
1304
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1203
|
-
checksum = "
|
|
1305
|
+
checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
|
|
1306
|
+
dependencies = [
|
|
1307
|
+
"cmov",
|
|
1308
|
+
]
|
|
1204
1309
|
|
|
1205
1310
|
[[package]]
|
|
1206
1311
|
name = "darling"
|
|
@@ -1253,9 +1358,9 @@ dependencies = [
|
|
|
1253
1358
|
|
|
1254
1359
|
[[package]]
|
|
1255
1360
|
name = "datafusion"
|
|
1256
|
-
version = "
|
|
1361
|
+
version = "53.1.0"
|
|
1257
1362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1258
|
-
checksum = "
|
|
1363
|
+
checksum = "93db0e623840612f7f2cd757f7e8a8922064192363732c88692e0870016e141b"
|
|
1259
1364
|
dependencies = [
|
|
1260
1365
|
"arrow",
|
|
1261
1366
|
"arrow-schema",
|
|
@@ -1296,7 +1401,7 @@ dependencies = [
|
|
|
1296
1401
|
"object_store",
|
|
1297
1402
|
"parking_lot",
|
|
1298
1403
|
"parquet",
|
|
1299
|
-
"rand 0.9.
|
|
1404
|
+
"rand 0.9.4",
|
|
1300
1405
|
"regex",
|
|
1301
1406
|
"sqlparser",
|
|
1302
1407
|
"tempfile",
|
|
@@ -1308,9 +1413,9 @@ dependencies = [
|
|
|
1308
1413
|
|
|
1309
1414
|
[[package]]
|
|
1310
1415
|
name = "datafusion-catalog"
|
|
1311
|
-
version = "
|
|
1416
|
+
version = "53.1.0"
|
|
1312
1417
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1313
|
-
checksum = "
|
|
1418
|
+
checksum = "37cefde60b26a7f4ff61e9d2ff2833322f91df2b568d7238afe67bde5bdffb66"
|
|
1314
1419
|
dependencies = [
|
|
1315
1420
|
"arrow",
|
|
1316
1421
|
"async-trait",
|
|
@@ -1333,9 +1438,9 @@ dependencies = [
|
|
|
1333
1438
|
|
|
1334
1439
|
[[package]]
|
|
1335
1440
|
name = "datafusion-catalog-listing"
|
|
1336
|
-
version = "
|
|
1441
|
+
version = "53.1.0"
|
|
1337
1442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1338
|
-
checksum = "
|
|
1443
|
+
checksum = "17e112307715d6a7a331111a4c2330ff54bc237183511c319e3708a4cff431fb"
|
|
1339
1444
|
dependencies = [
|
|
1340
1445
|
"arrow",
|
|
1341
1446
|
"async-trait",
|
|
@@ -1356,9 +1461,9 @@ dependencies = [
|
|
|
1356
1461
|
|
|
1357
1462
|
[[package]]
|
|
1358
1463
|
name = "datafusion-common"
|
|
1359
|
-
version = "
|
|
1464
|
+
version = "53.1.0"
|
|
1360
1465
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1361
|
-
checksum = "
|
|
1466
|
+
checksum = "d72a11ca44a95e1081870d3abb80c717496e8a7acb467a1d3e932bb636af5cc2"
|
|
1362
1467
|
dependencies = [
|
|
1363
1468
|
"ahash",
|
|
1364
1469
|
"arrow",
|
|
@@ -1367,6 +1472,7 @@ dependencies = [
|
|
|
1367
1472
|
"half",
|
|
1368
1473
|
"hashbrown 0.16.1",
|
|
1369
1474
|
"indexmap",
|
|
1475
|
+
"itertools 0.14.0",
|
|
1370
1476
|
"libc",
|
|
1371
1477
|
"log",
|
|
1372
1478
|
"object_store",
|
|
@@ -1380,9 +1486,9 @@ dependencies = [
|
|
|
1380
1486
|
|
|
1381
1487
|
[[package]]
|
|
1382
1488
|
name = "datafusion-common-runtime"
|
|
1383
|
-
version = "
|
|
1489
|
+
version = "53.1.0"
|
|
1384
1490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1385
|
-
checksum = "
|
|
1491
|
+
checksum = "89f4afaed29670ec4fd6053643adc749fe3f4bc9d1ce1b8c5679b22c67d12def"
|
|
1386
1492
|
dependencies = [
|
|
1387
1493
|
"futures",
|
|
1388
1494
|
"log",
|
|
@@ -1391,9 +1497,9 @@ dependencies = [
|
|
|
1391
1497
|
|
|
1392
1498
|
[[package]]
|
|
1393
1499
|
name = "datafusion-datasource"
|
|
1394
|
-
version = "
|
|
1500
|
+
version = "53.1.0"
|
|
1395
1501
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1396
|
-
checksum = "
|
|
1502
|
+
checksum = "e9fb386e1691355355a96419978a0022b7947b44d4a24a6ea99f00b6b485cbb6"
|
|
1397
1503
|
dependencies = [
|
|
1398
1504
|
"arrow",
|
|
1399
1505
|
"async-compression",
|
|
@@ -1417,7 +1523,7 @@ dependencies = [
|
|
|
1417
1523
|
"liblzma",
|
|
1418
1524
|
"log",
|
|
1419
1525
|
"object_store",
|
|
1420
|
-
"rand 0.9.
|
|
1526
|
+
"rand 0.9.4",
|
|
1421
1527
|
"tokio",
|
|
1422
1528
|
"tokio-util",
|
|
1423
1529
|
"url",
|
|
@@ -1426,9 +1532,9 @@ dependencies = [
|
|
|
1426
1532
|
|
|
1427
1533
|
[[package]]
|
|
1428
1534
|
name = "datafusion-datasource-arrow"
|
|
1429
|
-
version = "
|
|
1535
|
+
version = "53.1.0"
|
|
1430
1536
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1431
|
-
checksum = "
|
|
1537
|
+
checksum = "ffa6c52cfed0734c5f93754d1c0175f558175248bf686c944fb05c373e5fc096"
|
|
1432
1538
|
dependencies = [
|
|
1433
1539
|
"arrow",
|
|
1434
1540
|
"arrow-ipc",
|
|
@@ -1450,9 +1556,9 @@ dependencies = [
|
|
|
1450
1556
|
|
|
1451
1557
|
[[package]]
|
|
1452
1558
|
name = "datafusion-datasource-csv"
|
|
1453
|
-
version = "
|
|
1559
|
+
version = "53.1.0"
|
|
1454
1560
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1455
|
-
checksum = "
|
|
1561
|
+
checksum = "503f29e0582c1fc189578d665ff57d9300da1f80c282777d7eb67bb79fb8cdca"
|
|
1456
1562
|
dependencies = [
|
|
1457
1563
|
"arrow",
|
|
1458
1564
|
"async-trait",
|
|
@@ -1473,9 +1579,9 @@ dependencies = [
|
|
|
1473
1579
|
|
|
1474
1580
|
[[package]]
|
|
1475
1581
|
name = "datafusion-datasource-json"
|
|
1476
|
-
version = "
|
|
1582
|
+
version = "53.1.0"
|
|
1477
1583
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1478
|
-
checksum = "
|
|
1584
|
+
checksum = "e33804749abc8d0c8cb7473228483cb8070e524c6f6086ee1b85a64debe2b3d2"
|
|
1479
1585
|
dependencies = [
|
|
1480
1586
|
"arrow",
|
|
1481
1587
|
"async-trait",
|
|
@@ -1490,14 +1596,16 @@ dependencies = [
|
|
|
1490
1596
|
"datafusion-session",
|
|
1491
1597
|
"futures",
|
|
1492
1598
|
"object_store",
|
|
1599
|
+
"serde_json",
|
|
1493
1600
|
"tokio",
|
|
1601
|
+
"tokio-stream",
|
|
1494
1602
|
]
|
|
1495
1603
|
|
|
1496
1604
|
[[package]]
|
|
1497
1605
|
name = "datafusion-datasource-parquet"
|
|
1498
|
-
version = "
|
|
1606
|
+
version = "53.1.0"
|
|
1499
1607
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1500
|
-
checksum = "
|
|
1608
|
+
checksum = "32a8e0365e0e08e8ff94d912f0ababcf9065a1a304018ba90b1fc83c855b4997"
|
|
1501
1609
|
dependencies = [
|
|
1502
1610
|
"arrow",
|
|
1503
1611
|
"async-trait",
|
|
@@ -1525,36 +1633,38 @@ dependencies = [
|
|
|
1525
1633
|
|
|
1526
1634
|
[[package]]
|
|
1527
1635
|
name = "datafusion-doc"
|
|
1528
|
-
version = "
|
|
1636
|
+
version = "53.1.0"
|
|
1529
1637
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1530
|
-
checksum = "
|
|
1638
|
+
checksum = "8de6ac0df1662b9148ad3c987978b32cbec7c772f199b1d53520c8fa764a87ee"
|
|
1531
1639
|
|
|
1532
1640
|
[[package]]
|
|
1533
1641
|
name = "datafusion-execution"
|
|
1534
|
-
version = "
|
|
1642
|
+
version = "53.1.0"
|
|
1535
1643
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1536
|
-
checksum = "
|
|
1644
|
+
checksum = "c03c7fbdaefcca4ef6ffe425a5fc2325763bfb426599bb0bf4536466efabe709"
|
|
1537
1645
|
dependencies = [
|
|
1538
1646
|
"arrow",
|
|
1647
|
+
"arrow-buffer",
|
|
1539
1648
|
"async-trait",
|
|
1540
1649
|
"chrono",
|
|
1541
1650
|
"dashmap",
|
|
1542
1651
|
"datafusion-common",
|
|
1543
1652
|
"datafusion-expr",
|
|
1653
|
+
"datafusion-physical-expr-common",
|
|
1544
1654
|
"futures",
|
|
1545
1655
|
"log",
|
|
1546
1656
|
"object_store",
|
|
1547
1657
|
"parking_lot",
|
|
1548
|
-
"rand 0.9.
|
|
1658
|
+
"rand 0.9.4",
|
|
1549
1659
|
"tempfile",
|
|
1550
1660
|
"url",
|
|
1551
1661
|
]
|
|
1552
1662
|
|
|
1553
1663
|
[[package]]
|
|
1554
1664
|
name = "datafusion-expr"
|
|
1555
|
-
version = "
|
|
1665
|
+
version = "53.1.0"
|
|
1556
1666
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1557
|
-
checksum = "
|
|
1667
|
+
checksum = "574b9b6977fedbd2a611cbff12e5caf90f31640ad9dc5870f152836d94bad0dd"
|
|
1558
1668
|
dependencies = [
|
|
1559
1669
|
"arrow",
|
|
1560
1670
|
"async-trait",
|
|
@@ -1575,9 +1685,9 @@ dependencies = [
|
|
|
1575
1685
|
|
|
1576
1686
|
[[package]]
|
|
1577
1687
|
name = "datafusion-expr-common"
|
|
1578
|
-
version = "
|
|
1688
|
+
version = "53.1.0"
|
|
1579
1689
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1580
|
-
checksum = "
|
|
1690
|
+
checksum = "7d7c3adf3db8bf61e92eb90cb659c8e8b734593a8f7c8e12a843c7ddba24b87e"
|
|
1581
1691
|
dependencies = [
|
|
1582
1692
|
"arrow",
|
|
1583
1693
|
"datafusion-common",
|
|
@@ -1588,9 +1698,9 @@ dependencies = [
|
|
|
1588
1698
|
|
|
1589
1699
|
[[package]]
|
|
1590
1700
|
name = "datafusion-functions"
|
|
1591
|
-
version = "
|
|
1701
|
+
version = "53.1.0"
|
|
1592
1702
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1593
|
-
checksum = "
|
|
1703
|
+
checksum = "f28aa4e10384e782774b10e72aca4d93ef7b31aa653095d9d4536b0a3dbc51b6"
|
|
1594
1704
|
dependencies = [
|
|
1595
1705
|
"arrow",
|
|
1596
1706
|
"arrow-buffer",
|
|
@@ -1609,19 +1719,20 @@ dependencies = [
|
|
|
1609
1719
|
"itertools 0.14.0",
|
|
1610
1720
|
"log",
|
|
1611
1721
|
"md-5",
|
|
1722
|
+
"memchr",
|
|
1612
1723
|
"num-traits",
|
|
1613
|
-
"rand 0.9.
|
|
1724
|
+
"rand 0.9.4",
|
|
1614
1725
|
"regex",
|
|
1615
|
-
"sha2",
|
|
1726
|
+
"sha2 0.10.9",
|
|
1616
1727
|
"unicode-segmentation",
|
|
1617
1728
|
"uuid",
|
|
1618
1729
|
]
|
|
1619
1730
|
|
|
1620
1731
|
[[package]]
|
|
1621
1732
|
name = "datafusion-functions-aggregate"
|
|
1622
|
-
version = "
|
|
1733
|
+
version = "53.1.0"
|
|
1623
1734
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1624
|
-
checksum = "
|
|
1735
|
+
checksum = "00aa6217e56098ba84e0a338176fe52f0a84cca398021512c6c8c5eff806d0ad"
|
|
1625
1736
|
dependencies = [
|
|
1626
1737
|
"ahash",
|
|
1627
1738
|
"arrow",
|
|
@@ -1635,14 +1746,15 @@ dependencies = [
|
|
|
1635
1746
|
"datafusion-physical-expr-common",
|
|
1636
1747
|
"half",
|
|
1637
1748
|
"log",
|
|
1749
|
+
"num-traits",
|
|
1638
1750
|
"paste",
|
|
1639
1751
|
]
|
|
1640
1752
|
|
|
1641
1753
|
[[package]]
|
|
1642
1754
|
name = "datafusion-functions-aggregate-common"
|
|
1643
|
-
version = "
|
|
1755
|
+
version = "53.1.0"
|
|
1644
1756
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1645
|
-
checksum = "
|
|
1757
|
+
checksum = "b511250349407db7c43832ab2de63f5557b19a20dfd236b39ca2c04468b50d47"
|
|
1646
1758
|
dependencies = [
|
|
1647
1759
|
"ahash",
|
|
1648
1760
|
"arrow",
|
|
@@ -1653,9 +1765,9 @@ dependencies = [
|
|
|
1653
1765
|
|
|
1654
1766
|
[[package]]
|
|
1655
1767
|
name = "datafusion-functions-nested"
|
|
1656
|
-
version = "
|
|
1768
|
+
version = "53.1.0"
|
|
1657
1769
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1658
|
-
checksum = "
|
|
1770
|
+
checksum = "ef13a858e20d50f0a9bb5e96e7ac82b4e7597f247515bccca4fdd2992df0212a"
|
|
1659
1771
|
dependencies = [
|
|
1660
1772
|
"arrow",
|
|
1661
1773
|
"arrow-ord",
|
|
@@ -1669,16 +1781,18 @@ dependencies = [
|
|
|
1669
1781
|
"datafusion-functions-aggregate-common",
|
|
1670
1782
|
"datafusion-macros",
|
|
1671
1783
|
"datafusion-physical-expr-common",
|
|
1784
|
+
"hashbrown 0.16.1",
|
|
1672
1785
|
"itertools 0.14.0",
|
|
1786
|
+
"itoa",
|
|
1673
1787
|
"log",
|
|
1674
1788
|
"paste",
|
|
1675
1789
|
]
|
|
1676
1790
|
|
|
1677
1791
|
[[package]]
|
|
1678
1792
|
name = "datafusion-functions-table"
|
|
1679
|
-
version = "
|
|
1793
|
+
version = "53.1.0"
|
|
1680
1794
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1681
|
-
checksum = "
|
|
1795
|
+
checksum = "72b40d3f5bbb3905f9ccb1ce9485a9595c77b69758a7c24d3ba79e334ff51e7e"
|
|
1682
1796
|
dependencies = [
|
|
1683
1797
|
"arrow",
|
|
1684
1798
|
"async-trait",
|
|
@@ -1692,9 +1806,9 @@ dependencies = [
|
|
|
1692
1806
|
|
|
1693
1807
|
[[package]]
|
|
1694
1808
|
name = "datafusion-functions-window"
|
|
1695
|
-
version = "
|
|
1809
|
+
version = "53.1.0"
|
|
1696
1810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1697
|
-
checksum = "
|
|
1811
|
+
checksum = "d4e88ec9d57c9b685d02f58bfee7be62d72610430ddcedb82a08e5d9925dbfb6"
|
|
1698
1812
|
dependencies = [
|
|
1699
1813
|
"arrow",
|
|
1700
1814
|
"datafusion-common",
|
|
@@ -1710,9 +1824,9 @@ dependencies = [
|
|
|
1710
1824
|
|
|
1711
1825
|
[[package]]
|
|
1712
1826
|
name = "datafusion-functions-window-common"
|
|
1713
|
-
version = "
|
|
1827
|
+
version = "53.1.0"
|
|
1714
1828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1715
|
-
checksum = "
|
|
1829
|
+
checksum = "8307bb93519b1a91913723a1130cfafeee3f72200d870d88e91a6fc5470ede5c"
|
|
1716
1830
|
dependencies = [
|
|
1717
1831
|
"datafusion-common",
|
|
1718
1832
|
"datafusion-physical-expr-common",
|
|
@@ -1720,9 +1834,9 @@ dependencies = [
|
|
|
1720
1834
|
|
|
1721
1835
|
[[package]]
|
|
1722
1836
|
name = "datafusion-macros"
|
|
1723
|
-
version = "
|
|
1837
|
+
version = "53.1.0"
|
|
1724
1838
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1725
|
-
checksum = "
|
|
1839
|
+
checksum = "2e367e6a71051d0ebdd29b2f85d12059b38b1d1f172c6906e80016da662226bd"
|
|
1726
1840
|
dependencies = [
|
|
1727
1841
|
"datafusion-doc",
|
|
1728
1842
|
"quote",
|
|
@@ -1731,9 +1845,9 @@ dependencies = [
|
|
|
1731
1845
|
|
|
1732
1846
|
[[package]]
|
|
1733
1847
|
name = "datafusion-optimizer"
|
|
1734
|
-
version = "
|
|
1848
|
+
version = "53.1.0"
|
|
1735
1849
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1736
|
-
checksum = "
|
|
1850
|
+
checksum = "e929015451a67f77d9d8b727b2bf3a40c4445fdef6cdc53281d7d97c76888ace"
|
|
1737
1851
|
dependencies = [
|
|
1738
1852
|
"arrow",
|
|
1739
1853
|
"chrono",
|
|
@@ -1751,9 +1865,9 @@ dependencies = [
|
|
|
1751
1865
|
|
|
1752
1866
|
[[package]]
|
|
1753
1867
|
name = "datafusion-physical-expr"
|
|
1754
|
-
version = "
|
|
1868
|
+
version = "53.1.0"
|
|
1755
1869
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1756
|
-
checksum = "
|
|
1870
|
+
checksum = "4b1e68aba7a4b350401cfdf25a3d6f989ad898a7410164afe9ca52080244cb59"
|
|
1757
1871
|
dependencies = [
|
|
1758
1872
|
"ahash",
|
|
1759
1873
|
"arrow",
|
|
@@ -1775,9 +1889,9 @@ dependencies = [
|
|
|
1775
1889
|
|
|
1776
1890
|
[[package]]
|
|
1777
1891
|
name = "datafusion-physical-expr-adapter"
|
|
1778
|
-
version = "
|
|
1892
|
+
version = "53.1.0"
|
|
1779
1893
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1780
|
-
checksum = "
|
|
1894
|
+
checksum = "ea22315f33cf2e0adc104e8ec42e285f6ed93998d565c65e82fec6a9ee9f9db4"
|
|
1781
1895
|
dependencies = [
|
|
1782
1896
|
"arrow",
|
|
1783
1897
|
"datafusion-common",
|
|
@@ -1790,9 +1904,9 @@ dependencies = [
|
|
|
1790
1904
|
|
|
1791
1905
|
[[package]]
|
|
1792
1906
|
name = "datafusion-physical-expr-common"
|
|
1793
|
-
version = "
|
|
1907
|
+
version = "53.1.0"
|
|
1794
1908
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1795
|
-
checksum = "
|
|
1909
|
+
checksum = "b04b45ea8ad3ac2d78f2ea2a76053e06591c9629c7a603eda16c10649ecf4362"
|
|
1796
1910
|
dependencies = [
|
|
1797
1911
|
"ahash",
|
|
1798
1912
|
"arrow",
|
|
@@ -1807,9 +1921,9 @@ dependencies = [
|
|
|
1807
1921
|
|
|
1808
1922
|
[[package]]
|
|
1809
1923
|
name = "datafusion-physical-optimizer"
|
|
1810
|
-
version = "
|
|
1924
|
+
version = "53.1.0"
|
|
1811
1925
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1812
|
-
checksum = "
|
|
1926
|
+
checksum = "7cb13397809a425918f608dfe8653f332015a3e330004ab191b4404187238b95"
|
|
1813
1927
|
dependencies = [
|
|
1814
1928
|
"arrow",
|
|
1815
1929
|
"datafusion-common",
|
|
@@ -1826,9 +1940,9 @@ dependencies = [
|
|
|
1826
1940
|
|
|
1827
1941
|
[[package]]
|
|
1828
1942
|
name = "datafusion-physical-plan"
|
|
1829
|
-
version = "
|
|
1943
|
+
version = "53.1.0"
|
|
1830
1944
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1831
|
-
checksum = "
|
|
1945
|
+
checksum = "5edc023675791af9d5fb4cc4c24abf5f7bd3bd4dcf9e5bd90ea1eff6976dcc79"
|
|
1832
1946
|
dependencies = [
|
|
1833
1947
|
"ahash",
|
|
1834
1948
|
"arrow",
|
|
@@ -1850,6 +1964,7 @@ dependencies = [
|
|
|
1850
1964
|
"indexmap",
|
|
1851
1965
|
"itertools 0.14.0",
|
|
1852
1966
|
"log",
|
|
1967
|
+
"num-traits",
|
|
1853
1968
|
"parking_lot",
|
|
1854
1969
|
"pin-project-lite",
|
|
1855
1970
|
"tokio",
|
|
@@ -1857,9 +1972,9 @@ dependencies = [
|
|
|
1857
1972
|
|
|
1858
1973
|
[[package]]
|
|
1859
1974
|
name = "datafusion-proto"
|
|
1860
|
-
version = "
|
|
1975
|
+
version = "53.1.0"
|
|
1861
1976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1862
|
-
checksum = "
|
|
1977
|
+
checksum = "6a387aaef949dc16bb6abc81bd1af850ec7449183aef011214f9724957495738"
|
|
1863
1978
|
dependencies = [
|
|
1864
1979
|
"arrow",
|
|
1865
1980
|
"chrono",
|
|
@@ -1880,13 +1995,14 @@ dependencies = [
|
|
|
1880
1995
|
"datafusion-proto-common",
|
|
1881
1996
|
"object_store",
|
|
1882
1997
|
"prost",
|
|
1998
|
+
"rand 0.9.4",
|
|
1883
1999
|
]
|
|
1884
2000
|
|
|
1885
2001
|
[[package]]
|
|
1886
2002
|
name = "datafusion-proto-common"
|
|
1887
|
-
version = "
|
|
2003
|
+
version = "53.1.0"
|
|
1888
2004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1889
|
-
checksum = "
|
|
2005
|
+
checksum = "16e614c7c53a9c304c6a850b821010bb492e57300311835f1180613f9d2c63d9"
|
|
1890
2006
|
dependencies = [
|
|
1891
2007
|
"arrow",
|
|
1892
2008
|
"datafusion-common",
|
|
@@ -1895,9 +2011,9 @@ dependencies = [
|
|
|
1895
2011
|
|
|
1896
2012
|
[[package]]
|
|
1897
2013
|
name = "datafusion-pruning"
|
|
1898
|
-
version = "
|
|
2014
|
+
version = "53.1.0"
|
|
1899
2015
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1900
|
-
checksum = "
|
|
2016
|
+
checksum = "ac8c76860e355616555081cab5968cec1af7a80701ff374510860bcd567e365a"
|
|
1901
2017
|
dependencies = [
|
|
1902
2018
|
"arrow",
|
|
1903
2019
|
"datafusion-common",
|
|
@@ -1912,9 +2028,9 @@ dependencies = [
|
|
|
1912
2028
|
|
|
1913
2029
|
[[package]]
|
|
1914
2030
|
name = "datafusion-session"
|
|
1915
|
-
version = "
|
|
2031
|
+
version = "53.1.0"
|
|
1916
2032
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1917
|
-
checksum = "
|
|
2033
|
+
checksum = "5412111aa48e2424ba926112e192f7a6b7e4ccb450145d25ce5ede9f19dc491e"
|
|
1918
2034
|
dependencies = [
|
|
1919
2035
|
"async-trait",
|
|
1920
2036
|
"datafusion-common",
|
|
@@ -1926,15 +2042,16 @@ dependencies = [
|
|
|
1926
2042
|
|
|
1927
2043
|
[[package]]
|
|
1928
2044
|
name = "datafusion-sql"
|
|
1929
|
-
version = "
|
|
2045
|
+
version = "53.1.0"
|
|
1930
2046
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1931
|
-
checksum = "
|
|
2047
|
+
checksum = "fa0d133ddf8b9b3b872acac900157f783e7b879fe9a6bccf389abebbfac45ec1"
|
|
1932
2048
|
dependencies = [
|
|
1933
2049
|
"arrow",
|
|
1934
2050
|
"bigdecimal",
|
|
1935
2051
|
"chrono",
|
|
1936
2052
|
"datafusion-common",
|
|
1937
2053
|
"datafusion-expr",
|
|
2054
|
+
"datafusion-functions-nested",
|
|
1938
2055
|
"indexmap",
|
|
1939
2056
|
"log",
|
|
1940
2057
|
"recursive",
|
|
@@ -1942,56 +2059,14 @@ dependencies = [
|
|
|
1942
2059
|
"sqlparser",
|
|
1943
2060
|
]
|
|
1944
2061
|
|
|
1945
|
-
[[package]]
|
|
1946
|
-
name = "delta_kernel"
|
|
1947
|
-
version = "0.19.0"
|
|
1948
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1949
|
-
checksum = "d1eb81d155d4f2423b931c7bf7e58a3124b23ee9a074a4771e1751b72af7fdc5"
|
|
1950
|
-
dependencies = [
|
|
1951
|
-
"arrow",
|
|
1952
|
-
"bytes",
|
|
1953
|
-
"chrono",
|
|
1954
|
-
"comfy-table",
|
|
1955
|
-
"crc",
|
|
1956
|
-
"delta_kernel_derive",
|
|
1957
|
-
"futures",
|
|
1958
|
-
"indexmap",
|
|
1959
|
-
"itertools 0.14.0",
|
|
1960
|
-
"object_store",
|
|
1961
|
-
"parquet",
|
|
1962
|
-
"reqwest",
|
|
1963
|
-
"roaring",
|
|
1964
|
-
"rustc_version",
|
|
1965
|
-
"serde",
|
|
1966
|
-
"serde_json",
|
|
1967
|
-
"strum 0.27.1",
|
|
1968
|
-
"thiserror",
|
|
1969
|
-
"tokio",
|
|
1970
|
-
"tracing",
|
|
1971
|
-
"url",
|
|
1972
|
-
"uuid",
|
|
1973
|
-
"z85",
|
|
1974
|
-
]
|
|
1975
|
-
|
|
1976
|
-
[[package]]
|
|
1977
|
-
name = "delta_kernel_derive"
|
|
1978
|
-
version = "0.19.0"
|
|
1979
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1980
|
-
checksum = "c9e6474dabfc8e0b849ee2d68f8f13025230d1945b28c69695e9a21b9219ac8e"
|
|
1981
|
-
dependencies = [
|
|
1982
|
-
"proc-macro2",
|
|
1983
|
-
"quote",
|
|
1984
|
-
"syn",
|
|
1985
|
-
]
|
|
1986
|
-
|
|
1987
2062
|
[[package]]
|
|
1988
2063
|
name = "deltalake"
|
|
1989
|
-
version = "0.
|
|
2064
|
+
version = "0.32.1"
|
|
1990
2065
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1991
|
-
checksum = "
|
|
2066
|
+
checksum = "8268de472e1692b47d4a3016d3443fa7aa1f24d5a92337ee867204951959c293"
|
|
1992
2067
|
dependencies = [
|
|
2068
|
+
"buoyant_kernel",
|
|
1993
2069
|
"ctor",
|
|
1994
|
-
"delta_kernel",
|
|
1995
2070
|
"deltalake-aws",
|
|
1996
2071
|
"deltalake-azure",
|
|
1997
2072
|
"deltalake-core",
|
|
@@ -2000,9 +2075,9 @@ dependencies = [
|
|
|
2000
2075
|
|
|
2001
2076
|
[[package]]
|
|
2002
2077
|
name = "deltalake-aws"
|
|
2003
|
-
version = "0.
|
|
2078
|
+
version = "0.15.0"
|
|
2004
2079
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2005
|
-
checksum = "
|
|
2080
|
+
checksum = "b3ef837d5d58bb0cd62dc9ee3bc201805751090f4bab2ca0ff09669661814fd4"
|
|
2006
2081
|
dependencies = [
|
|
2007
2082
|
"async-trait",
|
|
2008
2083
|
"aws-config",
|
|
@@ -2017,7 +2092,7 @@ dependencies = [
|
|
|
2017
2092
|
"futures",
|
|
2018
2093
|
"object_store",
|
|
2019
2094
|
"regex",
|
|
2020
|
-
"thiserror",
|
|
2095
|
+
"thiserror 2.0.12",
|
|
2021
2096
|
"tokio",
|
|
2022
2097
|
"tracing",
|
|
2023
2098
|
"typed-builder",
|
|
@@ -2027,23 +2102,23 @@ dependencies = [
|
|
|
2027
2102
|
|
|
2028
2103
|
[[package]]
|
|
2029
2104
|
name = "deltalake-azure"
|
|
2030
|
-
version = "0.
|
|
2105
|
+
version = "0.15.0"
|
|
2031
2106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2032
|
-
checksum = "
|
|
2107
|
+
checksum = "f1b7099351f8d452374d75eda599cd7633a50f4a36ec318532ec6c5d1f9d908d"
|
|
2033
2108
|
dependencies = [
|
|
2034
2109
|
"bytes",
|
|
2035
2110
|
"deltalake-core",
|
|
2036
2111
|
"object_store",
|
|
2037
|
-
"thiserror",
|
|
2112
|
+
"thiserror 2.0.12",
|
|
2038
2113
|
"tokio",
|
|
2039
2114
|
"url",
|
|
2040
2115
|
]
|
|
2041
2116
|
|
|
2042
2117
|
[[package]]
|
|
2043
2118
|
name = "deltalake-core"
|
|
2044
|
-
version = "0.
|
|
2119
|
+
version = "0.32.1"
|
|
2045
2120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2046
|
-
checksum = "
|
|
2121
|
+
checksum = "4b6f1d41164959efaaae6d77fc00f9609ec59159ad4d0278924e79a0738f61b0"
|
|
2047
2122
|
dependencies = [
|
|
2048
2123
|
"arrow",
|
|
2049
2124
|
"arrow-arith",
|
|
@@ -2057,6 +2132,7 @@ dependencies = [
|
|
|
2057
2132
|
"arrow-schema",
|
|
2058
2133
|
"arrow-select",
|
|
2059
2134
|
"async-trait",
|
|
2135
|
+
"buoyant_kernel",
|
|
2060
2136
|
"bytes",
|
|
2061
2137
|
"cfg-if",
|
|
2062
2138
|
"chrono",
|
|
@@ -2065,7 +2141,6 @@ dependencies = [
|
|
|
2065
2141
|
"datafusion-datasource",
|
|
2066
2142
|
"datafusion-physical-expr-adapter",
|
|
2067
2143
|
"datafusion-proto",
|
|
2068
|
-
"delta_kernel",
|
|
2069
2144
|
"deltalake-derive",
|
|
2070
2145
|
"dirs",
|
|
2071
2146
|
"either",
|
|
@@ -2080,13 +2155,13 @@ dependencies = [
|
|
|
2080
2155
|
"percent-encoding",
|
|
2081
2156
|
"percent-encoding-rfc3986",
|
|
2082
2157
|
"pin-project-lite",
|
|
2083
|
-
"rand 0.
|
|
2158
|
+
"rand 0.10.1",
|
|
2084
2159
|
"regex",
|
|
2085
2160
|
"serde",
|
|
2086
2161
|
"serde_json",
|
|
2087
2162
|
"sqlparser",
|
|
2088
2163
|
"strum 0.27.1",
|
|
2089
|
-
"thiserror",
|
|
2164
|
+
"thiserror 2.0.12",
|
|
2090
2165
|
"tokio",
|
|
2091
2166
|
"tracing",
|
|
2092
2167
|
"url",
|
|
@@ -2096,9 +2171,9 @@ dependencies = [
|
|
|
2096
2171
|
|
|
2097
2172
|
[[package]]
|
|
2098
2173
|
name = "deltalake-derive"
|
|
2099
|
-
version = "0.
|
|
2174
|
+
version = "1.0.0"
|
|
2100
2175
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2101
|
-
checksum = "
|
|
2176
|
+
checksum = "d5a646e2b05608db1e5f91e75b6af841d92294ea0864789bb01f3f818e5f7b25"
|
|
2102
2177
|
dependencies = [
|
|
2103
2178
|
"convert_case",
|
|
2104
2179
|
"itertools 0.14.0",
|
|
@@ -2109,16 +2184,16 @@ dependencies = [
|
|
|
2109
2184
|
|
|
2110
2185
|
[[package]]
|
|
2111
2186
|
name = "deltalake-gcp"
|
|
2112
|
-
version = "0.
|
|
2187
|
+
version = "0.16.0"
|
|
2113
2188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2114
|
-
checksum = "
|
|
2189
|
+
checksum = "909d4c00c77ed1359e2d3b6a25641740f7a068a8c20e951e479e1212e67004ea"
|
|
2115
2190
|
dependencies = [
|
|
2116
2191
|
"async-trait",
|
|
2117
2192
|
"bytes",
|
|
2118
2193
|
"deltalake-core",
|
|
2119
2194
|
"futures",
|
|
2120
2195
|
"object_store",
|
|
2121
|
-
"thiserror",
|
|
2196
|
+
"thiserror 2.0.12",
|
|
2122
2197
|
"tokio",
|
|
2123
2198
|
"tracing",
|
|
2124
2199
|
"url",
|
|
@@ -2126,16 +2201,17 @@ dependencies = [
|
|
|
2126
2201
|
|
|
2127
2202
|
[[package]]
|
|
2128
2203
|
name = "deltalake-ruby"
|
|
2129
|
-
version = "0.
|
|
2204
|
+
version = "0.3.1"
|
|
2130
2205
|
dependencies = [
|
|
2131
2206
|
"arrow",
|
|
2132
2207
|
"arrow-schema",
|
|
2208
|
+
"buoyant_kernel",
|
|
2133
2209
|
"chrono",
|
|
2134
|
-
"delta_kernel",
|
|
2135
2210
|
"deltalake",
|
|
2136
2211
|
"futures",
|
|
2137
2212
|
"magnus",
|
|
2138
2213
|
"num_cpus",
|
|
2214
|
+
"rb-sys",
|
|
2139
2215
|
"serde",
|
|
2140
2216
|
"serde_json",
|
|
2141
2217
|
"tokio",
|
|
@@ -2157,11 +2233,23 @@ version = "0.10.7"
|
|
|
2157
2233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2158
2234
|
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
2159
2235
|
dependencies = [
|
|
2160
|
-
"block-buffer",
|
|
2161
|
-
"crypto-common",
|
|
2236
|
+
"block-buffer 0.10.4",
|
|
2237
|
+
"crypto-common 0.1.6",
|
|
2162
2238
|
"subtle",
|
|
2163
2239
|
]
|
|
2164
2240
|
|
|
2241
|
+
[[package]]
|
|
2242
|
+
name = "digest"
|
|
2243
|
+
version = "0.11.2"
|
|
2244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2245
|
+
checksum = "4850db49bf08e663084f7fb5c87d202ef91a3907271aff24a94eb97ff039153c"
|
|
2246
|
+
dependencies = [
|
|
2247
|
+
"block-buffer 0.12.0",
|
|
2248
|
+
"const-oid",
|
|
2249
|
+
"crypto-common 0.2.1",
|
|
2250
|
+
"ctutils",
|
|
2251
|
+
]
|
|
2252
|
+
|
|
2165
2253
|
[[package]]
|
|
2166
2254
|
name = "dirs"
|
|
2167
2255
|
version = "6.0.0"
|
|
@@ -2180,7 +2268,7 @@ dependencies = [
|
|
|
2180
2268
|
"libc",
|
|
2181
2269
|
"option-ext",
|
|
2182
2270
|
"redox_users",
|
|
2183
|
-
"windows-sys 0.
|
|
2271
|
+
"windows-sys 0.60.2",
|
|
2184
2272
|
]
|
|
2185
2273
|
|
|
2186
2274
|
[[package]]
|
|
@@ -2196,18 +2284,18 @@ dependencies = [
|
|
|
2196
2284
|
|
|
2197
2285
|
[[package]]
|
|
2198
2286
|
name = "dtor"
|
|
2199
|
-
version = "0.
|
|
2287
|
+
version = "0.7.0"
|
|
2200
2288
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2201
|
-
checksum = "
|
|
2289
|
+
checksum = "17f72721db8027a4e96dd6fb50d2a1d32259c9d3da1b63dee612ccd981e14293"
|
|
2202
2290
|
dependencies = [
|
|
2203
2291
|
"dtor-proc-macro",
|
|
2204
2292
|
]
|
|
2205
2293
|
|
|
2206
2294
|
[[package]]
|
|
2207
2295
|
name = "dtor-proc-macro"
|
|
2208
|
-
version = "0.0.
|
|
2296
|
+
version = "0.0.12"
|
|
2209
2297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2210
|
-
checksum = "
|
|
2298
|
+
checksum = "8c98b077c7463d01d22dde8a24378ddf1ca7263dc687cffbed38819ea6c21131"
|
|
2211
2299
|
|
|
2212
2300
|
[[package]]
|
|
2213
2301
|
name = "dunce"
|
|
@@ -2221,6 +2309,15 @@ version = "1.15.0"
|
|
|
2221
2309
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2222
2310
|
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
2223
2311
|
|
|
2312
|
+
[[package]]
|
|
2313
|
+
name = "encoding_rs"
|
|
2314
|
+
version = "0.8.35"
|
|
2315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2316
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
2317
|
+
dependencies = [
|
|
2318
|
+
"cfg-if",
|
|
2319
|
+
]
|
|
2320
|
+
|
|
2224
2321
|
[[package]]
|
|
2225
2322
|
name = "equivalent"
|
|
2226
2323
|
version = "1.0.2"
|
|
@@ -2261,13 +2358,13 @@ dependencies = [
|
|
|
2261
2358
|
|
|
2262
2359
|
[[package]]
|
|
2263
2360
|
name = "flate2"
|
|
2264
|
-
version = "1.1.
|
|
2361
|
+
version = "1.1.9"
|
|
2265
2362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2266
|
-
checksum = "
|
|
2363
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
2267
2364
|
dependencies = [
|
|
2268
2365
|
"crc32fast",
|
|
2269
|
-
"libz-rs-sys",
|
|
2270
2366
|
"miniz_oxide",
|
|
2367
|
+
"zlib-rs",
|
|
2271
2368
|
]
|
|
2272
2369
|
|
|
2273
2370
|
[[package]]
|
|
@@ -2438,6 +2535,7 @@ dependencies = [
|
|
|
2438
2535
|
"cfg-if",
|
|
2439
2536
|
"libc",
|
|
2440
2537
|
"r-efi",
|
|
2538
|
+
"rand_core 0.10.1",
|
|
2441
2539
|
"wasip2",
|
|
2442
2540
|
"wasip3",
|
|
2443
2541
|
]
|
|
@@ -2505,6 +2603,12 @@ dependencies = [
|
|
|
2505
2603
|
"foldhash 0.2.0",
|
|
2506
2604
|
]
|
|
2507
2605
|
|
|
2606
|
+
[[package]]
|
|
2607
|
+
name = "hashbrown"
|
|
2608
|
+
version = "0.17.0"
|
|
2609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2610
|
+
checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
|
|
2611
|
+
|
|
2508
2612
|
[[package]]
|
|
2509
2613
|
name = "heck"
|
|
2510
2614
|
version = "0.5.0"
|
|
@@ -2525,11 +2629,11 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
|
2525
2629
|
|
|
2526
2630
|
[[package]]
|
|
2527
2631
|
name = "hmac"
|
|
2528
|
-
version = "0.
|
|
2632
|
+
version = "0.13.0"
|
|
2529
2633
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2530
|
-
checksum = "
|
|
2634
|
+
checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
|
|
2531
2635
|
dependencies = [
|
|
2532
|
-
"digest",
|
|
2636
|
+
"digest 0.11.2",
|
|
2533
2637
|
]
|
|
2534
2638
|
|
|
2535
2639
|
[[package]]
|
|
@@ -2600,6 +2704,15 @@ version = "2.2.0"
|
|
|
2600
2704
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2601
2705
|
checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
|
|
2602
2706
|
|
|
2707
|
+
[[package]]
|
|
2708
|
+
name = "hybrid-array"
|
|
2709
|
+
version = "0.4.10"
|
|
2710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2711
|
+
checksum = "3944cf8cf766b40e2a1a333ee5e9b563f854d5fa49d6a8ca2764e97c6eddb214"
|
|
2712
|
+
dependencies = [
|
|
2713
|
+
"typenum",
|
|
2714
|
+
]
|
|
2715
|
+
|
|
2603
2716
|
[[package]]
|
|
2604
2717
|
name = "hyper"
|
|
2605
2718
|
version = "1.6.0"
|
|
@@ -2655,10 +2768,12 @@ dependencies = [
|
|
|
2655
2768
|
"libc",
|
|
2656
2769
|
"percent-encoding",
|
|
2657
2770
|
"pin-project-lite",
|
|
2658
|
-
"socket2 0.
|
|
2771
|
+
"socket2 0.5.10",
|
|
2772
|
+
"system-configuration",
|
|
2659
2773
|
"tokio",
|
|
2660
2774
|
"tower-service",
|
|
2661
2775
|
"tracing",
|
|
2776
|
+
"windows-registry",
|
|
2662
2777
|
]
|
|
2663
2778
|
|
|
2664
2779
|
[[package]]
|
|
@@ -2806,12 +2921,12 @@ dependencies = [
|
|
|
2806
2921
|
|
|
2807
2922
|
[[package]]
|
|
2808
2923
|
name = "indexmap"
|
|
2809
|
-
version = "2.
|
|
2924
|
+
version = "2.14.0"
|
|
2810
2925
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2811
|
-
checksum = "
|
|
2926
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
2812
2927
|
dependencies = [
|
|
2813
2928
|
"equivalent",
|
|
2814
|
-
"hashbrown 0.
|
|
2929
|
+
"hashbrown 0.17.0",
|
|
2815
2930
|
"serde",
|
|
2816
2931
|
"serde_core",
|
|
2817
2932
|
]
|
|
@@ -2862,6 +2977,50 @@ version = "1.0.17"
|
|
|
2862
2977
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2863
2978
|
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
2864
2979
|
|
|
2980
|
+
[[package]]
|
|
2981
|
+
name = "jni"
|
|
2982
|
+
version = "0.21.1"
|
|
2983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2984
|
+
checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
|
|
2985
|
+
dependencies = [
|
|
2986
|
+
"cesu8",
|
|
2987
|
+
"cfg-if",
|
|
2988
|
+
"combine",
|
|
2989
|
+
"jni-sys 0.3.1",
|
|
2990
|
+
"log",
|
|
2991
|
+
"thiserror 1.0.69",
|
|
2992
|
+
"walkdir",
|
|
2993
|
+
"windows-sys 0.45.0",
|
|
2994
|
+
]
|
|
2995
|
+
|
|
2996
|
+
[[package]]
|
|
2997
|
+
name = "jni-sys"
|
|
2998
|
+
version = "0.3.1"
|
|
2999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3000
|
+
checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
|
|
3001
|
+
dependencies = [
|
|
3002
|
+
"jni-sys 0.4.1",
|
|
3003
|
+
]
|
|
3004
|
+
|
|
3005
|
+
[[package]]
|
|
3006
|
+
name = "jni-sys"
|
|
3007
|
+
version = "0.4.1"
|
|
3008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3009
|
+
checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
|
|
3010
|
+
dependencies = [
|
|
3011
|
+
"jni-sys-macros",
|
|
3012
|
+
]
|
|
3013
|
+
|
|
3014
|
+
[[package]]
|
|
3015
|
+
name = "jni-sys-macros"
|
|
3016
|
+
version = "0.4.1"
|
|
3017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3018
|
+
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
3019
|
+
dependencies = [
|
|
3020
|
+
"quote",
|
|
3021
|
+
"syn",
|
|
3022
|
+
]
|
|
3023
|
+
|
|
2865
3024
|
[[package]]
|
|
2866
3025
|
name = "jobserver"
|
|
2867
3026
|
version = "0.1.33"
|
|
@@ -2972,9 +3131,9 @@ checksum = "2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7"
|
|
|
2972
3131
|
|
|
2973
3132
|
[[package]]
|
|
2974
3133
|
name = "libc"
|
|
2975
|
-
version = "0.2.
|
|
3134
|
+
version = "0.2.185"
|
|
2976
3135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2977
|
-
checksum = "
|
|
3136
|
+
checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
|
|
2978
3137
|
|
|
2979
3138
|
[[package]]
|
|
2980
3139
|
name = "libloading"
|
|
@@ -3023,19 +3182,10 @@ dependencies = [
|
|
|
3023
3182
|
]
|
|
3024
3183
|
|
|
3025
3184
|
[[package]]
|
|
3026
|
-
name = "
|
|
3027
|
-
version = "0.
|
|
3028
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3029
|
-
checksum = "172a788537a2221661b480fee8dc5f96c580eb34fa88764d3205dc356c7e4221"
|
|
3030
|
-
dependencies = [
|
|
3031
|
-
"zlib-rs",
|
|
3032
|
-
]
|
|
3033
|
-
|
|
3034
|
-
[[package]]
|
|
3035
|
-
name = "linux-raw-sys"
|
|
3036
|
-
version = "0.4.15"
|
|
3185
|
+
name = "link-section"
|
|
3186
|
+
version = "0.2.1"
|
|
3037
3187
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3038
|
-
checksum = "
|
|
3188
|
+
checksum = "b685d66585d646efe09fec763d796c291049c8b6bf84e04954bffc8748341f0d"
|
|
3039
3189
|
|
|
3040
3190
|
[[package]]
|
|
3041
3191
|
name = "linux-raw-sys"
|
|
@@ -3073,9 +3223,9 @@ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
|
3073
3223
|
|
|
3074
3224
|
[[package]]
|
|
3075
3225
|
name = "lz4_flex"
|
|
3076
|
-
version = "0.
|
|
3226
|
+
version = "0.13.0"
|
|
3077
3227
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3078
|
-
checksum = "
|
|
3228
|
+
checksum = "db9a0d582c2874f68138a16ce1867e0ffde6c0bb0a0df85e1f36d04146db488a"
|
|
3079
3229
|
dependencies = [
|
|
3080
3230
|
"twox-hash",
|
|
3081
3231
|
]
|
|
@@ -3110,14 +3260,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3110
3260
|
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
|
3111
3261
|
dependencies = [
|
|
3112
3262
|
"cfg-if",
|
|
3113
|
-
"digest",
|
|
3263
|
+
"digest 0.10.7",
|
|
3114
3264
|
]
|
|
3115
3265
|
|
|
3116
3266
|
[[package]]
|
|
3117
3267
|
name = "memchr"
|
|
3118
|
-
version = "2.
|
|
3268
|
+
version = "2.8.0"
|
|
3119
3269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3120
|
-
checksum = "
|
|
3270
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
3271
|
+
|
|
3272
|
+
[[package]]
|
|
3273
|
+
name = "mime"
|
|
3274
|
+
version = "0.3.17"
|
|
3275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3276
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
3121
3277
|
|
|
3122
3278
|
[[package]]
|
|
3123
3279
|
name = "minimal-lexical"
|
|
@@ -3212,16 +3368,18 @@ dependencies = [
|
|
|
3212
3368
|
|
|
3213
3369
|
[[package]]
|
|
3214
3370
|
name = "object_store"
|
|
3215
|
-
version = "0.
|
|
3371
|
+
version = "0.13.2"
|
|
3216
3372
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3217
|
-
checksum = "
|
|
3373
|
+
checksum = "622acbc9100d3c10e2ee15804b0caa40e55c933d5aa53814cd520805b7958a49"
|
|
3218
3374
|
dependencies = [
|
|
3219
3375
|
"async-trait",
|
|
3220
3376
|
"base64",
|
|
3221
3377
|
"bytes",
|
|
3222
3378
|
"chrono",
|
|
3223
3379
|
"form_urlencoded",
|
|
3224
|
-
"futures",
|
|
3380
|
+
"futures-channel",
|
|
3381
|
+
"futures-core",
|
|
3382
|
+
"futures-util",
|
|
3225
3383
|
"http 1.3.1",
|
|
3226
3384
|
"http-body-util",
|
|
3227
3385
|
"httparse",
|
|
@@ -3232,14 +3390,14 @@ dependencies = [
|
|
|
3232
3390
|
"parking_lot",
|
|
3233
3391
|
"percent-encoding",
|
|
3234
3392
|
"quick-xml",
|
|
3235
|
-
"rand 0.
|
|
3236
|
-
"reqwest",
|
|
3393
|
+
"rand 0.10.1",
|
|
3394
|
+
"reqwest 0.12.23",
|
|
3237
3395
|
"ring",
|
|
3238
|
-
"rustls-
|
|
3396
|
+
"rustls-pki-types",
|
|
3239
3397
|
"serde",
|
|
3240
3398
|
"serde_json",
|
|
3241
3399
|
"serde_urlencoded",
|
|
3242
|
-
"thiserror",
|
|
3400
|
+
"thiserror 2.0.12",
|
|
3243
3401
|
"tokio",
|
|
3244
3402
|
"tracing",
|
|
3245
3403
|
"url",
|
|
@@ -3306,14 +3464,13 @@ dependencies = [
|
|
|
3306
3464
|
|
|
3307
3465
|
[[package]]
|
|
3308
3466
|
name = "parquet"
|
|
3309
|
-
version = "
|
|
3467
|
+
version = "58.1.0"
|
|
3310
3468
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3311
|
-
checksum = "
|
|
3469
|
+
checksum = "7d3f9f2205199603564127932b89695f52b62322f541d0fc7179d57c2e1c9877"
|
|
3312
3470
|
dependencies = [
|
|
3313
3471
|
"ahash",
|
|
3314
3472
|
"arrow-array",
|
|
3315
3473
|
"arrow-buffer",
|
|
3316
|
-
"arrow-cast",
|
|
3317
3474
|
"arrow-data",
|
|
3318
3475
|
"arrow-ipc",
|
|
3319
3476
|
"arrow-schema",
|
|
@@ -3465,9 +3622,9 @@ dependencies = [
|
|
|
3465
3622
|
|
|
3466
3623
|
[[package]]
|
|
3467
3624
|
name = "proc-macro2"
|
|
3468
|
-
version = "1.0.
|
|
3625
|
+
version = "1.0.106"
|
|
3469
3626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3470
|
-
checksum = "
|
|
3627
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
3471
3628
|
dependencies = [
|
|
3472
3629
|
"unicode-ident",
|
|
3473
3630
|
]
|
|
@@ -3506,9 +3663,9 @@ dependencies = [
|
|
|
3506
3663
|
|
|
3507
3664
|
[[package]]
|
|
3508
3665
|
name = "quick-xml"
|
|
3509
|
-
version = "0.
|
|
3666
|
+
version = "0.39.2"
|
|
3510
3667
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3511
|
-
checksum = "
|
|
3668
|
+
checksum = "958f21e8e7ceb5a1aa7fa87fab28e7c75976e0bfe7e23ff069e0a260f894067d"
|
|
3512
3669
|
dependencies = [
|
|
3513
3670
|
"memchr",
|
|
3514
3671
|
"serde",
|
|
@@ -3528,7 +3685,7 @@ dependencies = [
|
|
|
3528
3685
|
"rustc-hash 2.1.1",
|
|
3529
3686
|
"rustls",
|
|
3530
3687
|
"socket2 0.5.10",
|
|
3531
|
-
"thiserror",
|
|
3688
|
+
"thiserror 2.0.12",
|
|
3532
3689
|
"tokio",
|
|
3533
3690
|
"tracing",
|
|
3534
3691
|
"web-time",
|
|
@@ -3540,16 +3697,17 @@ version = "0.11.14"
|
|
|
3540
3697
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3541
3698
|
checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
|
|
3542
3699
|
dependencies = [
|
|
3700
|
+
"aws-lc-rs",
|
|
3543
3701
|
"bytes",
|
|
3544
3702
|
"getrandom 0.3.3",
|
|
3545
3703
|
"lru-slab",
|
|
3546
|
-
"rand 0.9.
|
|
3704
|
+
"rand 0.9.4",
|
|
3547
3705
|
"ring",
|
|
3548
3706
|
"rustc-hash 2.1.1",
|
|
3549
3707
|
"rustls",
|
|
3550
3708
|
"rustls-pki-types",
|
|
3551
3709
|
"slab",
|
|
3552
|
-
"thiserror",
|
|
3710
|
+
"thiserror 2.0.12",
|
|
3553
3711
|
"tinyvec",
|
|
3554
3712
|
"tracing",
|
|
3555
3713
|
"web-time",
|
|
@@ -3566,14 +3724,14 @@ dependencies = [
|
|
|
3566
3724
|
"once_cell",
|
|
3567
3725
|
"socket2 0.5.10",
|
|
3568
3726
|
"tracing",
|
|
3569
|
-
"windows-sys 0.
|
|
3727
|
+
"windows-sys 0.52.0",
|
|
3570
3728
|
]
|
|
3571
3729
|
|
|
3572
3730
|
[[package]]
|
|
3573
3731
|
name = "quote"
|
|
3574
|
-
version = "1.0.
|
|
3732
|
+
version = "1.0.45"
|
|
3575
3733
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3576
|
-
checksum = "
|
|
3734
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
3577
3735
|
dependencies = [
|
|
3578
3736
|
"proc-macro2",
|
|
3579
3737
|
]
|
|
@@ -3586,33 +3744,23 @@ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
|
3586
3744
|
|
|
3587
3745
|
[[package]]
|
|
3588
3746
|
name = "rand"
|
|
3589
|
-
version = "0.
|
|
3590
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3591
|
-
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
3592
|
-
dependencies = [
|
|
3593
|
-
"libc",
|
|
3594
|
-
"rand_chacha 0.3.1",
|
|
3595
|
-
"rand_core 0.6.4",
|
|
3596
|
-
]
|
|
3597
|
-
|
|
3598
|
-
[[package]]
|
|
3599
|
-
name = "rand"
|
|
3600
|
-
version = "0.9.1"
|
|
3747
|
+
version = "0.9.4"
|
|
3601
3748
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3602
|
-
checksum = "
|
|
3749
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
3603
3750
|
dependencies = [
|
|
3604
|
-
"rand_chacha
|
|
3751
|
+
"rand_chacha",
|
|
3605
3752
|
"rand_core 0.9.3",
|
|
3606
3753
|
]
|
|
3607
3754
|
|
|
3608
3755
|
[[package]]
|
|
3609
|
-
name = "
|
|
3610
|
-
version = "0.
|
|
3756
|
+
name = "rand"
|
|
3757
|
+
version = "0.10.1"
|
|
3611
3758
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3612
|
-
checksum = "
|
|
3759
|
+
checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
|
|
3613
3760
|
dependencies = [
|
|
3614
|
-
"
|
|
3615
|
-
"
|
|
3761
|
+
"chacha20",
|
|
3762
|
+
"getrandom 0.4.1",
|
|
3763
|
+
"rand_core 0.10.1",
|
|
3616
3764
|
]
|
|
3617
3765
|
|
|
3618
3766
|
[[package]]
|
|
@@ -3627,21 +3775,18 @@ dependencies = [
|
|
|
3627
3775
|
|
|
3628
3776
|
[[package]]
|
|
3629
3777
|
name = "rand_core"
|
|
3630
|
-
version = "0.
|
|
3778
|
+
version = "0.9.3"
|
|
3631
3779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3632
|
-
checksum = "
|
|
3780
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
3633
3781
|
dependencies = [
|
|
3634
|
-
"getrandom 0.
|
|
3782
|
+
"getrandom 0.3.3",
|
|
3635
3783
|
]
|
|
3636
3784
|
|
|
3637
3785
|
[[package]]
|
|
3638
3786
|
name = "rand_core"
|
|
3639
|
-
version = "0.
|
|
3787
|
+
version = "0.10.1"
|
|
3640
3788
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3641
|
-
checksum = "
|
|
3642
|
-
dependencies = [
|
|
3643
|
-
"getrandom 0.3.3",
|
|
3644
|
-
]
|
|
3789
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
3645
3790
|
|
|
3646
3791
|
[[package]]
|
|
3647
3792
|
name = "rb-sys"
|
|
@@ -3710,7 +3855,7 @@ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
|
|
|
3710
3855
|
dependencies = [
|
|
3711
3856
|
"getrandom 0.2.16",
|
|
3712
3857
|
"libredox",
|
|
3713
|
-
"thiserror",
|
|
3858
|
+
"thiserror 2.0.12",
|
|
3714
3859
|
]
|
|
3715
3860
|
|
|
3716
3861
|
[[package]]
|
|
@@ -3744,9 +3889,9 @@ checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"
|
|
|
3744
3889
|
|
|
3745
3890
|
[[package]]
|
|
3746
3891
|
name = "regex-syntax"
|
|
3747
|
-
version = "0.8.
|
|
3892
|
+
version = "0.8.10"
|
|
3748
3893
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3749
|
-
checksum = "
|
|
3894
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
3750
3895
|
|
|
3751
3896
|
[[package]]
|
|
3752
3897
|
name = "reqwest"
|
|
@@ -3790,6 +3935,44 @@ dependencies = [
|
|
|
3790
3935
|
"web-sys",
|
|
3791
3936
|
]
|
|
3792
3937
|
|
|
3938
|
+
[[package]]
|
|
3939
|
+
name = "reqwest"
|
|
3940
|
+
version = "0.13.2"
|
|
3941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3942
|
+
checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801"
|
|
3943
|
+
dependencies = [
|
|
3944
|
+
"base64",
|
|
3945
|
+
"bytes",
|
|
3946
|
+
"encoding_rs",
|
|
3947
|
+
"futures-core",
|
|
3948
|
+
"h2",
|
|
3949
|
+
"http 1.3.1",
|
|
3950
|
+
"http-body 1.0.1",
|
|
3951
|
+
"http-body-util",
|
|
3952
|
+
"hyper",
|
|
3953
|
+
"hyper-rustls",
|
|
3954
|
+
"hyper-util",
|
|
3955
|
+
"js-sys",
|
|
3956
|
+
"log",
|
|
3957
|
+
"mime",
|
|
3958
|
+
"percent-encoding",
|
|
3959
|
+
"pin-project-lite",
|
|
3960
|
+
"quinn",
|
|
3961
|
+
"rustls",
|
|
3962
|
+
"rustls-pki-types",
|
|
3963
|
+
"rustls-platform-verifier",
|
|
3964
|
+
"sync_wrapper",
|
|
3965
|
+
"tokio",
|
|
3966
|
+
"tokio-rustls",
|
|
3967
|
+
"tower",
|
|
3968
|
+
"tower-http",
|
|
3969
|
+
"tower-service",
|
|
3970
|
+
"url",
|
|
3971
|
+
"wasm-bindgen",
|
|
3972
|
+
"wasm-bindgen-futures",
|
|
3973
|
+
"web-sys",
|
|
3974
|
+
]
|
|
3975
|
+
|
|
3793
3976
|
[[package]]
|
|
3794
3977
|
name = "ring"
|
|
3795
3978
|
version = "0.17.14"
|
|
@@ -3835,19 +4018,6 @@ dependencies = [
|
|
|
3835
4018
|
"semver",
|
|
3836
4019
|
]
|
|
3837
4020
|
|
|
3838
|
-
[[package]]
|
|
3839
|
-
name = "rustix"
|
|
3840
|
-
version = "0.38.44"
|
|
3841
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3842
|
-
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
3843
|
-
dependencies = [
|
|
3844
|
-
"bitflags",
|
|
3845
|
-
"errno",
|
|
3846
|
-
"libc",
|
|
3847
|
-
"linux-raw-sys 0.4.15",
|
|
3848
|
-
"windows-sys 0.59.0",
|
|
3849
|
-
]
|
|
3850
|
-
|
|
3851
4021
|
[[package]]
|
|
3852
4022
|
name = "rustix"
|
|
3853
4023
|
version = "1.0.7"
|
|
@@ -3857,8 +4027,8 @@ dependencies = [
|
|
|
3857
4027
|
"bitflags",
|
|
3858
4028
|
"errno",
|
|
3859
4029
|
"libc",
|
|
3860
|
-
"linux-raw-sys
|
|
3861
|
-
"windows-sys 0.
|
|
4030
|
+
"linux-raw-sys",
|
|
4031
|
+
"windows-sys 0.52.0",
|
|
3862
4032
|
]
|
|
3863
4033
|
|
|
3864
4034
|
[[package]]
|
|
@@ -3888,15 +4058,6 @@ dependencies = [
|
|
|
3888
4058
|
"security-framework",
|
|
3889
4059
|
]
|
|
3890
4060
|
|
|
3891
|
-
[[package]]
|
|
3892
|
-
name = "rustls-pemfile"
|
|
3893
|
-
version = "2.2.0"
|
|
3894
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3895
|
-
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
|
3896
|
-
dependencies = [
|
|
3897
|
-
"rustls-pki-types",
|
|
3898
|
-
]
|
|
3899
|
-
|
|
3900
4061
|
[[package]]
|
|
3901
4062
|
name = "rustls-pki-types"
|
|
3902
4063
|
version = "1.12.0"
|
|
@@ -3907,11 +4068,38 @@ dependencies = [
|
|
|
3907
4068
|
"zeroize",
|
|
3908
4069
|
]
|
|
3909
4070
|
|
|
4071
|
+
[[package]]
|
|
4072
|
+
name = "rustls-platform-verifier"
|
|
4073
|
+
version = "0.6.2"
|
|
4074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4075
|
+
checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
|
|
4076
|
+
dependencies = [
|
|
4077
|
+
"core-foundation 0.10.1",
|
|
4078
|
+
"core-foundation-sys",
|
|
4079
|
+
"jni",
|
|
4080
|
+
"log",
|
|
4081
|
+
"once_cell",
|
|
4082
|
+
"rustls",
|
|
4083
|
+
"rustls-native-certs",
|
|
4084
|
+
"rustls-platform-verifier-android",
|
|
4085
|
+
"rustls-webpki",
|
|
4086
|
+
"security-framework",
|
|
4087
|
+
"security-framework-sys",
|
|
4088
|
+
"webpki-root-certs",
|
|
4089
|
+
"windows-sys 0.52.0",
|
|
4090
|
+
]
|
|
4091
|
+
|
|
4092
|
+
[[package]]
|
|
4093
|
+
name = "rustls-platform-verifier-android"
|
|
4094
|
+
version = "0.1.1"
|
|
4095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4096
|
+
checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
4097
|
+
|
|
3910
4098
|
[[package]]
|
|
3911
4099
|
name = "rustls-webpki"
|
|
3912
|
-
version = "0.103.
|
|
4100
|
+
version = "0.103.13"
|
|
3913
4101
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3914
|
-
checksum = "
|
|
4102
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
3915
4103
|
dependencies = [
|
|
3916
4104
|
"aws-lc-rs",
|
|
3917
4105
|
"ring",
|
|
@@ -3957,12 +4145,12 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
3957
4145
|
|
|
3958
4146
|
[[package]]
|
|
3959
4147
|
name = "security-framework"
|
|
3960
|
-
version = "3.
|
|
4148
|
+
version = "3.7.0"
|
|
3961
4149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3962
|
-
checksum = "
|
|
4150
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
3963
4151
|
dependencies = [
|
|
3964
4152
|
"bitflags",
|
|
3965
|
-
"core-foundation",
|
|
4153
|
+
"core-foundation 0.10.1",
|
|
3966
4154
|
"core-foundation-sys",
|
|
3967
4155
|
"libc",
|
|
3968
4156
|
"security-framework-sys",
|
|
@@ -3970,9 +4158,9 @@ dependencies = [
|
|
|
3970
4158
|
|
|
3971
4159
|
[[package]]
|
|
3972
4160
|
name = "security-framework-sys"
|
|
3973
|
-
version = "2.
|
|
4161
|
+
version = "2.17.0"
|
|
3974
4162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3975
|
-
checksum = "
|
|
4163
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
3976
4164
|
dependencies = [
|
|
3977
4165
|
"core-foundation-sys",
|
|
3978
4166
|
"libc",
|
|
@@ -4051,8 +4239,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4051
4239
|
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
4052
4240
|
dependencies = [
|
|
4053
4241
|
"cfg-if",
|
|
4054
|
-
"cpufeatures",
|
|
4055
|
-
"digest",
|
|
4242
|
+
"cpufeatures 0.2.17",
|
|
4243
|
+
"digest 0.10.7",
|
|
4244
|
+
]
|
|
4245
|
+
|
|
4246
|
+
[[package]]
|
|
4247
|
+
name = "sha2"
|
|
4248
|
+
version = "0.11.0"
|
|
4249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4250
|
+
checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
4251
|
+
dependencies = [
|
|
4252
|
+
"cfg-if",
|
|
4253
|
+
"cpufeatures 0.3.0",
|
|
4254
|
+
"digest 0.11.2",
|
|
4056
4255
|
]
|
|
4057
4256
|
|
|
4058
4257
|
[[package]]
|
|
@@ -4134,9 +4333,9 @@ dependencies = [
|
|
|
4134
4333
|
|
|
4135
4334
|
[[package]]
|
|
4136
4335
|
name = "sqlparser"
|
|
4137
|
-
version = "0.
|
|
4336
|
+
version = "0.61.0"
|
|
4138
4337
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4139
|
-
checksum = "
|
|
4338
|
+
checksum = "dbf5ea8d4d7c808e1af1cbabebca9a2abe603bcefc22294c5b95018d53200cb7"
|
|
4140
4339
|
dependencies = [
|
|
4141
4340
|
"log",
|
|
4142
4341
|
"recursive",
|
|
@@ -4145,9 +4344,9 @@ dependencies = [
|
|
|
4145
4344
|
|
|
4146
4345
|
[[package]]
|
|
4147
4346
|
name = "sqlparser_derive"
|
|
4148
|
-
version = "0.
|
|
4347
|
+
version = "0.5.0"
|
|
4149
4348
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4150
|
-
checksum = "
|
|
4349
|
+
checksum = "a6dd45d8fc1c79299bfbb7190e42ccbbdf6a5f52e4a6ad98d92357ea965bd289"
|
|
4151
4350
|
dependencies = [
|
|
4152
4351
|
"proc-macro2",
|
|
4153
4352
|
"quote",
|
|
@@ -4170,7 +4369,7 @@ dependencies = [
|
|
|
4170
4369
|
"cfg-if",
|
|
4171
4370
|
"libc",
|
|
4172
4371
|
"psm",
|
|
4173
|
-
"windows-sys 0.
|
|
4372
|
+
"windows-sys 0.52.0",
|
|
4174
4373
|
]
|
|
4175
4374
|
|
|
4176
4375
|
[[package]]
|
|
@@ -4234,9 +4433,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
4234
4433
|
|
|
4235
4434
|
[[package]]
|
|
4236
4435
|
name = "syn"
|
|
4237
|
-
version = "2.0.
|
|
4436
|
+
version = "2.0.117"
|
|
4238
4437
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4239
|
-
checksum = "
|
|
4438
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
4240
4439
|
dependencies = [
|
|
4241
4440
|
"proc-macro2",
|
|
4242
4441
|
"quote",
|
|
@@ -4263,6 +4462,27 @@ dependencies = [
|
|
|
4263
4462
|
"syn",
|
|
4264
4463
|
]
|
|
4265
4464
|
|
|
4465
|
+
[[package]]
|
|
4466
|
+
name = "system-configuration"
|
|
4467
|
+
version = "0.6.1"
|
|
4468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4469
|
+
checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
|
|
4470
|
+
dependencies = [
|
|
4471
|
+
"bitflags",
|
|
4472
|
+
"core-foundation 0.9.4",
|
|
4473
|
+
"system-configuration-sys",
|
|
4474
|
+
]
|
|
4475
|
+
|
|
4476
|
+
[[package]]
|
|
4477
|
+
name = "system-configuration-sys"
|
|
4478
|
+
version = "0.6.0"
|
|
4479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4480
|
+
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
|
|
4481
|
+
dependencies = [
|
|
4482
|
+
"core-foundation-sys",
|
|
4483
|
+
"libc",
|
|
4484
|
+
]
|
|
4485
|
+
|
|
4266
4486
|
[[package]]
|
|
4267
4487
|
name = "tempfile"
|
|
4268
4488
|
version = "3.20.0"
|
|
@@ -4272,8 +4492,17 @@ dependencies = [
|
|
|
4272
4492
|
"fastrand",
|
|
4273
4493
|
"getrandom 0.3.3",
|
|
4274
4494
|
"once_cell",
|
|
4275
|
-
"rustix
|
|
4276
|
-
"windows-sys 0.
|
|
4495
|
+
"rustix",
|
|
4496
|
+
"windows-sys 0.52.0",
|
|
4497
|
+
]
|
|
4498
|
+
|
|
4499
|
+
[[package]]
|
|
4500
|
+
name = "thiserror"
|
|
4501
|
+
version = "1.0.69"
|
|
4502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4503
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
4504
|
+
dependencies = [
|
|
4505
|
+
"thiserror-impl 1.0.69",
|
|
4277
4506
|
]
|
|
4278
4507
|
|
|
4279
4508
|
[[package]]
|
|
@@ -4282,7 +4511,18 @@ version = "2.0.12"
|
|
|
4282
4511
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4283
4512
|
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
|
4284
4513
|
dependencies = [
|
|
4285
|
-
"thiserror-impl",
|
|
4514
|
+
"thiserror-impl 2.0.12",
|
|
4515
|
+
]
|
|
4516
|
+
|
|
4517
|
+
[[package]]
|
|
4518
|
+
name = "thiserror-impl"
|
|
4519
|
+
version = "1.0.69"
|
|
4520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4521
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
4522
|
+
dependencies = [
|
|
4523
|
+
"proc-macro2",
|
|
4524
|
+
"quote",
|
|
4525
|
+
"syn",
|
|
4286
4526
|
]
|
|
4287
4527
|
|
|
4288
4528
|
[[package]]
|
|
@@ -4409,6 +4649,18 @@ dependencies = [
|
|
|
4409
4649
|
"tokio",
|
|
4410
4650
|
]
|
|
4411
4651
|
|
|
4652
|
+
[[package]]
|
|
4653
|
+
name = "tokio-stream"
|
|
4654
|
+
version = "0.1.18"
|
|
4655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4656
|
+
checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
|
|
4657
|
+
dependencies = [
|
|
4658
|
+
"futures-core",
|
|
4659
|
+
"pin-project-lite",
|
|
4660
|
+
"tokio",
|
|
4661
|
+
"tokio-util",
|
|
4662
|
+
]
|
|
4663
|
+
|
|
4412
4664
|
[[package]]
|
|
4413
4665
|
name = "tokio-util"
|
|
4414
4666
|
version = "0.7.18"
|
|
@@ -4439,9 +4691,9 @@ dependencies = [
|
|
|
4439
4691
|
|
|
4440
4692
|
[[package]]
|
|
4441
4693
|
name = "tower-http"
|
|
4442
|
-
version = "0.6.
|
|
4694
|
+
version = "0.6.8"
|
|
4443
4695
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4444
|
-
checksum = "
|
|
4696
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
4445
4697
|
dependencies = [
|
|
4446
4698
|
"bitflags",
|
|
4447
4699
|
"bytes",
|
|
@@ -4599,7 +4851,7 @@ checksum = "b672338555252d43fd2240c714dc444b8c6fb0a5c5335e65a07bba7742735ddb"
|
|
|
4599
4851
|
dependencies = [
|
|
4600
4852
|
"getrandom 0.4.1",
|
|
4601
4853
|
"js-sys",
|
|
4602
|
-
"rand 0.9.
|
|
4854
|
+
"rand 0.9.4",
|
|
4603
4855
|
"serde_core",
|
|
4604
4856
|
"wasm-bindgen",
|
|
4605
4857
|
]
|
|
@@ -4837,36 +5089,23 @@ dependencies = [
|
|
|
4837
5089
|
]
|
|
4838
5090
|
|
|
4839
5091
|
[[package]]
|
|
4840
|
-
name = "
|
|
4841
|
-
version = "0.
|
|
5092
|
+
name = "webpki-root-certs"
|
|
5093
|
+
version = "1.0.7"
|
|
4842
5094
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4843
|
-
checksum = "
|
|
5095
|
+
checksum = "f31141ce3fc3e300ae89b78c0dd67f9708061d1d2eda54b8209346fd6be9a92c"
|
|
4844
5096
|
dependencies = [
|
|
4845
|
-
"
|
|
4846
|
-
"winapi-x86_64-pc-windows-gnu",
|
|
5097
|
+
"rustls-pki-types",
|
|
4847
5098
|
]
|
|
4848
5099
|
|
|
4849
|
-
[[package]]
|
|
4850
|
-
name = "winapi-i686-pc-windows-gnu"
|
|
4851
|
-
version = "0.4.0"
|
|
4852
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4853
|
-
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
4854
|
-
|
|
4855
5100
|
[[package]]
|
|
4856
5101
|
name = "winapi-util"
|
|
4857
5102
|
version = "0.1.9"
|
|
4858
5103
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4859
5104
|
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
|
4860
5105
|
dependencies = [
|
|
4861
|
-
"windows-sys 0.
|
|
5106
|
+
"windows-sys 0.52.0",
|
|
4862
5107
|
]
|
|
4863
5108
|
|
|
4864
|
-
[[package]]
|
|
4865
|
-
name = "winapi-x86_64-pc-windows-gnu"
|
|
4866
|
-
version = "0.4.0"
|
|
4867
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4868
|
-
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
4869
|
-
|
|
4870
5109
|
[[package]]
|
|
4871
5110
|
name = "windows-core"
|
|
4872
5111
|
version = "0.61.2"
|
|
@@ -4914,6 +5153,17 @@ version = "0.2.1"
|
|
|
4914
5153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4915
5154
|
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
4916
5155
|
|
|
5156
|
+
[[package]]
|
|
5157
|
+
name = "windows-registry"
|
|
5158
|
+
version = "0.5.3"
|
|
5159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5160
|
+
checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e"
|
|
5161
|
+
dependencies = [
|
|
5162
|
+
"windows-link 0.1.3",
|
|
5163
|
+
"windows-result",
|
|
5164
|
+
"windows-strings",
|
|
5165
|
+
]
|
|
5166
|
+
|
|
4917
5167
|
[[package]]
|
|
4918
5168
|
name = "windows-result"
|
|
4919
5169
|
version = "0.3.4"
|
|
@@ -4932,6 +5182,15 @@ dependencies = [
|
|
|
4932
5182
|
"windows-link 0.1.3",
|
|
4933
5183
|
]
|
|
4934
5184
|
|
|
5185
|
+
[[package]]
|
|
5186
|
+
name = "windows-sys"
|
|
5187
|
+
version = "0.45.0"
|
|
5188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5189
|
+
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
5190
|
+
dependencies = [
|
|
5191
|
+
"windows-targets 0.42.2",
|
|
5192
|
+
]
|
|
5193
|
+
|
|
4935
5194
|
[[package]]
|
|
4936
5195
|
name = "windows-sys"
|
|
4937
5196
|
version = "0.52.0"
|
|
@@ -4968,6 +5227,21 @@ dependencies = [
|
|
|
4968
5227
|
"windows-link 0.2.1",
|
|
4969
5228
|
]
|
|
4970
5229
|
|
|
5230
|
+
[[package]]
|
|
5231
|
+
name = "windows-targets"
|
|
5232
|
+
version = "0.42.2"
|
|
5233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5234
|
+
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
5235
|
+
dependencies = [
|
|
5236
|
+
"windows_aarch64_gnullvm 0.42.2",
|
|
5237
|
+
"windows_aarch64_msvc 0.42.2",
|
|
5238
|
+
"windows_i686_gnu 0.42.2",
|
|
5239
|
+
"windows_i686_msvc 0.42.2",
|
|
5240
|
+
"windows_x86_64_gnu 0.42.2",
|
|
5241
|
+
"windows_x86_64_gnullvm 0.42.2",
|
|
5242
|
+
"windows_x86_64_msvc 0.42.2",
|
|
5243
|
+
]
|
|
5244
|
+
|
|
4971
5245
|
[[package]]
|
|
4972
5246
|
name = "windows-targets"
|
|
4973
5247
|
version = "0.52.6"
|
|
@@ -5000,6 +5274,12 @@ dependencies = [
|
|
|
5000
5274
|
"windows_x86_64_msvc 0.53.0",
|
|
5001
5275
|
]
|
|
5002
5276
|
|
|
5277
|
+
[[package]]
|
|
5278
|
+
name = "windows_aarch64_gnullvm"
|
|
5279
|
+
version = "0.42.2"
|
|
5280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5281
|
+
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
5282
|
+
|
|
5003
5283
|
[[package]]
|
|
5004
5284
|
name = "windows_aarch64_gnullvm"
|
|
5005
5285
|
version = "0.52.6"
|
|
@@ -5012,6 +5292,12 @@ version = "0.53.0"
|
|
|
5012
5292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5013
5293
|
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
5014
5294
|
|
|
5295
|
+
[[package]]
|
|
5296
|
+
name = "windows_aarch64_msvc"
|
|
5297
|
+
version = "0.42.2"
|
|
5298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5299
|
+
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
5300
|
+
|
|
5015
5301
|
[[package]]
|
|
5016
5302
|
name = "windows_aarch64_msvc"
|
|
5017
5303
|
version = "0.52.6"
|
|
@@ -5024,6 +5310,12 @@ version = "0.53.0"
|
|
|
5024
5310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5025
5311
|
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
5026
5312
|
|
|
5313
|
+
[[package]]
|
|
5314
|
+
name = "windows_i686_gnu"
|
|
5315
|
+
version = "0.42.2"
|
|
5316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5317
|
+
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
5318
|
+
|
|
5027
5319
|
[[package]]
|
|
5028
5320
|
name = "windows_i686_gnu"
|
|
5029
5321
|
version = "0.52.6"
|
|
@@ -5048,6 +5340,12 @@ version = "0.53.0"
|
|
|
5048
5340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5049
5341
|
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
5050
5342
|
|
|
5343
|
+
[[package]]
|
|
5344
|
+
name = "windows_i686_msvc"
|
|
5345
|
+
version = "0.42.2"
|
|
5346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5347
|
+
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
5348
|
+
|
|
5051
5349
|
[[package]]
|
|
5052
5350
|
name = "windows_i686_msvc"
|
|
5053
5351
|
version = "0.52.6"
|
|
@@ -5060,6 +5358,12 @@ version = "0.53.0"
|
|
|
5060
5358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5061
5359
|
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
5062
5360
|
|
|
5361
|
+
[[package]]
|
|
5362
|
+
name = "windows_x86_64_gnu"
|
|
5363
|
+
version = "0.42.2"
|
|
5364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5365
|
+
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
5366
|
+
|
|
5063
5367
|
[[package]]
|
|
5064
5368
|
name = "windows_x86_64_gnu"
|
|
5065
5369
|
version = "0.52.6"
|
|
@@ -5072,6 +5376,12 @@ version = "0.53.0"
|
|
|
5072
5376
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5073
5377
|
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
5074
5378
|
|
|
5379
|
+
[[package]]
|
|
5380
|
+
name = "windows_x86_64_gnullvm"
|
|
5381
|
+
version = "0.42.2"
|
|
5382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5383
|
+
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
5384
|
+
|
|
5075
5385
|
[[package]]
|
|
5076
5386
|
name = "windows_x86_64_gnullvm"
|
|
5077
5387
|
version = "0.52.6"
|
|
@@ -5084,6 +5394,12 @@ version = "0.53.0"
|
|
|
5084
5394
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5085
5395
|
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
5086
5396
|
|
|
5397
|
+
[[package]]
|
|
5398
|
+
name = "windows_x86_64_msvc"
|
|
5399
|
+
version = "0.42.2"
|
|
5400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5401
|
+
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
5402
|
+
|
|
5087
5403
|
[[package]]
|
|
5088
5404
|
name = "windows_x86_64_msvc"
|
|
5089
5405
|
version = "0.52.6"
|
|
@@ -5317,9 +5633,9 @@ dependencies = [
|
|
|
5317
5633
|
|
|
5318
5634
|
[[package]]
|
|
5319
5635
|
name = "zlib-rs"
|
|
5320
|
-
version = "0.
|
|
5636
|
+
version = "0.6.3"
|
|
5321
5637
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5322
|
-
checksum = "
|
|
5638
|
+
checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
|
|
5323
5639
|
|
|
5324
5640
|
[[package]]
|
|
5325
5641
|
name = "zstd"
|