polars-df 0.5.0-arm64-darwin → 0.6.0-arm64-darwin
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 +14 -0
- data/Cargo.lock +337 -381
- data/LICENSE-THIRD-PARTY.txt +1032 -703
- data/README.md +4 -3
- data/lib/polars/3.0/polars.bundle +0 -0
- data/lib/polars/3.1/polars.bundle +0 -0
- data/lib/polars/3.2/polars.bundle +0 -0
- data/lib/polars/array_expr.rb +84 -0
- data/lib/polars/array_name_space.rb +77 -0
- data/lib/polars/batched_csv_reader.rb +1 -1
- data/lib/polars/data_frame.rb +91 -49
- data/lib/polars/data_types.rb +163 -29
- data/lib/polars/date_time_name_space.rb +17 -3
- data/lib/polars/expr.rb +76 -69
- data/lib/polars/functions.rb +0 -1
- data/lib/polars/group_by.rb +1 -22
- data/lib/polars/lazy_frame.rb +82 -30
- data/lib/polars/lazy_functions.rb +67 -31
- data/lib/polars/list_expr.rb +28 -28
- data/lib/polars/list_name_space.rb +13 -13
- data/lib/polars/rolling_group_by.rb +4 -2
- data/lib/polars/series.rb +70 -16
- data/lib/polars/string_expr.rb +137 -11
- data/lib/polars/string_name_space.rb +137 -22
- data/lib/polars/utils.rb +107 -57
- data/lib/polars/version.rb +1 -1
- data/lib/polars.rb +3 -0
- metadata +4 -2
data/Cargo.lock
CHANGED
@@ -2,6 +2,15 @@
|
|
2
2
|
# It is not intended for manual editing.
|
3
3
|
version = 3
|
4
4
|
|
5
|
+
[[package]]
|
6
|
+
name = "addr2line"
|
7
|
+
version = "0.20.0"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3"
|
10
|
+
dependencies = [
|
11
|
+
"gimli",
|
12
|
+
]
|
13
|
+
|
5
14
|
[[package]]
|
6
15
|
name = "adler"
|
7
16
|
version = "1.0.2"
|
@@ -28,9 +37,9 @@ dependencies = [
|
|
28
37
|
|
29
38
|
[[package]]
|
30
39
|
name = "aho-corasick"
|
31
|
-
version = "1.0.
|
40
|
+
version = "1.0.2"
|
32
41
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
33
|
-
checksum = "
|
42
|
+
checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
|
34
43
|
dependencies = [
|
35
44
|
"memchr",
|
36
45
|
]
|
@@ -50,6 +59,12 @@ dependencies = [
|
|
50
59
|
"alloc-no-stdlib",
|
51
60
|
]
|
52
61
|
|
62
|
+
[[package]]
|
63
|
+
name = "allocator-api2"
|
64
|
+
version = "0.2.16"
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
66
|
+
checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
|
67
|
+
|
53
68
|
[[package]]
|
54
69
|
name = "android_system_properties"
|
55
70
|
version = "0.1.5"
|
@@ -86,9 +101,9 @@ dependencies = [
|
|
86
101
|
|
87
102
|
[[package]]
|
88
103
|
name = "arrow2"
|
89
|
-
version = "0.17.
|
104
|
+
version = "0.17.3"
|
90
105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
91
|
-
checksum = "
|
106
|
+
checksum = "e44f27e89e3edd8738a07c5e2c881efaa25e69be97a816d2df051685d460670c"
|
92
107
|
dependencies = [
|
93
108
|
"ahash",
|
94
109
|
"arrow-format",
|
@@ -105,8 +120,6 @@ dependencies = [
|
|
105
120
|
"futures",
|
106
121
|
"getrandom",
|
107
122
|
"hash_hasher",
|
108
|
-
"indexmap",
|
109
|
-
"json-deserializer",
|
110
123
|
"lexical-core",
|
111
124
|
"lz4",
|
112
125
|
"multiversion",
|
@@ -140,18 +153,18 @@ checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
|
|
140
153
|
dependencies = [
|
141
154
|
"proc-macro2",
|
142
155
|
"quote",
|
143
|
-
"syn 2.0.
|
156
|
+
"syn 2.0.26",
|
144
157
|
]
|
145
158
|
|
146
159
|
[[package]]
|
147
160
|
name = "async-trait"
|
148
|
-
version = "0.1.
|
161
|
+
version = "0.1.71"
|
149
162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
150
|
-
checksum = "
|
163
|
+
checksum = "a564d521dd56509c4c47480d00b80ee55f7e385ae48db5744c67ad50c92d2ebf"
|
151
164
|
dependencies = [
|
152
165
|
"proc-macro2",
|
153
166
|
"quote",
|
154
|
-
"syn 2.0.
|
167
|
+
"syn 2.0.26",
|
155
168
|
]
|
156
169
|
|
157
170
|
[[package]]
|
@@ -183,17 +196,32 @@ dependencies = [
|
|
183
196
|
"snap",
|
184
197
|
]
|
185
198
|
|
199
|
+
[[package]]
|
200
|
+
name = "backtrace"
|
201
|
+
version = "0.3.68"
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
203
|
+
checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12"
|
204
|
+
dependencies = [
|
205
|
+
"addr2line",
|
206
|
+
"cc",
|
207
|
+
"cfg-if",
|
208
|
+
"libc",
|
209
|
+
"miniz_oxide",
|
210
|
+
"object",
|
211
|
+
"rustc-demangle",
|
212
|
+
]
|
213
|
+
|
186
214
|
[[package]]
|
187
215
|
name = "base64"
|
188
|
-
version = "0.21.
|
216
|
+
version = "0.21.2"
|
189
217
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
190
|
-
checksum = "
|
218
|
+
checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
|
191
219
|
|
192
220
|
[[package]]
|
193
221
|
name = "bindgen"
|
194
|
-
version = "0.
|
222
|
+
version = "0.62.0"
|
195
223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
196
|
-
checksum = "
|
224
|
+
checksum = "c6720a8b7b2d39dd533285ed438d458f65b31b5c257e6ac7bb3d7e82844dd722"
|
197
225
|
dependencies = [
|
198
226
|
"bitflags",
|
199
227
|
"cexpr",
|
@@ -206,6 +234,7 @@ dependencies = [
|
|
206
234
|
"regex",
|
207
235
|
"rustc-hash",
|
208
236
|
"shlex",
|
237
|
+
"syn 1.0.109",
|
209
238
|
]
|
210
239
|
|
211
240
|
[[package]]
|
@@ -237,9 +266,9 @@ dependencies = [
|
|
237
266
|
|
238
267
|
[[package]]
|
239
268
|
name = "bumpalo"
|
240
|
-
version = "3.
|
269
|
+
version = "3.13.0"
|
241
270
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
242
|
-
checksum = "
|
271
|
+
checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
|
243
272
|
|
244
273
|
[[package]]
|
245
274
|
name = "bytemuck"
|
@@ -258,7 +287,7 @@ checksum = "fdde5c9cd29ebd706ce1b35600920a33550e402fc998a2e53ad3b42c3c47a192"
|
|
258
287
|
dependencies = [
|
259
288
|
"proc-macro2",
|
260
289
|
"quote",
|
261
|
-
"syn 2.0.
|
290
|
+
"syn 2.0.26",
|
262
291
|
]
|
263
292
|
|
264
293
|
[[package]]
|
@@ -309,9 +338,9 @@ dependencies = [
|
|
309
338
|
|
310
339
|
[[package]]
|
311
340
|
name = "chrono-tz"
|
312
|
-
version = "0.8.
|
341
|
+
version = "0.8.3"
|
313
342
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
314
|
-
checksum = "
|
343
|
+
checksum = "f1369bc6b9e9a7dfdae2055f6ec151fe9c554a9d23d357c0237cee2e25eaabb7"
|
315
344
|
dependencies = [
|
316
345
|
"chrono",
|
317
346
|
"chrono-tz-build",
|
@@ -320,9 +349,9 @@ dependencies = [
|
|
320
349
|
|
321
350
|
[[package]]
|
322
351
|
name = "chrono-tz-build"
|
323
|
-
version = "0.
|
352
|
+
version = "0.2.0"
|
324
353
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
325
|
-
checksum = "
|
354
|
+
checksum = "e2f5ebdc942f57ed96d560a6d1a459bae5851102a25d5bf89dc04ae453e31ecf"
|
326
355
|
dependencies = [
|
327
356
|
"parse-zoneinfo",
|
328
357
|
"phf",
|
@@ -340,25 +369,15 @@ dependencies = [
|
|
340
369
|
"libloading",
|
341
370
|
]
|
342
371
|
|
343
|
-
[[package]]
|
344
|
-
name = "codespan-reporting"
|
345
|
-
version = "0.11.1"
|
346
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
347
|
-
checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
|
348
|
-
dependencies = [
|
349
|
-
"termcolor",
|
350
|
-
"unicode-width",
|
351
|
-
]
|
352
|
-
|
353
372
|
[[package]]
|
354
373
|
name = "comfy-table"
|
355
|
-
version = "
|
374
|
+
version = "7.0.1"
|
356
375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
357
|
-
checksum = "
|
376
|
+
checksum = "9ab77dbd8adecaf3f0db40581631b995f312a8a5ae3aa9993188bb8f23d83a5b"
|
358
377
|
dependencies = [
|
359
378
|
"crossterm",
|
360
379
|
"strum",
|
361
|
-
"strum_macros",
|
380
|
+
"strum_macros 0.24.3",
|
362
381
|
"unicode-width",
|
363
382
|
]
|
364
383
|
|
@@ -415,9 +434,9 @@ dependencies = [
|
|
415
434
|
|
416
435
|
[[package]]
|
417
436
|
name = "crossbeam-epoch"
|
418
|
-
version = "0.9.
|
437
|
+
version = "0.9.15"
|
419
438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
420
|
-
checksum = "
|
439
|
+
checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7"
|
421
440
|
dependencies = [
|
422
441
|
"autocfg",
|
423
442
|
"cfg-if",
|
@@ -438,18 +457,18 @@ dependencies = [
|
|
438
457
|
|
439
458
|
[[package]]
|
440
459
|
name = "crossbeam-utils"
|
441
|
-
version = "0.8.
|
460
|
+
version = "0.8.16"
|
442
461
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
443
|
-
checksum = "
|
462
|
+
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
|
444
463
|
dependencies = [
|
445
464
|
"cfg-if",
|
446
465
|
]
|
447
466
|
|
448
467
|
[[package]]
|
449
468
|
name = "crossterm"
|
450
|
-
version = "0.
|
469
|
+
version = "0.26.1"
|
451
470
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
452
|
-
checksum = "
|
471
|
+
checksum = "a84cda67535339806297f1b331d6dd6320470d2a0fe65381e79ee9e156dd3d13"
|
453
472
|
dependencies = [
|
454
473
|
"bitflags",
|
455
474
|
"crossterm_winapi",
|
@@ -463,57 +482,13 @@ dependencies = [
|
|
463
482
|
|
464
483
|
[[package]]
|
465
484
|
name = "crossterm_winapi"
|
466
|
-
version = "0.9.
|
485
|
+
version = "0.9.1"
|
467
486
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
468
|
-
checksum = "
|
487
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
469
488
|
dependencies = [
|
470
489
|
"winapi",
|
471
490
|
]
|
472
491
|
|
473
|
-
[[package]]
|
474
|
-
name = "cxx"
|
475
|
-
version = "1.0.94"
|
476
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
477
|
-
checksum = "f61f1b6389c3fe1c316bf8a4dccc90a38208354b330925bce1f74a6c4756eb93"
|
478
|
-
dependencies = [
|
479
|
-
"cc",
|
480
|
-
"cxxbridge-flags",
|
481
|
-
"cxxbridge-macro",
|
482
|
-
"link-cplusplus",
|
483
|
-
]
|
484
|
-
|
485
|
-
[[package]]
|
486
|
-
name = "cxx-build"
|
487
|
-
version = "1.0.94"
|
488
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
489
|
-
checksum = "12cee708e8962df2aeb38f594aae5d827c022b6460ac71a7a3e2c3c2aae5a07b"
|
490
|
-
dependencies = [
|
491
|
-
"cc",
|
492
|
-
"codespan-reporting",
|
493
|
-
"once_cell",
|
494
|
-
"proc-macro2",
|
495
|
-
"quote",
|
496
|
-
"scratch",
|
497
|
-
"syn 2.0.15",
|
498
|
-
]
|
499
|
-
|
500
|
-
[[package]]
|
501
|
-
name = "cxxbridge-flags"
|
502
|
-
version = "1.0.94"
|
503
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
504
|
-
checksum = "7944172ae7e4068c533afbb984114a56c46e9ccddda550499caa222902c7f7bb"
|
505
|
-
|
506
|
-
[[package]]
|
507
|
-
name = "cxxbridge-macro"
|
508
|
-
version = "1.0.94"
|
509
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
510
|
-
checksum = "2345488264226bf682893e25de0769f3360aac9957980ec49361b083ddaa5bc5"
|
511
|
-
dependencies = [
|
512
|
-
"proc-macro2",
|
513
|
-
"quote",
|
514
|
-
"syn 2.0.15",
|
515
|
-
]
|
516
|
-
|
517
492
|
[[package]]
|
518
493
|
name = "dyn-clone"
|
519
494
|
version = "1.0.11"
|
@@ -528,16 +503,22 @@ checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
|
|
528
503
|
|
529
504
|
[[package]]
|
530
505
|
name = "enum_dispatch"
|
531
|
-
version = "0.3.
|
506
|
+
version = "0.3.12"
|
532
507
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
533
|
-
checksum = "
|
508
|
+
checksum = "8f33313078bb8d4d05a2733a94ac4c2d8a0df9a2b84424ebf4f33bfc224a890e"
|
534
509
|
dependencies = [
|
535
510
|
"once_cell",
|
536
511
|
"proc-macro2",
|
537
512
|
"quote",
|
538
|
-
"syn
|
513
|
+
"syn 2.0.26",
|
539
514
|
]
|
540
515
|
|
516
|
+
[[package]]
|
517
|
+
name = "equivalent"
|
518
|
+
version = "1.0.1"
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
520
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
521
|
+
|
541
522
|
[[package]]
|
542
523
|
name = "ethnum"
|
543
524
|
version = "1.3.2"
|
@@ -637,7 +618,7 @@ checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
|
|
637
618
|
dependencies = [
|
638
619
|
"proc-macro2",
|
639
620
|
"quote",
|
640
|
-
"syn 2.0.
|
621
|
+
"syn 2.0.26",
|
641
622
|
]
|
642
623
|
|
643
624
|
[[package]]
|
@@ -672,9 +653,9 @@ dependencies = [
|
|
672
653
|
|
673
654
|
[[package]]
|
674
655
|
name = "getrandom"
|
675
|
-
version = "0.2.
|
656
|
+
version = "0.2.10"
|
676
657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
677
|
-
checksum = "
|
658
|
+
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
|
678
659
|
dependencies = [
|
679
660
|
"cfg-if",
|
680
661
|
"js-sys",
|
@@ -683,6 +664,12 @@ dependencies = [
|
|
683
664
|
"wasm-bindgen",
|
684
665
|
]
|
685
666
|
|
667
|
+
[[package]]
|
668
|
+
name = "gimli"
|
669
|
+
version = "0.27.3"
|
670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
671
|
+
checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e"
|
672
|
+
|
686
673
|
[[package]]
|
687
674
|
name = "glob"
|
688
675
|
version = "0.3.1"
|
@@ -691,12 +678,11 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
691
678
|
|
692
679
|
[[package]]
|
693
680
|
name = "halfbrown"
|
694
|
-
version = "0.2.
|
681
|
+
version = "0.2.4"
|
695
682
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
696
|
-
checksum = "
|
683
|
+
checksum = "5681137554ddff44396e5f149892c769d45301dd9aa19c51602a89ee214cb0ec"
|
697
684
|
dependencies = [
|
698
685
|
"hashbrown 0.13.2",
|
699
|
-
"rustc-hash",
|
700
686
|
"serde",
|
701
687
|
]
|
702
688
|
|
@@ -708,17 +694,21 @@ checksum = "74721d007512d0cb3338cd20f0654ac913920061a4c4d0d8708edb3f2a698c0c"
|
|
708
694
|
|
709
695
|
[[package]]
|
710
696
|
name = "hashbrown"
|
711
|
-
version = "0.
|
697
|
+
version = "0.13.2"
|
712
698
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
713
|
-
checksum = "
|
699
|
+
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
|
700
|
+
dependencies = [
|
701
|
+
"ahash",
|
702
|
+
]
|
714
703
|
|
715
704
|
[[package]]
|
716
705
|
name = "hashbrown"
|
717
|
-
version = "0.
|
706
|
+
version = "0.14.0"
|
718
707
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
719
|
-
checksum = "
|
708
|
+
checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
|
720
709
|
dependencies = [
|
721
710
|
"ahash",
|
711
|
+
"allocator-api2",
|
722
712
|
"rayon",
|
723
713
|
]
|
724
714
|
|
@@ -730,12 +720,9 @@ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
730
720
|
|
731
721
|
[[package]]
|
732
722
|
name = "hermit-abi"
|
733
|
-
version = "0.2
|
723
|
+
version = "0.3.2"
|
734
724
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
735
|
-
checksum = "
|
736
|
-
dependencies = [
|
737
|
-
"libc",
|
738
|
-
]
|
725
|
+
checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
|
739
726
|
|
740
727
|
[[package]]
|
741
728
|
name = "hex"
|
@@ -749,14 +736,14 @@ version = "0.5.5"
|
|
749
736
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
750
737
|
checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
|
751
738
|
dependencies = [
|
752
|
-
"windows-sys
|
739
|
+
"windows-sys",
|
753
740
|
]
|
754
741
|
|
755
742
|
[[package]]
|
756
743
|
name = "iana-time-zone"
|
757
|
-
version = "0.1.
|
744
|
+
version = "0.1.57"
|
758
745
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
759
|
-
checksum = "
|
746
|
+
checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613"
|
760
747
|
dependencies = [
|
761
748
|
"android_system_properties",
|
762
749
|
"core-foundation-sys",
|
@@ -768,22 +755,21 @@ dependencies = [
|
|
768
755
|
|
769
756
|
[[package]]
|
770
757
|
name = "iana-time-zone-haiku"
|
771
|
-
version = "0.1.
|
758
|
+
version = "0.1.2"
|
772
759
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
773
|
-
checksum = "
|
760
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
774
761
|
dependencies = [
|
775
|
-
"
|
776
|
-
"cxx-build",
|
762
|
+
"cc",
|
777
763
|
]
|
778
764
|
|
779
765
|
[[package]]
|
780
766
|
name = "indexmap"
|
781
|
-
version = "
|
767
|
+
version = "2.0.0"
|
782
768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
783
|
-
checksum = "
|
769
|
+
checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d"
|
784
770
|
dependencies = [
|
785
|
-
"
|
786
|
-
"hashbrown 0.
|
771
|
+
"equivalent",
|
772
|
+
"hashbrown 0.14.0",
|
787
773
|
"serde",
|
788
774
|
]
|
789
775
|
|
@@ -798,9 +784,9 @@ dependencies = [
|
|
798
784
|
|
799
785
|
[[package]]
|
800
786
|
name = "itoa"
|
801
|
-
version = "1.0.
|
787
|
+
version = "1.0.8"
|
802
788
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
803
|
-
checksum = "
|
789
|
+
checksum = "62b02a5381cc465bd3041d84623d0fa3b66738b52b8e2fc3bab8ad63ab032f4a"
|
804
790
|
|
805
791
|
[[package]]
|
806
792
|
name = "itoap"
|
@@ -839,22 +825,13 @@ dependencies = [
|
|
839
825
|
|
840
826
|
[[package]]
|
841
827
|
name = "js-sys"
|
842
|
-
version = "0.3.
|
828
|
+
version = "0.3.64"
|
843
829
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
844
|
-
checksum = "
|
830
|
+
checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
|
845
831
|
dependencies = [
|
846
832
|
"wasm-bindgen",
|
847
833
|
]
|
848
834
|
|
849
|
-
[[package]]
|
850
|
-
name = "json-deserializer"
|
851
|
-
version = "0.4.4"
|
852
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
853
|
-
checksum = "5f63b421e16eb4100beb677af56f0b4f3a4f08bab74ef2af079ce5bb92c2683f"
|
854
|
-
dependencies = [
|
855
|
-
"indexmap",
|
856
|
-
]
|
857
|
-
|
858
835
|
[[package]]
|
859
836
|
name = "jsonpath_lib"
|
860
837
|
version = "0.3.0"
|
@@ -952,15 +929,15 @@ dependencies = [
|
|
952
929
|
|
953
930
|
[[package]]
|
954
931
|
name = "libc"
|
955
|
-
version = "0.2.
|
932
|
+
version = "0.2.147"
|
956
933
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
957
|
-
checksum = "
|
934
|
+
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
|
958
935
|
|
959
936
|
[[package]]
|
960
937
|
name = "libflate"
|
961
|
-
version = "1.
|
938
|
+
version = "1.4.0"
|
962
939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
963
|
-
checksum = "
|
940
|
+
checksum = "5ff4ae71b685bbad2f2f391fe74f6b7659a34871c08b210fdc039e43bee07d18"
|
964
941
|
dependencies = [
|
965
942
|
"adler32",
|
966
943
|
"crc32fast",
|
@@ -988,9 +965,9 @@ dependencies = [
|
|
988
965
|
|
989
966
|
[[package]]
|
990
967
|
name = "libm"
|
991
|
-
version = "0.2.
|
968
|
+
version = "0.2.7"
|
992
969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
993
|
-
checksum = "
|
970
|
+
checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4"
|
994
971
|
|
995
972
|
[[package]]
|
996
973
|
name = "libmimalloc-sys"
|
@@ -1002,20 +979,11 @@ dependencies = [
|
|
1002
979
|
"libc",
|
1003
980
|
]
|
1004
981
|
|
1005
|
-
[[package]]
|
1006
|
-
name = "link-cplusplus"
|
1007
|
-
version = "1.0.8"
|
1008
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1009
|
-
checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5"
|
1010
|
-
dependencies = [
|
1011
|
-
"cc",
|
1012
|
-
]
|
1013
|
-
|
1014
982
|
[[package]]
|
1015
983
|
name = "lock_api"
|
1016
|
-
version = "0.4.
|
984
|
+
version = "0.4.10"
|
1017
985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1018
|
-
checksum = "
|
986
|
+
checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
|
1019
987
|
dependencies = [
|
1020
988
|
"autocfg",
|
1021
989
|
"scopeguard",
|
@@ -1023,12 +991,9 @@ dependencies = [
|
|
1023
991
|
|
1024
992
|
[[package]]
|
1025
993
|
name = "log"
|
1026
|
-
version = "0.4.
|
994
|
+
version = "0.4.19"
|
1027
995
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1028
|
-
checksum = "
|
1029
|
-
dependencies = [
|
1030
|
-
"cfg-if",
|
1031
|
-
]
|
996
|
+
checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
|
1032
997
|
|
1033
998
|
[[package]]
|
1034
999
|
name = "lz4"
|
@@ -1052,9 +1017,9 @@ dependencies = [
|
|
1052
1017
|
|
1053
1018
|
[[package]]
|
1054
1019
|
name = "magnus"
|
1055
|
-
version = "0.5.
|
1020
|
+
version = "0.5.4"
|
1056
1021
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1057
|
-
checksum = "
|
1022
|
+
checksum = "b560c3c0284c9ec7c30b7ba823896387423225add3f107213a794b73853c7505"
|
1058
1023
|
dependencies = [
|
1059
1024
|
"magnus-macros",
|
1060
1025
|
"rb-sys",
|
@@ -1089,9 +1054,9 @@ dependencies = [
|
|
1089
1054
|
|
1090
1055
|
[[package]]
|
1091
1056
|
name = "memoffset"
|
1092
|
-
version = "0.
|
1057
|
+
version = "0.9.0"
|
1093
1058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1094
|
-
checksum = "
|
1059
|
+
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
|
1095
1060
|
dependencies = [
|
1096
1061
|
"autocfg",
|
1097
1062
|
]
|
@@ -1122,21 +1087,21 @@ dependencies = [
|
|
1122
1087
|
|
1123
1088
|
[[package]]
|
1124
1089
|
name = "mio"
|
1125
|
-
version = "0.8.
|
1090
|
+
version = "0.8.8"
|
1126
1091
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1127
|
-
checksum = "
|
1092
|
+
checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
|
1128
1093
|
dependencies = [
|
1129
1094
|
"libc",
|
1130
1095
|
"log",
|
1131
1096
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
1132
|
-
"windows-sys
|
1097
|
+
"windows-sys",
|
1133
1098
|
]
|
1134
1099
|
|
1135
1100
|
[[package]]
|
1136
1101
|
name = "multiversion"
|
1137
|
-
version = "0.7.
|
1102
|
+
version = "0.7.2"
|
1138
1103
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1139
|
-
checksum = "
|
1104
|
+
checksum = "8cda45dade5144c2c929bf2ed6c24bebbba784e9198df049ec87d722b9462bd1"
|
1140
1105
|
dependencies = [
|
1141
1106
|
"multiversion-macros",
|
1142
1107
|
"target-features",
|
@@ -1144,9 +1109,9 @@ dependencies = [
|
|
1144
1109
|
|
1145
1110
|
[[package]]
|
1146
1111
|
name = "multiversion-macros"
|
1147
|
-
version = "0.7.
|
1112
|
+
version = "0.7.2"
|
1148
1113
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1149
|
-
checksum = "
|
1114
|
+
checksum = "04bffdccbd4798b61dce08c97ce8c66a68976f95541aaf284a6e90c1d1c306e1"
|
1150
1115
|
dependencies = [
|
1151
1116
|
"proc-macro2",
|
1152
1117
|
"quote",
|
@@ -1204,19 +1169,28 @@ dependencies = [
|
|
1204
1169
|
|
1205
1170
|
[[package]]
|
1206
1171
|
name = "num_cpus"
|
1207
|
-
version = "1.
|
1172
|
+
version = "1.16.0"
|
1208
1173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1209
|
-
checksum = "
|
1174
|
+
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
1210
1175
|
dependencies = [
|
1211
1176
|
"hermit-abi",
|
1212
1177
|
"libc",
|
1213
1178
|
]
|
1214
1179
|
|
1180
|
+
[[package]]
|
1181
|
+
name = "object"
|
1182
|
+
version = "0.31.1"
|
1183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1184
|
+
checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1"
|
1185
|
+
dependencies = [
|
1186
|
+
"memchr",
|
1187
|
+
]
|
1188
|
+
|
1215
1189
|
[[package]]
|
1216
1190
|
name = "once_cell"
|
1217
|
-
version = "1.
|
1191
|
+
version = "1.18.0"
|
1218
1192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1219
|
-
checksum = "
|
1193
|
+
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
|
1220
1194
|
|
1221
1195
|
[[package]]
|
1222
1196
|
name = "parking_lot"
|
@@ -1236,7 +1210,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1236
1210
|
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
1237
1211
|
dependencies = [
|
1238
1212
|
"lock_api",
|
1239
|
-
"parking_lot_core 0.9.
|
1213
|
+
"parking_lot_core 0.9.8",
|
1240
1214
|
]
|
1241
1215
|
|
1242
1216
|
[[package]]
|
@@ -1248,22 +1222,22 @@ dependencies = [
|
|
1248
1222
|
"cfg-if",
|
1249
1223
|
"instant",
|
1250
1224
|
"libc",
|
1251
|
-
"redox_syscall",
|
1225
|
+
"redox_syscall 0.2.16",
|
1252
1226
|
"smallvec",
|
1253
1227
|
"winapi",
|
1254
1228
|
]
|
1255
1229
|
|
1256
1230
|
[[package]]
|
1257
1231
|
name = "parking_lot_core"
|
1258
|
-
version = "0.9.
|
1232
|
+
version = "0.9.8"
|
1259
1233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1260
|
-
checksum = "
|
1234
|
+
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
|
1261
1235
|
dependencies = [
|
1262
1236
|
"cfg-if",
|
1263
1237
|
"libc",
|
1264
|
-
"redox_syscall",
|
1238
|
+
"redox_syscall 0.3.5",
|
1265
1239
|
"smallvec",
|
1266
|
-
"windows-
|
1240
|
+
"windows-targets",
|
1267
1241
|
]
|
1268
1242
|
|
1269
1243
|
[[package]]
|
@@ -1311,18 +1285,18 @@ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
|
1311
1285
|
|
1312
1286
|
[[package]]
|
1313
1287
|
name = "phf"
|
1314
|
-
version = "0.11.
|
1288
|
+
version = "0.11.2"
|
1315
1289
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1316
|
-
checksum = "
|
1290
|
+
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
|
1317
1291
|
dependencies = [
|
1318
1292
|
"phf_shared",
|
1319
1293
|
]
|
1320
1294
|
|
1321
1295
|
[[package]]
|
1322
1296
|
name = "phf_codegen"
|
1323
|
-
version = "0.11.
|
1297
|
+
version = "0.11.2"
|
1324
1298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1325
|
-
checksum = "
|
1299
|
+
checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
|
1326
1300
|
dependencies = [
|
1327
1301
|
"phf_generator",
|
1328
1302
|
"phf_shared",
|
@@ -1330,9 +1304,9 @@ dependencies = [
|
|
1330
1304
|
|
1331
1305
|
[[package]]
|
1332
1306
|
name = "phf_generator"
|
1333
|
-
version = "0.11.
|
1307
|
+
version = "0.11.2"
|
1334
1308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1335
|
-
checksum = "
|
1309
|
+
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
|
1336
1310
|
dependencies = [
|
1337
1311
|
"phf_shared",
|
1338
1312
|
"rand",
|
@@ -1340,18 +1314,18 @@ dependencies = [
|
|
1340
1314
|
|
1341
1315
|
[[package]]
|
1342
1316
|
name = "phf_shared"
|
1343
|
-
version = "0.11.
|
1317
|
+
version = "0.11.2"
|
1344
1318
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1345
|
-
checksum = "
|
1319
|
+
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
|
1346
1320
|
dependencies = [
|
1347
1321
|
"siphasher",
|
1348
1322
|
]
|
1349
1323
|
|
1350
1324
|
[[package]]
|
1351
1325
|
name = "pin-project-lite"
|
1352
|
-
version = "0.2.
|
1326
|
+
version = "0.2.10"
|
1353
1327
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1354
|
-
checksum = "
|
1328
|
+
checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57"
|
1355
1329
|
|
1356
1330
|
[[package]]
|
1357
1331
|
name = "pin-utils"
|
@@ -1376,13 +1350,14 @@ dependencies = [
|
|
1376
1350
|
|
1377
1351
|
[[package]]
|
1378
1352
|
name = "polars"
|
1379
|
-
version = "0.
|
1353
|
+
version = "0.6.0"
|
1380
1354
|
dependencies = [
|
1381
1355
|
"ahash",
|
1356
|
+
"chrono",
|
1382
1357
|
"jemallocator",
|
1383
1358
|
"magnus",
|
1384
1359
|
"mimalloc",
|
1385
|
-
"polars 0.
|
1360
|
+
"polars 0.31.1",
|
1386
1361
|
"polars-core",
|
1387
1362
|
"serde_json",
|
1388
1363
|
"smartstring",
|
@@ -1390,9 +1365,9 @@ dependencies = [
|
|
1390
1365
|
|
1391
1366
|
[[package]]
|
1392
1367
|
name = "polars"
|
1393
|
-
version = "0.
|
1368
|
+
version = "0.31.1"
|
1394
1369
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1395
|
-
checksum = "
|
1370
|
+
checksum = "7e072ca6b1c26e686b18d86b607a17b1f8baa5fb0a713a1fefe033f0aa527bfd"
|
1396
1371
|
dependencies = [
|
1397
1372
|
"getrandom",
|
1398
1373
|
"polars-core",
|
@@ -1406,14 +1381,16 @@ dependencies = [
|
|
1406
1381
|
|
1407
1382
|
[[package]]
|
1408
1383
|
name = "polars-arrow"
|
1409
|
-
version = "0.
|
1384
|
+
version = "0.31.1"
|
1410
1385
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1411
|
-
checksum = "
|
1386
|
+
checksum = "d52f7b885c589dd7184c881be3dfb149feb1f405083fdd2fd9194e8f96104b76"
|
1412
1387
|
dependencies = [
|
1413
1388
|
"arrow2",
|
1389
|
+
"atoi",
|
1414
1390
|
"chrono",
|
1415
1391
|
"chrono-tz",
|
1416
|
-
"
|
1392
|
+
"ethnum",
|
1393
|
+
"hashbrown 0.14.0",
|
1417
1394
|
"multiversion",
|
1418
1395
|
"num-traits",
|
1419
1396
|
"polars-error",
|
@@ -1423,9 +1400,9 @@ dependencies = [
|
|
1423
1400
|
|
1424
1401
|
[[package]]
|
1425
1402
|
name = "polars-core"
|
1426
|
-
version = "0.
|
1403
|
+
version = "0.31.1"
|
1427
1404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1428
|
-
checksum = "
|
1405
|
+
checksum = "9f98d6b1ef5362f76063b4984634d371de72f4834f50892944d48fd7b7d5ae45"
|
1429
1406
|
dependencies = [
|
1430
1407
|
"ahash",
|
1431
1408
|
"arrow2",
|
@@ -1434,7 +1411,7 @@ dependencies = [
|
|
1434
1411
|
"chrono-tz",
|
1435
1412
|
"comfy-table",
|
1436
1413
|
"either",
|
1437
|
-
"hashbrown 0.
|
1414
|
+
"hashbrown 0.14.0",
|
1438
1415
|
"indexmap",
|
1439
1416
|
"itoap",
|
1440
1417
|
"num-traits",
|
@@ -1457,9 +1434,9 @@ dependencies = [
|
|
1457
1434
|
|
1458
1435
|
[[package]]
|
1459
1436
|
name = "polars-error"
|
1460
|
-
version = "0.
|
1437
|
+
version = "0.31.1"
|
1461
1438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1462
|
-
checksum = "
|
1439
|
+
checksum = "b1557cd24b1865194bac6979765cfec5e97ecd8af5dcb7858a17b31d1e7fbf70"
|
1463
1440
|
dependencies = [
|
1464
1441
|
"arrow2",
|
1465
1442
|
"regex",
|
@@ -1468,9 +1445,9 @@ dependencies = [
|
|
1468
1445
|
|
1469
1446
|
[[package]]
|
1470
1447
|
name = "polars-io"
|
1471
|
-
version = "0.
|
1448
|
+
version = "0.31.1"
|
1472
1449
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1473
|
-
checksum = "
|
1450
|
+
checksum = "c44b1c6d7b2c04e459effb93bac050f90762687cb752c534967476c452478a65"
|
1474
1451
|
dependencies = [
|
1475
1452
|
"ahash",
|
1476
1453
|
"arrow2",
|
@@ -1490,6 +1467,7 @@ dependencies = [
|
|
1490
1467
|
"polars-arrow",
|
1491
1468
|
"polars-core",
|
1492
1469
|
"polars-error",
|
1470
|
+
"polars-json",
|
1493
1471
|
"polars-time",
|
1494
1472
|
"polars-utils",
|
1495
1473
|
"rayon",
|
@@ -1501,11 +1479,29 @@ dependencies = [
|
|
1501
1479
|
"tokio",
|
1502
1480
|
]
|
1503
1481
|
|
1482
|
+
[[package]]
|
1483
|
+
name = "polars-json"
|
1484
|
+
version = "0.31.1"
|
1485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1486
|
+
checksum = "7eef6b83136b3884ce356ed74b58eeedc81d81b981e901fbd15f16c96a5ff315"
|
1487
|
+
dependencies = [
|
1488
|
+
"ahash",
|
1489
|
+
"arrow2",
|
1490
|
+
"fallible-streaming-iterator",
|
1491
|
+
"hashbrown 0.14.0",
|
1492
|
+
"indexmap",
|
1493
|
+
"num-traits",
|
1494
|
+
"polars-arrow",
|
1495
|
+
"polars-error",
|
1496
|
+
"polars-utils",
|
1497
|
+
"simd-json",
|
1498
|
+
]
|
1499
|
+
|
1504
1500
|
[[package]]
|
1505
1501
|
name = "polars-lazy"
|
1506
|
-
version = "0.
|
1502
|
+
version = "0.31.1"
|
1507
1503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1508
|
-
checksum = "
|
1504
|
+
checksum = "494f1e75a035978339b06bdcc4d60523ec347243ac65f11794a7eeaba0507d4e"
|
1509
1505
|
dependencies = [
|
1510
1506
|
"ahash",
|
1511
1507
|
"bitflags",
|
@@ -1514,6 +1510,7 @@ dependencies = [
|
|
1514
1510
|
"polars-arrow",
|
1515
1511
|
"polars-core",
|
1516
1512
|
"polars-io",
|
1513
|
+
"polars-json",
|
1517
1514
|
"polars-ops",
|
1518
1515
|
"polars-pipe",
|
1519
1516
|
"polars-plan",
|
@@ -1525,19 +1522,21 @@ dependencies = [
|
|
1525
1522
|
|
1526
1523
|
[[package]]
|
1527
1524
|
name = "polars-ops"
|
1528
|
-
version = "0.
|
1525
|
+
version = "0.31.1"
|
1529
1526
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1530
|
-
checksum = "
|
1527
|
+
checksum = "06dd95bc84a7bf17886670420097c5fb8b88906ebb16653153ce5f0cf71ffd6e"
|
1531
1528
|
dependencies = [
|
1532
1529
|
"argminmax",
|
1533
1530
|
"arrow2",
|
1534
1531
|
"base64",
|
1535
1532
|
"either",
|
1536
1533
|
"hex",
|
1534
|
+
"indexmap",
|
1537
1535
|
"jsonpath_lib",
|
1538
1536
|
"memchr",
|
1539
1537
|
"polars-arrow",
|
1540
1538
|
"polars-core",
|
1539
|
+
"polars-json",
|
1541
1540
|
"polars-utils",
|
1542
1541
|
"serde",
|
1543
1542
|
"serde_json",
|
@@ -1546,14 +1545,14 @@ dependencies = [
|
|
1546
1545
|
|
1547
1546
|
[[package]]
|
1548
1547
|
name = "polars-pipe"
|
1549
|
-
version = "0.
|
1548
|
+
version = "0.31.1"
|
1550
1549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1551
|
-
checksum = "
|
1550
|
+
checksum = "ff34c8f09c064ab26bc9283c13b6a1571083c30c4c3812301cd84cdd3982a2e0"
|
1552
1551
|
dependencies = [
|
1553
1552
|
"crossbeam-channel",
|
1554
1553
|
"crossbeam-queue",
|
1555
1554
|
"enum_dispatch",
|
1556
|
-
"hashbrown 0.
|
1555
|
+
"hashbrown 0.14.0",
|
1557
1556
|
"num-traits",
|
1558
1557
|
"polars-arrow",
|
1559
1558
|
"polars-core",
|
@@ -1568,9 +1567,9 @@ dependencies = [
|
|
1568
1567
|
|
1569
1568
|
[[package]]
|
1570
1569
|
name = "polars-plan"
|
1571
|
-
version = "0.
|
1570
|
+
version = "0.31.1"
|
1572
1571
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1573
|
-
checksum = "
|
1572
|
+
checksum = "58f0837dac2b7064e04a2a37a2bff20f75a455d23b29f2dd82f0345de62d3bfb"
|
1574
1573
|
dependencies = [
|
1575
1574
|
"ahash",
|
1576
1575
|
"arrow2",
|
@@ -1587,13 +1586,14 @@ dependencies = [
|
|
1587
1586
|
"regex",
|
1588
1587
|
"serde",
|
1589
1588
|
"smartstring",
|
1589
|
+
"strum_macros 0.25.1",
|
1590
1590
|
]
|
1591
1591
|
|
1592
1592
|
[[package]]
|
1593
1593
|
name = "polars-row"
|
1594
|
-
version = "0.
|
1594
|
+
version = "0.31.1"
|
1595
1595
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1596
|
-
checksum = "
|
1596
|
+
checksum = "46235f6f67005fff3fd8095b994e86f846b5affd6fc6f36f41099a4dbc27d714"
|
1597
1597
|
dependencies = [
|
1598
1598
|
"arrow2",
|
1599
1599
|
"polars-error",
|
@@ -1602,9 +1602,9 @@ dependencies = [
|
|
1602
1602
|
|
1603
1603
|
[[package]]
|
1604
1604
|
name = "polars-sql"
|
1605
|
-
version = "0.
|
1605
|
+
version = "0.31.1"
|
1606
1606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1607
|
-
checksum = "
|
1607
|
+
checksum = "f7f716671c8e8ed1db6ebdbfcc7ca0c98a599e92c340747c24072b86e8839bed"
|
1608
1608
|
dependencies = [
|
1609
1609
|
"polars-arrow",
|
1610
1610
|
"polars-core",
|
@@ -1617,9 +1617,9 @@ dependencies = [
|
|
1617
1617
|
|
1618
1618
|
[[package]]
|
1619
1619
|
name = "polars-time"
|
1620
|
-
version = "0.
|
1620
|
+
version = "0.31.1"
|
1621
1621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1622
|
-
checksum = "
|
1622
|
+
checksum = "02488938edfbff6efed56a4f90ebd6574ea16a7d32b6dc678134624031f7f3e9"
|
1623
1623
|
dependencies = [
|
1624
1624
|
"arrow2",
|
1625
1625
|
"atoi",
|
@@ -1638,10 +1638,13 @@ dependencies = [
|
|
1638
1638
|
|
1639
1639
|
[[package]]
|
1640
1640
|
name = "polars-utils"
|
1641
|
-
version = "0.
|
1641
|
+
version = "0.31.1"
|
1642
1642
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1643
|
-
checksum = "
|
1643
|
+
checksum = "69f04f6c127b8d20292b4d49b5fb0e47c652875b316274f74f52e77d50f6a459"
|
1644
1644
|
dependencies = [
|
1645
|
+
"ahash",
|
1646
|
+
"hashbrown 0.14.0",
|
1647
|
+
"num-traits",
|
1645
1648
|
"once_cell",
|
1646
1649
|
"rayon",
|
1647
1650
|
"smartstring",
|
@@ -1656,18 +1659,18 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
1656
1659
|
|
1657
1660
|
[[package]]
|
1658
1661
|
name = "proc-macro2"
|
1659
|
-
version = "1.0.
|
1662
|
+
version = "1.0.64"
|
1660
1663
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1661
|
-
checksum = "
|
1664
|
+
checksum = "78803b62cbf1f46fde80d7c0e803111524b9877184cfe7c3033659490ac7a7da"
|
1662
1665
|
dependencies = [
|
1663
1666
|
"unicode-ident",
|
1664
1667
|
]
|
1665
1668
|
|
1666
1669
|
[[package]]
|
1667
1670
|
name = "quote"
|
1668
|
-
version = "1.0.
|
1671
|
+
version = "1.0.29"
|
1669
1672
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1670
|
-
checksum = "
|
1673
|
+
checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105"
|
1671
1674
|
dependencies = [
|
1672
1675
|
"proc-macro2",
|
1673
1676
|
]
|
@@ -1736,18 +1739,18 @@ dependencies = [
|
|
1736
1739
|
|
1737
1740
|
[[package]]
|
1738
1741
|
name = "rb-sys"
|
1739
|
-
version = "0.9.
|
1742
|
+
version = "0.9.79"
|
1740
1743
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1741
|
-
checksum = "
|
1744
|
+
checksum = "939fb78db3e4f26665c1d4c7b91ca66d3578335a19aba552d4a6445811d07072"
|
1742
1745
|
dependencies = [
|
1743
1746
|
"rb-sys-build",
|
1744
1747
|
]
|
1745
1748
|
|
1746
1749
|
[[package]]
|
1747
1750
|
name = "rb-sys-build"
|
1748
|
-
version = "0.9.
|
1751
|
+
version = "0.9.79"
|
1749
1752
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1750
|
-
checksum = "
|
1753
|
+
checksum = "335a95eb0420d52fa94ef12019df3c2c250c6b19cbb3c60bd05cb7e9c362072c"
|
1751
1754
|
dependencies = [
|
1752
1755
|
"bindgen",
|
1753
1756
|
"lazy_static",
|
@@ -1773,15 +1776,36 @@ dependencies = [
|
|
1773
1776
|
"bitflags",
|
1774
1777
|
]
|
1775
1778
|
|
1779
|
+
[[package]]
|
1780
|
+
name = "redox_syscall"
|
1781
|
+
version = "0.3.5"
|
1782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1783
|
+
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
|
1784
|
+
dependencies = [
|
1785
|
+
"bitflags",
|
1786
|
+
]
|
1787
|
+
|
1776
1788
|
[[package]]
|
1777
1789
|
name = "regex"
|
1778
|
-
version = "1.
|
1790
|
+
version = "1.9.1"
|
1779
1791
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1780
|
-
checksum = "
|
1792
|
+
checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575"
|
1781
1793
|
dependencies = [
|
1782
1794
|
"aho-corasick",
|
1783
1795
|
"memchr",
|
1784
|
-
"regex-
|
1796
|
+
"regex-automata",
|
1797
|
+
"regex-syntax 0.7.4",
|
1798
|
+
]
|
1799
|
+
|
1800
|
+
[[package]]
|
1801
|
+
name = "regex-automata"
|
1802
|
+
version = "0.3.3"
|
1803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1804
|
+
checksum = "39354c10dd07468c2e73926b23bb9c2caca74c5501e38a35da70406f1d923310"
|
1805
|
+
dependencies = [
|
1806
|
+
"aho-corasick",
|
1807
|
+
"memchr",
|
1808
|
+
"regex-syntax 0.7.4",
|
1785
1809
|
]
|
1786
1810
|
|
1787
1811
|
[[package]]
|
@@ -1792,9 +1816,9 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
1792
1816
|
|
1793
1817
|
[[package]]
|
1794
1818
|
name = "regex-syntax"
|
1795
|
-
version = "0.7.
|
1819
|
+
version = "0.7.4"
|
1796
1820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1797
|
-
checksum = "
|
1821
|
+
checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2"
|
1798
1822
|
|
1799
1823
|
[[package]]
|
1800
1824
|
name = "rle-decode-fast"
|
@@ -1802,6 +1826,12 @@ version = "1.0.3"
|
|
1802
1826
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1803
1827
|
checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422"
|
1804
1828
|
|
1829
|
+
[[package]]
|
1830
|
+
name = "rustc-demangle"
|
1831
|
+
version = "0.1.23"
|
1832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1833
|
+
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
|
1834
|
+
|
1805
1835
|
[[package]]
|
1806
1836
|
name = "rustc-hash"
|
1807
1837
|
version = "1.1.0"
|
@@ -1819,15 +1849,15 @@ dependencies = [
|
|
1819
1849
|
|
1820
1850
|
[[package]]
|
1821
1851
|
name = "rustversion"
|
1822
|
-
version = "1.0.
|
1852
|
+
version = "1.0.13"
|
1823
1853
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1824
|
-
checksum = "
|
1854
|
+
checksum = "dc31bd9b61a32c31f9650d18add92aa83a49ba979c143eefd27fe7177b05bd5f"
|
1825
1855
|
|
1826
1856
|
[[package]]
|
1827
1857
|
name = "ryu"
|
1828
|
-
version = "1.0.
|
1858
|
+
version = "1.0.14"
|
1829
1859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1830
|
-
checksum = "
|
1860
|
+
checksum = "fe232bdf6be8c8de797b22184ee71118d63780ea42ac85b61d1baa6d3b782ae9"
|
1831
1861
|
|
1832
1862
|
[[package]]
|
1833
1863
|
name = "scopeguard"
|
@@ -1835,12 +1865,6 @@ version = "1.1.0"
|
|
1835
1865
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1836
1866
|
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
1837
1867
|
|
1838
|
-
[[package]]
|
1839
|
-
name = "scratch"
|
1840
|
-
version = "1.0.5"
|
1841
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1842
|
-
checksum = "1792db035ce95be60c3f8853017b3999209281c24e2ba5bc8e59bf97a0c590c1"
|
1843
|
-
|
1844
1868
|
[[package]]
|
1845
1869
|
name = "semver"
|
1846
1870
|
version = "1.0.17"
|
@@ -1849,35 +1873,35 @@ checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
|
|
1849
1873
|
|
1850
1874
|
[[package]]
|
1851
1875
|
name = "seq-macro"
|
1852
|
-
version = "0.3.
|
1876
|
+
version = "0.3.4"
|
1853
1877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1854
|
-
checksum = "
|
1878
|
+
checksum = "63134939175b3131fe4d2c131b103fd42f25ccca89423d43b5e4f267920ccf03"
|
1855
1879
|
|
1856
1880
|
[[package]]
|
1857
1881
|
name = "serde"
|
1858
|
-
version = "1.0.
|
1882
|
+
version = "1.0.171"
|
1859
1883
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1860
|
-
checksum = "
|
1884
|
+
checksum = "30e27d1e4fd7659406c492fd6cfaf2066ba8773de45ca75e855590f856dc34a9"
|
1861
1885
|
dependencies = [
|
1862
1886
|
"serde_derive",
|
1863
1887
|
]
|
1864
1888
|
|
1865
1889
|
[[package]]
|
1866
1890
|
name = "serde_derive"
|
1867
|
-
version = "1.0.
|
1891
|
+
version = "1.0.171"
|
1868
1892
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1869
|
-
checksum = "
|
1893
|
+
checksum = "389894603bd18c46fa56231694f8d827779c0951a667087194cf9de94ed24682"
|
1870
1894
|
dependencies = [
|
1871
1895
|
"proc-macro2",
|
1872
1896
|
"quote",
|
1873
|
-
"syn 2.0.
|
1897
|
+
"syn 2.0.26",
|
1874
1898
|
]
|
1875
1899
|
|
1876
1900
|
[[package]]
|
1877
1901
|
name = "serde_json"
|
1878
|
-
version = "1.0.
|
1902
|
+
version = "1.0.102"
|
1879
1903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1880
|
-
checksum = "
|
1904
|
+
checksum = "b5062a995d481b2308b6064e9af76011f2921c35f97b0468811ed9f6cd91dfed"
|
1881
1905
|
dependencies = [
|
1882
1906
|
"indexmap",
|
1883
1907
|
"itoa",
|
@@ -1899,9 +1923,9 @@ checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
|
|
1899
1923
|
|
1900
1924
|
[[package]]
|
1901
1925
|
name = "signal-hook"
|
1902
|
-
version = "0.3.
|
1926
|
+
version = "0.3.16"
|
1903
1927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1904
|
-
checksum = "
|
1928
|
+
checksum = "b824b6e687aff278cdbf3b36f07aa52d4bd4099699324d5da86a2ebce3aa00b3"
|
1905
1929
|
dependencies = [
|
1906
1930
|
"libc",
|
1907
1931
|
"signal-hook-registry",
|
@@ -1929,12 +1953,14 @@ dependencies = [
|
|
1929
1953
|
|
1930
1954
|
[[package]]
|
1931
1955
|
name = "simd-json"
|
1932
|
-
version = "0.
|
1956
|
+
version = "0.10.3"
|
1933
1957
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1934
|
-
checksum = "
|
1958
|
+
checksum = "a3d0815e7ff0f1f05e09d4b029f86d8a330f0ab15b35b28736f3758325f59e14"
|
1935
1959
|
dependencies = [
|
1960
|
+
"ahash",
|
1936
1961
|
"halfbrown",
|
1937
1962
|
"lexical-core",
|
1963
|
+
"once_cell",
|
1938
1964
|
"serde",
|
1939
1965
|
"serde_json",
|
1940
1966
|
"simdutf8",
|
@@ -1964,9 +1990,9 @@ dependencies = [
|
|
1964
1990
|
|
1965
1991
|
[[package]]
|
1966
1992
|
name = "smallvec"
|
1967
|
-
version = "1.
|
1993
|
+
version = "1.11.0"
|
1968
1994
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1969
|
-
checksum = "
|
1995
|
+
checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9"
|
1970
1996
|
|
1971
1997
|
[[package]]
|
1972
1998
|
name = "smartstring"
|
@@ -1998,9 +2024,9 @@ dependencies = [
|
|
1998
2024
|
|
1999
2025
|
[[package]]
|
2000
2026
|
name = "sqlparser"
|
2001
|
-
version = "0.
|
2027
|
+
version = "0.34.0"
|
2002
2028
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2003
|
-
checksum = "
|
2029
|
+
checksum = "37d3706eefb17039056234df6b566b0014f303f867f2656108334a55b8096f59"
|
2004
2030
|
dependencies = [
|
2005
2031
|
"log",
|
2006
2032
|
]
|
@@ -2051,6 +2077,19 @@ dependencies = [
|
|
2051
2077
|
"syn 1.0.109",
|
2052
2078
|
]
|
2053
2079
|
|
2080
|
+
[[package]]
|
2081
|
+
name = "strum_macros"
|
2082
|
+
version = "0.25.1"
|
2083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2084
|
+
checksum = "6069ca09d878a33f883cc06aaa9718ede171841d3832450354410b718b097232"
|
2085
|
+
dependencies = [
|
2086
|
+
"heck",
|
2087
|
+
"proc-macro2",
|
2088
|
+
"quote",
|
2089
|
+
"rustversion",
|
2090
|
+
"syn 2.0.26",
|
2091
|
+
]
|
2092
|
+
|
2054
2093
|
[[package]]
|
2055
2094
|
name = "syn"
|
2056
2095
|
version = "1.0.109"
|
@@ -2064,9 +2103,9 @@ dependencies = [
|
|
2064
2103
|
|
2065
2104
|
[[package]]
|
2066
2105
|
name = "syn"
|
2067
|
-
version = "2.0.
|
2106
|
+
version = "2.0.26"
|
2068
2107
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2069
|
-
checksum = "
|
2108
|
+
checksum = "45c3457aacde3c65315de5031ec191ce46604304d2446e803d71ade03308d970"
|
2070
2109
|
dependencies = [
|
2071
2110
|
"proc-macro2",
|
2072
2111
|
"quote",
|
@@ -2075,9 +2114,9 @@ dependencies = [
|
|
2075
2114
|
|
2076
2115
|
[[package]]
|
2077
2116
|
name = "sysinfo"
|
2078
|
-
version = "0.
|
2117
|
+
version = "0.29.4"
|
2079
2118
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2080
|
-
checksum = "
|
2119
|
+
checksum = "751e810399bba86e9326f5762b7f32ac5a085542df78da6a78d94e07d14d7c11"
|
2081
2120
|
dependencies = [
|
2082
2121
|
"cfg-if",
|
2083
2122
|
"core-foundation-sys",
|
@@ -2089,37 +2128,28 @@ dependencies = [
|
|
2089
2128
|
|
2090
2129
|
[[package]]
|
2091
2130
|
name = "target-features"
|
2092
|
-
version = "0.1.
|
2093
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2094
|
-
checksum = "24840de800c1707d75c800893dbd727a5e1501ce921944e602f0698167491e36"
|
2095
|
-
|
2096
|
-
[[package]]
|
2097
|
-
name = "termcolor"
|
2098
|
-
version = "1.2.0"
|
2131
|
+
version = "0.1.4"
|
2099
2132
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2100
|
-
checksum = "
|
2101
|
-
dependencies = [
|
2102
|
-
"winapi-util",
|
2103
|
-
]
|
2133
|
+
checksum = "06f6b473c37f9add4cf1df5b4d66a8ef58ab6c895f1a3b3f949cf3e21230140e"
|
2104
2134
|
|
2105
2135
|
[[package]]
|
2106
2136
|
name = "thiserror"
|
2107
|
-
version = "1.0.
|
2137
|
+
version = "1.0.43"
|
2108
2138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2109
|
-
checksum = "
|
2139
|
+
checksum = "a35fc5b8971143ca348fa6df4f024d4d55264f3468c71ad1c2f365b0a4d58c42"
|
2110
2140
|
dependencies = [
|
2111
2141
|
"thiserror-impl",
|
2112
2142
|
]
|
2113
2143
|
|
2114
2144
|
[[package]]
|
2115
2145
|
name = "thiserror-impl"
|
2116
|
-
version = "1.0.
|
2146
|
+
version = "1.0.43"
|
2117
2147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2118
|
-
checksum = "
|
2148
|
+
checksum = "463fe12d7993d3b327787537ce8dd4dfa058de32fc2b195ef3cde03dc4771e8f"
|
2119
2149
|
dependencies = [
|
2120
2150
|
"proc-macro2",
|
2121
2151
|
"quote",
|
2122
|
-
"syn 2.0.
|
2152
|
+
"syn 2.0.26",
|
2123
2153
|
]
|
2124
2154
|
|
2125
2155
|
[[package]]
|
@@ -2135,23 +2165,24 @@ dependencies = [
|
|
2135
2165
|
|
2136
2166
|
[[package]]
|
2137
2167
|
name = "tokio"
|
2138
|
-
version = "1.
|
2168
|
+
version = "1.29.1"
|
2139
2169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2140
|
-
checksum = "
|
2170
|
+
checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da"
|
2141
2171
|
dependencies = [
|
2142
2172
|
"autocfg",
|
2173
|
+
"backtrace",
|
2143
2174
|
"libc",
|
2144
2175
|
"mio",
|
2145
2176
|
"pin-project-lite",
|
2146
2177
|
"socket2",
|
2147
|
-
"windows-sys
|
2178
|
+
"windows-sys",
|
2148
2179
|
]
|
2149
2180
|
|
2150
2181
|
[[package]]
|
2151
2182
|
name = "unicode-ident"
|
2152
|
-
version = "1.0.
|
2183
|
+
version = "1.0.11"
|
2153
2184
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2154
|
-
checksum = "
|
2185
|
+
checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c"
|
2155
2186
|
|
2156
2187
|
[[package]]
|
2157
2188
|
name = "unicode-width"
|
@@ -2161,9 +2192,9 @@ checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
|
|
2161
2192
|
|
2162
2193
|
[[package]]
|
2163
2194
|
name = "value-trait"
|
2164
|
-
version = "0.6.
|
2195
|
+
version = "0.6.1"
|
2165
2196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2166
|
-
checksum = "
|
2197
|
+
checksum = "09a5b6c8ceb01263b969cac48d4a6705134d490ded13d889e52c0cfc80c6945e"
|
2167
2198
|
dependencies = [
|
2168
2199
|
"float-cmp",
|
2169
2200
|
"halfbrown",
|
@@ -2191,9 +2222,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
2191
2222
|
|
2192
2223
|
[[package]]
|
2193
2224
|
name = "wasm-bindgen"
|
2194
|
-
version = "0.2.
|
2225
|
+
version = "0.2.87"
|
2195
2226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2196
|
-
checksum = "
|
2227
|
+
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
|
2197
2228
|
dependencies = [
|
2198
2229
|
"cfg-if",
|
2199
2230
|
"wasm-bindgen-macro",
|
@@ -2201,24 +2232,24 @@ dependencies = [
|
|
2201
2232
|
|
2202
2233
|
[[package]]
|
2203
2234
|
name = "wasm-bindgen-backend"
|
2204
|
-
version = "0.2.
|
2235
|
+
version = "0.2.87"
|
2205
2236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2206
|
-
checksum = "
|
2237
|
+
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
|
2207
2238
|
dependencies = [
|
2208
2239
|
"bumpalo",
|
2209
2240
|
"log",
|
2210
2241
|
"once_cell",
|
2211
2242
|
"proc-macro2",
|
2212
2243
|
"quote",
|
2213
|
-
"syn
|
2244
|
+
"syn 2.0.26",
|
2214
2245
|
"wasm-bindgen-shared",
|
2215
2246
|
]
|
2216
2247
|
|
2217
2248
|
[[package]]
|
2218
2249
|
name = "wasm-bindgen-futures"
|
2219
|
-
version = "0.4.
|
2250
|
+
version = "0.4.37"
|
2220
2251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2221
|
-
checksum = "
|
2252
|
+
checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03"
|
2222
2253
|
dependencies = [
|
2223
2254
|
"cfg-if",
|
2224
2255
|
"js-sys",
|
@@ -2228,9 +2259,9 @@ dependencies = [
|
|
2228
2259
|
|
2229
2260
|
[[package]]
|
2230
2261
|
name = "wasm-bindgen-macro"
|
2231
|
-
version = "0.2.
|
2262
|
+
version = "0.2.87"
|
2232
2263
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2233
|
-
checksum = "
|
2264
|
+
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
|
2234
2265
|
dependencies = [
|
2235
2266
|
"quote",
|
2236
2267
|
"wasm-bindgen-macro-support",
|
@@ -2238,22 +2269,22 @@ dependencies = [
|
|
2238
2269
|
|
2239
2270
|
[[package]]
|
2240
2271
|
name = "wasm-bindgen-macro-support"
|
2241
|
-
version = "0.2.
|
2272
|
+
version = "0.2.87"
|
2242
2273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2243
|
-
checksum = "
|
2274
|
+
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
|
2244
2275
|
dependencies = [
|
2245
2276
|
"proc-macro2",
|
2246
2277
|
"quote",
|
2247
|
-
"syn
|
2278
|
+
"syn 2.0.26",
|
2248
2279
|
"wasm-bindgen-backend",
|
2249
2280
|
"wasm-bindgen-shared",
|
2250
2281
|
]
|
2251
2282
|
|
2252
2283
|
[[package]]
|
2253
2284
|
name = "wasm-bindgen-shared"
|
2254
|
-
version = "0.2.
|
2285
|
+
version = "0.2.87"
|
2255
2286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2256
|
-
checksum = "
|
2287
|
+
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
|
2257
2288
|
|
2258
2289
|
[[package]]
|
2259
2290
|
name = "wasm-timer"
|
@@ -2272,9 +2303,9 @@ dependencies = [
|
|
2272
2303
|
|
2273
2304
|
[[package]]
|
2274
2305
|
name = "web-sys"
|
2275
|
-
version = "0.3.
|
2306
|
+
version = "0.3.64"
|
2276
2307
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2277
|
-
checksum = "
|
2308
|
+
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
|
2278
2309
|
dependencies = [
|
2279
2310
|
"js-sys",
|
2280
2311
|
"wasm-bindgen",
|
@@ -2296,15 +2327,6 @@ version = "0.4.0"
|
|
2296
2327
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2297
2328
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
2298
2329
|
|
2299
|
-
[[package]]
|
2300
|
-
name = "winapi-util"
|
2301
|
-
version = "0.1.5"
|
2302
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2303
|
-
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
2304
|
-
dependencies = [
|
2305
|
-
"winapi",
|
2306
|
-
]
|
2307
|
-
|
2308
2330
|
[[package]]
|
2309
2331
|
name = "winapi-x86_64-pc-windows-gnu"
|
2310
2332
|
version = "0.4.0"
|
@@ -2317,16 +2339,7 @@ version = "0.48.0"
|
|
2317
2339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2318
2340
|
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
|
2319
2341
|
dependencies = [
|
2320
|
-
"windows-targets
|
2321
|
-
]
|
2322
|
-
|
2323
|
-
[[package]]
|
2324
|
-
name = "windows-sys"
|
2325
|
-
version = "0.45.0"
|
2326
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2327
|
-
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
2328
|
-
dependencies = [
|
2329
|
-
"windows-targets 0.42.2",
|
2342
|
+
"windows-targets",
|
2330
2343
|
]
|
2331
2344
|
|
2332
2345
|
[[package]]
|
@@ -2335,117 +2348,60 @@ version = "0.48.0"
|
|
2335
2348
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2336
2349
|
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
2337
2350
|
dependencies = [
|
2338
|
-
"windows-targets
|
2351
|
+
"windows-targets",
|
2339
2352
|
]
|
2340
2353
|
|
2341
2354
|
[[package]]
|
2342
2355
|
name = "windows-targets"
|
2343
|
-
version = "0.
|
2356
|
+
version = "0.48.1"
|
2344
2357
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2345
|
-
checksum = "
|
2358
|
+
checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
|
2346
2359
|
dependencies = [
|
2347
|
-
"windows_aarch64_gnullvm
|
2348
|
-
"windows_aarch64_msvc
|
2349
|
-
"windows_i686_gnu
|
2350
|
-
"windows_i686_msvc
|
2351
|
-
"windows_x86_64_gnu
|
2352
|
-
"windows_x86_64_gnullvm
|
2353
|
-
"windows_x86_64_msvc
|
2360
|
+
"windows_aarch64_gnullvm",
|
2361
|
+
"windows_aarch64_msvc",
|
2362
|
+
"windows_i686_gnu",
|
2363
|
+
"windows_i686_msvc",
|
2364
|
+
"windows_x86_64_gnu",
|
2365
|
+
"windows_x86_64_gnullvm",
|
2366
|
+
"windows_x86_64_msvc",
|
2354
2367
|
]
|
2355
2368
|
|
2356
|
-
[[package]]
|
2357
|
-
name = "windows-targets"
|
2358
|
-
version = "0.48.0"
|
2359
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2360
|
-
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
|
2361
|
-
dependencies = [
|
2362
|
-
"windows_aarch64_gnullvm 0.48.0",
|
2363
|
-
"windows_aarch64_msvc 0.48.0",
|
2364
|
-
"windows_i686_gnu 0.48.0",
|
2365
|
-
"windows_i686_msvc 0.48.0",
|
2366
|
-
"windows_x86_64_gnu 0.48.0",
|
2367
|
-
"windows_x86_64_gnullvm 0.48.0",
|
2368
|
-
"windows_x86_64_msvc 0.48.0",
|
2369
|
-
]
|
2370
|
-
|
2371
|
-
[[package]]
|
2372
|
-
name = "windows_aarch64_gnullvm"
|
2373
|
-
version = "0.42.2"
|
2374
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2375
|
-
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
2376
|
-
|
2377
2369
|
[[package]]
|
2378
2370
|
name = "windows_aarch64_gnullvm"
|
2379
2371
|
version = "0.48.0"
|
2380
2372
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2381
2373
|
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
|
2382
2374
|
|
2383
|
-
[[package]]
|
2384
|
-
name = "windows_aarch64_msvc"
|
2385
|
-
version = "0.42.2"
|
2386
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2387
|
-
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
2388
|
-
|
2389
2375
|
[[package]]
|
2390
2376
|
name = "windows_aarch64_msvc"
|
2391
2377
|
version = "0.48.0"
|
2392
2378
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2393
2379
|
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
2394
2380
|
|
2395
|
-
[[package]]
|
2396
|
-
name = "windows_i686_gnu"
|
2397
|
-
version = "0.42.2"
|
2398
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2399
|
-
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
2400
|
-
|
2401
2381
|
[[package]]
|
2402
2382
|
name = "windows_i686_gnu"
|
2403
2383
|
version = "0.48.0"
|
2404
2384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2405
2385
|
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
|
2406
2386
|
|
2407
|
-
[[package]]
|
2408
|
-
name = "windows_i686_msvc"
|
2409
|
-
version = "0.42.2"
|
2410
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2411
|
-
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
2412
|
-
|
2413
2387
|
[[package]]
|
2414
2388
|
name = "windows_i686_msvc"
|
2415
2389
|
version = "0.48.0"
|
2416
2390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2417
2391
|
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
|
2418
2392
|
|
2419
|
-
[[package]]
|
2420
|
-
name = "windows_x86_64_gnu"
|
2421
|
-
version = "0.42.2"
|
2422
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2423
|
-
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
2424
|
-
|
2425
2393
|
[[package]]
|
2426
2394
|
name = "windows_x86_64_gnu"
|
2427
2395
|
version = "0.48.0"
|
2428
2396
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2429
2397
|
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
|
2430
2398
|
|
2431
|
-
[[package]]
|
2432
|
-
name = "windows_x86_64_gnullvm"
|
2433
|
-
version = "0.42.2"
|
2434
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2435
|
-
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
2436
|
-
|
2437
2399
|
[[package]]
|
2438
2400
|
name = "windows_x86_64_gnullvm"
|
2439
2401
|
version = "0.48.0"
|
2440
2402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2441
2403
|
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
|
2442
2404
|
|
2443
|
-
[[package]]
|
2444
|
-
name = "windows_x86_64_msvc"
|
2445
|
-
version = "0.42.2"
|
2446
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2447
|
-
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
2448
|
-
|
2449
2405
|
[[package]]
|
2450
2406
|
name = "windows_x86_64_msvc"
|
2451
2407
|
version = "0.48.0"
|