polars-df 0.1.5 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/Cargo.lock +374 -222
- data/Cargo.toml +2 -2
- data/LICENSE.txt +1 -1
- data/README.md +0 -2
- data/ext/polars/Cargo.toml +4 -3
- data/ext/polars/src/apply/dataframe.rs +24 -13
- data/ext/polars/src/apply/mod.rs +3 -4
- data/ext/polars/src/conversion.rs +155 -31
- data/ext/polars/src/dataframe.rs +5 -5
- data/ext/polars/src/lazy/dataframe.rs +8 -2
- data/ext/polars/src/lazy/dsl.rs +54 -18
- data/ext/polars/src/lib.rs +19 -11
- data/ext/polars/src/series.rs +32 -10
- data/lib/polars/data_frame.rb +25 -23
- data/lib/polars/data_types.rb +122 -0
- data/lib/polars/date_time_expr.rb +10 -10
- data/lib/polars/date_time_name_space.rb +8 -8
- data/lib/polars/dynamic_group_by.rb +5 -2
- data/lib/polars/expr.rb +4 -3
- data/lib/polars/functions.rb +2 -2
- data/lib/polars/group_by.rb +33 -33
- data/lib/polars/lazy_frame.rb +8 -5
- data/lib/polars/lazy_functions.rb +8 -3
- data/lib/polars/list_expr.rb +1 -1
- data/lib/polars/series.rb +64 -21
- data/lib/polars/string_expr.rb +6 -5
- data/lib/polars/string_name_space.rb +1 -1
- data/lib/polars/utils.rb +9 -8
- data/lib/polars/version.rb +1 -1
- data/lib/polars.rb +34 -33
- metadata +5 -4
data/Cargo.lock
CHANGED
@@ -14,17 +14,6 @@ version = "1.2.0"
|
|
14
14
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
15
15
|
checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
|
16
16
|
|
17
|
-
[[package]]
|
18
|
-
name = "ahash"
|
19
|
-
version = "0.7.6"
|
20
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
21
|
-
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
|
22
|
-
dependencies = [
|
23
|
-
"getrandom",
|
24
|
-
"once_cell",
|
25
|
-
"version_check",
|
26
|
-
]
|
27
|
-
|
28
17
|
[[package]]
|
29
18
|
name = "ahash"
|
30
19
|
version = "0.8.2"
|
@@ -39,9 +28,9 @@ dependencies = [
|
|
39
28
|
|
40
29
|
[[package]]
|
41
30
|
name = "aho-corasick"
|
42
|
-
version = "0.7.
|
31
|
+
version = "0.7.20"
|
43
32
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
44
|
-
checksum = "
|
33
|
+
checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
|
45
34
|
dependencies = [
|
46
35
|
"memchr",
|
47
36
|
]
|
@@ -61,11 +50,20 @@ dependencies = [
|
|
61
50
|
"alloc-no-stdlib",
|
62
51
|
]
|
63
52
|
|
53
|
+
[[package]]
|
54
|
+
name = "android_system_properties"
|
55
|
+
version = "0.1.5"
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
57
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
58
|
+
dependencies = [
|
59
|
+
"libc",
|
60
|
+
]
|
61
|
+
|
64
62
|
[[package]]
|
65
63
|
name = "anyhow"
|
66
|
-
version = "1.0.
|
64
|
+
version = "1.0.68"
|
67
65
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
68
|
-
checksum = "
|
66
|
+
checksum = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61"
|
69
67
|
|
70
68
|
[[package]]
|
71
69
|
name = "array-init-cursor"
|
@@ -75,9 +73,9 @@ checksum = "bf7d0a018de4f6aa429b9d33d69edf69072b1c5b1cb8d3e4a5f7ef898fc3eb76"
|
|
75
73
|
|
76
74
|
[[package]]
|
77
75
|
name = "arrow-format"
|
78
|
-
version = "0.
|
76
|
+
version = "0.8.1"
|
79
77
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
80
|
-
checksum = "
|
78
|
+
checksum = "07884ea216994cdc32a2d5f8274a8bee979cfe90274b83f86f440866ee3132c7"
|
81
79
|
dependencies = [
|
82
80
|
"planus",
|
83
81
|
"serde",
|
@@ -85,11 +83,10 @@ dependencies = [
|
|
85
83
|
|
86
84
|
[[package]]
|
87
85
|
name = "arrow2"
|
88
|
-
version = "0.
|
89
|
-
source = "
|
90
|
-
checksum = "ee6f62e41078c967a4c063fcbdfd3801a2a9632276402c045311c4d73d0845f3"
|
86
|
+
version = "0.15.0"
|
87
|
+
source = "git+https://github.com/ankane/arrow2?rev=9f36b2b97446e6dd495473e4361a70d863ac8027#9f36b2b97446e6dd495473e4361a70d863ac8027"
|
91
88
|
dependencies = [
|
92
|
-
"ahash
|
89
|
+
"ahash",
|
93
90
|
"arrow-format",
|
94
91
|
"avro-schema",
|
95
92
|
"base64",
|
@@ -110,6 +107,7 @@ dependencies = [
|
|
110
107
|
"multiversion",
|
111
108
|
"num-traits",
|
112
109
|
"parquet2",
|
110
|
+
"rustc_version",
|
113
111
|
"simdutf8",
|
114
112
|
"streaming-iterator",
|
115
113
|
"strength_reduce",
|
@@ -139,9 +137,9 @@ dependencies = [
|
|
139
137
|
|
140
138
|
[[package]]
|
141
139
|
name = "async-trait"
|
142
|
-
version = "0.1.
|
140
|
+
version = "0.1.61"
|
143
141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
144
|
-
checksum = "
|
142
|
+
checksum = "705339e0e4a9690e2908d2b3d049d85682cf19fbd5782494498fbf7003a6a282"
|
145
143
|
dependencies = [
|
146
144
|
"proc-macro2",
|
147
145
|
"quote",
|
@@ -222,9 +220,9 @@ dependencies = [
|
|
222
220
|
|
223
221
|
[[package]]
|
224
222
|
name = "bumpalo"
|
225
|
-
version = "3.
|
223
|
+
version = "3.11.1"
|
226
224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
227
|
-
checksum = "
|
225
|
+
checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
|
228
226
|
|
229
227
|
[[package]]
|
230
228
|
name = "bytemuck"
|
@@ -246,17 +244,11 @@ dependencies = [
|
|
246
244
|
"syn",
|
247
245
|
]
|
248
246
|
|
249
|
-
[[package]]
|
250
|
-
name = "byteorder"
|
251
|
-
version = "1.4.3"
|
252
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
253
|
-
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
|
254
|
-
|
255
247
|
[[package]]
|
256
248
|
name = "cc"
|
257
|
-
version = "1.0.
|
249
|
+
version = "1.0.78"
|
258
250
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
259
|
-
checksum = "
|
251
|
+
checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d"
|
260
252
|
dependencies = [
|
261
253
|
"jobserver",
|
262
254
|
]
|
@@ -278,10 +270,11 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
278
270
|
|
279
271
|
[[package]]
|
280
272
|
name = "chrono"
|
281
|
-
version = "0.4.
|
273
|
+
version = "0.4.23"
|
282
274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
283
|
-
checksum = "
|
275
|
+
checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f"
|
284
276
|
dependencies = [
|
277
|
+
"iana-time-zone",
|
285
278
|
"js-sys",
|
286
279
|
"num-integer",
|
287
280
|
"num-traits",
|
@@ -323,11 +316,21 @@ dependencies = [
|
|
323
316
|
"libloading",
|
324
317
|
]
|
325
318
|
|
319
|
+
[[package]]
|
320
|
+
name = "codespan-reporting"
|
321
|
+
version = "0.11.1"
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
323
|
+
checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
|
324
|
+
dependencies = [
|
325
|
+
"termcolor",
|
326
|
+
"unicode-width",
|
327
|
+
]
|
328
|
+
|
326
329
|
[[package]]
|
327
330
|
name = "comfy-table"
|
328
|
-
version = "6.1.
|
331
|
+
version = "6.1.4"
|
329
332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
330
|
-
checksum = "
|
333
|
+
checksum = "6e7b787b0dc42e8111badfdbe4c3059158ccb2db8780352fa1b01e8ccf45cc4d"
|
331
334
|
dependencies = [
|
332
335
|
"crossterm",
|
333
336
|
"strum",
|
@@ -335,6 +338,12 @@ dependencies = [
|
|
335
338
|
"unicode-width",
|
336
339
|
]
|
337
340
|
|
341
|
+
[[package]]
|
342
|
+
name = "core-foundation-sys"
|
343
|
+
version = "0.8.3"
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
345
|
+
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
|
346
|
+
|
338
347
|
[[package]]
|
339
348
|
name = "crc"
|
340
349
|
version = "2.1.0"
|
@@ -361,9 +370,9 @@ dependencies = [
|
|
361
370
|
|
362
371
|
[[package]]
|
363
372
|
name = "crossbeam-channel"
|
364
|
-
version = "0.5.
|
373
|
+
version = "0.5.6"
|
365
374
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
366
|
-
checksum = "
|
375
|
+
checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
|
367
376
|
dependencies = [
|
368
377
|
"cfg-if",
|
369
378
|
"crossbeam-utils",
|
@@ -371,9 +380,9 @@ dependencies = [
|
|
371
380
|
|
372
381
|
[[package]]
|
373
382
|
name = "crossbeam-deque"
|
374
|
-
version = "0.8.
|
383
|
+
version = "0.8.2"
|
375
384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
376
|
-
checksum = "
|
385
|
+
checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
|
377
386
|
dependencies = [
|
378
387
|
"cfg-if",
|
379
388
|
"crossbeam-epoch",
|
@@ -382,26 +391,24 @@ dependencies = [
|
|
382
391
|
|
383
392
|
[[package]]
|
384
393
|
name = "crossbeam-epoch"
|
385
|
-
version = "0.9.
|
394
|
+
version = "0.9.13"
|
386
395
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
387
|
-
checksum = "
|
396
|
+
checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a"
|
388
397
|
dependencies = [
|
389
398
|
"autocfg",
|
390
399
|
"cfg-if",
|
391
400
|
"crossbeam-utils",
|
392
|
-
"lazy_static",
|
393
401
|
"memoffset",
|
394
402
|
"scopeguard",
|
395
403
|
]
|
396
404
|
|
397
405
|
[[package]]
|
398
406
|
name = "crossbeam-utils"
|
399
|
-
version = "0.8.
|
407
|
+
version = "0.8.14"
|
400
408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
401
|
-
checksum = "
|
409
|
+
checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f"
|
402
410
|
dependencies = [
|
403
411
|
"cfg-if",
|
404
|
-
"lazy_static",
|
405
412
|
]
|
406
413
|
|
407
414
|
[[package]]
|
@@ -438,6 +445,50 @@ dependencies = [
|
|
438
445
|
"memchr",
|
439
446
|
]
|
440
447
|
|
448
|
+
[[package]]
|
449
|
+
name = "cxx"
|
450
|
+
version = "1.0.86"
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
452
|
+
checksum = "51d1075c37807dcf850c379432f0df05ba52cc30f279c5cfc43cc221ce7f8579"
|
453
|
+
dependencies = [
|
454
|
+
"cc",
|
455
|
+
"cxxbridge-flags",
|
456
|
+
"cxxbridge-macro",
|
457
|
+
"link-cplusplus",
|
458
|
+
]
|
459
|
+
|
460
|
+
[[package]]
|
461
|
+
name = "cxx-build"
|
462
|
+
version = "1.0.86"
|
463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
464
|
+
checksum = "5044281f61b27bc598f2f6647d480aed48d2bf52d6eb0b627d84c0361b17aa70"
|
465
|
+
dependencies = [
|
466
|
+
"cc",
|
467
|
+
"codespan-reporting",
|
468
|
+
"once_cell",
|
469
|
+
"proc-macro2",
|
470
|
+
"quote",
|
471
|
+
"scratch",
|
472
|
+
"syn",
|
473
|
+
]
|
474
|
+
|
475
|
+
[[package]]
|
476
|
+
name = "cxxbridge-flags"
|
477
|
+
version = "1.0.86"
|
478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
479
|
+
checksum = "61b50bc93ba22c27b0d31128d2d130a0a6b3d267ae27ef7e4fae2167dfe8781c"
|
480
|
+
|
481
|
+
[[package]]
|
482
|
+
name = "cxxbridge-macro"
|
483
|
+
version = "1.0.86"
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
485
|
+
checksum = "39e61fda7e62115119469c7b3591fd913ecca96fb766cfd3f2e2502ab7bc87a5"
|
486
|
+
dependencies = [
|
487
|
+
"proc-macro2",
|
488
|
+
"quote",
|
489
|
+
"syn",
|
490
|
+
]
|
491
|
+
|
441
492
|
[[package]]
|
442
493
|
name = "dirs"
|
443
494
|
version = "4.0.0"
|
@@ -460,21 +511,21 @@ dependencies = [
|
|
460
511
|
|
461
512
|
[[package]]
|
462
513
|
name = "dyn-clone"
|
463
|
-
version = "1.0.
|
514
|
+
version = "1.0.10"
|
464
515
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
465
|
-
checksum = "
|
516
|
+
checksum = "c9b0705efd4599c15a38151f4721f7bc388306f61084d3bfd50bd07fbca5cb60"
|
466
517
|
|
467
518
|
[[package]]
|
468
519
|
name = "either"
|
469
|
-
version = "1.
|
520
|
+
version = "1.8.0"
|
470
521
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
471
|
-
checksum = "
|
522
|
+
checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
|
472
523
|
|
473
524
|
[[package]]
|
474
525
|
name = "enum_dispatch"
|
475
|
-
version = "0.3.
|
526
|
+
version = "0.3.11"
|
476
527
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
477
|
-
checksum = "
|
528
|
+
checksum = "11f36e95862220b211a6e2aa5eca09b4fa391b13cd52ceb8035a24bf65a79de2"
|
478
529
|
dependencies = [
|
479
530
|
"once_cell",
|
480
531
|
"proc-macro2",
|
@@ -484,9 +535,9 @@ dependencies = [
|
|
484
535
|
|
485
536
|
[[package]]
|
486
537
|
name = "ethnum"
|
487
|
-
version = "1.3.
|
538
|
+
version = "1.3.2"
|
488
539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
489
|
-
checksum = "
|
540
|
+
checksum = "0198b9d0078e0f30dedc7acbb21c974e838fc8fae3ee170128658a98cb2c1c04"
|
490
541
|
|
491
542
|
[[package]]
|
492
543
|
name = "fallible-streaming-iterator"
|
@@ -496,9 +547,9 @@ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
|
|
496
547
|
|
497
548
|
[[package]]
|
498
549
|
name = "flate2"
|
499
|
-
version = "1.0.
|
550
|
+
version = "1.0.25"
|
500
551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
501
|
-
checksum = "
|
552
|
+
checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
|
502
553
|
dependencies = [
|
503
554
|
"crc32fast",
|
504
555
|
"miniz_oxide",
|
@@ -614,40 +665,30 @@ dependencies = [
|
|
614
665
|
"slab",
|
615
666
|
]
|
616
667
|
|
617
|
-
[[package]]
|
618
|
-
name = "fxhash"
|
619
|
-
version = "0.2.1"
|
620
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
621
|
-
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
|
622
|
-
dependencies = [
|
623
|
-
"byteorder",
|
624
|
-
]
|
625
|
-
|
626
668
|
[[package]]
|
627
669
|
name = "getrandom"
|
628
|
-
version = "0.2.
|
670
|
+
version = "0.2.8"
|
629
671
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
630
|
-
checksum = "
|
672
|
+
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
|
631
673
|
dependencies = [
|
632
674
|
"cfg-if",
|
633
675
|
"libc",
|
634
|
-
"wasi",
|
676
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
635
677
|
]
|
636
678
|
|
637
679
|
[[package]]
|
638
680
|
name = "glob"
|
639
|
-
version = "0.3.
|
681
|
+
version = "0.3.1"
|
640
682
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
641
|
-
checksum = "
|
683
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
642
684
|
|
643
685
|
[[package]]
|
644
686
|
name = "halfbrown"
|
645
|
-
version = "0.1.
|
646
|
-
source = "
|
647
|
-
checksum = "ff8ba437813c5a31783dd9a21ce4f555583dc9b048af6bd2b12217394ed9c199"
|
687
|
+
version = "0.1.18"
|
688
|
+
source = "git+https://github.com/Licenser/halfbrown?rev=952023c5dd6461b009bb5ba66b9aa979bd75949f#952023c5dd6461b009bb5ba66b9aa979bd75949f"
|
648
689
|
dependencies = [
|
649
|
-
"
|
650
|
-
"
|
690
|
+
"hashbrown 0.13.2",
|
691
|
+
"rustc-hash",
|
651
692
|
"serde",
|
652
693
|
]
|
653
694
|
|
@@ -659,17 +700,17 @@ checksum = "74721d007512d0cb3338cd20f0654ac913920061a4c4d0d8708edb3f2a698c0c"
|
|
659
700
|
|
660
701
|
[[package]]
|
661
702
|
name = "hashbrown"
|
662
|
-
version = "0.
|
703
|
+
version = "0.12.3"
|
663
704
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
664
|
-
checksum = "
|
705
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
665
706
|
|
666
707
|
[[package]]
|
667
708
|
name = "hashbrown"
|
668
|
-
version = "0.
|
709
|
+
version = "0.13.2"
|
669
710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
670
|
-
checksum = "
|
711
|
+
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
|
671
712
|
dependencies = [
|
672
|
-
"ahash
|
713
|
+
"ahash",
|
673
714
|
"rayon",
|
674
715
|
]
|
675
716
|
|
@@ -681,9 +722,9 @@ checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
|
|
681
722
|
|
682
723
|
[[package]]
|
683
724
|
name = "hermit-abi"
|
684
|
-
version = "0.
|
725
|
+
version = "0.2.6"
|
685
726
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
686
|
-
checksum = "
|
727
|
+
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
|
687
728
|
dependencies = [
|
688
729
|
"libc",
|
689
730
|
]
|
@@ -694,22 +735,46 @@ version = "0.4.3"
|
|
694
735
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
695
736
|
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
696
737
|
|
738
|
+
[[package]]
|
739
|
+
name = "iana-time-zone"
|
740
|
+
version = "0.1.53"
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
742
|
+
checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
|
743
|
+
dependencies = [
|
744
|
+
"android_system_properties",
|
745
|
+
"core-foundation-sys",
|
746
|
+
"iana-time-zone-haiku",
|
747
|
+
"js-sys",
|
748
|
+
"wasm-bindgen",
|
749
|
+
"winapi",
|
750
|
+
]
|
751
|
+
|
752
|
+
[[package]]
|
753
|
+
name = "iana-time-zone-haiku"
|
754
|
+
version = "0.1.1"
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
756
|
+
checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
|
757
|
+
dependencies = [
|
758
|
+
"cxx",
|
759
|
+
"cxx-build",
|
760
|
+
]
|
761
|
+
|
697
762
|
[[package]]
|
698
763
|
name = "indexmap"
|
699
|
-
version = "1.
|
764
|
+
version = "1.9.2"
|
700
765
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
701
|
-
checksum = "
|
766
|
+
checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
|
702
767
|
dependencies = [
|
703
768
|
"autocfg",
|
704
|
-
"hashbrown 0.
|
769
|
+
"hashbrown 0.12.3",
|
705
770
|
"serde",
|
706
771
|
]
|
707
772
|
|
708
773
|
[[package]]
|
709
774
|
name = "itoa"
|
710
|
-
version = "1.0.
|
775
|
+
version = "1.0.5"
|
711
776
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
712
|
-
checksum = "
|
777
|
+
checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
|
713
778
|
|
714
779
|
[[package]]
|
715
780
|
name = "jemalloc-sys"
|
@@ -743,18 +808,18 @@ dependencies = [
|
|
743
808
|
|
744
809
|
[[package]]
|
745
810
|
name = "js-sys"
|
746
|
-
version = "0.3.
|
811
|
+
version = "0.3.60"
|
747
812
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
748
|
-
checksum = "
|
813
|
+
checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
|
749
814
|
dependencies = [
|
750
815
|
"wasm-bindgen",
|
751
816
|
]
|
752
817
|
|
753
818
|
[[package]]
|
754
819
|
name = "json-deserializer"
|
755
|
-
version = "0.4.
|
820
|
+
version = "0.4.4"
|
756
821
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
757
|
-
checksum = "
|
822
|
+
checksum = "5f63b421e16eb4100beb677af56f0b4f3a4f08bab74ef2af079ce5bb92c2683f"
|
758
823
|
dependencies = [
|
759
824
|
"indexmap",
|
760
825
|
]
|
@@ -856,9 +921,9 @@ dependencies = [
|
|
856
921
|
|
857
922
|
[[package]]
|
858
923
|
name = "libc"
|
859
|
-
version = "0.2.
|
924
|
+
version = "0.2.139"
|
860
925
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
861
|
-
checksum = "
|
926
|
+
checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
|
862
927
|
|
863
928
|
[[package]]
|
864
929
|
name = "libflate"
|
@@ -898,14 +963,23 @@ checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb"
|
|
898
963
|
|
899
964
|
[[package]]
|
900
965
|
name = "libmimalloc-sys"
|
901
|
-
version = "0.1.
|
966
|
+
version = "0.1.30"
|
902
967
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
903
|
-
checksum = "
|
968
|
+
checksum = "dd8c7cbf8b89019683667e347572e6d55a7df7ea36b0c4ce69961b0cde67b174"
|
904
969
|
dependencies = [
|
905
970
|
"cc",
|
906
971
|
"libc",
|
907
972
|
]
|
908
973
|
|
974
|
+
[[package]]
|
975
|
+
name = "link-cplusplus"
|
976
|
+
version = "1.0.8"
|
977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
978
|
+
checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5"
|
979
|
+
dependencies = [
|
980
|
+
"cc",
|
981
|
+
]
|
982
|
+
|
909
983
|
[[package]]
|
910
984
|
name = "lock_api"
|
911
985
|
version = "0.4.9"
|
@@ -918,9 +992,9 @@ dependencies = [
|
|
918
992
|
|
919
993
|
[[package]]
|
920
994
|
name = "log"
|
921
|
-
version = "0.4.
|
995
|
+
version = "0.4.17"
|
922
996
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
923
|
-
checksum = "
|
997
|
+
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
|
924
998
|
dependencies = [
|
925
999
|
"cfg-if",
|
926
1000
|
]
|
@@ -947,9 +1021,9 @@ dependencies = [
|
|
947
1021
|
|
948
1022
|
[[package]]
|
949
1023
|
name = "magnus"
|
950
|
-
version = "0.4.
|
1024
|
+
version = "0.4.4"
|
951
1025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
952
|
-
checksum = "
|
1026
|
+
checksum = "fc87660cd7daa49fddbfd524c836de54d5c927d520cd163f43700c5087c57d6c"
|
953
1027
|
dependencies = [
|
954
1028
|
"magnus-macros",
|
955
1029
|
"rb-sys",
|
@@ -958,8 +1032,9 @@ dependencies = [
|
|
958
1032
|
|
959
1033
|
[[package]]
|
960
1034
|
name = "magnus-macros"
|
961
|
-
version = "0.
|
962
|
-
source = "
|
1035
|
+
version = "0.3.0"
|
1036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1037
|
+
checksum = "206cb23bfeea05180c97522ef6a3e52a4eb17b0ed2f30ee3ca9c4f994d2378ae"
|
963
1038
|
dependencies = [
|
964
1039
|
"proc-macro2",
|
965
1040
|
"quote",
|
@@ -983,18 +1058,18 @@ dependencies = [
|
|
983
1058
|
|
984
1059
|
[[package]]
|
985
1060
|
name = "memoffset"
|
986
|
-
version = "0.
|
1061
|
+
version = "0.7.1"
|
987
1062
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
988
|
-
checksum = "
|
1063
|
+
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
|
989
1064
|
dependencies = [
|
990
1065
|
"autocfg",
|
991
1066
|
]
|
992
1067
|
|
993
1068
|
[[package]]
|
994
1069
|
name = "mimalloc"
|
995
|
-
version = "0.1.
|
1070
|
+
version = "0.1.34"
|
996
1071
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
997
|
-
checksum = "
|
1072
|
+
checksum = "9dcb174b18635f7561a0c6c9fc2ce57218ac7523cf72c50af80e2d79ab8f3ba1"
|
998
1073
|
dependencies = [
|
999
1074
|
"libmimalloc-sys",
|
1000
1075
|
]
|
@@ -1007,9 +1082,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1007
1082
|
|
1008
1083
|
[[package]]
|
1009
1084
|
name = "miniz_oxide"
|
1010
|
-
version = "0.
|
1085
|
+
version = "0.6.2"
|
1011
1086
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1012
|
-
checksum = "
|
1087
|
+
checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
|
1013
1088
|
dependencies = [
|
1014
1089
|
"adler",
|
1015
1090
|
]
|
@@ -1022,7 +1097,7 @@ checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
|
|
1022
1097
|
dependencies = [
|
1023
1098
|
"libc",
|
1024
1099
|
"log",
|
1025
|
-
"wasi",
|
1100
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
1026
1101
|
"windows-sys",
|
1027
1102
|
]
|
1028
1103
|
|
@@ -1048,14 +1123,23 @@ dependencies = [
|
|
1048
1123
|
|
1049
1124
|
[[package]]
|
1050
1125
|
name = "nom"
|
1051
|
-
version = "7.1.
|
1126
|
+
version = "7.1.2"
|
1052
1127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1053
|
-
checksum = "
|
1128
|
+
checksum = "e5507769c4919c998e69e49c839d9dc6e693ede4cc4290d6ad8b41d4f09c548c"
|
1054
1129
|
dependencies = [
|
1055
1130
|
"memchr",
|
1056
1131
|
"minimal-lexical",
|
1057
1132
|
]
|
1058
1133
|
|
1134
|
+
[[package]]
|
1135
|
+
name = "now"
|
1136
|
+
version = "0.1.3"
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1138
|
+
checksum = "6d89e9874397a1f0a52fc1f197a8effd9735223cb2390e9dcc83ac6cd02923d0"
|
1139
|
+
dependencies = [
|
1140
|
+
"chrono",
|
1141
|
+
]
|
1142
|
+
|
1059
1143
|
[[package]]
|
1060
1144
|
name = "num"
|
1061
1145
|
version = "0.4.0"
|
@@ -1135,9 +1219,9 @@ dependencies = [
|
|
1135
1219
|
|
1136
1220
|
[[package]]
|
1137
1221
|
name = "num_cpus"
|
1138
|
-
version = "1.
|
1222
|
+
version = "1.15.0"
|
1139
1223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1140
|
-
checksum = "
|
1224
|
+
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
|
1141
1225
|
dependencies = [
|
1142
1226
|
"hermit-abi",
|
1143
1227
|
"libc",
|
@@ -1145,9 +1229,9 @@ dependencies = [
|
|
1145
1229
|
|
1146
1230
|
[[package]]
|
1147
1231
|
name = "once_cell"
|
1148
|
-
version = "1.
|
1232
|
+
version = "1.17.0"
|
1149
1233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1150
|
-
checksum = "
|
1234
|
+
checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66"
|
1151
1235
|
|
1152
1236
|
[[package]]
|
1153
1237
|
name = "parking_lot"
|
@@ -1161,9 +1245,9 @@ dependencies = [
|
|
1161
1245
|
|
1162
1246
|
[[package]]
|
1163
1247
|
name = "parking_lot_core"
|
1164
|
-
version = "0.9.
|
1248
|
+
version = "0.9.6"
|
1165
1249
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1166
|
-
checksum = "
|
1250
|
+
checksum = "ba1ef8814b5c993410bb3adfad7a5ed269563e4a2f90c41f5d85be7fb47133bf"
|
1167
1251
|
dependencies = [
|
1168
1252
|
"cfg-if",
|
1169
1253
|
"libc",
|
@@ -1184,9 +1268,9 @@ dependencies = [
|
|
1184
1268
|
|
1185
1269
|
[[package]]
|
1186
1270
|
name = "parquet2"
|
1187
|
-
version = "0.
|
1271
|
+
version = "0.17.1"
|
1188
1272
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1189
|
-
checksum = "
|
1273
|
+
checksum = "aefc53bedbf9bbe0ff8912befafaafe30ced83851fb0aebe86696a9289ebb29e"
|
1190
1274
|
dependencies = [
|
1191
1275
|
"async-stream",
|
1192
1276
|
"brotli",
|
@@ -1266,6 +1350,12 @@ version = "0.1.0"
|
|
1266
1350
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1267
1351
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
1268
1352
|
|
1353
|
+
[[package]]
|
1354
|
+
name = "pkg-config"
|
1355
|
+
version = "0.3.26"
|
1356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1357
|
+
checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
|
1358
|
+
|
1269
1359
|
[[package]]
|
1270
1360
|
name = "planus"
|
1271
1361
|
version = "0.3.1"
|
@@ -1277,38 +1367,41 @@ dependencies = [
|
|
1277
1367
|
|
1278
1368
|
[[package]]
|
1279
1369
|
name = "polars"
|
1280
|
-
version = "0.
|
1370
|
+
version = "0.2.0"
|
1281
1371
|
dependencies = [
|
1282
|
-
"ahash
|
1372
|
+
"ahash",
|
1283
1373
|
"jemallocator",
|
1284
1374
|
"magnus",
|
1285
1375
|
"mimalloc",
|
1286
|
-
"polars 0.
|
1376
|
+
"polars 0.26.1",
|
1287
1377
|
"polars-core",
|
1288
1378
|
"serde_json",
|
1289
1379
|
]
|
1290
1380
|
|
1291
1381
|
[[package]]
|
1292
1382
|
name = "polars"
|
1293
|
-
version = "0.
|
1383
|
+
version = "0.26.1"
|
1294
1384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1295
|
-
checksum = "
|
1385
|
+
checksum = "77dddd763763d977fd17e7d3300425da866be08c7185c94fb3979195fbc8fdc7"
|
1296
1386
|
dependencies = [
|
1297
1387
|
"polars-core",
|
1298
1388
|
"polars-io",
|
1299
1389
|
"polars-lazy",
|
1300
1390
|
"polars-ops",
|
1301
1391
|
"polars-time",
|
1392
|
+
"version_check",
|
1302
1393
|
]
|
1303
1394
|
|
1304
1395
|
[[package]]
|
1305
1396
|
name = "polars-arrow"
|
1306
|
-
version = "0.
|
1397
|
+
version = "0.26.1"
|
1307
1398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1308
|
-
checksum = "
|
1399
|
+
checksum = "6d5e894b6908d288ea24b56c8d99c2944f4b94af51ba662d58631c04806511b7"
|
1309
1400
|
dependencies = [
|
1310
1401
|
"arrow2",
|
1311
|
-
"
|
1402
|
+
"chrono",
|
1403
|
+
"chrono-tz",
|
1404
|
+
"hashbrown 0.13.2",
|
1312
1405
|
"num",
|
1313
1406
|
"serde",
|
1314
1407
|
"thiserror",
|
@@ -1316,11 +1409,11 @@ dependencies = [
|
|
1316
1409
|
|
1317
1410
|
[[package]]
|
1318
1411
|
name = "polars-core"
|
1319
|
-
version = "0.
|
1412
|
+
version = "0.26.1"
|
1320
1413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1321
|
-
checksum = "
|
1414
|
+
checksum = "a3ab5c1e10e42a34a44a6e1421869c84ad56fe217c6120cda697c84bc467eb9c"
|
1322
1415
|
dependencies = [
|
1323
|
-
"ahash
|
1416
|
+
"ahash",
|
1324
1417
|
"anyhow",
|
1325
1418
|
"arrow2",
|
1326
1419
|
"base64",
|
@@ -1328,7 +1421,7 @@ dependencies = [
|
|
1328
1421
|
"chrono",
|
1329
1422
|
"chrono-tz",
|
1330
1423
|
"comfy-table",
|
1331
|
-
"hashbrown 0.
|
1424
|
+
"hashbrown 0.13.2",
|
1332
1425
|
"hex",
|
1333
1426
|
"indexmap",
|
1334
1427
|
"num",
|
@@ -1343,15 +1436,16 @@ dependencies = [
|
|
1343
1436
|
"serde_json",
|
1344
1437
|
"smartstring",
|
1345
1438
|
"thiserror",
|
1439
|
+
"xxhash-rust",
|
1346
1440
|
]
|
1347
1441
|
|
1348
1442
|
[[package]]
|
1349
1443
|
name = "polars-io"
|
1350
|
-
version = "0.
|
1444
|
+
version = "0.26.1"
|
1351
1445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1352
|
-
checksum = "
|
1446
|
+
checksum = "882e392cbc3e645bfa7ad582065764e21dc271cfeefee904f43a95ccd1b52cb7"
|
1353
1447
|
dependencies = [
|
1354
|
-
"ahash
|
1448
|
+
"ahash",
|
1355
1449
|
"anyhow",
|
1356
1450
|
"arrow2",
|
1357
1451
|
"csv-core",
|
@@ -1369,17 +1463,18 @@ dependencies = [
|
|
1369
1463
|
"rayon",
|
1370
1464
|
"regex",
|
1371
1465
|
"serde",
|
1466
|
+
"serde_json",
|
1372
1467
|
"simd-json",
|
1373
1468
|
"simdutf8",
|
1374
1469
|
]
|
1375
1470
|
|
1376
1471
|
[[package]]
|
1377
1472
|
name = "polars-lazy"
|
1378
|
-
version = "0.
|
1473
|
+
version = "0.26.1"
|
1379
1474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1380
|
-
checksum = "
|
1475
|
+
checksum = "6cb356861b8967e39ca6205b8bded68b4986f0edd49f259cebbd59ad056e67cc"
|
1381
1476
|
dependencies = [
|
1382
|
-
"ahash
|
1477
|
+
"ahash",
|
1383
1478
|
"bitflags",
|
1384
1479
|
"glob",
|
1385
1480
|
"polars-arrow",
|
@@ -1395,41 +1490,44 @@ dependencies = [
|
|
1395
1490
|
|
1396
1491
|
[[package]]
|
1397
1492
|
name = "polars-ops"
|
1398
|
-
version = "0.
|
1493
|
+
version = "0.26.1"
|
1399
1494
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1400
|
-
checksum = "
|
1495
|
+
checksum = "771a404f0f84e6801632c534a7b99410a017e227ecc7b9c64bab728c614f05d6"
|
1401
1496
|
dependencies = [
|
1402
1497
|
"arrow2",
|
1403
1498
|
"jsonpath_lib",
|
1404
1499
|
"polars-arrow",
|
1405
1500
|
"polars-core",
|
1406
1501
|
"polars-utils",
|
1502
|
+
"serde",
|
1407
1503
|
"serde_json",
|
1408
1504
|
]
|
1409
1505
|
|
1410
1506
|
[[package]]
|
1411
1507
|
name = "polars-pipe"
|
1412
|
-
version = "0.
|
1508
|
+
version = "0.26.1"
|
1413
1509
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1414
|
-
checksum = "
|
1510
|
+
checksum = "d1bb37bd32c44defa19be36fcab9387d5b3ad4c683596479caf414e5a00e82af"
|
1415
1511
|
dependencies = [
|
1416
1512
|
"enum_dispatch",
|
1417
|
-
"hashbrown 0.
|
1513
|
+
"hashbrown 0.13.2",
|
1418
1514
|
"num",
|
1515
|
+
"polars-arrow",
|
1419
1516
|
"polars-core",
|
1420
1517
|
"polars-io",
|
1421
1518
|
"polars-plan",
|
1422
1519
|
"polars-utils",
|
1423
1520
|
"rayon",
|
1521
|
+
"smartstring",
|
1424
1522
|
]
|
1425
1523
|
|
1426
1524
|
[[package]]
|
1427
1525
|
name = "polars-plan"
|
1428
|
-
version = "0.
|
1526
|
+
version = "0.26.1"
|
1429
1527
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1430
|
-
checksum = "
|
1528
|
+
checksum = "f58b4b3daee78b95937930ad3cfc2a454d57802a92a39ee0ce220bb1ae627ef9"
|
1431
1529
|
dependencies = [
|
1432
|
-
"ahash
|
1530
|
+
"ahash",
|
1433
1531
|
"polars-arrow",
|
1434
1532
|
"polars-core",
|
1435
1533
|
"polars-io",
|
@@ -1443,24 +1541,26 @@ dependencies = [
|
|
1443
1541
|
|
1444
1542
|
[[package]]
|
1445
1543
|
name = "polars-time"
|
1446
|
-
version = "0.
|
1544
|
+
version = "0.26.1"
|
1447
1545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1448
|
-
checksum = "
|
1546
|
+
checksum = "93593a1a507004f5ac535210542d730178d4f729ef5da48ff2cd13abf570d65e"
|
1449
1547
|
dependencies = [
|
1450
1548
|
"chrono",
|
1451
1549
|
"chrono-tz",
|
1452
1550
|
"lexical",
|
1551
|
+
"now",
|
1453
1552
|
"polars-arrow",
|
1454
1553
|
"polars-core",
|
1554
|
+
"polars-ops",
|
1455
1555
|
"polars-utils",
|
1456
1556
|
"serde",
|
1457
1557
|
]
|
1458
1558
|
|
1459
1559
|
[[package]]
|
1460
1560
|
name = "polars-utils"
|
1461
|
-
version = "0.
|
1561
|
+
version = "0.26.1"
|
1462
1562
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1463
|
-
checksum = "
|
1563
|
+
checksum = "d6e4fda3c2781247ef4137221f1013398e3d56aa1899f4f99ecf86fa96f64670"
|
1464
1564
|
dependencies = [
|
1465
1565
|
"rayon",
|
1466
1566
|
]
|
@@ -1473,18 +1573,18 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
1473
1573
|
|
1474
1574
|
[[package]]
|
1475
1575
|
name = "proc-macro2"
|
1476
|
-
version = "1.0.
|
1576
|
+
version = "1.0.49"
|
1477
1577
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1478
|
-
checksum = "
|
1578
|
+
checksum = "57a8eca9f9c4ffde41714334dee777596264c7825420f521abc92b5b5deb63a5"
|
1479
1579
|
dependencies = [
|
1480
1580
|
"unicode-ident",
|
1481
1581
|
]
|
1482
1582
|
|
1483
1583
|
[[package]]
|
1484
1584
|
name = "quote"
|
1485
|
-
version = "1.0.
|
1585
|
+
version = "1.0.23"
|
1486
1586
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1487
|
-
checksum = "
|
1587
|
+
checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
|
1488
1588
|
dependencies = [
|
1489
1589
|
"proc-macro2",
|
1490
1590
|
]
|
@@ -1531,43 +1631,40 @@ dependencies = [
|
|
1531
1631
|
|
1532
1632
|
[[package]]
|
1533
1633
|
name = "rayon"
|
1534
|
-
version = "1.
|
1634
|
+
version = "1.6.1"
|
1535
1635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1536
|
-
checksum = "
|
1636
|
+
checksum = "6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7"
|
1537
1637
|
dependencies = [
|
1538
|
-
"autocfg",
|
1539
|
-
"crossbeam-deque",
|
1540
1638
|
"either",
|
1541
1639
|
"rayon-core",
|
1542
1640
|
]
|
1543
1641
|
|
1544
1642
|
[[package]]
|
1545
1643
|
name = "rayon-core"
|
1546
|
-
version = "1.
|
1644
|
+
version = "1.10.1"
|
1547
1645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1548
|
-
checksum = "
|
1646
|
+
checksum = "cac410af5d00ab6884528b4ab69d1e8e146e8d471201800fa1b4524126de6ad3"
|
1549
1647
|
dependencies = [
|
1550
1648
|
"crossbeam-channel",
|
1551
1649
|
"crossbeam-deque",
|
1552
1650
|
"crossbeam-utils",
|
1553
|
-
"lazy_static",
|
1554
1651
|
"num_cpus",
|
1555
1652
|
]
|
1556
1653
|
|
1557
1654
|
[[package]]
|
1558
1655
|
name = "rb-sys"
|
1559
|
-
version = "0.9.
|
1656
|
+
version = "0.9.56"
|
1560
1657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1561
|
-
checksum = "
|
1658
|
+
checksum = "ef82428221475c6f9e7893fe30b88d45ac86bdb12e58e7c92055ba4bceb78a69"
|
1562
1659
|
dependencies = [
|
1563
1660
|
"rb-sys-build",
|
1564
1661
|
]
|
1565
1662
|
|
1566
1663
|
[[package]]
|
1567
1664
|
name = "rb-sys-build"
|
1568
|
-
version = "0.9.
|
1665
|
+
version = "0.9.56"
|
1569
1666
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1570
|
-
checksum = "
|
1667
|
+
checksum = "950bfc239d2e7704576abe4d37b008876bbfd70a99196a188c5caeae2ba7344a"
|
1571
1668
|
dependencies = [
|
1572
1669
|
"bindgen",
|
1573
1670
|
"regex",
|
@@ -1577,7 +1674,8 @@ dependencies = [
|
|
1577
1674
|
[[package]]
|
1578
1675
|
name = "rb-sys-env"
|
1579
1676
|
version = "0.1.1"
|
1580
|
-
source = "
|
1677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1678
|
+
checksum = "74c38752410925faeb82c400c06ba2fd9ee6aa8f719dd33994c9e53f5242d25f"
|
1581
1679
|
|
1582
1680
|
[[package]]
|
1583
1681
|
name = "redox_syscall"
|
@@ -1601,9 +1699,9 @@ dependencies = [
|
|
1601
1699
|
|
1602
1700
|
[[package]]
|
1603
1701
|
name = "regex"
|
1604
|
-
version = "1.7.
|
1702
|
+
version = "1.7.1"
|
1605
1703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1606
|
-
checksum = "
|
1704
|
+
checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
|
1607
1705
|
dependencies = [
|
1608
1706
|
"aho-corasick",
|
1609
1707
|
"memchr",
|
@@ -1628,17 +1726,26 @@ version = "1.1.0"
|
|
1628
1726
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1629
1727
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
1630
1728
|
|
1729
|
+
[[package]]
|
1730
|
+
name = "rustc_version"
|
1731
|
+
version = "0.4.0"
|
1732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1733
|
+
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
1734
|
+
dependencies = [
|
1735
|
+
"semver",
|
1736
|
+
]
|
1737
|
+
|
1631
1738
|
[[package]]
|
1632
1739
|
name = "rustversion"
|
1633
|
-
version = "1.0.
|
1740
|
+
version = "1.0.11"
|
1634
1741
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1635
|
-
checksum = "
|
1742
|
+
checksum = "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70"
|
1636
1743
|
|
1637
1744
|
[[package]]
|
1638
1745
|
name = "ryu"
|
1639
|
-
version = "1.0.
|
1746
|
+
version = "1.0.12"
|
1640
1747
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1641
|
-
checksum = "
|
1748
|
+
checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde"
|
1642
1749
|
|
1643
1750
|
[[package]]
|
1644
1751
|
name = "scopeguard"
|
@@ -1646,26 +1753,38 @@ version = "1.1.0"
|
|
1646
1753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1647
1754
|
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
1648
1755
|
|
1756
|
+
[[package]]
|
1757
|
+
name = "scratch"
|
1758
|
+
version = "1.0.3"
|
1759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1760
|
+
checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2"
|
1761
|
+
|
1762
|
+
[[package]]
|
1763
|
+
name = "semver"
|
1764
|
+
version = "1.0.16"
|
1765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1766
|
+
checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a"
|
1767
|
+
|
1649
1768
|
[[package]]
|
1650
1769
|
name = "seq-macro"
|
1651
|
-
version = "0.3.
|
1770
|
+
version = "0.3.2"
|
1652
1771
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1653
|
-
checksum = "
|
1772
|
+
checksum = "1685deded9b272198423bdbdb907d8519def2f26cf3699040e54e8c4fbd5c5ce"
|
1654
1773
|
|
1655
1774
|
[[package]]
|
1656
1775
|
name = "serde"
|
1657
|
-
version = "1.0.
|
1776
|
+
version = "1.0.152"
|
1658
1777
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1659
|
-
checksum = "
|
1778
|
+
checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb"
|
1660
1779
|
dependencies = [
|
1661
1780
|
"serde_derive",
|
1662
1781
|
]
|
1663
1782
|
|
1664
1783
|
[[package]]
|
1665
1784
|
name = "serde_derive"
|
1666
|
-
version = "1.0.
|
1785
|
+
version = "1.0.152"
|
1667
1786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1668
|
-
checksum = "
|
1787
|
+
checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e"
|
1669
1788
|
dependencies = [
|
1670
1789
|
"proc-macro2",
|
1671
1790
|
"quote",
|
@@ -1674,9 +1793,9 @@ dependencies = [
|
|
1674
1793
|
|
1675
1794
|
[[package]]
|
1676
1795
|
name = "serde_json"
|
1677
|
-
version = "1.0.
|
1796
|
+
version = "1.0.91"
|
1678
1797
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1679
|
-
checksum = "
|
1798
|
+
checksum = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883"
|
1680
1799
|
dependencies = [
|
1681
1800
|
"indexmap",
|
1682
1801
|
"itoa",
|
@@ -1728,11 +1847,12 @@ dependencies = [
|
|
1728
1847
|
|
1729
1848
|
[[package]]
|
1730
1849
|
name = "simd-json"
|
1731
|
-
version = "0.
|
1850
|
+
version = "0.7.0"
|
1732
1851
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1733
|
-
checksum = "
|
1852
|
+
checksum = "8e3375b6c3d8c048ba09c8b4b6c3f1d3f35e06b71db07d231c323943a949e1b8"
|
1734
1853
|
dependencies = [
|
1735
1854
|
"halfbrown",
|
1855
|
+
"lexical-core",
|
1736
1856
|
"serde",
|
1737
1857
|
"serde_json",
|
1738
1858
|
"simdutf8",
|
@@ -1800,9 +1920,9 @@ dependencies = [
|
|
1800
1920
|
|
1801
1921
|
[[package]]
|
1802
1922
|
name = "streaming-iterator"
|
1803
|
-
version = "0.1.
|
1923
|
+
version = "0.1.9"
|
1804
1924
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1805
|
-
checksum = "
|
1925
|
+
checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
|
1806
1926
|
|
1807
1927
|
[[package]]
|
1808
1928
|
name = "strength_reduce"
|
@@ -1831,29 +1951,38 @@ dependencies = [
|
|
1831
1951
|
|
1832
1952
|
[[package]]
|
1833
1953
|
name = "syn"
|
1834
|
-
version = "1.0.
|
1954
|
+
version = "1.0.107"
|
1835
1955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1836
|
-
checksum = "
|
1956
|
+
checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5"
|
1837
1957
|
dependencies = [
|
1838
1958
|
"proc-macro2",
|
1839
1959
|
"quote",
|
1840
1960
|
"unicode-ident",
|
1841
1961
|
]
|
1842
1962
|
|
1963
|
+
[[package]]
|
1964
|
+
name = "termcolor"
|
1965
|
+
version = "1.1.3"
|
1966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1967
|
+
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
|
1968
|
+
dependencies = [
|
1969
|
+
"winapi-util",
|
1970
|
+
]
|
1971
|
+
|
1843
1972
|
[[package]]
|
1844
1973
|
name = "thiserror"
|
1845
|
-
version = "1.0.
|
1974
|
+
version = "1.0.38"
|
1846
1975
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1847
|
-
checksum = "
|
1976
|
+
checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0"
|
1848
1977
|
dependencies = [
|
1849
1978
|
"thiserror-impl",
|
1850
1979
|
]
|
1851
1980
|
|
1852
1981
|
[[package]]
|
1853
1982
|
name = "thiserror-impl"
|
1854
|
-
version = "1.0.
|
1983
|
+
version = "1.0.38"
|
1855
1984
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1856
|
-
checksum = "
|
1985
|
+
checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f"
|
1857
1986
|
dependencies = [
|
1858
1987
|
"proc-macro2",
|
1859
1988
|
"quote",
|
@@ -1862,11 +1991,12 @@ dependencies = [
|
|
1862
1991
|
|
1863
1992
|
[[package]]
|
1864
1993
|
name = "time"
|
1865
|
-
version = "0.1.
|
1994
|
+
version = "0.1.45"
|
1866
1995
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1867
|
-
checksum = "
|
1996
|
+
checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
|
1868
1997
|
dependencies = [
|
1869
1998
|
"libc",
|
1999
|
+
"wasi 0.10.0+wasi-snapshot-preview1",
|
1870
2000
|
"winapi",
|
1871
2001
|
]
|
1872
2002
|
|
@@ -1881,9 +2011,9 @@ dependencies = [
|
|
1881
2011
|
|
1882
2012
|
[[package]]
|
1883
2013
|
name = "unicode-ident"
|
1884
|
-
version = "1.0.
|
2014
|
+
version = "1.0.6"
|
1885
2015
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1886
|
-
checksum = "
|
2016
|
+
checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
|
1887
2017
|
|
1888
2018
|
[[package]]
|
1889
2019
|
name = "unicode-width"
|
@@ -1893,9 +2023,9 @@ checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
|
|
1893
2023
|
|
1894
2024
|
[[package]]
|
1895
2025
|
name = "value-trait"
|
1896
|
-
version = "0.
|
2026
|
+
version = "0.5.1"
|
1897
2027
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1898
|
-
checksum = "
|
2028
|
+
checksum = "995de1aa349a0dc50f4aa40870dce12961a30229027230bad09acd2843edbe9e"
|
1899
2029
|
dependencies = [
|
1900
2030
|
"float-cmp",
|
1901
2031
|
"halfbrown",
|
@@ -1909,6 +2039,12 @@ version = "0.9.4"
|
|
1909
2039
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1910
2040
|
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
1911
2041
|
|
2042
|
+
[[package]]
|
2043
|
+
name = "wasi"
|
2044
|
+
version = "0.10.0+wasi-snapshot-preview1"
|
2045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2046
|
+
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
|
2047
|
+
|
1912
2048
|
[[package]]
|
1913
2049
|
name = "wasi"
|
1914
2050
|
version = "0.11.0+wasi-snapshot-preview1"
|
@@ -1917,9 +2053,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
1917
2053
|
|
1918
2054
|
[[package]]
|
1919
2055
|
name = "wasm-bindgen"
|
1920
|
-
version = "0.2.
|
2056
|
+
version = "0.2.83"
|
1921
2057
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1922
|
-
checksum = "
|
2058
|
+
checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
|
1923
2059
|
dependencies = [
|
1924
2060
|
"cfg-if",
|
1925
2061
|
"wasm-bindgen-macro",
|
@@ -1927,13 +2063,13 @@ dependencies = [
|
|
1927
2063
|
|
1928
2064
|
[[package]]
|
1929
2065
|
name = "wasm-bindgen-backend"
|
1930
|
-
version = "0.2.
|
2066
|
+
version = "0.2.83"
|
1931
2067
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1932
|
-
checksum = "
|
2068
|
+
checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
|
1933
2069
|
dependencies = [
|
1934
2070
|
"bumpalo",
|
1935
|
-
"lazy_static",
|
1936
2071
|
"log",
|
2072
|
+
"once_cell",
|
1937
2073
|
"proc-macro2",
|
1938
2074
|
"quote",
|
1939
2075
|
"syn",
|
@@ -1942,9 +2078,9 @@ dependencies = [
|
|
1942
2078
|
|
1943
2079
|
[[package]]
|
1944
2080
|
name = "wasm-bindgen-macro"
|
1945
|
-
version = "0.2.
|
2081
|
+
version = "0.2.83"
|
1946
2082
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1947
|
-
checksum = "
|
2083
|
+
checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
|
1948
2084
|
dependencies = [
|
1949
2085
|
"quote",
|
1950
2086
|
"wasm-bindgen-macro-support",
|
@@ -1952,9 +2088,9 @@ dependencies = [
|
|
1952
2088
|
|
1953
2089
|
[[package]]
|
1954
2090
|
name = "wasm-bindgen-macro-support"
|
1955
|
-
version = "0.2.
|
2091
|
+
version = "0.2.83"
|
1956
2092
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1957
|
-
checksum = "
|
2093
|
+
checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
|
1958
2094
|
dependencies = [
|
1959
2095
|
"proc-macro2",
|
1960
2096
|
"quote",
|
@@ -1965,9 +2101,9 @@ dependencies = [
|
|
1965
2101
|
|
1966
2102
|
[[package]]
|
1967
2103
|
name = "wasm-bindgen-shared"
|
1968
|
-
version = "0.2.
|
2104
|
+
version = "0.2.83"
|
1969
2105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1970
|
-
checksum = "
|
2106
|
+
checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
|
1971
2107
|
|
1972
2108
|
[[package]]
|
1973
2109
|
name = "winapi"
|
@@ -1985,6 +2121,15 @@ version = "0.4.0"
|
|
1985
2121
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1986
2122
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
1987
2123
|
|
2124
|
+
[[package]]
|
2125
|
+
name = "winapi-util"
|
2126
|
+
version = "0.1.5"
|
2127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2128
|
+
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
2129
|
+
dependencies = [
|
2130
|
+
"winapi",
|
2131
|
+
]
|
2132
|
+
|
1988
2133
|
[[package]]
|
1989
2134
|
name = "winapi-x86_64-pc-windows-gnu"
|
1990
2135
|
version = "0.4.0"
|
@@ -2008,45 +2153,51 @@ dependencies = [
|
|
2008
2153
|
|
2009
2154
|
[[package]]
|
2010
2155
|
name = "windows_aarch64_gnullvm"
|
2011
|
-
version = "0.42.
|
2156
|
+
version = "0.42.1"
|
2012
2157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2013
|
-
checksum = "
|
2158
|
+
checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
|
2014
2159
|
|
2015
2160
|
[[package]]
|
2016
2161
|
name = "windows_aarch64_msvc"
|
2017
|
-
version = "0.42.
|
2162
|
+
version = "0.42.1"
|
2018
2163
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2019
|
-
checksum = "
|
2164
|
+
checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
|
2020
2165
|
|
2021
2166
|
[[package]]
|
2022
2167
|
name = "windows_i686_gnu"
|
2023
|
-
version = "0.42.
|
2168
|
+
version = "0.42.1"
|
2024
2169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025
|
-
checksum = "
|
2170
|
+
checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
|
2026
2171
|
|
2027
2172
|
[[package]]
|
2028
2173
|
name = "windows_i686_msvc"
|
2029
|
-
version = "0.42.
|
2174
|
+
version = "0.42.1"
|
2030
2175
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2031
|
-
checksum = "
|
2176
|
+
checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
|
2032
2177
|
|
2033
2178
|
[[package]]
|
2034
2179
|
name = "windows_x86_64_gnu"
|
2035
|
-
version = "0.42.
|
2180
|
+
version = "0.42.1"
|
2036
2181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2037
|
-
checksum = "
|
2182
|
+
checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
|
2038
2183
|
|
2039
2184
|
[[package]]
|
2040
2185
|
name = "windows_x86_64_gnullvm"
|
2041
|
-
version = "0.42.
|
2186
|
+
version = "0.42.1"
|
2042
2187
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2043
|
-
checksum = "
|
2188
|
+
checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
|
2044
2189
|
|
2045
2190
|
[[package]]
|
2046
2191
|
name = "windows_x86_64_msvc"
|
2047
|
-
version = "0.42.
|
2192
|
+
version = "0.42.1"
|
2193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2194
|
+
checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
|
2195
|
+
|
2196
|
+
[[package]]
|
2197
|
+
name = "xxhash-rust"
|
2198
|
+
version = "0.8.6"
|
2048
2199
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2049
|
-
checksum = "
|
2200
|
+
checksum = "735a71d46c4d68d71d4b24d03fdc2b98e38cea81730595801db779c04fe80d70"
|
2050
2201
|
|
2051
2202
|
[[package]]
|
2052
2203
|
name = "zstd"
|
@@ -2069,10 +2220,11 @@ dependencies = [
|
|
2069
2220
|
|
2070
2221
|
[[package]]
|
2071
2222
|
name = "zstd-sys"
|
2072
|
-
version = "2.0.
|
2223
|
+
version = "2.0.5+zstd.1.5.2"
|
2073
2224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2074
|
-
checksum = "
|
2225
|
+
checksum = "edc50ffce891ad571e9f9afe5039c4837bede781ac4bb13052ed7ae695518596"
|
2075
2226
|
dependencies = [
|
2076
2227
|
"cc",
|
2077
2228
|
"libc",
|
2229
|
+
"pkg-config",
|
2078
2230
|
]
|