polars-df 0.4.0-aarch64-linux → 0.5.0-aarch64-linux
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 +12 -0
- data/Cargo.lock +272 -191
- data/Cargo.toml +0 -1
- data/LICENSE-THIRD-PARTY.txt +1990 -1149
- data/README.md +2 -2
- data/lib/polars/3.0/polars.so +0 -0
- data/lib/polars/3.1/polars.so +0 -0
- data/lib/polars/3.2/polars.so +0 -0
- data/lib/polars/convert.rb +2 -2
- data/lib/polars/data_frame.rb +201 -50
- data/lib/polars/data_types.rb +6 -4
- data/lib/polars/date_time_expr.rb +142 -2
- data/lib/polars/expr.rb +70 -10
- data/lib/polars/lazy_frame.rb +4 -3
- data/lib/polars/lazy_functions.rb +4 -1
- data/lib/polars/list_expr.rb +68 -19
- data/lib/polars/series.rb +181 -73
- data/lib/polars/string_expr.rb +149 -43
- data/lib/polars/string_name_space.rb +4 -4
- data/lib/polars/struct_name_space.rb +32 -0
- data/lib/polars/utils.rb +41 -7
- data/lib/polars/version.rb +1 -1
- data/lib/polars.rb +2 -2
- metadata +2 -2
data/Cargo.lock
CHANGED
@@ -28,9 +28,9 @@ dependencies = [
|
|
28
28
|
|
29
29
|
[[package]]
|
30
30
|
name = "aho-corasick"
|
31
|
-
version = "0.
|
31
|
+
version = "1.0.1"
|
32
32
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
33
|
-
checksum = "
|
33
|
+
checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04"
|
34
34
|
dependencies = [
|
35
35
|
"memchr",
|
36
36
|
]
|
@@ -59,6 +59,15 @@ dependencies = [
|
|
59
59
|
"libc",
|
60
60
|
]
|
61
61
|
|
62
|
+
[[package]]
|
63
|
+
name = "argminmax"
|
64
|
+
version = "0.6.1"
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
66
|
+
checksum = "202108b46429b765ef483f8a24d5c46f48c14acfdacc086dd4ab6dddf6bcdbd2"
|
67
|
+
dependencies = [
|
68
|
+
"num-traits",
|
69
|
+
]
|
70
|
+
|
62
71
|
[[package]]
|
63
72
|
name = "array-init-cursor"
|
64
73
|
version = "0.2.0"
|
@@ -77,9 +86,9 @@ dependencies = [
|
|
77
86
|
|
78
87
|
[[package]]
|
79
88
|
name = "arrow2"
|
80
|
-
version = "0.17.
|
89
|
+
version = "0.17.1"
|
81
90
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
82
|
-
checksum = "
|
91
|
+
checksum = "a0f73029049896b3d70ba17756afef171ceef3569016cfa9dbca58d29e0e16f9"
|
83
92
|
dependencies = [
|
84
93
|
"ahash",
|
85
94
|
"arrow-format",
|
@@ -103,18 +112,20 @@ dependencies = [
|
|
103
112
|
"multiversion",
|
104
113
|
"num-traits",
|
105
114
|
"parquet2",
|
115
|
+
"regex",
|
116
|
+
"regex-syntax 0.6.29",
|
106
117
|
"rustc_version",
|
107
118
|
"simdutf8",
|
108
119
|
"streaming-iterator",
|
109
120
|
"strength_reduce",
|
110
|
-
"zstd
|
121
|
+
"zstd",
|
111
122
|
]
|
112
123
|
|
113
124
|
[[package]]
|
114
125
|
name = "async-stream"
|
115
|
-
version = "0.3.
|
126
|
+
version = "0.3.5"
|
116
127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
117
|
-
checksum = "
|
128
|
+
checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
|
118
129
|
dependencies = [
|
119
130
|
"async-stream-impl",
|
120
131
|
"futures-core",
|
@@ -123,13 +134,13 @@ dependencies = [
|
|
123
134
|
|
124
135
|
[[package]]
|
125
136
|
name = "async-stream-impl"
|
126
|
-
version = "0.3.
|
137
|
+
version = "0.3.5"
|
127
138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
128
|
-
checksum = "
|
139
|
+
checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
|
129
140
|
dependencies = [
|
130
141
|
"proc-macro2",
|
131
142
|
"quote",
|
132
|
-
"syn
|
143
|
+
"syn 2.0.15",
|
133
144
|
]
|
134
145
|
|
135
146
|
[[package]]
|
@@ -140,7 +151,7 @@ checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
|
|
140
151
|
dependencies = [
|
141
152
|
"proc-macro2",
|
142
153
|
"quote",
|
143
|
-
"syn 2.0.
|
154
|
+
"syn 2.0.15",
|
144
155
|
]
|
145
156
|
|
146
157
|
[[package]]
|
@@ -226,9 +237,9 @@ dependencies = [
|
|
226
237
|
|
227
238
|
[[package]]
|
228
239
|
name = "bumpalo"
|
229
|
-
version = "3.12.
|
240
|
+
version = "3.12.1"
|
230
241
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
231
|
-
checksum = "
|
242
|
+
checksum = "9b1ce199063694f33ffb7dd4e0ee620741495c32833cde5aa08f02a0bf96f0c8"
|
232
243
|
|
233
244
|
[[package]]
|
234
245
|
name = "bytemuck"
|
@@ -247,7 +258,7 @@ checksum = "fdde5c9cd29ebd706ce1b35600920a33550e402fc998a2e53ad3b42c3c47a192"
|
|
247
258
|
dependencies = [
|
248
259
|
"proc-macro2",
|
249
260
|
"quote",
|
250
|
-
"syn 2.0.
|
261
|
+
"syn 2.0.15",
|
251
262
|
]
|
252
263
|
|
253
264
|
[[package]]
|
@@ -298,9 +309,9 @@ dependencies = [
|
|
298
309
|
|
299
310
|
[[package]]
|
300
311
|
name = "chrono-tz"
|
301
|
-
version = "0.8.
|
312
|
+
version = "0.8.2"
|
302
313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
303
|
-
checksum = "
|
314
|
+
checksum = "cf9cc2b23599e6d7479755f3594285efb3f74a1bdca7a7374948bc831e23a552"
|
304
315
|
dependencies = [
|
305
316
|
"chrono",
|
306
317
|
"chrono-tz-build",
|
@@ -320,9 +331,9 @@ dependencies = [
|
|
320
331
|
|
321
332
|
[[package]]
|
322
333
|
name = "clang-sys"
|
323
|
-
version = "1.6.
|
334
|
+
version = "1.6.1"
|
324
335
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
325
|
-
checksum = "
|
336
|
+
checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f"
|
326
337
|
dependencies = [
|
327
338
|
"glob",
|
328
339
|
"libc",
|
@@ -353,9 +364,9 @@ dependencies = [
|
|
353
364
|
|
354
365
|
[[package]]
|
355
366
|
name = "core-foundation-sys"
|
356
|
-
version = "0.8.
|
367
|
+
version = "0.8.4"
|
357
368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
358
|
-
checksum = "
|
369
|
+
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
|
359
370
|
|
360
371
|
[[package]]
|
361
372
|
name = "crc"
|
@@ -383,9 +394,9 @@ dependencies = [
|
|
383
394
|
|
384
395
|
[[package]]
|
385
396
|
name = "crossbeam-channel"
|
386
|
-
version = "0.5.
|
397
|
+
version = "0.5.8"
|
387
398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
388
|
-
checksum = "
|
399
|
+
checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
|
389
400
|
dependencies = [
|
390
401
|
"cfg-if",
|
391
402
|
"crossbeam-utils",
|
@@ -415,6 +426,16 @@ dependencies = [
|
|
415
426
|
"scopeguard",
|
416
427
|
]
|
417
428
|
|
429
|
+
[[package]]
|
430
|
+
name = "crossbeam-queue"
|
431
|
+
version = "0.3.8"
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
433
|
+
checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add"
|
434
|
+
dependencies = [
|
435
|
+
"cfg-if",
|
436
|
+
"crossbeam-utils",
|
437
|
+
]
|
438
|
+
|
418
439
|
[[package]]
|
419
440
|
name = "crossbeam-utils"
|
420
441
|
version = "0.8.15"
|
@@ -473,7 +494,7 @@ dependencies = [
|
|
473
494
|
"proc-macro2",
|
474
495
|
"quote",
|
475
496
|
"scratch",
|
476
|
-
"syn 2.0.
|
497
|
+
"syn 2.0.15",
|
477
498
|
]
|
478
499
|
|
479
500
|
[[package]]
|
@@ -490,27 +511,7 @@ checksum = "2345488264226bf682893e25de0769f3360aac9957980ec49361b083ddaa5bc5"
|
|
490
511
|
dependencies = [
|
491
512
|
"proc-macro2",
|
492
513
|
"quote",
|
493
|
-
"syn 2.0.
|
494
|
-
]
|
495
|
-
|
496
|
-
[[package]]
|
497
|
-
name = "dirs"
|
498
|
-
version = "4.0.0"
|
499
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
500
|
-
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
|
501
|
-
dependencies = [
|
502
|
-
"dirs-sys",
|
503
|
-
]
|
504
|
-
|
505
|
-
[[package]]
|
506
|
-
name = "dirs-sys"
|
507
|
-
version = "0.3.7"
|
508
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
509
|
-
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
|
510
|
-
dependencies = [
|
511
|
-
"libc",
|
512
|
-
"redox_users",
|
513
|
-
"winapi",
|
514
|
+
"syn 2.0.15",
|
514
515
|
]
|
515
516
|
|
516
517
|
[[package]]
|
@@ -557,9 +558,9 @@ checksum = "95765f67b4b18863968b4a1bd5bb576f732b29a4a28c7cd84c09fa3e2875f33c"
|
|
557
558
|
|
558
559
|
[[package]]
|
559
560
|
name = "flate2"
|
560
|
-
version = "1.0.
|
561
|
+
version = "1.0.26"
|
561
562
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
562
|
-
checksum = "
|
563
|
+
checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
|
563
564
|
dependencies = [
|
564
565
|
"crc32fast",
|
565
566
|
"miniz_oxide",
|
@@ -582,9 +583,9 @@ checksum = "ee1b05cbd864bcaecbd3455d6d967862d446e4ebfc3c2e5e5b9841e53cba6673"
|
|
582
583
|
|
583
584
|
[[package]]
|
584
585
|
name = "futures"
|
585
|
-
version = "0.3.
|
586
|
+
version = "0.3.28"
|
586
587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
587
|
-
checksum = "
|
588
|
+
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
|
588
589
|
dependencies = [
|
589
590
|
"futures-channel",
|
590
591
|
"futures-core",
|
@@ -597,9 +598,9 @@ dependencies = [
|
|
597
598
|
|
598
599
|
[[package]]
|
599
600
|
name = "futures-channel"
|
600
|
-
version = "0.3.
|
601
|
+
version = "0.3.28"
|
601
602
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
602
|
-
checksum = "
|
603
|
+
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
|
603
604
|
dependencies = [
|
604
605
|
"futures-core",
|
605
606
|
"futures-sink",
|
@@ -607,15 +608,15 @@ dependencies = [
|
|
607
608
|
|
608
609
|
[[package]]
|
609
610
|
name = "futures-core"
|
610
|
-
version = "0.3.
|
611
|
+
version = "0.3.28"
|
611
612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
612
|
-
checksum = "
|
613
|
+
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
|
613
614
|
|
614
615
|
[[package]]
|
615
616
|
name = "futures-executor"
|
616
|
-
version = "0.3.
|
617
|
+
version = "0.3.28"
|
617
618
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
618
|
-
checksum = "
|
619
|
+
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
|
619
620
|
dependencies = [
|
620
621
|
"futures-core",
|
621
622
|
"futures-task",
|
@@ -624,38 +625,38 @@ dependencies = [
|
|
624
625
|
|
625
626
|
[[package]]
|
626
627
|
name = "futures-io"
|
627
|
-
version = "0.3.
|
628
|
+
version = "0.3.28"
|
628
629
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
629
|
-
checksum = "
|
630
|
+
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
|
630
631
|
|
631
632
|
[[package]]
|
632
633
|
name = "futures-macro"
|
633
|
-
version = "0.3.
|
634
|
+
version = "0.3.28"
|
634
635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
635
|
-
checksum = "
|
636
|
+
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
|
636
637
|
dependencies = [
|
637
638
|
"proc-macro2",
|
638
639
|
"quote",
|
639
|
-
"syn
|
640
|
+
"syn 2.0.15",
|
640
641
|
]
|
641
642
|
|
642
643
|
[[package]]
|
643
644
|
name = "futures-sink"
|
644
|
-
version = "0.3.
|
645
|
+
version = "0.3.28"
|
645
646
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
646
|
-
checksum = "
|
647
|
+
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
|
647
648
|
|
648
649
|
[[package]]
|
649
650
|
name = "futures-task"
|
650
|
-
version = "0.3.
|
651
|
+
version = "0.3.28"
|
651
652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
652
|
-
checksum = "
|
653
|
+
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
|
653
654
|
|
654
655
|
[[package]]
|
655
656
|
name = "futures-util"
|
656
|
-
version = "0.3.
|
657
|
+
version = "0.3.28"
|
657
658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
658
|
-
checksum = "
|
659
|
+
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
|
659
660
|
dependencies = [
|
660
661
|
"futures-channel",
|
661
662
|
"futures-core",
|
@@ -671,9 +672,9 @@ dependencies = [
|
|
671
672
|
|
672
673
|
[[package]]
|
673
674
|
name = "getrandom"
|
674
|
-
version = "0.2.
|
675
|
+
version = "0.2.9"
|
675
676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
676
|
-
checksum = "
|
677
|
+
checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
|
677
678
|
dependencies = [
|
678
679
|
"cfg-if",
|
679
680
|
"js-sys",
|
@@ -690,8 +691,9 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
690
691
|
|
691
692
|
[[package]]
|
692
693
|
name = "halfbrown"
|
693
|
-
version = "0.1
|
694
|
-
source = "
|
694
|
+
version = "0.2.1"
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
696
|
+
checksum = "6d9ab7d9233262d3b74ae4c4a7a090fc4379b07c6eb9b02ecab7cbb12ad67a58"
|
695
697
|
dependencies = [
|
696
698
|
"hashbrown 0.13.2",
|
697
699
|
"rustc-hash",
|
@@ -741,11 +743,20 @@ version = "0.4.3"
|
|
741
743
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
742
744
|
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
743
745
|
|
746
|
+
[[package]]
|
747
|
+
name = "home"
|
748
|
+
version = "0.5.5"
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
750
|
+
checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
|
751
|
+
dependencies = [
|
752
|
+
"windows-sys 0.48.0",
|
753
|
+
]
|
754
|
+
|
744
755
|
[[package]]
|
745
756
|
name = "iana-time-zone"
|
746
|
-
version = "0.1.
|
757
|
+
version = "0.1.56"
|
747
758
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
748
|
-
checksum = "
|
759
|
+
checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c"
|
749
760
|
dependencies = [
|
750
761
|
"android_system_properties",
|
751
762
|
"core-foundation-sys",
|
@@ -941,9 +952,9 @@ dependencies = [
|
|
941
952
|
|
942
953
|
[[package]]
|
943
954
|
name = "libc"
|
944
|
-
version = "0.2.
|
955
|
+
version = "0.2.144"
|
945
956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
946
|
-
checksum = "
|
957
|
+
checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1"
|
947
958
|
|
948
959
|
[[package]]
|
949
960
|
name = "libflate"
|
@@ -983,9 +994,9 @@ checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb"
|
|
983
994
|
|
984
995
|
[[package]]
|
985
996
|
name = "libmimalloc-sys"
|
986
|
-
version = "0.1.
|
997
|
+
version = "0.1.33"
|
987
998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
988
|
-
checksum = "
|
999
|
+
checksum = "f4ac0e912c8ef1b735e92369695618dc5b1819f5a7bf3f167301a3ba1cea515e"
|
989
1000
|
dependencies = [
|
990
1001
|
"cc",
|
991
1002
|
"libc",
|
@@ -1041,9 +1052,9 @@ dependencies = [
|
|
1041
1052
|
|
1042
1053
|
[[package]]
|
1043
1054
|
name = "magnus"
|
1044
|
-
version = "0.5.
|
1055
|
+
version = "0.5.3"
|
1045
1056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1046
|
-
checksum = "
|
1057
|
+
checksum = "c8dc14463c2552e753ef562961f486ca76f17a857c121db40e9f3ade3f35ab81"
|
1047
1058
|
dependencies = [
|
1048
1059
|
"magnus-macros",
|
1049
1060
|
"rb-sys",
|
@@ -1087,9 +1098,9 @@ dependencies = [
|
|
1087
1098
|
|
1088
1099
|
[[package]]
|
1089
1100
|
name = "mimalloc"
|
1090
|
-
version = "0.1.
|
1101
|
+
version = "0.1.37"
|
1091
1102
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1092
|
-
checksum = "
|
1103
|
+
checksum = "4e2894987a3459f3ffb755608bd82188f8ed00d0ae077f1edea29c068d639d98"
|
1093
1104
|
dependencies = [
|
1094
1105
|
"libmimalloc-sys",
|
1095
1106
|
]
|
@@ -1102,9 +1113,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1102
1113
|
|
1103
1114
|
[[package]]
|
1104
1115
|
name = "miniz_oxide"
|
1105
|
-
version = "0.
|
1116
|
+
version = "0.7.1"
|
1106
1117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1107
|
-
checksum = "
|
1118
|
+
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
|
1108
1119
|
dependencies = [
|
1109
1120
|
"adler",
|
1110
1121
|
]
|
@@ -1118,7 +1129,7 @@ dependencies = [
|
|
1118
1129
|
"libc",
|
1119
1130
|
"log",
|
1120
1131
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
1121
|
-
"windows-sys",
|
1132
|
+
"windows-sys 0.45.0",
|
1122
1133
|
]
|
1123
1134
|
|
1124
1135
|
[[package]]
|
@@ -1164,9 +1175,9 @@ dependencies = [
|
|
1164
1175
|
|
1165
1176
|
[[package]]
|
1166
1177
|
name = "ntapi"
|
1167
|
-
version = "0.4.
|
1178
|
+
version = "0.4.1"
|
1168
1179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1169
|
-
checksum = "
|
1180
|
+
checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
|
1170
1181
|
dependencies = [
|
1171
1182
|
"winapi",
|
1172
1183
|
]
|
@@ -1252,7 +1263,7 @@ dependencies = [
|
|
1252
1263
|
"libc",
|
1253
1264
|
"redox_syscall",
|
1254
1265
|
"smallvec",
|
1255
|
-
"windows-sys",
|
1266
|
+
"windows-sys 0.45.0",
|
1256
1267
|
]
|
1257
1268
|
|
1258
1269
|
[[package]]
|
@@ -1267,9 +1278,9 @@ dependencies = [
|
|
1267
1278
|
|
1268
1279
|
[[package]]
|
1269
1280
|
name = "parquet2"
|
1270
|
-
version = "0.17.
|
1281
|
+
version = "0.17.2"
|
1271
1282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1272
|
-
checksum = "
|
1283
|
+
checksum = "579fe5745f02cef3d5f236bfed216fd4693e49e4e920a13475c6132233283bce"
|
1273
1284
|
dependencies = [
|
1274
1285
|
"async-stream",
|
1275
1286
|
"brotli",
|
@@ -1280,7 +1291,7 @@ dependencies = [
|
|
1280
1291
|
"seq-macro",
|
1281
1292
|
"snap",
|
1282
1293
|
"streaming-decompression",
|
1283
|
-
"zstd
|
1294
|
+
"zstd",
|
1284
1295
|
]
|
1285
1296
|
|
1286
1297
|
[[package]]
|
@@ -1350,9 +1361,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1350
1361
|
|
1351
1362
|
[[package]]
|
1352
1363
|
name = "pkg-config"
|
1353
|
-
version = "0.3.
|
1364
|
+
version = "0.3.27"
|
1354
1365
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1355
|
-
checksum = "
|
1366
|
+
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
|
1356
1367
|
|
1357
1368
|
[[package]]
|
1358
1369
|
name = "planus"
|
@@ -1365,13 +1376,13 @@ dependencies = [
|
|
1365
1376
|
|
1366
1377
|
[[package]]
|
1367
1378
|
name = "polars"
|
1368
|
-
version = "0.
|
1379
|
+
version = "0.5.0"
|
1369
1380
|
dependencies = [
|
1370
1381
|
"ahash",
|
1371
1382
|
"jemallocator",
|
1372
1383
|
"magnus",
|
1373
1384
|
"mimalloc",
|
1374
|
-
"polars 0.
|
1385
|
+
"polars 0.29.0",
|
1375
1386
|
"polars-core",
|
1376
1387
|
"serde_json",
|
1377
1388
|
"smartstring",
|
@@ -1379,24 +1390,25 @@ dependencies = [
|
|
1379
1390
|
|
1380
1391
|
[[package]]
|
1381
1392
|
name = "polars"
|
1382
|
-
version = "0.
|
1393
|
+
version = "0.29.0"
|
1383
1394
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1384
|
-
checksum = "
|
1395
|
+
checksum = "aa52642dac73150dcb6ccea276344b2f3c671912b78187ef917e236010ff72ea"
|
1385
1396
|
dependencies = [
|
1386
1397
|
"getrandom",
|
1387
1398
|
"polars-core",
|
1388
1399
|
"polars-io",
|
1389
1400
|
"polars-lazy",
|
1390
1401
|
"polars-ops",
|
1402
|
+
"polars-sql",
|
1391
1403
|
"polars-time",
|
1392
1404
|
"version_check",
|
1393
1405
|
]
|
1394
1406
|
|
1395
1407
|
[[package]]
|
1396
1408
|
name = "polars-arrow"
|
1397
|
-
version = "0.
|
1409
|
+
version = "0.29.0"
|
1398
1410
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1399
|
-
checksum = "
|
1411
|
+
checksum = "3d2402d68b447ece4afca6bcac435ff0aa82d70d41c9dd3f0ed249396b41ed5b"
|
1400
1412
|
dependencies = [
|
1401
1413
|
"arrow2",
|
1402
1414
|
"chrono",
|
@@ -1411,9 +1423,9 @@ dependencies = [
|
|
1411
1423
|
|
1412
1424
|
[[package]]
|
1413
1425
|
name = "polars-core"
|
1414
|
-
version = "0.
|
1426
|
+
version = "0.29.0"
|
1415
1427
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1416
|
-
checksum = "
|
1428
|
+
checksum = "caa1f5af0505c67333487c1287f29644c172afbab7374e48a77843646064411c"
|
1417
1429
|
dependencies = [
|
1418
1430
|
"ahash",
|
1419
1431
|
"arrow2",
|
@@ -1445,9 +1457,9 @@ dependencies = [
|
|
1445
1457
|
|
1446
1458
|
[[package]]
|
1447
1459
|
name = "polars-error"
|
1448
|
-
version = "0.
|
1460
|
+
version = "0.29.0"
|
1449
1461
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1450
|
-
checksum = "
|
1462
|
+
checksum = "73c760a2564a930a0b139d08045b7f2a3c0c86ce2668710b44561091d8d1e019"
|
1451
1463
|
dependencies = [
|
1452
1464
|
"arrow2",
|
1453
1465
|
"regex",
|
@@ -1456,9 +1468,9 @@ dependencies = [
|
|
1456
1468
|
|
1457
1469
|
[[package]]
|
1458
1470
|
name = "polars-io"
|
1459
|
-
version = "0.
|
1471
|
+
version = "0.29.0"
|
1460
1472
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1461
|
-
checksum = "
|
1473
|
+
checksum = "940e27258666c1d5d928d8b086a241a7a77bf04f370883aaf6c57ff2e83e13b8"
|
1462
1474
|
dependencies = [
|
1463
1475
|
"ahash",
|
1464
1476
|
"arrow2",
|
@@ -1466,9 +1478,9 @@ dependencies = [
|
|
1466
1478
|
"bytes",
|
1467
1479
|
"chrono",
|
1468
1480
|
"chrono-tz",
|
1469
|
-
"dirs",
|
1470
1481
|
"fast-float",
|
1471
1482
|
"futures",
|
1483
|
+
"home",
|
1472
1484
|
"lexical",
|
1473
1485
|
"lexical-core",
|
1474
1486
|
"memchr",
|
@@ -1491,13 +1503,14 @@ dependencies = [
|
|
1491
1503
|
|
1492
1504
|
[[package]]
|
1493
1505
|
name = "polars-lazy"
|
1494
|
-
version = "0.
|
1506
|
+
version = "0.29.0"
|
1495
1507
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1496
|
-
checksum = "
|
1508
|
+
checksum = "e01ffc3402e9ad40f72d7b8baff7f05fcd12ecd8d19596084bfaa76d9c4e540e"
|
1497
1509
|
dependencies = [
|
1498
1510
|
"ahash",
|
1499
1511
|
"bitflags",
|
1500
1512
|
"glob",
|
1513
|
+
"once_cell",
|
1501
1514
|
"polars-arrow",
|
1502
1515
|
"polars-core",
|
1503
1516
|
"polars-io",
|
@@ -1512,10 +1525,11 @@ dependencies = [
|
|
1512
1525
|
|
1513
1526
|
[[package]]
|
1514
1527
|
name = "polars-ops"
|
1515
|
-
version = "0.
|
1528
|
+
version = "0.29.0"
|
1516
1529
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1517
|
-
checksum = "
|
1530
|
+
checksum = "192e1871522f2c5b1161f7a51432f27389da751132dc3a472ac77ca213186ae1"
|
1518
1531
|
dependencies = [
|
1532
|
+
"argminmax",
|
1519
1533
|
"arrow2",
|
1520
1534
|
"base64",
|
1521
1535
|
"either",
|
@@ -1532,11 +1546,12 @@ dependencies = [
|
|
1532
1546
|
|
1533
1547
|
[[package]]
|
1534
1548
|
name = "polars-pipe"
|
1535
|
-
version = "0.
|
1549
|
+
version = "0.29.0"
|
1536
1550
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1537
|
-
checksum = "
|
1551
|
+
checksum = "d523fe77338a05266884210633f7bd372214cf7277cbf1d7f8133ab2a11978d9"
|
1538
1552
|
dependencies = [
|
1539
1553
|
"crossbeam-channel",
|
1554
|
+
"crossbeam-queue",
|
1540
1555
|
"enum_dispatch",
|
1541
1556
|
"hashbrown 0.13.2",
|
1542
1557
|
"num-traits",
|
@@ -1553,9 +1568,9 @@ dependencies = [
|
|
1553
1568
|
|
1554
1569
|
[[package]]
|
1555
1570
|
name = "polars-plan"
|
1556
|
-
version = "0.
|
1571
|
+
version = "0.29.0"
|
1557
1572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1558
|
-
checksum = "
|
1573
|
+
checksum = "7354206859d61710cf85529609ac39885907618bd8160f24ced92112aa36ada5"
|
1559
1574
|
dependencies = [
|
1560
1575
|
"ahash",
|
1561
1576
|
"arrow2",
|
@@ -1576,20 +1591,35 @@ dependencies = [
|
|
1576
1591
|
|
1577
1592
|
[[package]]
|
1578
1593
|
name = "polars-row"
|
1579
|
-
version = "0.
|
1594
|
+
version = "0.29.0"
|
1580
1595
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1581
|
-
checksum = "
|
1596
|
+
checksum = "bbe1bda56117570fc1efd79b23fe40ab2375939387c6aaa048d181f0c14fb6b8"
|
1582
1597
|
dependencies = [
|
1583
1598
|
"arrow2",
|
1584
1599
|
"polars-error",
|
1585
1600
|
"polars-utils",
|
1586
1601
|
]
|
1587
1602
|
|
1603
|
+
[[package]]
|
1604
|
+
name = "polars-sql"
|
1605
|
+
version = "0.29.0"
|
1606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1607
|
+
checksum = "9520f4e3b7c856f2ea1fc3193b8b7232b82c697b7e1e8098b572bbdb7b007292"
|
1608
|
+
dependencies = [
|
1609
|
+
"polars-arrow",
|
1610
|
+
"polars-core",
|
1611
|
+
"polars-lazy",
|
1612
|
+
"polars-plan",
|
1613
|
+
"serde",
|
1614
|
+
"serde_json",
|
1615
|
+
"sqlparser",
|
1616
|
+
]
|
1617
|
+
|
1588
1618
|
[[package]]
|
1589
1619
|
name = "polars-time"
|
1590
|
-
version = "0.
|
1620
|
+
version = "0.29.0"
|
1591
1621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1592
|
-
checksum = "
|
1622
|
+
checksum = "7406b06f575e8c6e9cc28b97112fd37424262f5eacf3cc95c110381c82ad2dfe"
|
1593
1623
|
dependencies = [
|
1594
1624
|
"arrow2",
|
1595
1625
|
"atoi",
|
@@ -1608,9 +1638,9 @@ dependencies = [
|
|
1608
1638
|
|
1609
1639
|
[[package]]
|
1610
1640
|
name = "polars-utils"
|
1611
|
-
version = "0.
|
1641
|
+
version = "0.29.0"
|
1612
1642
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1613
|
-
checksum = "
|
1643
|
+
checksum = "1719b022df1b19866b3021ca8c4c1acf860b853f5fc17388e91c8f41064974dc"
|
1614
1644
|
dependencies = [
|
1615
1645
|
"once_cell",
|
1616
1646
|
"rayon",
|
@@ -1626,18 +1656,18 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
1626
1656
|
|
1627
1657
|
[[package]]
|
1628
1658
|
name = "proc-macro2"
|
1629
|
-
version = "1.0.
|
1659
|
+
version = "1.0.56"
|
1630
1660
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1631
|
-
checksum = "
|
1661
|
+
checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435"
|
1632
1662
|
dependencies = [
|
1633
1663
|
"unicode-ident",
|
1634
1664
|
]
|
1635
1665
|
|
1636
1666
|
[[package]]
|
1637
1667
|
name = "quote"
|
1638
|
-
version = "1.0.
|
1668
|
+
version = "1.0.27"
|
1639
1669
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1640
|
-
checksum = "
|
1670
|
+
checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500"
|
1641
1671
|
dependencies = [
|
1642
1672
|
"proc-macro2",
|
1643
1673
|
]
|
@@ -1706,18 +1736,18 @@ dependencies = [
|
|
1706
1736
|
|
1707
1737
|
[[package]]
|
1708
1738
|
name = "rb-sys"
|
1709
|
-
version = "0.9.
|
1739
|
+
version = "0.9.75"
|
1710
1740
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1711
|
-
checksum = "
|
1741
|
+
checksum = "32ffbc5146796cb118f5a68196fabf1bccfff94c4830dea18aac0690cb29bb87"
|
1712
1742
|
dependencies = [
|
1713
1743
|
"rb-sys-build",
|
1714
1744
|
]
|
1715
1745
|
|
1716
1746
|
[[package]]
|
1717
1747
|
name = "rb-sys-build"
|
1718
|
-
version = "0.9.
|
1748
|
+
version = "0.9.75"
|
1719
1749
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1720
|
-
checksum = "
|
1750
|
+
checksum = "55edd49608668f9d45b7b1d619e6dab24ce8e591bcb912975936314aad94be40"
|
1721
1751
|
dependencies = [
|
1722
1752
|
"bindgen",
|
1723
1753
|
"lazy_static",
|
@@ -1743,26 +1773,15 @@ dependencies = [
|
|
1743
1773
|
"bitflags",
|
1744
1774
|
]
|
1745
1775
|
|
1746
|
-
[[package]]
|
1747
|
-
name = "redox_users"
|
1748
|
-
version = "0.4.3"
|
1749
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1750
|
-
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
|
1751
|
-
dependencies = [
|
1752
|
-
"getrandom",
|
1753
|
-
"redox_syscall",
|
1754
|
-
"thiserror",
|
1755
|
-
]
|
1756
|
-
|
1757
1776
|
[[package]]
|
1758
1777
|
name = "regex"
|
1759
|
-
version = "1.
|
1778
|
+
version = "1.8.1"
|
1760
1779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1761
|
-
checksum = "
|
1780
|
+
checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370"
|
1762
1781
|
dependencies = [
|
1763
1782
|
"aho-corasick",
|
1764
1783
|
"memchr",
|
1765
|
-
"regex-syntax",
|
1784
|
+
"regex-syntax 0.7.1",
|
1766
1785
|
]
|
1767
1786
|
|
1768
1787
|
[[package]]
|
@@ -1771,6 +1790,12 @@ version = "0.6.29"
|
|
1771
1790
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1772
1791
|
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
1773
1792
|
|
1793
|
+
[[package]]
|
1794
|
+
name = "regex-syntax"
|
1795
|
+
version = "0.7.1"
|
1796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1797
|
+
checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c"
|
1798
|
+
|
1774
1799
|
[[package]]
|
1775
1800
|
name = "rle-decode-fast"
|
1776
1801
|
version = "1.0.3"
|
@@ -1830,29 +1855,29 @@ checksum = "e6b44e8fc93a14e66336d230954dda83d18b4605ccace8fe09bc7514a71ad0bc"
|
|
1830
1855
|
|
1831
1856
|
[[package]]
|
1832
1857
|
name = "serde"
|
1833
|
-
version = "1.0.
|
1858
|
+
version = "1.0.162"
|
1834
1859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1835
|
-
checksum = "
|
1860
|
+
checksum = "71b2f6e1ab5c2b98c05f0f35b236b22e8df7ead6ffbf51d7808da7f8817e7ab6"
|
1836
1861
|
dependencies = [
|
1837
1862
|
"serde_derive",
|
1838
1863
|
]
|
1839
1864
|
|
1840
1865
|
[[package]]
|
1841
1866
|
name = "serde_derive"
|
1842
|
-
version = "1.0.
|
1867
|
+
version = "1.0.162"
|
1843
1868
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1844
|
-
checksum = "
|
1869
|
+
checksum = "a2a0814352fd64b58489904a44ea8d90cb1a91dcb6b4f5ebabc32c8318e93cb6"
|
1845
1870
|
dependencies = [
|
1846
1871
|
"proc-macro2",
|
1847
1872
|
"quote",
|
1848
|
-
"syn 2.0.
|
1873
|
+
"syn 2.0.15",
|
1849
1874
|
]
|
1850
1875
|
|
1851
1876
|
[[package]]
|
1852
1877
|
name = "serde_json"
|
1853
|
-
version = "1.0.
|
1878
|
+
version = "1.0.96"
|
1854
1879
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1855
|
-
checksum = "
|
1880
|
+
checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1"
|
1856
1881
|
dependencies = [
|
1857
1882
|
"indexmap",
|
1858
1883
|
"itoa",
|
@@ -1904,9 +1929,9 @@ dependencies = [
|
|
1904
1929
|
|
1905
1930
|
[[package]]
|
1906
1931
|
name = "simd-json"
|
1907
|
-
version = "0.
|
1932
|
+
version = "0.9.2"
|
1908
1933
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1909
|
-
checksum = "
|
1934
|
+
checksum = "dbb0157804d962d743f114497a9188fa8b6f9a201faf77ce49454d9e0e61b316"
|
1910
1935
|
dependencies = [
|
1911
1936
|
"halfbrown",
|
1912
1937
|
"lexical-core",
|
@@ -1971,6 +1996,15 @@ dependencies = [
|
|
1971
1996
|
"winapi",
|
1972
1997
|
]
|
1973
1998
|
|
1999
|
+
[[package]]
|
2000
|
+
name = "sqlparser"
|
2001
|
+
version = "0.30.0"
|
2002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2003
|
+
checksum = "db67dc6ef36edb658196c3fef0464a80b53dbbc194a904e81f9bd4190f9ecc5b"
|
2004
|
+
dependencies = [
|
2005
|
+
"log",
|
2006
|
+
]
|
2007
|
+
|
1974
2008
|
[[package]]
|
1975
2009
|
name = "static_assertions"
|
1976
2010
|
version = "1.1.0"
|
@@ -2030,9 +2064,9 @@ dependencies = [
|
|
2030
2064
|
|
2031
2065
|
[[package]]
|
2032
2066
|
name = "syn"
|
2033
|
-
version = "2.0.
|
2067
|
+
version = "2.0.15"
|
2034
2068
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2035
|
-
checksum = "
|
2069
|
+
checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822"
|
2036
2070
|
dependencies = [
|
2037
2071
|
"proc-macro2",
|
2038
2072
|
"quote",
|
@@ -2085,7 +2119,7 @@ checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
|
|
2085
2119
|
dependencies = [
|
2086
2120
|
"proc-macro2",
|
2087
2121
|
"quote",
|
2088
|
-
"syn 2.0.
|
2122
|
+
"syn 2.0.15",
|
2089
2123
|
]
|
2090
2124
|
|
2091
2125
|
[[package]]
|
@@ -2101,16 +2135,16 @@ dependencies = [
|
|
2101
2135
|
|
2102
2136
|
[[package]]
|
2103
2137
|
name = "tokio"
|
2104
|
-
version = "1.
|
2138
|
+
version = "1.28.0"
|
2105
2139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2106
|
-
checksum = "
|
2140
|
+
checksum = "c3c786bf8134e5a3a166db9b29ab8f48134739014a3eca7bc6bfa95d673b136f"
|
2107
2141
|
dependencies = [
|
2108
2142
|
"autocfg",
|
2109
2143
|
"libc",
|
2110
2144
|
"mio",
|
2111
2145
|
"pin-project-lite",
|
2112
2146
|
"socket2",
|
2113
|
-
"windows-sys",
|
2147
|
+
"windows-sys 0.48.0",
|
2114
2148
|
]
|
2115
2149
|
|
2116
2150
|
[[package]]
|
@@ -2127,9 +2161,9 @@ checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
|
|
2127
2161
|
|
2128
2162
|
[[package]]
|
2129
2163
|
name = "value-trait"
|
2130
|
-
version = "0.
|
2164
|
+
version = "0.6.0"
|
2131
2165
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2132
|
-
checksum = "
|
2166
|
+
checksum = "733e1909354ceff16f7e1f7ddebc063455b8fda4968d91760a7c6115b96647a5"
|
2133
2167
|
dependencies = [
|
2134
2168
|
"float-cmp",
|
2135
2169
|
"halfbrown",
|
@@ -2279,11 +2313,11 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2279
2313
|
|
2280
2314
|
[[package]]
|
2281
2315
|
name = "windows"
|
2282
|
-
version = "0.
|
2316
|
+
version = "0.48.0"
|
2283
2317
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2284
|
-
checksum = "
|
2318
|
+
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
|
2285
2319
|
dependencies = [
|
2286
|
-
"windows-targets",
|
2320
|
+
"windows-targets 0.48.0",
|
2287
2321
|
]
|
2288
2322
|
|
2289
2323
|
[[package]]
|
@@ -2292,7 +2326,16 @@ version = "0.45.0"
|
|
2292
2326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2293
2327
|
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
2294
2328
|
dependencies = [
|
2295
|
-
"windows-targets",
|
2329
|
+
"windows-targets 0.42.2",
|
2330
|
+
]
|
2331
|
+
|
2332
|
+
[[package]]
|
2333
|
+
name = "windows-sys"
|
2334
|
+
version = "0.48.0"
|
2335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2336
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
2337
|
+
dependencies = [
|
2338
|
+
"windows-targets 0.48.0",
|
2296
2339
|
]
|
2297
2340
|
|
2298
2341
|
[[package]]
|
@@ -2301,13 +2344,28 @@ version = "0.42.2"
|
|
2301
2344
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2302
2345
|
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
2303
2346
|
dependencies = [
|
2304
|
-
"windows_aarch64_gnullvm",
|
2305
|
-
"windows_aarch64_msvc",
|
2306
|
-
"windows_i686_gnu",
|
2307
|
-
"windows_i686_msvc",
|
2308
|
-
"windows_x86_64_gnu",
|
2309
|
-
"windows_x86_64_gnullvm",
|
2310
|
-
"windows_x86_64_msvc",
|
2347
|
+
"windows_aarch64_gnullvm 0.42.2",
|
2348
|
+
"windows_aarch64_msvc 0.42.2",
|
2349
|
+
"windows_i686_gnu 0.42.2",
|
2350
|
+
"windows_i686_msvc 0.42.2",
|
2351
|
+
"windows_x86_64_gnu 0.42.2",
|
2352
|
+
"windows_x86_64_gnullvm 0.42.2",
|
2353
|
+
"windows_x86_64_msvc 0.42.2",
|
2354
|
+
]
|
2355
|
+
|
2356
|
+
[[package]]
|
2357
|
+
name = "windows-targets"
|
2358
|
+
version = "0.48.0"
|
2359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2360
|
+
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
|
2361
|
+
dependencies = [
|
2362
|
+
"windows_aarch64_gnullvm 0.48.0",
|
2363
|
+
"windows_aarch64_msvc 0.48.0",
|
2364
|
+
"windows_i686_gnu 0.48.0",
|
2365
|
+
"windows_i686_msvc 0.48.0",
|
2366
|
+
"windows_x86_64_gnu 0.48.0",
|
2367
|
+
"windows_x86_64_gnullvm 0.48.0",
|
2368
|
+
"windows_x86_64_msvc 0.48.0",
|
2311
2369
|
]
|
2312
2370
|
|
2313
2371
|
[[package]]
|
@@ -2316,36 +2374,72 @@ version = "0.42.2"
|
|
2316
2374
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2317
2375
|
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
2318
2376
|
|
2377
|
+
[[package]]
|
2378
|
+
name = "windows_aarch64_gnullvm"
|
2379
|
+
version = "0.48.0"
|
2380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2381
|
+
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
|
2382
|
+
|
2319
2383
|
[[package]]
|
2320
2384
|
name = "windows_aarch64_msvc"
|
2321
2385
|
version = "0.42.2"
|
2322
2386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2323
2387
|
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
2324
2388
|
|
2389
|
+
[[package]]
|
2390
|
+
name = "windows_aarch64_msvc"
|
2391
|
+
version = "0.48.0"
|
2392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2393
|
+
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
2394
|
+
|
2325
2395
|
[[package]]
|
2326
2396
|
name = "windows_i686_gnu"
|
2327
2397
|
version = "0.42.2"
|
2328
2398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2329
2399
|
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
2330
2400
|
|
2401
|
+
[[package]]
|
2402
|
+
name = "windows_i686_gnu"
|
2403
|
+
version = "0.48.0"
|
2404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2405
|
+
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
|
2406
|
+
|
2331
2407
|
[[package]]
|
2332
2408
|
name = "windows_i686_msvc"
|
2333
2409
|
version = "0.42.2"
|
2334
2410
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2335
2411
|
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
2336
2412
|
|
2413
|
+
[[package]]
|
2414
|
+
name = "windows_i686_msvc"
|
2415
|
+
version = "0.48.0"
|
2416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2417
|
+
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
|
2418
|
+
|
2337
2419
|
[[package]]
|
2338
2420
|
name = "windows_x86_64_gnu"
|
2339
2421
|
version = "0.42.2"
|
2340
2422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2341
2423
|
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
2342
2424
|
|
2425
|
+
[[package]]
|
2426
|
+
name = "windows_x86_64_gnu"
|
2427
|
+
version = "0.48.0"
|
2428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2429
|
+
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
|
2430
|
+
|
2343
2431
|
[[package]]
|
2344
2432
|
name = "windows_x86_64_gnullvm"
|
2345
2433
|
version = "0.42.2"
|
2346
2434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2347
2435
|
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
2348
2436
|
|
2437
|
+
[[package]]
|
2438
|
+
name = "windows_x86_64_gnullvm"
|
2439
|
+
version = "0.48.0"
|
2440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2441
|
+
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
|
2442
|
+
|
2349
2443
|
[[package]]
|
2350
2444
|
name = "windows_x86_64_msvc"
|
2351
2445
|
version = "0.42.2"
|
@@ -2353,19 +2447,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2353
2447
|
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
2354
2448
|
|
2355
2449
|
[[package]]
|
2356
|
-
name = "
|
2357
|
-
version = "0.
|
2450
|
+
name = "windows_x86_64_msvc"
|
2451
|
+
version = "0.48.0"
|
2358
2452
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2359
|
-
checksum = "
|
2453
|
+
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
|
2360
2454
|
|
2361
2455
|
[[package]]
|
2362
|
-
name = "
|
2363
|
-
version = "0.
|
2456
|
+
name = "xxhash-rust"
|
2457
|
+
version = "0.8.6"
|
2364
2458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2365
|
-
checksum = "
|
2366
|
-
dependencies = [
|
2367
|
-
"zstd-safe 5.0.2+zstd.1.5.2",
|
2368
|
-
]
|
2459
|
+
checksum = "735a71d46c4d68d71d4b24d03fdc2b98e38cea81730595801db779c04fe80d70"
|
2369
2460
|
|
2370
2461
|
[[package]]
|
2371
2462
|
name = "zstd"
|
@@ -2373,24 +2464,14 @@ version = "0.12.3+zstd.1.5.2"
|
|
2373
2464
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2374
2465
|
checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806"
|
2375
2466
|
dependencies = [
|
2376
|
-
"zstd-safe
|
2377
|
-
]
|
2378
|
-
|
2379
|
-
[[package]]
|
2380
|
-
name = "zstd-safe"
|
2381
|
-
version = "5.0.2+zstd.1.5.2"
|
2382
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2383
|
-
checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
|
2384
|
-
dependencies = [
|
2385
|
-
"libc",
|
2386
|
-
"zstd-sys",
|
2467
|
+
"zstd-safe",
|
2387
2468
|
]
|
2388
2469
|
|
2389
2470
|
[[package]]
|
2390
2471
|
name = "zstd-safe"
|
2391
|
-
version = "6.0.
|
2472
|
+
version = "6.0.5+zstd.1.5.4"
|
2392
2473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2393
|
-
checksum = "
|
2474
|
+
checksum = "d56d9e60b4b1758206c238a10165fbcae3ca37b01744e394c463463f6529d23b"
|
2394
2475
|
dependencies = [
|
2395
2476
|
"libc",
|
2396
2477
|
"zstd-sys",
|
@@ -2398,9 +2479,9 @@ dependencies = [
|
|
2398
2479
|
|
2399
2480
|
[[package]]
|
2400
2481
|
name = "zstd-sys"
|
2401
|
-
version = "2.0.
|
2482
|
+
version = "2.0.8+zstd.1.5.5"
|
2402
2483
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2403
|
-
checksum = "
|
2484
|
+
checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c"
|
2404
2485
|
dependencies = [
|
2405
2486
|
"cc",
|
2406
2487
|
"libc",
|