polars-df 0.2.5 → 0.3.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 +290 -137
- data/Cargo.toml +1 -1
- data/ext/polars/Cargo.toml +5 -4
- data/ext/polars/src/apply/dataframe.rs +6 -6
- data/ext/polars/src/apply/series.rs +10 -10
- data/ext/polars/src/batched_csv.rs +6 -4
- data/ext/polars/src/conversion.rs +40 -13
- data/ext/polars/src/dataframe.rs +45 -43
- data/ext/polars/src/error.rs +8 -8
- data/ext/polars/src/file.rs +5 -4
- data/ext/polars/src/lazy/apply.rs +1 -1
- data/ext/polars/src/lazy/dataframe.rs +12 -6
- data/ext/polars/src/lazy/dsl.rs +99 -45
- data/ext/polars/src/lazy/meta.rs +10 -9
- data/ext/polars/src/lib.rs +28 -29
- data/ext/polars/src/object.rs +2 -1
- data/ext/polars/src/series.rs +23 -21
- data/lib/polars/cat_expr.rb +0 -4
- data/lib/polars/cat_name_space.rb +0 -4
- data/lib/polars/convert.rb +0 -7
- data/lib/polars/data_frame.rb +139 -204
- data/lib/polars/date_time_expr.rb +19 -151
- data/lib/polars/date_time_name_space.rb +17 -17
- data/lib/polars/expr.rb +68 -315
- data/lib/polars/group_by.rb +68 -51
- data/lib/polars/io.rb +1 -1
- data/lib/polars/lazy_frame.rb +1 -103
- data/lib/polars/lazy_functions.rb +0 -26
- data/lib/polars/lazy_group_by.rb +0 -8
- data/lib/polars/list_expr.rb +5 -27
- data/lib/polars/list_name_space.rb +5 -8
- data/lib/polars/series.rb +20 -16
- data/lib/polars/string_expr.rb +20 -76
- data/lib/polars/string_name_space.rb +5 -15
- data/lib/polars/struct_expr.rb +0 -2
- data/lib/polars/version.rb +1 -1
- metadata +3 -3
data/Cargo.lock
CHANGED
@@ -16,9 +16,9 @@ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
|
|
16
16
|
|
17
17
|
[[package]]
|
18
18
|
name = "ahash"
|
19
|
-
version = "0.8.
|
19
|
+
version = "0.8.3"
|
20
20
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
21
|
-
checksum = "
|
21
|
+
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
|
22
22
|
dependencies = [
|
23
23
|
"cfg-if",
|
24
24
|
"getrandom",
|
@@ -61,9 +61,9 @@ dependencies = [
|
|
61
61
|
|
62
62
|
[[package]]
|
63
63
|
name = "anyhow"
|
64
|
-
version = "1.0.
|
64
|
+
version = "1.0.69"
|
65
65
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
66
|
-
checksum = "
|
66
|
+
checksum = "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800"
|
67
67
|
|
68
68
|
[[package]]
|
69
69
|
name = "array-init-cursor"
|
@@ -83,16 +83,16 @@ dependencies = [
|
|
83
83
|
|
84
84
|
[[package]]
|
85
85
|
name = "arrow2"
|
86
|
-
version = "0.
|
87
|
-
source = "git+https://github.com/ankane/arrow2?rev=
|
86
|
+
version = "0.16.0"
|
87
|
+
source = "git+https://github.com/ankane/arrow2?rev=ef0270922a217070ba9942567c0ff3263ae8c531#ef0270922a217070ba9942567c0ff3263ae8c531"
|
88
88
|
dependencies = [
|
89
89
|
"ahash",
|
90
90
|
"arrow-format",
|
91
91
|
"avro-schema",
|
92
|
-
"base64",
|
92
|
+
"base64 0.13.1",
|
93
93
|
"bytemuck",
|
94
94
|
"chrono",
|
95
|
-
"chrono-tz",
|
95
|
+
"chrono-tz 0.6.3",
|
96
96
|
"dyn-clone",
|
97
97
|
"either",
|
98
98
|
"ethnum",
|
@@ -137,9 +137,9 @@ dependencies = [
|
|
137
137
|
|
138
138
|
[[package]]
|
139
139
|
name = "async-trait"
|
140
|
-
version = "0.1.
|
140
|
+
version = "0.1.64"
|
141
141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
142
|
-
checksum = "
|
142
|
+
checksum = "1cd7fce9ba8c3c042128ce72d8b2ddbf3a05747efb67ea0313c635e10bda47a2"
|
143
143
|
dependencies = [
|
144
144
|
"proc-macro2",
|
145
145
|
"quote",
|
@@ -172,6 +172,12 @@ version = "0.13.1"
|
|
172
172
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
173
173
|
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
174
174
|
|
175
|
+
[[package]]
|
176
|
+
name = "base64"
|
177
|
+
version = "0.21.0"
|
178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
179
|
+
checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
|
180
|
+
|
175
181
|
[[package]]
|
176
182
|
name = "bindgen"
|
177
183
|
version = "0.60.1"
|
@@ -210,9 +216,9 @@ dependencies = [
|
|
210
216
|
|
211
217
|
[[package]]
|
212
218
|
name = "brotli-decompressor"
|
213
|
-
version = "2.3.
|
219
|
+
version = "2.3.4"
|
214
220
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
215
|
-
checksum = "
|
221
|
+
checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744"
|
216
222
|
dependencies = [
|
217
223
|
"alloc-no-stdlib",
|
218
224
|
"alloc-stdlib",
|
@@ -220,35 +226,41 @@ dependencies = [
|
|
220
226
|
|
221
227
|
[[package]]
|
222
228
|
name = "bumpalo"
|
223
|
-
version = "3.
|
229
|
+
version = "3.12.0"
|
224
230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
225
|
-
checksum = "
|
231
|
+
checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535"
|
226
232
|
|
227
233
|
[[package]]
|
228
234
|
name = "bytemuck"
|
229
|
-
version = "1.
|
235
|
+
version = "1.13.0"
|
230
236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
231
|
-
checksum = "
|
237
|
+
checksum = "c041d3eab048880cb0b86b256447da3f18859a163c3b8d8893f4e6368abe6393"
|
232
238
|
dependencies = [
|
233
239
|
"bytemuck_derive",
|
234
240
|
]
|
235
241
|
|
236
242
|
[[package]]
|
237
243
|
name = "bytemuck_derive"
|
238
|
-
version = "1.
|
244
|
+
version = "1.4.0"
|
239
245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
240
|
-
checksum = "
|
246
|
+
checksum = "1aca418a974d83d40a0c1f0c5cba6ff4bc28d8df099109ca459a2118d40b6322"
|
241
247
|
dependencies = [
|
242
248
|
"proc-macro2",
|
243
249
|
"quote",
|
244
250
|
"syn",
|
245
251
|
]
|
246
252
|
|
253
|
+
[[package]]
|
254
|
+
name = "bytes"
|
255
|
+
version = "1.4.0"
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
257
|
+
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
|
258
|
+
|
247
259
|
[[package]]
|
248
260
|
name = "cc"
|
249
|
-
version = "1.0.
|
261
|
+
version = "1.0.79"
|
250
262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
251
|
-
checksum = "
|
263
|
+
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
|
252
264
|
dependencies = [
|
253
265
|
"jobserver",
|
254
266
|
]
|
@@ -290,7 +302,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
302
|
checksum = "29c39203181991a7dd4343b8005bd804e7a9a37afb8ac070e43771e8c820bbde"
|
291
303
|
dependencies = [
|
292
304
|
"chrono",
|
293
|
-
"chrono-tz-build",
|
305
|
+
"chrono-tz-build 0.0.3",
|
306
|
+
"phf",
|
307
|
+
]
|
308
|
+
|
309
|
+
[[package]]
|
310
|
+
name = "chrono-tz"
|
311
|
+
version = "0.8.1"
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
313
|
+
checksum = "fa48fa079165080f11d7753fd0bc175b7d391f276b965fe4b55bfad67856e463"
|
314
|
+
dependencies = [
|
315
|
+
"chrono",
|
316
|
+
"chrono-tz-build 0.1.0",
|
294
317
|
"phf",
|
295
318
|
]
|
296
319
|
|
@@ -305,6 +328,17 @@ dependencies = [
|
|
305
328
|
"phf_codegen",
|
306
329
|
]
|
307
330
|
|
331
|
+
[[package]]
|
332
|
+
name = "chrono-tz-build"
|
333
|
+
version = "0.1.0"
|
334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
335
|
+
checksum = "d9998fb9f7e9b2111641485bf8beb32f92945f97f92a3d061f744cfef335f751"
|
336
|
+
dependencies = [
|
337
|
+
"parse-zoneinfo",
|
338
|
+
"phf",
|
339
|
+
"phf_codegen",
|
340
|
+
]
|
341
|
+
|
308
342
|
[[package]]
|
309
343
|
name = "clang-sys"
|
310
344
|
version = "1.4.0"
|
@@ -421,7 +455,7 @@ dependencies = [
|
|
421
455
|
"crossterm_winapi",
|
422
456
|
"libc",
|
423
457
|
"mio",
|
424
|
-
"parking_lot",
|
458
|
+
"parking_lot 0.12.1",
|
425
459
|
"signal-hook",
|
426
460
|
"signal-hook-mio",
|
427
461
|
"winapi",
|
@@ -436,20 +470,11 @@ dependencies = [
|
|
436
470
|
"winapi",
|
437
471
|
]
|
438
472
|
|
439
|
-
[[package]]
|
440
|
-
name = "csv-core"
|
441
|
-
version = "0.1.10"
|
442
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
443
|
-
checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
|
444
|
-
dependencies = [
|
445
|
-
"memchr",
|
446
|
-
]
|
447
|
-
|
448
473
|
[[package]]
|
449
474
|
name = "cxx"
|
450
|
-
version = "1.0.
|
475
|
+
version = "1.0.89"
|
451
476
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
452
|
-
checksum = "
|
477
|
+
checksum = "bc831ee6a32dd495436e317595e639a587aa9907bef96fe6e6abc290ab6204e9"
|
453
478
|
dependencies = [
|
454
479
|
"cc",
|
455
480
|
"cxxbridge-flags",
|
@@ -459,9 +484,9 @@ dependencies = [
|
|
459
484
|
|
460
485
|
[[package]]
|
461
486
|
name = "cxx-build"
|
462
|
-
version = "1.0.
|
487
|
+
version = "1.0.89"
|
463
488
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
464
|
-
checksum = "
|
489
|
+
checksum = "94331d54f1b1a8895cd81049f7eaaaef9d05a7dcb4d1fd08bf3ff0806246789d"
|
465
490
|
dependencies = [
|
466
491
|
"cc",
|
467
492
|
"codespan-reporting",
|
@@ -474,15 +499,15 @@ dependencies = [
|
|
474
499
|
|
475
500
|
[[package]]
|
476
501
|
name = "cxxbridge-flags"
|
477
|
-
version = "1.0.
|
502
|
+
version = "1.0.89"
|
478
503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
479
|
-
checksum = "
|
504
|
+
checksum = "48dcd35ba14ca9b40d6e4b4b39961f23d835dbb8eed74565ded361d93e1feb8a"
|
480
505
|
|
481
506
|
[[package]]
|
482
507
|
name = "cxxbridge-macro"
|
483
|
-
version = "1.0.
|
508
|
+
version = "1.0.89"
|
484
509
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
485
|
-
checksum = "
|
510
|
+
checksum = "81bbeb29798b407ccd82a3324ade1a7286e0d29851475990b612670f6f5124d2"
|
486
511
|
dependencies = [
|
487
512
|
"proc-macro2",
|
488
513
|
"quote",
|
@@ -517,9 +542,9 @@ checksum = "c9b0705efd4599c15a38151f4721f7bc388306f61084d3bfd50bd07fbca5cb60"
|
|
517
542
|
|
518
543
|
[[package]]
|
519
544
|
name = "either"
|
520
|
-
version = "1.8.
|
545
|
+
version = "1.8.1"
|
521
546
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
522
|
-
checksum = "
|
547
|
+
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
|
523
548
|
|
524
549
|
[[package]]
|
525
550
|
name = "enum_dispatch"
|
@@ -570,17 +595,11 @@ version = "0.1.0"
|
|
570
595
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
571
596
|
checksum = "ee1b05cbd864bcaecbd3455d6d967862d446e4ebfc3c2e5e5b9841e53cba6673"
|
572
597
|
|
573
|
-
[[package]]
|
574
|
-
name = "fs_extra"
|
575
|
-
version = "1.2.0"
|
576
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
577
|
-
checksum = "2022715d62ab30faffd124d40b76f4134a550a87792276512b18d63272333394"
|
578
|
-
|
579
598
|
[[package]]
|
580
599
|
name = "futures"
|
581
|
-
version = "0.3.
|
600
|
+
version = "0.3.26"
|
582
601
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
583
|
-
checksum = "
|
602
|
+
checksum = "13e2792b0ff0340399d58445b88fd9770e3489eff258a4cbc1523418f12abf84"
|
584
603
|
dependencies = [
|
585
604
|
"futures-channel",
|
586
605
|
"futures-core",
|
@@ -593,9 +612,9 @@ dependencies = [
|
|
593
612
|
|
594
613
|
[[package]]
|
595
614
|
name = "futures-channel"
|
596
|
-
version = "0.3.
|
615
|
+
version = "0.3.26"
|
597
616
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
598
|
-
checksum = "
|
617
|
+
checksum = "2e5317663a9089767a1ec00a487df42e0ca174b61b4483213ac24448e4664df5"
|
599
618
|
dependencies = [
|
600
619
|
"futures-core",
|
601
620
|
"futures-sink",
|
@@ -603,15 +622,15 @@ dependencies = [
|
|
603
622
|
|
604
623
|
[[package]]
|
605
624
|
name = "futures-core"
|
606
|
-
version = "0.3.
|
625
|
+
version = "0.3.26"
|
607
626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
608
|
-
checksum = "
|
627
|
+
checksum = "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608"
|
609
628
|
|
610
629
|
[[package]]
|
611
630
|
name = "futures-executor"
|
612
|
-
version = "0.3.
|
631
|
+
version = "0.3.26"
|
613
632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
614
|
-
checksum = "
|
633
|
+
checksum = "e8de0a35a6ab97ec8869e32a2473f4b1324459e14c29275d14b10cb1fd19b50e"
|
615
634
|
dependencies = [
|
616
635
|
"futures-core",
|
617
636
|
"futures-task",
|
@@ -620,15 +639,15 @@ dependencies = [
|
|
620
639
|
|
621
640
|
[[package]]
|
622
641
|
name = "futures-io"
|
623
|
-
version = "0.3.
|
642
|
+
version = "0.3.26"
|
624
643
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
625
|
-
checksum = "
|
644
|
+
checksum = "bfb8371b6fb2aeb2d280374607aeabfc99d95c72edfe51692e42d3d7f0d08531"
|
626
645
|
|
627
646
|
[[package]]
|
628
647
|
name = "futures-macro"
|
629
|
-
version = "0.3.
|
648
|
+
version = "0.3.26"
|
630
649
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
631
|
-
checksum = "
|
650
|
+
checksum = "95a73af87da33b5acf53acfebdc339fe592ecf5357ac7c0a7734ab9d8c876a70"
|
632
651
|
dependencies = [
|
633
652
|
"proc-macro2",
|
634
653
|
"quote",
|
@@ -637,21 +656,21 @@ dependencies = [
|
|
637
656
|
|
638
657
|
[[package]]
|
639
658
|
name = "futures-sink"
|
640
|
-
version = "0.3.
|
659
|
+
version = "0.3.26"
|
641
660
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
642
|
-
checksum = "
|
661
|
+
checksum = "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364"
|
643
662
|
|
644
663
|
[[package]]
|
645
664
|
name = "futures-task"
|
646
|
-
version = "0.3.
|
665
|
+
version = "0.3.26"
|
647
666
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
648
|
-
checksum = "
|
667
|
+
checksum = "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366"
|
649
668
|
|
650
669
|
[[package]]
|
651
670
|
name = "futures-util"
|
652
|
-
version = "0.3.
|
671
|
+
version = "0.3.26"
|
653
672
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
654
|
-
checksum = "
|
673
|
+
checksum = "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1"
|
655
674
|
dependencies = [
|
656
675
|
"futures-channel",
|
657
676
|
"futures-core",
|
@@ -672,8 +691,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
691
|
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
|
673
692
|
dependencies = [
|
674
693
|
"cfg-if",
|
694
|
+
"js-sys",
|
675
695
|
"libc",
|
676
696
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
697
|
+
"wasm-bindgen",
|
677
698
|
]
|
678
699
|
|
679
700
|
[[package]]
|
@@ -716,9 +737,9 @@ dependencies = [
|
|
716
737
|
|
717
738
|
[[package]]
|
718
739
|
name = "heck"
|
719
|
-
version = "0.4.
|
740
|
+
version = "0.4.1"
|
720
741
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
721
|
-
checksum = "
|
742
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
722
743
|
|
723
744
|
[[package]]
|
724
745
|
name = "hermit-abi"
|
@@ -770,6 +791,15 @@ dependencies = [
|
|
770
791
|
"serde",
|
771
792
|
]
|
772
793
|
|
794
|
+
[[package]]
|
795
|
+
name = "instant"
|
796
|
+
version = "0.1.12"
|
797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
798
|
+
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
799
|
+
dependencies = [
|
800
|
+
"cfg-if",
|
801
|
+
]
|
802
|
+
|
773
803
|
[[package]]
|
774
804
|
name = "itoa"
|
775
805
|
version = "1.0.5"
|
@@ -778,12 +808,11 @@ checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
|
|
778
808
|
|
779
809
|
[[package]]
|
780
810
|
name = "jemalloc-sys"
|
781
|
-
version = "0.5.
|
811
|
+
version = "0.5.3+5.3.0-patched"
|
782
812
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
783
|
-
checksum = "
|
813
|
+
checksum = "f9bd5d616ea7ed58b571b2e209a65759664d7fb021a0819d7a790afc67e47ca1"
|
784
814
|
dependencies = [
|
785
815
|
"cc",
|
786
|
-
"fs_extra",
|
787
816
|
"libc",
|
788
817
|
]
|
789
818
|
|
@@ -808,9 +837,9 @@ dependencies = [
|
|
808
837
|
|
809
838
|
[[package]]
|
810
839
|
name = "js-sys"
|
811
|
-
version = "0.3.
|
840
|
+
version = "0.3.61"
|
812
841
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
813
|
-
checksum = "
|
842
|
+
checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
|
814
843
|
dependencies = [
|
815
844
|
"wasm-bindgen",
|
816
845
|
]
|
@@ -1021,9 +1050,9 @@ dependencies = [
|
|
1021
1050
|
|
1022
1051
|
[[package]]
|
1023
1052
|
name = "magnus"
|
1024
|
-
version = "0.
|
1053
|
+
version = "0.5.0"
|
1025
1054
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1026
|
-
checksum = "
|
1055
|
+
checksum = "af37419a942477f606d227d0e6e92f3b68458bfc68fec3bc2629df6a2c1ccdf9"
|
1027
1056
|
dependencies = [
|
1028
1057
|
"magnus-macros",
|
1029
1058
|
"rb-sys",
|
@@ -1032,9 +1061,9 @@ dependencies = [
|
|
1032
1061
|
|
1033
1062
|
[[package]]
|
1034
1063
|
name = "magnus-macros"
|
1035
|
-
version = "0.
|
1064
|
+
version = "0.4.0"
|
1036
1065
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1037
|
-
checksum = "
|
1066
|
+
checksum = "85aa71c9891b2732ff1157e1860a1ee578459fd25811fd3d72cc6e32b3fbdfea"
|
1038
1067
|
dependencies = [
|
1039
1068
|
"proc-macro2",
|
1040
1069
|
"quote",
|
@@ -1098,7 +1127,7 @@ dependencies = [
|
|
1098
1127
|
"libc",
|
1099
1128
|
"log",
|
1100
1129
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
1101
|
-
"windows-sys",
|
1130
|
+
"windows-sys 0.42.0",
|
1102
1131
|
]
|
1103
1132
|
|
1104
1133
|
[[package]]
|
@@ -1123,9 +1152,9 @@ dependencies = [
|
|
1123
1152
|
|
1124
1153
|
[[package]]
|
1125
1154
|
name = "nom"
|
1126
|
-
version = "7.1.
|
1155
|
+
version = "7.1.3"
|
1127
1156
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1128
|
-
checksum = "
|
1157
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
1129
1158
|
dependencies = [
|
1130
1159
|
"memchr",
|
1131
1160
|
"minimal-lexical",
|
@@ -1140,6 +1169,15 @@ dependencies = [
|
|
1140
1169
|
"chrono",
|
1141
1170
|
]
|
1142
1171
|
|
1172
|
+
[[package]]
|
1173
|
+
name = "ntapi"
|
1174
|
+
version = "0.4.0"
|
1175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1176
|
+
checksum = "bc51db7b362b205941f71232e56c625156eb9a929f8cf74a428fd5bc094a4afc"
|
1177
|
+
dependencies = [
|
1178
|
+
"winapi",
|
1179
|
+
]
|
1180
|
+
|
1143
1181
|
[[package]]
|
1144
1182
|
name = "num"
|
1145
1183
|
version = "0.4.0"
|
@@ -1167,9 +1205,9 @@ dependencies = [
|
|
1167
1205
|
|
1168
1206
|
[[package]]
|
1169
1207
|
name = "num-complex"
|
1170
|
-
version = "0.4.
|
1208
|
+
version = "0.4.3"
|
1171
1209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1172
|
-
checksum = "
|
1210
|
+
checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d"
|
1173
1211
|
dependencies = [
|
1174
1212
|
"num-traits",
|
1175
1213
|
]
|
@@ -1233,6 +1271,17 @@ version = "1.17.0"
|
|
1233
1271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1234
1272
|
checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66"
|
1235
1273
|
|
1274
|
+
[[package]]
|
1275
|
+
name = "parking_lot"
|
1276
|
+
version = "0.11.2"
|
1277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1278
|
+
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
|
1279
|
+
dependencies = [
|
1280
|
+
"instant",
|
1281
|
+
"lock_api",
|
1282
|
+
"parking_lot_core 0.8.6",
|
1283
|
+
]
|
1284
|
+
|
1236
1285
|
[[package]]
|
1237
1286
|
name = "parking_lot"
|
1238
1287
|
version = "0.12.1"
|
@@ -1240,20 +1289,34 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1240
1289
|
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
1241
1290
|
dependencies = [
|
1242
1291
|
"lock_api",
|
1243
|
-
"parking_lot_core",
|
1292
|
+
"parking_lot_core 0.9.7",
|
1244
1293
|
]
|
1245
1294
|
|
1246
1295
|
[[package]]
|
1247
1296
|
name = "parking_lot_core"
|
1248
|
-
version = "0.
|
1297
|
+
version = "0.8.6"
|
1249
1298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1250
|
-
checksum = "
|
1299
|
+
checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
|
1251
1300
|
dependencies = [
|
1252
1301
|
"cfg-if",
|
1302
|
+
"instant",
|
1253
1303
|
"libc",
|
1254
1304
|
"redox_syscall",
|
1255
1305
|
"smallvec",
|
1256
|
-
"
|
1306
|
+
"winapi",
|
1307
|
+
]
|
1308
|
+
|
1309
|
+
[[package]]
|
1310
|
+
name = "parking_lot_core"
|
1311
|
+
version = "0.9.7"
|
1312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1313
|
+
checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
|
1314
|
+
dependencies = [
|
1315
|
+
"cfg-if",
|
1316
|
+
"libc",
|
1317
|
+
"redox_syscall",
|
1318
|
+
"smallvec",
|
1319
|
+
"windows-sys 0.45.0",
|
1257
1320
|
]
|
1258
1321
|
|
1259
1322
|
[[package]]
|
@@ -1367,23 +1430,24 @@ dependencies = [
|
|
1367
1430
|
|
1368
1431
|
[[package]]
|
1369
1432
|
name = "polars"
|
1370
|
-
version = "0.
|
1433
|
+
version = "0.3.0"
|
1371
1434
|
dependencies = [
|
1372
1435
|
"ahash",
|
1373
1436
|
"jemallocator",
|
1374
1437
|
"magnus",
|
1375
1438
|
"mimalloc",
|
1376
|
-
"polars 0.
|
1439
|
+
"polars 0.27.1",
|
1377
1440
|
"polars-core",
|
1378
1441
|
"serde_json",
|
1379
1442
|
]
|
1380
1443
|
|
1381
1444
|
[[package]]
|
1382
1445
|
name = "polars"
|
1383
|
-
version = "0.
|
1446
|
+
version = "0.27.1"
|
1384
1447
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1385
|
-
checksum = "
|
1448
|
+
checksum = "23579a975af982873bb41f13d294e369894a0f44fd75cacf889f4a88626b0c51"
|
1386
1449
|
dependencies = [
|
1450
|
+
"getrandom",
|
1387
1451
|
"polars-core",
|
1388
1452
|
"polars-io",
|
1389
1453
|
"polars-lazy",
|
@@ -1394,13 +1458,13 @@ dependencies = [
|
|
1394
1458
|
|
1395
1459
|
[[package]]
|
1396
1460
|
name = "polars-arrow"
|
1397
|
-
version = "0.
|
1461
|
+
version = "0.27.1"
|
1398
1462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1399
|
-
checksum = "
|
1463
|
+
checksum = "38fad08b4d4d3e21e8935d5d3d4dfcbb5ca65ffc5fa19364c254751bc1d62f93"
|
1400
1464
|
dependencies = [
|
1401
1465
|
"arrow2",
|
1402
1466
|
"chrono",
|
1403
|
-
"chrono-tz",
|
1467
|
+
"chrono-tz 0.8.1",
|
1404
1468
|
"hashbrown 0.13.2",
|
1405
1469
|
"num",
|
1406
1470
|
"serde",
|
@@ -1409,20 +1473,18 @@ dependencies = [
|
|
1409
1473
|
|
1410
1474
|
[[package]]
|
1411
1475
|
name = "polars-core"
|
1412
|
-
version = "0.
|
1476
|
+
version = "0.27.1"
|
1413
1477
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1414
|
-
checksum = "
|
1478
|
+
checksum = "2256086865cfa7db31af5e66a088f0089bff1ba9692f7195d1661497cebdca05"
|
1415
1479
|
dependencies = [
|
1416
1480
|
"ahash",
|
1417
1481
|
"anyhow",
|
1418
1482
|
"arrow2",
|
1419
|
-
"base64",
|
1420
1483
|
"bitflags",
|
1421
1484
|
"chrono",
|
1422
|
-
"chrono-tz",
|
1485
|
+
"chrono-tz 0.8.1",
|
1423
1486
|
"comfy-table",
|
1424
1487
|
"hashbrown 0.13.2",
|
1425
|
-
"hex",
|
1426
1488
|
"indexmap",
|
1427
1489
|
"num",
|
1428
1490
|
"once_cell",
|
@@ -1436,19 +1498,22 @@ dependencies = [
|
|
1436
1498
|
"serde_json",
|
1437
1499
|
"smartstring",
|
1438
1500
|
"thiserror",
|
1501
|
+
"wasm-timer",
|
1439
1502
|
"xxhash-rust",
|
1440
1503
|
]
|
1441
1504
|
|
1442
1505
|
[[package]]
|
1443
1506
|
name = "polars-io"
|
1444
|
-
version = "0.
|
1507
|
+
version = "0.27.1"
|
1445
1508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1446
|
-
checksum = "
|
1509
|
+
checksum = "dbb397baf00d80f692635b65f83586fa2a09ba847d3623d6faabe685690e2914"
|
1447
1510
|
dependencies = [
|
1448
1511
|
"ahash",
|
1449
1512
|
"anyhow",
|
1450
1513
|
"arrow2",
|
1451
|
-
"
|
1514
|
+
"bytes",
|
1515
|
+
"chrono",
|
1516
|
+
"chrono-tz 0.8.1",
|
1452
1517
|
"dirs",
|
1453
1518
|
"lexical",
|
1454
1519
|
"lexical-core",
|
@@ -1470,9 +1535,9 @@ dependencies = [
|
|
1470
1535
|
|
1471
1536
|
[[package]]
|
1472
1537
|
name = "polars-lazy"
|
1473
|
-
version = "0.
|
1538
|
+
version = "0.27.1"
|
1474
1539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1475
|
-
checksum = "
|
1540
|
+
checksum = "d9dd4a9ac727f0d52b8bce61d11601aaab5427c38b7fea14008ca4af8e551b47"
|
1476
1541
|
dependencies = [
|
1477
1542
|
"ahash",
|
1478
1543
|
"bitflags",
|
@@ -1490,12 +1555,15 @@ dependencies = [
|
|
1490
1555
|
|
1491
1556
|
[[package]]
|
1492
1557
|
name = "polars-ops"
|
1493
|
-
version = "0.
|
1558
|
+
version = "0.27.1"
|
1494
1559
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1495
|
-
checksum = "
|
1560
|
+
checksum = "31168b91a6edddb8dc4dcc4b53af15e9ffefc23f0bff054c1975423e01f3ae15"
|
1496
1561
|
dependencies = [
|
1497
1562
|
"arrow2",
|
1563
|
+
"base64 0.21.0",
|
1564
|
+
"hex",
|
1498
1565
|
"jsonpath_lib",
|
1566
|
+
"memchr",
|
1499
1567
|
"polars-arrow",
|
1500
1568
|
"polars-core",
|
1501
1569
|
"polars-utils",
|
@@ -1505,16 +1573,18 @@ dependencies = [
|
|
1505
1573
|
|
1506
1574
|
[[package]]
|
1507
1575
|
name = "polars-pipe"
|
1508
|
-
version = "0.
|
1576
|
+
version = "0.27.1"
|
1509
1577
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1510
|
-
checksum = "
|
1578
|
+
checksum = "48f2c4755146fd47e85f9cb4eaaa85b5a98049b71c5d913a1c71aaba39de5b2f"
|
1511
1579
|
dependencies = [
|
1580
|
+
"crossbeam-channel",
|
1512
1581
|
"enum_dispatch",
|
1513
1582
|
"hashbrown 0.13.2",
|
1514
1583
|
"num",
|
1515
1584
|
"polars-arrow",
|
1516
1585
|
"polars-core",
|
1517
1586
|
"polars-io",
|
1587
|
+
"polars-ops",
|
1518
1588
|
"polars-plan",
|
1519
1589
|
"polars-utils",
|
1520
1590
|
"rayon",
|
@@ -1523,11 +1593,12 @@ dependencies = [
|
|
1523
1593
|
|
1524
1594
|
[[package]]
|
1525
1595
|
name = "polars-plan"
|
1526
|
-
version = "0.
|
1596
|
+
version = "0.27.1"
|
1527
1597
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1528
|
-
checksum = "
|
1598
|
+
checksum = "281c105d1796f04003b5f6d0e030c6be666261edb88640b00e42b1722507cc2b"
|
1529
1599
|
dependencies = [
|
1530
1600
|
"ahash",
|
1601
|
+
"once_cell",
|
1531
1602
|
"polars-arrow",
|
1532
1603
|
"polars-core",
|
1533
1604
|
"polars-io",
|
@@ -1541,28 +1612,32 @@ dependencies = [
|
|
1541
1612
|
|
1542
1613
|
[[package]]
|
1543
1614
|
name = "polars-time"
|
1544
|
-
version = "0.
|
1615
|
+
version = "0.27.1"
|
1545
1616
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1546
|
-
checksum = "
|
1617
|
+
checksum = "39f014abbcae6f05fa386c1eceef82920857cfcb72ab29c10990a42f997d3ade"
|
1547
1618
|
dependencies = [
|
1548
1619
|
"chrono",
|
1549
|
-
"chrono-tz",
|
1620
|
+
"chrono-tz 0.8.1",
|
1550
1621
|
"lexical",
|
1551
1622
|
"now",
|
1623
|
+
"once_cell",
|
1552
1624
|
"polars-arrow",
|
1553
1625
|
"polars-core",
|
1554
1626
|
"polars-ops",
|
1555
1627
|
"polars-utils",
|
1628
|
+
"regex",
|
1556
1629
|
"serde",
|
1557
1630
|
]
|
1558
1631
|
|
1559
1632
|
[[package]]
|
1560
1633
|
name = "polars-utils"
|
1561
|
-
version = "0.
|
1634
|
+
version = "0.27.1"
|
1562
1635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1563
|
-
checksum = "
|
1636
|
+
checksum = "bda7fb126f8c77d0a106620fd525bc4fdd1c7e32cb100aa9a82ba3f7c969485a"
|
1564
1637
|
dependencies = [
|
1638
|
+
"once_cell",
|
1565
1639
|
"rayon",
|
1640
|
+
"sysinfo",
|
1566
1641
|
]
|
1567
1642
|
|
1568
1643
|
[[package]]
|
@@ -1573,9 +1648,9 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
1573
1648
|
|
1574
1649
|
[[package]]
|
1575
1650
|
name = "proc-macro2"
|
1576
|
-
version = "1.0.
|
1651
|
+
version = "1.0.51"
|
1577
1652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1578
|
-
checksum = "
|
1653
|
+
checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6"
|
1579
1654
|
dependencies = [
|
1580
1655
|
"unicode-ident",
|
1581
1656
|
]
|
@@ -1641,9 +1716,9 @@ dependencies = [
|
|
1641
1716
|
|
1642
1717
|
[[package]]
|
1643
1718
|
name = "rayon-core"
|
1644
|
-
version = "1.10.
|
1719
|
+
version = "1.10.2"
|
1645
1720
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1646
|
-
checksum = "
|
1721
|
+
checksum = "356a0625f1954f730c0201cdab48611198dc6ce21f4acff55089b5a78e6e835b"
|
1647
1722
|
dependencies = [
|
1648
1723
|
"crossbeam-channel",
|
1649
1724
|
"crossbeam-deque",
|
@@ -1653,22 +1728,25 @@ dependencies = [
|
|
1653
1728
|
|
1654
1729
|
[[package]]
|
1655
1730
|
name = "rb-sys"
|
1656
|
-
version = "0.9.
|
1731
|
+
version = "0.9.65"
|
1657
1732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1658
|
-
checksum = "
|
1733
|
+
checksum = "e8fe617bad8e88fd7e5d6f432e35f09e5f94144dfb8e8ee4adde82fb920dc59b"
|
1659
1734
|
dependencies = [
|
1660
1735
|
"rb-sys-build",
|
1661
1736
|
]
|
1662
1737
|
|
1663
1738
|
[[package]]
|
1664
1739
|
name = "rb-sys-build"
|
1665
|
-
version = "0.9.
|
1740
|
+
version = "0.9.65"
|
1666
1741
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1667
|
-
checksum = "
|
1742
|
+
checksum = "007e63597f91c711cbb299e60fecbdb6f5ad4a066d6a20c81943893f1584c895"
|
1668
1743
|
dependencies = [
|
1669
1744
|
"bindgen",
|
1745
|
+
"lazy_static",
|
1746
|
+
"quote",
|
1670
1747
|
"regex",
|
1671
1748
|
"shell-words",
|
1749
|
+
"syn",
|
1672
1750
|
]
|
1673
1751
|
|
1674
1752
|
[[package]]
|
@@ -1793,9 +1871,9 @@ dependencies = [
|
|
1793
1871
|
|
1794
1872
|
[[package]]
|
1795
1873
|
name = "serde_json"
|
1796
|
-
version = "1.0.
|
1874
|
+
version = "1.0.93"
|
1797
1875
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1798
|
-
checksum = "
|
1876
|
+
checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76"
|
1799
1877
|
dependencies = [
|
1800
1878
|
"indexmap",
|
1801
1879
|
"itoa",
|
@@ -1960,11 +2038,25 @@ dependencies = [
|
|
1960
2038
|
"unicode-ident",
|
1961
2039
|
]
|
1962
2040
|
|
2041
|
+
[[package]]
|
2042
|
+
name = "sysinfo"
|
2043
|
+
version = "0.27.7"
|
2044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2045
|
+
checksum = "975fe381e0ecba475d4acff52466906d95b153a40324956552e027b2a9eaa89e"
|
2046
|
+
dependencies = [
|
2047
|
+
"cfg-if",
|
2048
|
+
"core-foundation-sys",
|
2049
|
+
"libc",
|
2050
|
+
"ntapi",
|
2051
|
+
"once_cell",
|
2052
|
+
"winapi",
|
2053
|
+
]
|
2054
|
+
|
1963
2055
|
[[package]]
|
1964
2056
|
name = "termcolor"
|
1965
|
-
version = "1.
|
2057
|
+
version = "1.2.0"
|
1966
2058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1967
|
-
checksum = "
|
2059
|
+
checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
|
1968
2060
|
dependencies = [
|
1969
2061
|
"winapi-util",
|
1970
2062
|
]
|
@@ -2053,9 +2145,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
2053
2145
|
|
2054
2146
|
[[package]]
|
2055
2147
|
name = "wasm-bindgen"
|
2056
|
-
version = "0.2.
|
2148
|
+
version = "0.2.84"
|
2057
2149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2058
|
-
checksum = "
|
2150
|
+
checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b"
|
2059
2151
|
dependencies = [
|
2060
2152
|
"cfg-if",
|
2061
2153
|
"wasm-bindgen-macro",
|
@@ -2063,9 +2155,9 @@ dependencies = [
|
|
2063
2155
|
|
2064
2156
|
[[package]]
|
2065
2157
|
name = "wasm-bindgen-backend"
|
2066
|
-
version = "0.2.
|
2158
|
+
version = "0.2.84"
|
2067
2159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2068
|
-
checksum = "
|
2160
|
+
checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9"
|
2069
2161
|
dependencies = [
|
2070
2162
|
"bumpalo",
|
2071
2163
|
"log",
|
@@ -2076,11 +2168,23 @@ dependencies = [
|
|
2076
2168
|
"wasm-bindgen-shared",
|
2077
2169
|
]
|
2078
2170
|
|
2171
|
+
[[package]]
|
2172
|
+
name = "wasm-bindgen-futures"
|
2173
|
+
version = "0.4.34"
|
2174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2175
|
+
checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454"
|
2176
|
+
dependencies = [
|
2177
|
+
"cfg-if",
|
2178
|
+
"js-sys",
|
2179
|
+
"wasm-bindgen",
|
2180
|
+
"web-sys",
|
2181
|
+
]
|
2182
|
+
|
2079
2183
|
[[package]]
|
2080
2184
|
name = "wasm-bindgen-macro"
|
2081
|
-
version = "0.2.
|
2185
|
+
version = "0.2.84"
|
2082
2186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2083
|
-
checksum = "
|
2187
|
+
checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5"
|
2084
2188
|
dependencies = [
|
2085
2189
|
"quote",
|
2086
2190
|
"wasm-bindgen-macro-support",
|
@@ -2088,9 +2192,9 @@ dependencies = [
|
|
2088
2192
|
|
2089
2193
|
[[package]]
|
2090
2194
|
name = "wasm-bindgen-macro-support"
|
2091
|
-
version = "0.2.
|
2195
|
+
version = "0.2.84"
|
2092
2196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2093
|
-
checksum = "
|
2197
|
+
checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
|
2094
2198
|
dependencies = [
|
2095
2199
|
"proc-macro2",
|
2096
2200
|
"quote",
|
@@ -2101,9 +2205,34 @@ dependencies = [
|
|
2101
2205
|
|
2102
2206
|
[[package]]
|
2103
2207
|
name = "wasm-bindgen-shared"
|
2104
|
-
version = "0.2.
|
2208
|
+
version = "0.2.84"
|
2209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2210
|
+
checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
|
2211
|
+
|
2212
|
+
[[package]]
|
2213
|
+
name = "wasm-timer"
|
2214
|
+
version = "0.2.5"
|
2215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2216
|
+
checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f"
|
2217
|
+
dependencies = [
|
2218
|
+
"futures",
|
2219
|
+
"js-sys",
|
2220
|
+
"parking_lot 0.11.2",
|
2221
|
+
"pin-utils",
|
2222
|
+
"wasm-bindgen",
|
2223
|
+
"wasm-bindgen-futures",
|
2224
|
+
"web-sys",
|
2225
|
+
]
|
2226
|
+
|
2227
|
+
[[package]]
|
2228
|
+
name = "web-sys"
|
2229
|
+
version = "0.3.61"
|
2105
2230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2106
|
-
checksum = "
|
2231
|
+
checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97"
|
2232
|
+
dependencies = [
|
2233
|
+
"js-sys",
|
2234
|
+
"wasm-bindgen",
|
2235
|
+
]
|
2107
2236
|
|
2108
2237
|
[[package]]
|
2109
2238
|
name = "winapi"
|
@@ -2151,6 +2280,30 @@ dependencies = [
|
|
2151
2280
|
"windows_x86_64_msvc",
|
2152
2281
|
]
|
2153
2282
|
|
2283
|
+
[[package]]
|
2284
|
+
name = "windows-sys"
|
2285
|
+
version = "0.45.0"
|
2286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2287
|
+
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
2288
|
+
dependencies = [
|
2289
|
+
"windows-targets",
|
2290
|
+
]
|
2291
|
+
|
2292
|
+
[[package]]
|
2293
|
+
name = "windows-targets"
|
2294
|
+
version = "0.42.1"
|
2295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2296
|
+
checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
|
2297
|
+
dependencies = [
|
2298
|
+
"windows_aarch64_gnullvm",
|
2299
|
+
"windows_aarch64_msvc",
|
2300
|
+
"windows_i686_gnu",
|
2301
|
+
"windows_i686_msvc",
|
2302
|
+
"windows_x86_64_gnu",
|
2303
|
+
"windows_x86_64_gnullvm",
|
2304
|
+
"windows_x86_64_msvc",
|
2305
|
+
]
|
2306
|
+
|
2154
2307
|
[[package]]
|
2155
2308
|
name = "windows_aarch64_gnullvm"
|
2156
2309
|
version = "0.42.1"
|
@@ -2220,9 +2373,9 @@ dependencies = [
|
|
2220
2373
|
|
2221
2374
|
[[package]]
|
2222
2375
|
name = "zstd-sys"
|
2223
|
-
version = "2.0.
|
2376
|
+
version = "2.0.7+zstd.1.5.4"
|
2224
2377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2225
|
-
checksum = "
|
2378
|
+
checksum = "94509c3ba2fe55294d752b79842c530ccfab760192521df74a081a78d2b3c7f5"
|
2226
2379
|
dependencies = [
|
2227
2380
|
"cc",
|
2228
2381
|
"libc",
|