polars-df 0.7.0 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/Cargo.lock +284 -216
- data/ext/polars/Cargo.toml +7 -4
- data/ext/polars/src/batched_csv.rs +2 -3
- data/ext/polars/src/conversion.rs +18 -17
- data/ext/polars/src/dataframe.rs +27 -63
- data/ext/polars/src/expr/categorical.rs +8 -1
- data/ext/polars/src/expr/general.rs +63 -4
- data/ext/polars/src/expr/rolling.rs +15 -10
- data/ext/polars/src/expr/string.rs +9 -9
- data/ext/polars/src/functions/range.rs +5 -10
- data/ext/polars/src/lazyframe.rs +28 -19
- data/ext/polars/src/lib.rs +20 -20
- data/ext/polars/src/map/dataframe.rs +1 -1
- data/ext/polars/src/map/mod.rs +2 -2
- data/ext/polars/src/map/series.rs +6 -6
- data/ext/polars/src/object.rs +0 -30
- data/ext/polars/src/on_startup.rs +32 -0
- data/ext/polars/src/series/aggregation.rs +3 -0
- data/ext/polars/src/series/construction.rs +1 -1
- data/ext/polars/src/series/export.rs +2 -2
- data/ext/polars/src/{series.rs → series/mod.rs} +21 -18
- data/ext/polars/src/series/{set_at_idx.rs → scatter.rs} +18 -18
- data/ext/polars/src/utils.rs +1 -1
- data/lib/polars/data_frame.rb +69 -65
- data/lib/polars/data_types.rb +4 -1
- data/lib/polars/date_time_expr.rb +10 -10
- data/lib/polars/date_time_name_space.rb +12 -12
- data/lib/polars/expr.rb +223 -18
- data/lib/polars/group_by.rb +1 -1
- data/lib/polars/io.rb +4 -4
- data/lib/polars/lazy_frame.rb +23 -23
- data/lib/polars/lazy_functions.rb +4 -20
- data/lib/polars/series.rb +289 -30
- data/lib/polars/sql_context.rb +1 -1
- data/lib/polars/struct_expr.rb +1 -1
- data/lib/polars/struct_name_space.rb +1 -1
- data/lib/polars/utils.rb +13 -13
- data/lib/polars/version.rb +1 -1
- metadata +7 -6
data/Cargo.lock
CHANGED
@@ -25,9 +25,9 @@ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
|
|
25
25
|
|
26
26
|
[[package]]
|
27
27
|
name = "ahash"
|
28
|
-
version = "0.8.
|
28
|
+
version = "0.8.7"
|
29
29
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
30
|
-
checksum = "
|
30
|
+
checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01"
|
31
31
|
dependencies = [
|
32
32
|
"cfg-if",
|
33
33
|
"getrandom",
|
@@ -125,18 +125,18 @@ checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
|
|
125
125
|
dependencies = [
|
126
126
|
"proc-macro2",
|
127
127
|
"quote",
|
128
|
-
"syn 2.0.
|
128
|
+
"syn 2.0.46",
|
129
129
|
]
|
130
130
|
|
131
131
|
[[package]]
|
132
132
|
name = "async-trait"
|
133
|
-
version = "0.1.
|
133
|
+
version = "0.1.77"
|
134
134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
135
|
-
checksum = "
|
135
|
+
checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9"
|
136
136
|
dependencies = [
|
137
137
|
"proc-macro2",
|
138
138
|
"quote",
|
139
|
-
"syn 2.0.
|
139
|
+
"syn 2.0.46",
|
140
140
|
]
|
141
141
|
|
142
142
|
[[package]]
|
@@ -150,9 +150,9 @@ dependencies = [
|
|
150
150
|
|
151
151
|
[[package]]
|
152
152
|
name = "atoi_simd"
|
153
|
-
version = "0.15.
|
153
|
+
version = "0.15.6"
|
154
154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
155
|
-
checksum = "
|
155
|
+
checksum = "9ae037714f313c1353189ead58ef9eec30a8e8dc101b2622d461418fd59e28a9"
|
156
156
|
|
157
157
|
[[package]]
|
158
158
|
name = "autocfg"
|
@@ -212,7 +212,7 @@ dependencies = [
|
|
212
212
|
"regex",
|
213
213
|
"rustc-hash",
|
214
214
|
"shlex",
|
215
|
-
"syn 2.0.
|
215
|
+
"syn 2.0.46",
|
216
216
|
]
|
217
217
|
|
218
218
|
[[package]]
|
@@ -274,7 +274,7 @@ checksum = "965ab7eb5f8f97d2a083c799f3a1b994fc397b2fe2da5d1da1626ce15a39f2b1"
|
|
274
274
|
dependencies = [
|
275
275
|
"proc-macro2",
|
276
276
|
"quote",
|
277
|
-
"syn 2.0.
|
277
|
+
"syn 2.0.46",
|
278
278
|
]
|
279
279
|
|
280
280
|
[[package]]
|
@@ -320,14 +320,14 @@ dependencies = [
|
|
320
320
|
"num-traits",
|
321
321
|
"serde",
|
322
322
|
"wasm-bindgen",
|
323
|
-
"windows-targets",
|
323
|
+
"windows-targets 0.48.5",
|
324
324
|
]
|
325
325
|
|
326
326
|
[[package]]
|
327
327
|
name = "chrono-tz"
|
328
|
-
version = "0.8.
|
328
|
+
version = "0.8.5"
|
329
329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
330
|
-
checksum = "
|
330
|
+
checksum = "91d7b79e99bfaa0d47da0687c43aa3b7381938a62ad3a6498599039321f660b7"
|
331
331
|
dependencies = [
|
332
332
|
"chrono",
|
333
333
|
"chrono-tz-build",
|
@@ -347,9 +347,9 @@ dependencies = [
|
|
347
347
|
|
348
348
|
[[package]]
|
349
349
|
name = "clang-sys"
|
350
|
-
version = "1.
|
350
|
+
version = "1.7.0"
|
351
351
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
352
|
-
checksum = "
|
352
|
+
checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1"
|
353
353
|
dependencies = [
|
354
354
|
"glob",
|
355
355
|
"libc",
|
@@ -370,9 +370,9 @@ dependencies = [
|
|
370
370
|
|
371
371
|
[[package]]
|
372
372
|
name = "core-foundation-sys"
|
373
|
-
version = "0.8.
|
373
|
+
version = "0.8.6"
|
374
374
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
375
|
-
checksum = "
|
375
|
+
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
376
376
|
|
377
377
|
[[package]]
|
378
378
|
name = "crc"
|
@@ -400,9 +400,9 @@ dependencies = [
|
|
400
400
|
|
401
401
|
[[package]]
|
402
402
|
name = "crossbeam-channel"
|
403
|
-
version = "0.5.
|
403
|
+
version = "0.5.10"
|
404
404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
405
|
-
checksum = "
|
405
|
+
checksum = "82a9b73a36529d9c47029b9fb3a6f0ea3cc916a261195352ba19e770fc1748b2"
|
406
406
|
dependencies = [
|
407
407
|
"cfg-if",
|
408
408
|
"crossbeam-utils",
|
@@ -410,9 +410,9 @@ dependencies = [
|
|
410
410
|
|
411
411
|
[[package]]
|
412
412
|
name = "crossbeam-deque"
|
413
|
-
version = "0.8.
|
413
|
+
version = "0.8.4"
|
414
414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
415
|
-
checksum = "
|
415
|
+
checksum = "fca89a0e215bab21874660c67903c5f143333cab1da83d041c7ded6053774751"
|
416
416
|
dependencies = [
|
417
417
|
"cfg-if",
|
418
418
|
"crossbeam-epoch",
|
@@ -421,22 +421,20 @@ dependencies = [
|
|
421
421
|
|
422
422
|
[[package]]
|
423
423
|
name = "crossbeam-epoch"
|
424
|
-
version = "0.9.
|
424
|
+
version = "0.9.17"
|
425
425
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
426
|
-
checksum = "
|
426
|
+
checksum = "0e3681d554572a651dda4186cd47240627c3d0114d45a95f6ad27f2f22e7548d"
|
427
427
|
dependencies = [
|
428
428
|
"autocfg",
|
429
429
|
"cfg-if",
|
430
430
|
"crossbeam-utils",
|
431
|
-
"memoffset",
|
432
|
-
"scopeguard",
|
433
431
|
]
|
434
432
|
|
435
433
|
[[package]]
|
436
434
|
name = "crossbeam-queue"
|
437
|
-
version = "0.3.
|
435
|
+
version = "0.3.10"
|
438
436
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
439
|
-
checksum = "
|
437
|
+
checksum = "adc6598521bb5a83d491e8c1fe51db7296019d2ca3cb93cc6c2a20369a4d78a2"
|
440
438
|
dependencies = [
|
441
439
|
"cfg-if",
|
442
440
|
"crossbeam-utils",
|
@@ -444,9 +442,9 @@ dependencies = [
|
|
444
442
|
|
445
443
|
[[package]]
|
446
444
|
name = "crossbeam-utils"
|
447
|
-
version = "0.8.
|
445
|
+
version = "0.8.18"
|
448
446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
449
|
-
checksum = "
|
447
|
+
checksum = "c3a430a770ebd84726f584a90ee7f020d28db52c6d02138900f22341f866d39c"
|
450
448
|
dependencies = [
|
451
449
|
"cfg-if",
|
452
450
|
]
|
@@ -494,7 +492,7 @@ dependencies = [
|
|
494
492
|
"once_cell",
|
495
493
|
"proc-macro2",
|
496
494
|
"quote",
|
497
|
-
"syn 2.0.
|
495
|
+
"syn 2.0.46",
|
498
496
|
]
|
499
497
|
|
500
498
|
[[package]]
|
@@ -548,9 +546,9 @@ checksum = "ee1b05cbd864bcaecbd3455d6d967862d446e4ebfc3c2e5e5b9841e53cba6673"
|
|
548
546
|
|
549
547
|
[[package]]
|
550
548
|
name = "futures"
|
551
|
-
version = "0.3.
|
549
|
+
version = "0.3.30"
|
552
550
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
553
|
-
checksum = "
|
551
|
+
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
|
554
552
|
dependencies = [
|
555
553
|
"futures-channel",
|
556
554
|
"futures-core",
|
@@ -563,9 +561,9 @@ dependencies = [
|
|
563
561
|
|
564
562
|
[[package]]
|
565
563
|
name = "futures-channel"
|
566
|
-
version = "0.3.
|
564
|
+
version = "0.3.30"
|
567
565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
568
|
-
checksum = "
|
566
|
+
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
|
569
567
|
dependencies = [
|
570
568
|
"futures-core",
|
571
569
|
"futures-sink",
|
@@ -573,15 +571,15 @@ dependencies = [
|
|
573
571
|
|
574
572
|
[[package]]
|
575
573
|
name = "futures-core"
|
576
|
-
version = "0.3.
|
574
|
+
version = "0.3.30"
|
577
575
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
578
|
-
checksum = "
|
576
|
+
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
|
579
577
|
|
580
578
|
[[package]]
|
581
579
|
name = "futures-executor"
|
582
|
-
version = "0.3.
|
580
|
+
version = "0.3.30"
|
583
581
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
584
|
-
checksum = "
|
582
|
+
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
|
585
583
|
dependencies = [
|
586
584
|
"futures-core",
|
587
585
|
"futures-task",
|
@@ -590,38 +588,38 @@ dependencies = [
|
|
590
588
|
|
591
589
|
[[package]]
|
592
590
|
name = "futures-io"
|
593
|
-
version = "0.3.
|
591
|
+
version = "0.3.30"
|
594
592
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
595
|
-
checksum = "
|
593
|
+
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
|
596
594
|
|
597
595
|
[[package]]
|
598
596
|
name = "futures-macro"
|
599
|
-
version = "0.3.
|
597
|
+
version = "0.3.30"
|
600
598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
601
|
-
checksum = "
|
599
|
+
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
602
600
|
dependencies = [
|
603
601
|
"proc-macro2",
|
604
602
|
"quote",
|
605
|
-
"syn 2.0.
|
603
|
+
"syn 2.0.46",
|
606
604
|
]
|
607
605
|
|
608
606
|
[[package]]
|
609
607
|
name = "futures-sink"
|
610
|
-
version = "0.3.
|
608
|
+
version = "0.3.30"
|
611
609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
612
|
-
checksum = "
|
610
|
+
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
|
613
611
|
|
614
612
|
[[package]]
|
615
613
|
name = "futures-task"
|
616
|
-
version = "0.3.
|
614
|
+
version = "0.3.30"
|
617
615
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
618
|
-
checksum = "
|
616
|
+
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
|
619
617
|
|
620
618
|
[[package]]
|
621
619
|
name = "futures-util"
|
622
|
-
version = "0.3.
|
620
|
+
version = "0.3.30"
|
623
621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
624
|
-
checksum = "
|
622
|
+
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
|
625
623
|
dependencies = [
|
626
624
|
"futures-channel",
|
627
625
|
"futures-core",
|
@@ -650,9 +648,9 @@ dependencies = [
|
|
650
648
|
|
651
649
|
[[package]]
|
652
650
|
name = "gimli"
|
653
|
-
version = "0.28.
|
651
|
+
version = "0.28.1"
|
654
652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
655
|
-
checksum = "
|
653
|
+
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
|
656
654
|
|
657
655
|
[[package]]
|
658
656
|
name = "glob"
|
@@ -681,9 +679,9 @@ dependencies = [
|
|
681
679
|
|
682
680
|
[[package]]
|
683
681
|
name = "hashbrown"
|
684
|
-
version = "0.14.
|
682
|
+
version = "0.14.3"
|
685
683
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
686
|
-
checksum = "
|
684
|
+
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
|
687
685
|
dependencies = [
|
688
686
|
"ahash",
|
689
687
|
"allocator-api2",
|
@@ -710,18 +708,18 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
710
708
|
|
711
709
|
[[package]]
|
712
710
|
name = "home"
|
713
|
-
version = "0.5.
|
711
|
+
version = "0.5.9"
|
714
712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
715
|
-
checksum = "
|
713
|
+
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
|
716
714
|
dependencies = [
|
717
|
-
"windows-sys",
|
715
|
+
"windows-sys 0.52.0",
|
718
716
|
]
|
719
717
|
|
720
718
|
[[package]]
|
721
719
|
name = "iana-time-zone"
|
722
|
-
version = "0.1.
|
720
|
+
version = "0.1.59"
|
723
721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
724
|
-
checksum = "
|
722
|
+
checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539"
|
725
723
|
dependencies = [
|
726
724
|
"android_system_properties",
|
727
725
|
"core-foundation-sys",
|
@@ -747,15 +745,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
745
|
checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
|
748
746
|
dependencies = [
|
749
747
|
"equivalent",
|
750
|
-
"hashbrown 0.14.
|
748
|
+
"hashbrown 0.14.3",
|
751
749
|
"serde",
|
752
750
|
]
|
753
751
|
|
754
752
|
[[package]]
|
755
753
|
name = "itoa"
|
756
|
-
version = "1.0.
|
754
|
+
version = "1.0.10"
|
757
755
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
758
|
-
checksum = "
|
756
|
+
checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
|
759
757
|
|
760
758
|
[[package]]
|
761
759
|
name = "itoap"
|
@@ -794,9 +792,9 @@ dependencies = [
|
|
794
792
|
|
795
793
|
[[package]]
|
796
794
|
name = "js-sys"
|
797
|
-
version = "0.3.
|
795
|
+
version = "0.3.66"
|
798
796
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
799
|
-
checksum = "
|
797
|
+
checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca"
|
800
798
|
dependencies = [
|
801
799
|
"wasm-bindgen",
|
802
800
|
]
|
@@ -889,9 +887,9 @@ dependencies = [
|
|
889
887
|
|
890
888
|
[[package]]
|
891
889
|
name = "libc"
|
892
|
-
version = "0.2.
|
890
|
+
version = "0.2.151"
|
893
891
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
894
|
-
checksum = "
|
892
|
+
checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4"
|
895
893
|
|
896
894
|
[[package]]
|
897
895
|
name = "libflate"
|
@@ -915,12 +913,12 @@ dependencies = [
|
|
915
913
|
|
916
914
|
[[package]]
|
917
915
|
name = "libloading"
|
918
|
-
version = "0.
|
916
|
+
version = "0.8.1"
|
919
917
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
920
|
-
checksum = "
|
918
|
+
checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161"
|
921
919
|
dependencies = [
|
922
920
|
"cfg-if",
|
923
|
-
"
|
921
|
+
"windows-sys 0.48.0",
|
924
922
|
]
|
925
923
|
|
926
924
|
[[package]]
|
@@ -995,14 +993,14 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
|
995
993
|
dependencies = [
|
996
994
|
"proc-macro2",
|
997
995
|
"quote",
|
998
|
-
"syn 2.0.
|
996
|
+
"syn 2.0.46",
|
999
997
|
]
|
1000
998
|
|
1001
999
|
[[package]]
|
1002
1000
|
name = "memchr"
|
1003
|
-
version = "2.
|
1001
|
+
version = "2.7.1"
|
1004
1002
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1005
|
-
checksum = "
|
1003
|
+
checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
|
1006
1004
|
|
1007
1005
|
[[package]]
|
1008
1006
|
name = "memmap2"
|
@@ -1013,15 +1011,6 @@ dependencies = [
|
|
1013
1011
|
"libc",
|
1014
1012
|
]
|
1015
1013
|
|
1016
|
-
[[package]]
|
1017
|
-
name = "memoffset"
|
1018
|
-
version = "0.9.0"
|
1019
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1020
|
-
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
|
1021
|
-
dependencies = [
|
1022
|
-
"autocfg",
|
1023
|
-
]
|
1024
|
-
|
1025
1014
|
[[package]]
|
1026
1015
|
name = "mimalloc"
|
1027
1016
|
version = "0.1.39"
|
@@ -1048,13 +1037,13 @@ dependencies = [
|
|
1048
1037
|
|
1049
1038
|
[[package]]
|
1050
1039
|
name = "mio"
|
1051
|
-
version = "0.8.
|
1040
|
+
version = "0.8.10"
|
1052
1041
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1053
|
-
checksum = "
|
1042
|
+
checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09"
|
1054
1043
|
dependencies = [
|
1055
1044
|
"libc",
|
1056
1045
|
"wasi",
|
1057
|
-
"windows-sys",
|
1046
|
+
"windows-sys 0.48.0",
|
1058
1047
|
]
|
1059
1048
|
|
1060
1049
|
[[package]]
|
@@ -1129,18 +1118,18 @@ dependencies = [
|
|
1129
1118
|
|
1130
1119
|
[[package]]
|
1131
1120
|
name = "object"
|
1132
|
-
version = "0.32.
|
1121
|
+
version = "0.32.2"
|
1133
1122
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1134
|
-
checksum = "
|
1123
|
+
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
|
1135
1124
|
dependencies = [
|
1136
1125
|
"memchr",
|
1137
1126
|
]
|
1138
1127
|
|
1139
1128
|
[[package]]
|
1140
1129
|
name = "once_cell"
|
1141
|
-
version = "1.
|
1130
|
+
version = "1.19.0"
|
1142
1131
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1143
|
-
checksum = "
|
1132
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
1144
1133
|
|
1145
1134
|
[[package]]
|
1146
1135
|
name = "parking_lot"
|
@@ -1162,7 +1151,7 @@ dependencies = [
|
|
1162
1151
|
"libc",
|
1163
1152
|
"redox_syscall",
|
1164
1153
|
"smallvec",
|
1165
|
-
"windows-targets",
|
1154
|
+
"windows-targets 0.48.5",
|
1166
1155
|
]
|
1167
1156
|
|
1168
1157
|
[[package]]
|
@@ -1192,9 +1181,9 @@ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
|
1192
1181
|
|
1193
1182
|
[[package]]
|
1194
1183
|
name = "percent-encoding"
|
1195
|
-
version = "2.3.
|
1184
|
+
version = "2.3.1"
|
1196
1185
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1197
|
-
checksum = "
|
1186
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
1198
1187
|
|
1199
1188
|
[[package]]
|
1200
1189
|
name = "phf"
|
@@ -1248,9 +1237,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1248
1237
|
|
1249
1238
|
[[package]]
|
1250
1239
|
name = "pkg-config"
|
1251
|
-
version = "0.3.
|
1240
|
+
version = "0.3.28"
|
1252
1241
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1253
|
-
checksum = "
|
1242
|
+
checksum = "69d3587f8a9e599cc7ec2c00e331f71c4e69a5f9a4b8a6efd5b07466b9736f9a"
|
1254
1243
|
|
1255
1244
|
[[package]]
|
1256
1245
|
name = "planus"
|
@@ -1263,7 +1252,7 @@ dependencies = [
|
|
1263
1252
|
|
1264
1253
|
[[package]]
|
1265
1254
|
name = "polars"
|
1266
|
-
version = "0.
|
1255
|
+
version = "0.8.0"
|
1267
1256
|
dependencies = [
|
1268
1257
|
"ahash",
|
1269
1258
|
"chrono",
|
@@ -1271,18 +1260,19 @@ dependencies = [
|
|
1271
1260
|
"jemallocator",
|
1272
1261
|
"magnus",
|
1273
1262
|
"mimalloc",
|
1274
|
-
"polars 0.
|
1263
|
+
"polars 0.36.2",
|
1275
1264
|
"polars-core",
|
1276
1265
|
"polars-parquet",
|
1266
|
+
"polars-utils",
|
1277
1267
|
"serde_json",
|
1278
1268
|
"smartstring",
|
1279
1269
|
]
|
1280
1270
|
|
1281
1271
|
[[package]]
|
1282
1272
|
name = "polars"
|
1283
|
-
version = "0.
|
1273
|
+
version = "0.36.2"
|
1284
1274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1285
|
-
checksum = "
|
1275
|
+
checksum = "938048fcda6a8e2ace6eb168bee1b415a92423ce51e418b853bf08fc40349b6b"
|
1286
1276
|
dependencies = [
|
1287
1277
|
"getrandom",
|
1288
1278
|
"polars-core",
|
@@ -1296,9 +1286,9 @@ dependencies = [
|
|
1296
1286
|
|
1297
1287
|
[[package]]
|
1298
1288
|
name = "polars-arrow"
|
1299
|
-
version = "0.
|
1289
|
+
version = "0.36.2"
|
1300
1290
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1301
|
-
checksum = "
|
1291
|
+
checksum = "ce68a02f698ff7787c261aea1b4c040a8fe183a8fb200e2436d7f35d95a1b86f"
|
1302
1292
|
dependencies = [
|
1303
1293
|
"ahash",
|
1304
1294
|
"arrow-format",
|
@@ -1315,27 +1305,40 @@ dependencies = [
|
|
1315
1305
|
"foreign_vec",
|
1316
1306
|
"futures",
|
1317
1307
|
"getrandom",
|
1318
|
-
"hashbrown 0.14.
|
1308
|
+
"hashbrown 0.14.3",
|
1319
1309
|
"itoa",
|
1320
1310
|
"lz4",
|
1321
1311
|
"multiversion",
|
1322
1312
|
"num-traits",
|
1323
1313
|
"polars-error",
|
1324
1314
|
"polars-utils",
|
1325
|
-
"rustc_version",
|
1326
1315
|
"ryu",
|
1327
1316
|
"serde",
|
1328
1317
|
"simdutf8",
|
1329
1318
|
"streaming-iterator",
|
1330
1319
|
"strength_reduce",
|
1320
|
+
"version_check",
|
1331
1321
|
"zstd",
|
1332
1322
|
]
|
1333
1323
|
|
1324
|
+
[[package]]
|
1325
|
+
name = "polars-compute"
|
1326
|
+
version = "0.36.2"
|
1327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1328
|
+
checksum = "b14fbc5f141b29b656a4cec4802632e5bff10bf801c6809c6bbfbd4078a044dd"
|
1329
|
+
dependencies = [
|
1330
|
+
"bytemuck",
|
1331
|
+
"num-traits",
|
1332
|
+
"polars-arrow",
|
1333
|
+
"polars-utils",
|
1334
|
+
"version_check",
|
1335
|
+
]
|
1336
|
+
|
1334
1337
|
[[package]]
|
1335
1338
|
name = "polars-core"
|
1336
|
-
version = "0.
|
1339
|
+
version = "0.36.2"
|
1337
1340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1338
|
-
checksum = "
|
1341
|
+
checksum = "d0f5efe734b6cbe5f97ea769be8360df5324fade396f1f3f5ad7fe9360ca4a23"
|
1339
1342
|
dependencies = [
|
1340
1343
|
"ahash",
|
1341
1344
|
"bitflags 2.4.1",
|
@@ -1344,12 +1347,13 @@ dependencies = [
|
|
1344
1347
|
"chrono-tz",
|
1345
1348
|
"comfy-table",
|
1346
1349
|
"either",
|
1347
|
-
"hashbrown 0.14.
|
1350
|
+
"hashbrown 0.14.3",
|
1348
1351
|
"indexmap",
|
1349
1352
|
"itoap",
|
1350
1353
|
"num-traits",
|
1351
1354
|
"once_cell",
|
1352
1355
|
"polars-arrow",
|
1356
|
+
"polars-compute",
|
1353
1357
|
"polars-error",
|
1354
1358
|
"polars-row",
|
1355
1359
|
"polars-utils",
|
@@ -1367,9 +1371,9 @@ dependencies = [
|
|
1367
1371
|
|
1368
1372
|
[[package]]
|
1369
1373
|
name = "polars-error"
|
1370
|
-
version = "0.
|
1374
|
+
version = "0.36.2"
|
1371
1375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1372
|
-
checksum = "
|
1376
|
+
checksum = "6396de788f99ebfc9968e7b6f523e23000506cde4ba6dfc62ae4ce949002a886"
|
1373
1377
|
dependencies = [
|
1374
1378
|
"arrow-format",
|
1375
1379
|
"avro-schema",
|
@@ -1380,9 +1384,9 @@ dependencies = [
|
|
1380
1384
|
|
1381
1385
|
[[package]]
|
1382
1386
|
name = "polars-io"
|
1383
|
-
version = "0.
|
1387
|
+
version = "0.36.2"
|
1384
1388
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1385
|
-
checksum = "
|
1389
|
+
checksum = "7d0458efe8946f4718fd352f230c0db5a37926bd0d2bd25af79dc24746abaaea"
|
1386
1390
|
dependencies = [
|
1387
1391
|
"ahash",
|
1388
1392
|
"async-trait",
|
@@ -1420,14 +1424,14 @@ dependencies = [
|
|
1420
1424
|
|
1421
1425
|
[[package]]
|
1422
1426
|
name = "polars-json"
|
1423
|
-
version = "0.
|
1427
|
+
version = "0.36.2"
|
1424
1428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1425
|
-
checksum = "
|
1429
|
+
checksum = "ea47d46b7a98fa683ef235ad48b783abf61734828e754096cfbdc77404fff9b3"
|
1426
1430
|
dependencies = [
|
1427
1431
|
"ahash",
|
1428
1432
|
"chrono",
|
1429
1433
|
"fallible-streaming-iterator",
|
1430
|
-
"hashbrown 0.14.
|
1434
|
+
"hashbrown 0.14.3",
|
1431
1435
|
"indexmap",
|
1432
1436
|
"itoa",
|
1433
1437
|
"num-traits",
|
@@ -1441,9 +1445,9 @@ dependencies = [
|
|
1441
1445
|
|
1442
1446
|
[[package]]
|
1443
1447
|
name = "polars-lazy"
|
1444
|
-
version = "0.
|
1448
|
+
version = "0.36.2"
|
1445
1449
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1446
|
-
checksum = "
|
1450
|
+
checksum = "9d7105b40905bb38e8fc4a7fd736594b7491baa12fad3ac492969ca221a1b5d5"
|
1447
1451
|
dependencies = [
|
1448
1452
|
"ahash",
|
1449
1453
|
"bitflags 2.4.1",
|
@@ -1465,9 +1469,9 @@ dependencies = [
|
|
1465
1469
|
|
1466
1470
|
[[package]]
|
1467
1471
|
name = "polars-ops"
|
1468
|
-
version = "0.
|
1472
|
+
version = "0.36.2"
|
1469
1473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1470
|
-
checksum = "
|
1474
|
+
checksum = "2e09afc456ab11e75e5dcb43e00a01c71f3a46a2781e450054acb6bb096ca78e"
|
1471
1475
|
dependencies = [
|
1472
1476
|
"ahash",
|
1473
1477
|
"argminmax",
|
@@ -1476,13 +1480,14 @@ dependencies = [
|
|
1476
1480
|
"chrono",
|
1477
1481
|
"chrono-tz",
|
1478
1482
|
"either",
|
1479
|
-
"hashbrown 0.14.
|
1483
|
+
"hashbrown 0.14.3",
|
1480
1484
|
"hex",
|
1481
1485
|
"indexmap",
|
1482
1486
|
"jsonpath_lib",
|
1483
1487
|
"memchr",
|
1484
1488
|
"num-traits",
|
1485
1489
|
"polars-arrow",
|
1490
|
+
"polars-compute",
|
1486
1491
|
"polars-core",
|
1487
1492
|
"polars-error",
|
1488
1493
|
"polars-json",
|
@@ -1499,9 +1504,9 @@ dependencies = [
|
|
1499
1504
|
|
1500
1505
|
[[package]]
|
1501
1506
|
name = "polars-parquet"
|
1502
|
-
version = "0.
|
1507
|
+
version = "0.36.2"
|
1503
1508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1504
|
-
checksum = "
|
1509
|
+
checksum = "7ba24d67b1f64ab85143033dd46fa090b13c0f74acdf91b0780c16aecf005e3d"
|
1505
1510
|
dependencies = [
|
1506
1511
|
"ahash",
|
1507
1512
|
"async-stream",
|
@@ -1525,16 +1530,17 @@ dependencies = [
|
|
1525
1530
|
|
1526
1531
|
[[package]]
|
1527
1532
|
name = "polars-pipe"
|
1528
|
-
version = "0.
|
1533
|
+
version = "0.36.2"
|
1529
1534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1530
|
-
checksum = "
|
1535
|
+
checksum = "d9b7ead073cc3917027d77b59861a9f071db47125de9314f8907db1a0a3e4100"
|
1531
1536
|
dependencies = [
|
1532
1537
|
"crossbeam-channel",
|
1533
1538
|
"crossbeam-queue",
|
1534
1539
|
"enum_dispatch",
|
1535
|
-
"hashbrown 0.14.
|
1540
|
+
"hashbrown 0.14.3",
|
1536
1541
|
"num-traits",
|
1537
1542
|
"polars-arrow",
|
1543
|
+
"polars-compute",
|
1538
1544
|
"polars-core",
|
1539
1545
|
"polars-io",
|
1540
1546
|
"polars-ops",
|
@@ -1548,9 +1554,9 @@ dependencies = [
|
|
1548
1554
|
|
1549
1555
|
[[package]]
|
1550
1556
|
name = "polars-plan"
|
1551
|
-
version = "0.
|
1557
|
+
version = "0.36.2"
|
1552
1558
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1553
|
-
checksum = "
|
1559
|
+
checksum = "384a175624d050c31c473ee11df9d7af5d729ae626375e522158cfb3d150acd0"
|
1554
1560
|
dependencies = [
|
1555
1561
|
"ahash",
|
1556
1562
|
"bytemuck",
|
@@ -1561,6 +1567,7 @@ dependencies = [
|
|
1561
1567
|
"polars-arrow",
|
1562
1568
|
"polars-core",
|
1563
1569
|
"polars-io",
|
1570
|
+
"polars-json",
|
1564
1571
|
"polars-ops",
|
1565
1572
|
"polars-parquet",
|
1566
1573
|
"polars-time",
|
@@ -1575,9 +1582,9 @@ dependencies = [
|
|
1575
1582
|
|
1576
1583
|
[[package]]
|
1577
1584
|
name = "polars-row"
|
1578
|
-
version = "0.
|
1585
|
+
version = "0.36.2"
|
1579
1586
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1580
|
-
checksum = "
|
1587
|
+
checksum = "32322f7acbb83db3e9c7697dc821be73d06238da89c817dcc8bc1549a5e9c72f"
|
1581
1588
|
dependencies = [
|
1582
1589
|
"polars-arrow",
|
1583
1590
|
"polars-error",
|
@@ -1586,9 +1593,9 @@ dependencies = [
|
|
1586
1593
|
|
1587
1594
|
[[package]]
|
1588
1595
|
name = "polars-sql"
|
1589
|
-
version = "0.
|
1596
|
+
version = "0.36.2"
|
1590
1597
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1591
|
-
checksum = "
|
1598
|
+
checksum = "9f0b4c6ddffdfd0453e84bc3918572c633014d661d166654399cf93752aa95b5"
|
1592
1599
|
dependencies = [
|
1593
1600
|
"polars-arrow",
|
1594
1601
|
"polars-core",
|
@@ -1603,9 +1610,9 @@ dependencies = [
|
|
1603
1610
|
|
1604
1611
|
[[package]]
|
1605
1612
|
name = "polars-time"
|
1606
|
-
version = "0.
|
1613
|
+
version = "0.36.2"
|
1607
1614
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1608
|
-
checksum = "
|
1615
|
+
checksum = "dee2649fc96bd1b6584e0e4a4b3ca7d22ed3d117a990e63ad438ecb26f7544d0"
|
1609
1616
|
dependencies = [
|
1610
1617
|
"atoi",
|
1611
1618
|
"chrono",
|
@@ -1624,13 +1631,13 @@ dependencies = [
|
|
1624
1631
|
|
1625
1632
|
[[package]]
|
1626
1633
|
name = "polars-utils"
|
1627
|
-
version = "0.
|
1634
|
+
version = "0.36.2"
|
1628
1635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1629
|
-
checksum = "
|
1636
|
+
checksum = "b174ca4a77ad47d7b91a0460aaae65bbf874c8bfbaaa5308675dadef3976bbda"
|
1630
1637
|
dependencies = [
|
1631
1638
|
"ahash",
|
1632
1639
|
"bytemuck",
|
1633
|
-
"hashbrown 0.14.
|
1640
|
+
"hashbrown 0.14.3",
|
1634
1641
|
"indexmap",
|
1635
1642
|
"num-traits",
|
1636
1643
|
"once_cell",
|
@@ -1649,18 +1656,18 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
1649
1656
|
|
1650
1657
|
[[package]]
|
1651
1658
|
name = "proc-macro2"
|
1652
|
-
version = "1.0.
|
1659
|
+
version = "1.0.74"
|
1653
1660
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1654
|
-
checksum = "
|
1661
|
+
checksum = "2de98502f212cfcea8d0bb305bd0f49d7ebdd75b64ba0a68f937d888f4e0d6db"
|
1655
1662
|
dependencies = [
|
1656
1663
|
"unicode-ident",
|
1657
1664
|
]
|
1658
1665
|
|
1659
1666
|
[[package]]
|
1660
1667
|
name = "quote"
|
1661
|
-
version = "1.0.
|
1668
|
+
version = "1.0.35"
|
1662
1669
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1663
|
-
checksum = "
|
1670
|
+
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
|
1664
1671
|
dependencies = [
|
1665
1672
|
"proc-macro2",
|
1666
1673
|
]
|
@@ -1727,18 +1734,18 @@ dependencies = [
|
|
1727
1734
|
|
1728
1735
|
[[package]]
|
1729
1736
|
name = "rb-sys"
|
1730
|
-
version = "0.9.
|
1737
|
+
version = "0.9.86"
|
1731
1738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1732
|
-
checksum = "
|
1739
|
+
checksum = "7285f2a7b92f58ab198e3fd59a71d2861478f9c4642f41e83582385818941697"
|
1733
1740
|
dependencies = [
|
1734
1741
|
"rb-sys-build",
|
1735
1742
|
]
|
1736
1743
|
|
1737
1744
|
[[package]]
|
1738
1745
|
name = "rb-sys-build"
|
1739
|
-
version = "0.9.
|
1746
|
+
version = "0.9.86"
|
1740
1747
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1741
|
-
checksum = "
|
1748
|
+
checksum = "71583945f94dabb6c0dfa63f1b71e929c1901e1e288ef3739ab8bed3b7069550"
|
1742
1749
|
dependencies = [
|
1743
1750
|
"bindgen",
|
1744
1751
|
"lazy_static",
|
@@ -1746,7 +1753,7 @@ dependencies = [
|
|
1746
1753
|
"quote",
|
1747
1754
|
"regex",
|
1748
1755
|
"shell-words",
|
1749
|
-
"syn 2.0.
|
1756
|
+
"syn 2.0.46",
|
1750
1757
|
]
|
1751
1758
|
|
1752
1759
|
[[package]]
|
@@ -1766,22 +1773,22 @@ dependencies = [
|
|
1766
1773
|
|
1767
1774
|
[[package]]
|
1768
1775
|
name = "ref-cast"
|
1769
|
-
version = "1.0.
|
1776
|
+
version = "1.0.22"
|
1770
1777
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1771
|
-
checksum = "
|
1778
|
+
checksum = "c4846d4c50d1721b1a3bef8af76924eef20d5e723647333798c1b519b3a9473f"
|
1772
1779
|
dependencies = [
|
1773
1780
|
"ref-cast-impl",
|
1774
1781
|
]
|
1775
1782
|
|
1776
1783
|
[[package]]
|
1777
1784
|
name = "ref-cast-impl"
|
1778
|
-
version = "1.0.
|
1785
|
+
version = "1.0.22"
|
1779
1786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1780
|
-
checksum = "
|
1787
|
+
checksum = "5fddb4f8d99b0a2ebafc65a87a69a7b9875e4b1ae1f00db265d300ef7f28bccc"
|
1781
1788
|
dependencies = [
|
1782
1789
|
"proc-macro2",
|
1783
1790
|
"quote",
|
1784
|
-
"syn 2.0.
|
1791
|
+
"syn 2.0.46",
|
1785
1792
|
]
|
1786
1793
|
|
1787
1794
|
[[package]]
|
@@ -1831,15 +1838,6 @@ version = "1.1.0"
|
|
1831
1838
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1832
1839
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
1833
1840
|
|
1834
|
-
[[package]]
|
1835
|
-
name = "rustc_version"
|
1836
|
-
version = "0.4.0"
|
1837
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1838
|
-
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
1839
|
-
dependencies = [
|
1840
|
-
"semver",
|
1841
|
-
]
|
1842
|
-
|
1843
1841
|
[[package]]
|
1844
1842
|
name = "rustversion"
|
1845
1843
|
version = "1.0.14"
|
@@ -1848,9 +1846,9 @@ checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
|
|
1848
1846
|
|
1849
1847
|
[[package]]
|
1850
1848
|
name = "ryu"
|
1851
|
-
version = "1.0.
|
1849
|
+
version = "1.0.16"
|
1852
1850
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1853
|
-
checksum = "
|
1851
|
+
checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
|
1854
1852
|
|
1855
1853
|
[[package]]
|
1856
1854
|
name = "scopeguard"
|
@@ -1858,12 +1856,6 @@ version = "1.2.0"
|
|
1858
1856
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1859
1857
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
1860
1858
|
|
1861
|
-
[[package]]
|
1862
|
-
name = "semver"
|
1863
|
-
version = "1.0.20"
|
1864
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1865
|
-
checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090"
|
1866
|
-
|
1867
1859
|
[[package]]
|
1868
1860
|
name = "seq-macro"
|
1869
1861
|
version = "0.3.5"
|
@@ -1872,29 +1864,29 @@ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
|
1872
1864
|
|
1873
1865
|
[[package]]
|
1874
1866
|
name = "serde"
|
1875
|
-
version = "1.0.
|
1867
|
+
version = "1.0.194"
|
1876
1868
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1877
|
-
checksum = "
|
1869
|
+
checksum = "0b114498256798c94a0689e1a15fec6005dee8ac1f41de56404b67afc2a4b773"
|
1878
1870
|
dependencies = [
|
1879
1871
|
"serde_derive",
|
1880
1872
|
]
|
1881
1873
|
|
1882
1874
|
[[package]]
|
1883
1875
|
name = "serde_derive"
|
1884
|
-
version = "1.0.
|
1876
|
+
version = "1.0.194"
|
1885
1877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1886
|
-
checksum = "
|
1878
|
+
checksum = "a3385e45322e8f9931410f01b3031ec534c3947d0e94c18049af4d9f9907d4e0"
|
1887
1879
|
dependencies = [
|
1888
1880
|
"proc-macro2",
|
1889
1881
|
"quote",
|
1890
|
-
"syn 2.0.
|
1882
|
+
"syn 2.0.46",
|
1891
1883
|
]
|
1892
1884
|
|
1893
1885
|
[[package]]
|
1894
1886
|
name = "serde_json"
|
1895
|
-
version = "1.0.
|
1887
|
+
version = "1.0.110"
|
1896
1888
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1897
|
-
checksum = "
|
1889
|
+
checksum = "6fbd975230bada99c8bb618e0c365c2eefa219158d5c6c29610fd09ff1833257"
|
1898
1890
|
dependencies = [
|
1899
1891
|
"indexmap",
|
1900
1892
|
"itoa",
|
@@ -1973,9 +1965,9 @@ dependencies = [
|
|
1973
1965
|
|
1974
1966
|
[[package]]
|
1975
1967
|
name = "snap"
|
1976
|
-
version = "1.1.
|
1968
|
+
version = "1.1.1"
|
1977
1969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1978
|
-
checksum = "
|
1970
|
+
checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
1979
1971
|
|
1980
1972
|
[[package]]
|
1981
1973
|
name = "socket2"
|
@@ -1984,7 +1976,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1984
1976
|
checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
|
1985
1977
|
dependencies = [
|
1986
1978
|
"libc",
|
1987
|
-
"windows-sys",
|
1979
|
+
"windows-sys 0.48.0",
|
1988
1980
|
]
|
1989
1981
|
|
1990
1982
|
[[package]]
|
@@ -2039,7 +2031,7 @@ dependencies = [
|
|
2039
2031
|
"proc-macro2",
|
2040
2032
|
"quote",
|
2041
2033
|
"rustversion",
|
2042
|
-
"syn 2.0.
|
2034
|
+
"syn 2.0.46",
|
2043
2035
|
]
|
2044
2036
|
|
2045
2037
|
[[package]]
|
@@ -2055,9 +2047,9 @@ dependencies = [
|
|
2055
2047
|
|
2056
2048
|
[[package]]
|
2057
2049
|
name = "syn"
|
2058
|
-
version = "2.0.
|
2050
|
+
version = "2.0.46"
|
2059
2051
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2060
|
-
checksum = "
|
2052
|
+
checksum = "89456b690ff72fddcecf231caedbe615c59480c93358a93dfae7fc29e3ebbf0e"
|
2061
2053
|
dependencies = [
|
2062
2054
|
"proc-macro2",
|
2063
2055
|
"quote",
|
@@ -2066,16 +2058,16 @@ dependencies = [
|
|
2066
2058
|
|
2067
2059
|
[[package]]
|
2068
2060
|
name = "sysinfo"
|
2069
|
-
version = "0.
|
2061
|
+
version = "0.30.3"
|
2070
2062
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2071
|
-
checksum = "
|
2063
|
+
checksum = "ba2dbd2894d23b2d78dae768d85e323b557ac3ac71a5d917a31536d8f77ebada"
|
2072
2064
|
dependencies = [
|
2073
2065
|
"cfg-if",
|
2074
2066
|
"core-foundation-sys",
|
2075
2067
|
"libc",
|
2076
2068
|
"ntapi",
|
2077
2069
|
"once_cell",
|
2078
|
-
"
|
2070
|
+
"windows",
|
2079
2071
|
]
|
2080
2072
|
|
2081
2073
|
[[package]]
|
@@ -2086,29 +2078,29 @@ checksum = "cfb5fa503293557c5158bd215fdc225695e567a77e453f5d4452a50a193969bd"
|
|
2086
2078
|
|
2087
2079
|
[[package]]
|
2088
2080
|
name = "thiserror"
|
2089
|
-
version = "1.0.
|
2081
|
+
version = "1.0.56"
|
2090
2082
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2091
|
-
checksum = "
|
2083
|
+
checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
|
2092
2084
|
dependencies = [
|
2093
2085
|
"thiserror-impl",
|
2094
2086
|
]
|
2095
2087
|
|
2096
2088
|
[[package]]
|
2097
2089
|
name = "thiserror-impl"
|
2098
|
-
version = "1.0.
|
2090
|
+
version = "1.0.56"
|
2099
2091
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2100
|
-
checksum = "
|
2092
|
+
checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
|
2101
2093
|
dependencies = [
|
2102
2094
|
"proc-macro2",
|
2103
2095
|
"quote",
|
2104
|
-
"syn 2.0.
|
2096
|
+
"syn 2.0.46",
|
2105
2097
|
]
|
2106
2098
|
|
2107
2099
|
[[package]]
|
2108
2100
|
name = "tokio"
|
2109
|
-
version = "1.
|
2101
|
+
version = "1.35.1"
|
2110
2102
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2111
|
-
checksum = "
|
2103
|
+
checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104"
|
2112
2104
|
dependencies = [
|
2113
2105
|
"backtrace",
|
2114
2106
|
"bytes",
|
@@ -2117,7 +2109,7 @@ dependencies = [
|
|
2117
2109
|
"num_cpus",
|
2118
2110
|
"pin-project-lite",
|
2119
2111
|
"socket2",
|
2120
|
-
"windows-sys",
|
2112
|
+
"windows-sys 0.48.0",
|
2121
2113
|
]
|
2122
2114
|
|
2123
2115
|
[[package]]
|
@@ -2171,9 +2163,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
2171
2163
|
|
2172
2164
|
[[package]]
|
2173
2165
|
name = "wasm-bindgen"
|
2174
|
-
version = "0.2.
|
2166
|
+
version = "0.2.89"
|
2175
2167
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2176
|
-
checksum = "
|
2168
|
+
checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e"
|
2177
2169
|
dependencies = [
|
2178
2170
|
"cfg-if",
|
2179
2171
|
"wasm-bindgen-macro",
|
@@ -2181,24 +2173,24 @@ dependencies = [
|
|
2181
2173
|
|
2182
2174
|
[[package]]
|
2183
2175
|
name = "wasm-bindgen-backend"
|
2184
|
-
version = "0.2.
|
2176
|
+
version = "0.2.89"
|
2185
2177
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2186
|
-
checksum = "
|
2178
|
+
checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826"
|
2187
2179
|
dependencies = [
|
2188
2180
|
"bumpalo",
|
2189
2181
|
"log",
|
2190
2182
|
"once_cell",
|
2191
2183
|
"proc-macro2",
|
2192
2184
|
"quote",
|
2193
|
-
"syn 2.0.
|
2185
|
+
"syn 2.0.46",
|
2194
2186
|
"wasm-bindgen-shared",
|
2195
2187
|
]
|
2196
2188
|
|
2197
2189
|
[[package]]
|
2198
2190
|
name = "wasm-bindgen-macro"
|
2199
|
-
version = "0.2.
|
2191
|
+
version = "0.2.89"
|
2200
2192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2201
|
-
checksum = "
|
2193
|
+
checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2"
|
2202
2194
|
dependencies = [
|
2203
2195
|
"quote",
|
2204
2196
|
"wasm-bindgen-macro-support",
|
@@ -2206,22 +2198,22 @@ dependencies = [
|
|
2206
2198
|
|
2207
2199
|
[[package]]
|
2208
2200
|
name = "wasm-bindgen-macro-support"
|
2209
|
-
version = "0.2.
|
2201
|
+
version = "0.2.89"
|
2210
2202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2211
|
-
checksum = "
|
2203
|
+
checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283"
|
2212
2204
|
dependencies = [
|
2213
2205
|
"proc-macro2",
|
2214
2206
|
"quote",
|
2215
|
-
"syn 2.0.
|
2207
|
+
"syn 2.0.46",
|
2216
2208
|
"wasm-bindgen-backend",
|
2217
2209
|
"wasm-bindgen-shared",
|
2218
2210
|
]
|
2219
2211
|
|
2220
2212
|
[[package]]
|
2221
2213
|
name = "wasm-bindgen-shared"
|
2222
|
-
version = "0.2.
|
2214
|
+
version = "0.2.89"
|
2223
2215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2224
|
-
checksum = "
|
2216
|
+
checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f"
|
2225
2217
|
|
2226
2218
|
[[package]]
|
2227
2219
|
name = "winapi"
|
@@ -2245,13 +2237,23 @@ version = "0.4.0"
|
|
2245
2237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2246
2238
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2247
2239
|
|
2240
|
+
[[package]]
|
2241
|
+
name = "windows"
|
2242
|
+
version = "0.52.0"
|
2243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2244
|
+
checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
|
2245
|
+
dependencies = [
|
2246
|
+
"windows-core",
|
2247
|
+
"windows-targets 0.52.0",
|
2248
|
+
]
|
2249
|
+
|
2248
2250
|
[[package]]
|
2249
2251
|
name = "windows-core"
|
2250
|
-
version = "0.
|
2252
|
+
version = "0.52.0"
|
2251
2253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2252
|
-
checksum = "
|
2254
|
+
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
2253
2255
|
dependencies = [
|
2254
|
-
"windows-targets",
|
2256
|
+
"windows-targets 0.52.0",
|
2255
2257
|
]
|
2256
2258
|
|
2257
2259
|
[[package]]
|
@@ -2260,7 +2262,16 @@ version = "0.48.0"
|
|
2260
2262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2261
2263
|
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
2262
2264
|
dependencies = [
|
2263
|
-
"windows-targets",
|
2265
|
+
"windows-targets 0.48.5",
|
2266
|
+
]
|
2267
|
+
|
2268
|
+
[[package]]
|
2269
|
+
name = "windows-sys"
|
2270
|
+
version = "0.52.0"
|
2271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2272
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
2273
|
+
dependencies = [
|
2274
|
+
"windows-targets 0.52.0",
|
2264
2275
|
]
|
2265
2276
|
|
2266
2277
|
[[package]]
|
@@ -2269,13 +2280,28 @@ version = "0.48.5"
|
|
2269
2280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2270
2281
|
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
2271
2282
|
dependencies = [
|
2272
|
-
"windows_aarch64_gnullvm",
|
2273
|
-
"windows_aarch64_msvc",
|
2274
|
-
"windows_i686_gnu",
|
2275
|
-
"windows_i686_msvc",
|
2276
|
-
"windows_x86_64_gnu",
|
2277
|
-
"windows_x86_64_gnullvm",
|
2278
|
-
"windows_x86_64_msvc",
|
2283
|
+
"windows_aarch64_gnullvm 0.48.5",
|
2284
|
+
"windows_aarch64_msvc 0.48.5",
|
2285
|
+
"windows_i686_gnu 0.48.5",
|
2286
|
+
"windows_i686_msvc 0.48.5",
|
2287
|
+
"windows_x86_64_gnu 0.48.5",
|
2288
|
+
"windows_x86_64_gnullvm 0.48.5",
|
2289
|
+
"windows_x86_64_msvc 0.48.5",
|
2290
|
+
]
|
2291
|
+
|
2292
|
+
[[package]]
|
2293
|
+
name = "windows-targets"
|
2294
|
+
version = "0.52.0"
|
2295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2296
|
+
checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
|
2297
|
+
dependencies = [
|
2298
|
+
"windows_aarch64_gnullvm 0.52.0",
|
2299
|
+
"windows_aarch64_msvc 0.52.0",
|
2300
|
+
"windows_i686_gnu 0.52.0",
|
2301
|
+
"windows_i686_msvc 0.52.0",
|
2302
|
+
"windows_x86_64_gnu 0.52.0",
|
2303
|
+
"windows_x86_64_gnullvm 0.52.0",
|
2304
|
+
"windows_x86_64_msvc 0.52.0",
|
2279
2305
|
]
|
2280
2306
|
|
2281
2307
|
[[package]]
|
@@ -2284,66 +2310,108 @@ version = "0.48.5"
|
|
2284
2310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2285
2311
|
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
2286
2312
|
|
2313
|
+
[[package]]
|
2314
|
+
name = "windows_aarch64_gnullvm"
|
2315
|
+
version = "0.52.0"
|
2316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2317
|
+
checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
|
2318
|
+
|
2287
2319
|
[[package]]
|
2288
2320
|
name = "windows_aarch64_msvc"
|
2289
2321
|
version = "0.48.5"
|
2290
2322
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2291
2323
|
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
2292
2324
|
|
2325
|
+
[[package]]
|
2326
|
+
name = "windows_aarch64_msvc"
|
2327
|
+
version = "0.52.0"
|
2328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2329
|
+
checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
|
2330
|
+
|
2293
2331
|
[[package]]
|
2294
2332
|
name = "windows_i686_gnu"
|
2295
2333
|
version = "0.48.5"
|
2296
2334
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2297
2335
|
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
2298
2336
|
|
2337
|
+
[[package]]
|
2338
|
+
name = "windows_i686_gnu"
|
2339
|
+
version = "0.52.0"
|
2340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2341
|
+
checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
|
2342
|
+
|
2299
2343
|
[[package]]
|
2300
2344
|
name = "windows_i686_msvc"
|
2301
2345
|
version = "0.48.5"
|
2302
2346
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2303
2347
|
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
2304
2348
|
|
2349
|
+
[[package]]
|
2350
|
+
name = "windows_i686_msvc"
|
2351
|
+
version = "0.52.0"
|
2352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2353
|
+
checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
|
2354
|
+
|
2305
2355
|
[[package]]
|
2306
2356
|
name = "windows_x86_64_gnu"
|
2307
2357
|
version = "0.48.5"
|
2308
2358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2309
2359
|
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
2310
2360
|
|
2361
|
+
[[package]]
|
2362
|
+
name = "windows_x86_64_gnu"
|
2363
|
+
version = "0.52.0"
|
2364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2365
|
+
checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
|
2366
|
+
|
2311
2367
|
[[package]]
|
2312
2368
|
name = "windows_x86_64_gnullvm"
|
2313
2369
|
version = "0.48.5"
|
2314
2370
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2315
2371
|
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
2316
2372
|
|
2373
|
+
[[package]]
|
2374
|
+
name = "windows_x86_64_gnullvm"
|
2375
|
+
version = "0.52.0"
|
2376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2377
|
+
checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
|
2378
|
+
|
2317
2379
|
[[package]]
|
2318
2380
|
name = "windows_x86_64_msvc"
|
2319
2381
|
version = "0.48.5"
|
2320
2382
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2321
2383
|
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
2322
2384
|
|
2385
|
+
[[package]]
|
2386
|
+
name = "windows_x86_64_msvc"
|
2387
|
+
version = "0.52.0"
|
2388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2389
|
+
checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
|
2390
|
+
|
2323
2391
|
[[package]]
|
2324
2392
|
name = "xxhash-rust"
|
2325
|
-
version = "0.8.
|
2393
|
+
version = "0.8.8"
|
2326
2394
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2327
|
-
checksum = "
|
2395
|
+
checksum = "53be06678ed9e83edb1745eb72efc0bbcd7b5c3c35711a860906aed827a13d61"
|
2328
2396
|
|
2329
2397
|
[[package]]
|
2330
2398
|
name = "zerocopy"
|
2331
|
-
version = "0.7.
|
2399
|
+
version = "0.7.32"
|
2332
2400
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2333
|
-
checksum = "
|
2401
|
+
checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
|
2334
2402
|
dependencies = [
|
2335
2403
|
"zerocopy-derive",
|
2336
2404
|
]
|
2337
2405
|
|
2338
2406
|
[[package]]
|
2339
2407
|
name = "zerocopy-derive"
|
2340
|
-
version = "0.7.
|
2408
|
+
version = "0.7.32"
|
2341
2409
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2342
|
-
checksum = "
|
2410
|
+
checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
|
2343
2411
|
dependencies = [
|
2344
2412
|
"proc-macro2",
|
2345
2413
|
"quote",
|
2346
|
-
"syn 2.0.
|
2414
|
+
"syn 2.0.46",
|
2347
2415
|
]
|
2348
2416
|
|
2349
2417
|
[[package]]
|