polars-df 0.3.1-x86_64-linux → 0.4.0-x86_64-linux
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -1
- data/Cargo.lock +335 -310
- data/Cargo.toml +0 -1
- data/LICENSE-THIRD-PARTY.txt +9228 -11189
- data/README.md +29 -0
- data/lib/polars/3.0/polars.so +0 -0
- data/lib/polars/3.1/polars.so +0 -0
- data/lib/polars/3.2/polars.so +0 -0
- data/lib/polars/batched_csv_reader.rb +1 -1
- data/lib/polars/binary_expr.rb +77 -0
- data/lib/polars/binary_name_space.rb +66 -0
- data/lib/polars/data_frame.rb +63 -38
- data/lib/polars/date_time_expr.rb +6 -6
- data/lib/polars/expr.rb +9 -2
- data/lib/polars/io.rb +73 -62
- data/lib/polars/lazy_frame.rb +103 -7
- data/lib/polars/lazy_functions.rb +3 -2
- data/lib/polars/list_expr.rb +2 -2
- data/lib/polars/list_name_space.rb +2 -2
- data/lib/polars/series.rb +9 -1
- data/lib/polars/string_expr.rb +1 -1
- data/lib/polars/utils.rb +10 -2
- data/lib/polars/version.rb +1 -1
- data/lib/polars.rb +2 -0
- metadata +4 -2
data/Cargo.lock
CHANGED
@@ -59,12 +59,6 @@ dependencies = [
|
|
59
59
|
"libc",
|
60
60
|
]
|
61
61
|
|
62
|
-
[[package]]
|
63
|
-
name = "anyhow"
|
64
|
-
version = "1.0.69"
|
65
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
66
|
-
checksum = "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800"
|
67
|
-
|
68
62
|
[[package]]
|
69
63
|
name = "array-init-cursor"
|
70
64
|
version = "0.2.0"
|
@@ -83,22 +77,24 @@ dependencies = [
|
|
83
77
|
|
84
78
|
[[package]]
|
85
79
|
name = "arrow2"
|
86
|
-
version = "0.
|
87
|
-
source = "
|
80
|
+
version = "0.17.0"
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
82
|
+
checksum = "c3c63cf31f1416ed2fab8f91e8488e10129f47bd89c553ec354a06751d5697f3"
|
88
83
|
dependencies = [
|
89
84
|
"ahash",
|
90
85
|
"arrow-format",
|
91
86
|
"avro-schema",
|
92
|
-
"base64
|
87
|
+
"base64",
|
93
88
|
"bytemuck",
|
94
89
|
"chrono",
|
95
|
-
"chrono-tz
|
90
|
+
"chrono-tz",
|
96
91
|
"dyn-clone",
|
97
92
|
"either",
|
98
93
|
"ethnum",
|
99
94
|
"fallible-streaming-iterator",
|
100
95
|
"foreign_vec",
|
101
96
|
"futures",
|
97
|
+
"getrandom",
|
102
98
|
"hash_hasher",
|
103
99
|
"indexmap",
|
104
100
|
"json-deserializer",
|
@@ -111,39 +107,49 @@ dependencies = [
|
|
111
107
|
"simdutf8",
|
112
108
|
"streaming-iterator",
|
113
109
|
"strength_reduce",
|
114
|
-
"zstd",
|
110
|
+
"zstd 0.12.3+zstd.1.5.2",
|
115
111
|
]
|
116
112
|
|
117
113
|
[[package]]
|
118
114
|
name = "async-stream"
|
119
|
-
version = "0.3.
|
115
|
+
version = "0.3.4"
|
120
116
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
121
|
-
checksum = "
|
117
|
+
checksum = "ad445822218ce64be7a341abfb0b1ea43b5c23aa83902542a4542e78309d8e5e"
|
122
118
|
dependencies = [
|
123
119
|
"async-stream-impl",
|
124
120
|
"futures-core",
|
121
|
+
"pin-project-lite",
|
125
122
|
]
|
126
123
|
|
127
124
|
[[package]]
|
128
125
|
name = "async-stream-impl"
|
129
|
-
version = "0.3.
|
126
|
+
version = "0.3.4"
|
130
127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
131
|
-
checksum = "
|
128
|
+
checksum = "e4655ae1a7b0cdf149156f780c5bf3f1352bc53cbd9e0a361a7ef7b22947e965"
|
132
129
|
dependencies = [
|
133
130
|
"proc-macro2",
|
134
131
|
"quote",
|
135
|
-
"syn",
|
132
|
+
"syn 1.0.109",
|
136
133
|
]
|
137
134
|
|
138
135
|
[[package]]
|
139
136
|
name = "async-trait"
|
140
|
-
version = "0.1.
|
137
|
+
version = "0.1.68"
|
141
138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
142
|
-
checksum = "
|
139
|
+
checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
|
143
140
|
dependencies = [
|
144
141
|
"proc-macro2",
|
145
142
|
"quote",
|
146
|
-
"syn",
|
143
|
+
"syn 2.0.11",
|
144
|
+
]
|
145
|
+
|
146
|
+
[[package]]
|
147
|
+
name = "atoi"
|
148
|
+
version = "2.0.0"
|
149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
150
|
+
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
|
151
|
+
dependencies = [
|
152
|
+
"num-traits",
|
147
153
|
]
|
148
154
|
|
149
155
|
[[package]]
|
@@ -166,12 +172,6 @@ dependencies = [
|
|
166
172
|
"snap",
|
167
173
|
]
|
168
174
|
|
169
|
-
[[package]]
|
170
|
-
name = "base64"
|
171
|
-
version = "0.13.1"
|
172
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
173
|
-
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
174
|
-
|
175
175
|
[[package]]
|
176
176
|
name = "base64"
|
177
177
|
version = "0.21.0"
|
@@ -232,22 +232,22 @@ checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535"
|
|
232
232
|
|
233
233
|
[[package]]
|
234
234
|
name = "bytemuck"
|
235
|
-
version = "1.13.
|
235
|
+
version = "1.13.1"
|
236
236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
237
|
-
checksum = "
|
237
|
+
checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea"
|
238
238
|
dependencies = [
|
239
239
|
"bytemuck_derive",
|
240
240
|
]
|
241
241
|
|
242
242
|
[[package]]
|
243
243
|
name = "bytemuck_derive"
|
244
|
-
version = "1.4.
|
244
|
+
version = "1.4.1"
|
245
245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
246
|
-
checksum = "
|
246
|
+
checksum = "fdde5c9cd29ebd706ce1b35600920a33550e402fc998a2e53ad3b42c3c47a192"
|
247
247
|
dependencies = [
|
248
248
|
"proc-macro2",
|
249
249
|
"quote",
|
250
|
-
"syn",
|
250
|
+
"syn 2.0.11",
|
251
251
|
]
|
252
252
|
|
253
253
|
[[package]]
|
@@ -282,30 +282,20 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
282
282
|
|
283
283
|
[[package]]
|
284
284
|
name = "chrono"
|
285
|
-
version = "0.4.
|
285
|
+
version = "0.4.24"
|
286
286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
287
|
-
checksum = "
|
287
|
+
checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b"
|
288
288
|
dependencies = [
|
289
289
|
"iana-time-zone",
|
290
290
|
"js-sys",
|
291
291
|
"num-integer",
|
292
292
|
"num-traits",
|
293
|
+
"serde",
|
293
294
|
"time",
|
294
295
|
"wasm-bindgen",
|
295
296
|
"winapi",
|
296
297
|
]
|
297
298
|
|
298
|
-
[[package]]
|
299
|
-
name = "chrono-tz"
|
300
|
-
version = "0.6.3"
|
301
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
302
|
-
checksum = "29c39203181991a7dd4343b8005bd804e7a9a37afb8ac070e43771e8c820bbde"
|
303
|
-
dependencies = [
|
304
|
-
"chrono",
|
305
|
-
"chrono-tz-build 0.0.3",
|
306
|
-
"phf",
|
307
|
-
]
|
308
|
-
|
309
299
|
[[package]]
|
310
300
|
name = "chrono-tz"
|
311
301
|
version = "0.8.1"
|
@@ -313,21 +303,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
303
|
checksum = "fa48fa079165080f11d7753fd0bc175b7d391f276b965fe4b55bfad67856e463"
|
314
304
|
dependencies = [
|
315
305
|
"chrono",
|
316
|
-
"chrono-tz-build
|
306
|
+
"chrono-tz-build",
|
317
307
|
"phf",
|
318
308
|
]
|
319
309
|
|
320
|
-
[[package]]
|
321
|
-
name = "chrono-tz-build"
|
322
|
-
version = "0.0.3"
|
323
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
324
|
-
checksum = "6f509c3a87b33437b05e2458750a0700e5bdd6956176773e6c7d6dd15a283a0c"
|
325
|
-
dependencies = [
|
326
|
-
"parse-zoneinfo",
|
327
|
-
"phf",
|
328
|
-
"phf_codegen",
|
329
|
-
]
|
330
|
-
|
331
310
|
[[package]]
|
332
311
|
name = "chrono-tz-build"
|
333
312
|
version = "0.1.0"
|
@@ -341,9 +320,9 @@ dependencies = [
|
|
341
320
|
|
342
321
|
[[package]]
|
343
322
|
name = "clang-sys"
|
344
|
-
version = "1.
|
323
|
+
version = "1.6.0"
|
345
324
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
346
|
-
checksum = "
|
325
|
+
checksum = "77ed9a53e5d4d9c573ae844bfac6872b159cb1d1585a83b29e7a64b7eef7332a"
|
347
326
|
dependencies = [
|
348
327
|
"glob",
|
349
328
|
"libc",
|
@@ -404,9 +383,9 @@ dependencies = [
|
|
404
383
|
|
405
384
|
[[package]]
|
406
385
|
name = "crossbeam-channel"
|
407
|
-
version = "0.5.
|
386
|
+
version = "0.5.7"
|
408
387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
409
|
-
checksum = "
|
388
|
+
checksum = "cf2b3e8478797446514c91ef04bafcb59faba183e621ad488df88983cc14128c"
|
410
389
|
dependencies = [
|
411
390
|
"cfg-if",
|
412
391
|
"crossbeam-utils",
|
@@ -414,9 +393,9 @@ dependencies = [
|
|
414
393
|
|
415
394
|
[[package]]
|
416
395
|
name = "crossbeam-deque"
|
417
|
-
version = "0.8.
|
396
|
+
version = "0.8.3"
|
418
397
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
419
|
-
checksum = "
|
398
|
+
checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
|
420
399
|
dependencies = [
|
421
400
|
"cfg-if",
|
422
401
|
"crossbeam-epoch",
|
@@ -425,9 +404,9 @@ dependencies = [
|
|
425
404
|
|
426
405
|
[[package]]
|
427
406
|
name = "crossbeam-epoch"
|
428
|
-
version = "0.9.
|
407
|
+
version = "0.9.14"
|
429
408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
430
|
-
checksum = "
|
409
|
+
checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695"
|
431
410
|
dependencies = [
|
432
411
|
"autocfg",
|
433
412
|
"cfg-if",
|
@@ -438,9 +417,9 @@ dependencies = [
|
|
438
417
|
|
439
418
|
[[package]]
|
440
419
|
name = "crossbeam-utils"
|
441
|
-
version = "0.8.
|
420
|
+
version = "0.8.15"
|
442
421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
443
|
-
checksum = "
|
422
|
+
checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
|
444
423
|
dependencies = [
|
445
424
|
"cfg-if",
|
446
425
|
]
|
@@ -472,9 +451,9 @@ dependencies = [
|
|
472
451
|
|
473
452
|
[[package]]
|
474
453
|
name = "cxx"
|
475
|
-
version = "1.0.
|
454
|
+
version = "1.0.94"
|
476
455
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
477
|
-
checksum = "
|
456
|
+
checksum = "f61f1b6389c3fe1c316bf8a4dccc90a38208354b330925bce1f74a6c4756eb93"
|
478
457
|
dependencies = [
|
479
458
|
"cc",
|
480
459
|
"cxxbridge-flags",
|
@@ -484,9 +463,9 @@ dependencies = [
|
|
484
463
|
|
485
464
|
[[package]]
|
486
465
|
name = "cxx-build"
|
487
|
-
version = "1.0.
|
466
|
+
version = "1.0.94"
|
488
467
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
489
|
-
checksum = "
|
468
|
+
checksum = "12cee708e8962df2aeb38f594aae5d827c022b6460ac71a7a3e2c3c2aae5a07b"
|
490
469
|
dependencies = [
|
491
470
|
"cc",
|
492
471
|
"codespan-reporting",
|
@@ -494,24 +473,24 @@ dependencies = [
|
|
494
473
|
"proc-macro2",
|
495
474
|
"quote",
|
496
475
|
"scratch",
|
497
|
-
"syn",
|
476
|
+
"syn 2.0.11",
|
498
477
|
]
|
499
478
|
|
500
479
|
[[package]]
|
501
480
|
name = "cxxbridge-flags"
|
502
|
-
version = "1.0.
|
481
|
+
version = "1.0.94"
|
503
482
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
504
|
-
checksum = "
|
483
|
+
checksum = "7944172ae7e4068c533afbb984114a56c46e9ccddda550499caa222902c7f7bb"
|
505
484
|
|
506
485
|
[[package]]
|
507
486
|
name = "cxxbridge-macro"
|
508
|
-
version = "1.0.
|
487
|
+
version = "1.0.94"
|
509
488
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
510
|
-
checksum = "
|
489
|
+
checksum = "2345488264226bf682893e25de0769f3360aac9957980ec49361b083ddaa5bc5"
|
511
490
|
dependencies = [
|
512
491
|
"proc-macro2",
|
513
492
|
"quote",
|
514
|
-
"syn",
|
493
|
+
"syn 2.0.11",
|
515
494
|
]
|
516
495
|
|
517
496
|
[[package]]
|
@@ -536,9 +515,9 @@ dependencies = [
|
|
536
515
|
|
537
516
|
[[package]]
|
538
517
|
name = "dyn-clone"
|
539
|
-
version = "1.0.
|
518
|
+
version = "1.0.11"
|
540
519
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
541
|
-
checksum = "
|
520
|
+
checksum = "68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30"
|
542
521
|
|
543
522
|
[[package]]
|
544
523
|
name = "either"
|
@@ -555,7 +534,7 @@ dependencies = [
|
|
555
534
|
"once_cell",
|
556
535
|
"proc-macro2",
|
557
536
|
"quote",
|
558
|
-
"syn",
|
537
|
+
"syn 1.0.109",
|
559
538
|
]
|
560
539
|
|
561
540
|
[[package]]
|
@@ -570,6 +549,12 @@ version = "0.1.9"
|
|
570
549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
571
550
|
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
|
572
551
|
|
552
|
+
[[package]]
|
553
|
+
name = "fast-float"
|
554
|
+
version = "0.2.0"
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
556
|
+
checksum = "95765f67b4b18863968b4a1bd5bb576f732b29a4a28c7cd84c09fa3e2875f33c"
|
557
|
+
|
573
558
|
[[package]]
|
574
559
|
name = "flate2"
|
575
560
|
version = "1.0.25"
|
@@ -597,9 +582,9 @@ checksum = "ee1b05cbd864bcaecbd3455d6d967862d446e4ebfc3c2e5e5b9841e53cba6673"
|
|
597
582
|
|
598
583
|
[[package]]
|
599
584
|
name = "futures"
|
600
|
-
version = "0.3.
|
585
|
+
version = "0.3.27"
|
601
586
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
602
|
-
checksum = "
|
587
|
+
checksum = "531ac96c6ff5fd7c62263c5e3c67a603af4fcaee2e1a0ae5565ba3a11e69e549"
|
603
588
|
dependencies = [
|
604
589
|
"futures-channel",
|
605
590
|
"futures-core",
|
@@ -612,9 +597,9 @@ dependencies = [
|
|
612
597
|
|
613
598
|
[[package]]
|
614
599
|
name = "futures-channel"
|
615
|
-
version = "0.3.
|
600
|
+
version = "0.3.27"
|
616
601
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
617
|
-
checksum = "
|
602
|
+
checksum = "164713a5a0dcc3e7b4b1ed7d3b433cabc18025386f9339346e8daf15963cf7ac"
|
618
603
|
dependencies = [
|
619
604
|
"futures-core",
|
620
605
|
"futures-sink",
|
@@ -622,15 +607,15 @@ dependencies = [
|
|
622
607
|
|
623
608
|
[[package]]
|
624
609
|
name = "futures-core"
|
625
|
-
version = "0.3.
|
610
|
+
version = "0.3.27"
|
626
611
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
627
|
-
checksum = "
|
612
|
+
checksum = "86d7a0c1aa76363dac491de0ee99faf6941128376f1cf96f07db7603b7de69dd"
|
628
613
|
|
629
614
|
[[package]]
|
630
615
|
name = "futures-executor"
|
631
|
-
version = "0.3.
|
616
|
+
version = "0.3.27"
|
632
617
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
633
|
-
checksum = "
|
618
|
+
checksum = "1997dd9df74cdac935c76252744c1ed5794fac083242ea4fe77ef3ed60ba0f83"
|
634
619
|
dependencies = [
|
635
620
|
"futures-core",
|
636
621
|
"futures-task",
|
@@ -639,38 +624,38 @@ dependencies = [
|
|
639
624
|
|
640
625
|
[[package]]
|
641
626
|
name = "futures-io"
|
642
|
-
version = "0.3.
|
627
|
+
version = "0.3.27"
|
643
628
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
644
|
-
checksum = "
|
629
|
+
checksum = "89d422fa3cbe3b40dca574ab087abb5bc98258ea57eea3fd6f1fa7162c778b91"
|
645
630
|
|
646
631
|
[[package]]
|
647
632
|
name = "futures-macro"
|
648
|
-
version = "0.3.
|
633
|
+
version = "0.3.27"
|
649
634
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
650
|
-
checksum = "
|
635
|
+
checksum = "3eb14ed937631bd8b8b8977f2c198443447a8355b6e3ca599f38c975e5a963b6"
|
651
636
|
dependencies = [
|
652
637
|
"proc-macro2",
|
653
638
|
"quote",
|
654
|
-
"syn",
|
639
|
+
"syn 1.0.109",
|
655
640
|
]
|
656
641
|
|
657
642
|
[[package]]
|
658
643
|
name = "futures-sink"
|
659
|
-
version = "0.3.
|
644
|
+
version = "0.3.27"
|
660
645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
661
|
-
checksum = "
|
646
|
+
checksum = "ec93083a4aecafb2a80a885c9de1f0ccae9dbd32c2bb54b0c3a65690e0b8d2f2"
|
662
647
|
|
663
648
|
[[package]]
|
664
649
|
name = "futures-task"
|
665
|
-
version = "0.3.
|
650
|
+
version = "0.3.27"
|
666
651
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
667
|
-
checksum = "
|
652
|
+
checksum = "fd65540d33b37b16542a0438c12e6aeead10d4ac5d05bd3f805b8f35ab592879"
|
668
653
|
|
669
654
|
[[package]]
|
670
655
|
name = "futures-util"
|
671
|
-
version = "0.3.
|
656
|
+
version = "0.3.27"
|
672
657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
673
|
-
checksum = "
|
658
|
+
checksum = "3ef6b17e481503ec85211fed8f39d1970f128935ca1f814cd32ac4a6842e84ab"
|
674
659
|
dependencies = [
|
675
660
|
"futures-channel",
|
676
661
|
"futures-core",
|
@@ -758,16 +743,16 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
758
743
|
|
759
744
|
[[package]]
|
760
745
|
name = "iana-time-zone"
|
761
|
-
version = "0.1.
|
746
|
+
version = "0.1.54"
|
762
747
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
763
|
-
checksum = "
|
748
|
+
checksum = "0c17cc76786e99f8d2f055c11159e7f0091c42474dcc3189fbab96072e873e6d"
|
764
749
|
dependencies = [
|
765
750
|
"android_system_properties",
|
766
751
|
"core-foundation-sys",
|
767
752
|
"iana-time-zone-haiku",
|
768
753
|
"js-sys",
|
769
754
|
"wasm-bindgen",
|
770
|
-
"
|
755
|
+
"windows",
|
771
756
|
]
|
772
757
|
|
773
758
|
[[package]]
|
@@ -782,9 +767,9 @@ dependencies = [
|
|
782
767
|
|
783
768
|
[[package]]
|
784
769
|
name = "indexmap"
|
785
|
-
version = "1.9.
|
770
|
+
version = "1.9.3"
|
786
771
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
787
|
-
checksum = "
|
772
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
788
773
|
dependencies = [
|
789
774
|
"autocfg",
|
790
775
|
"hashbrown 0.12.3",
|
@@ -802,9 +787,15 @@ dependencies = [
|
|
802
787
|
|
803
788
|
[[package]]
|
804
789
|
name = "itoa"
|
805
|
-
version = "1.0.
|
790
|
+
version = "1.0.6"
|
791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
792
|
+
checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
|
793
|
+
|
794
|
+
[[package]]
|
795
|
+
name = "itoap"
|
796
|
+
version = "1.0.1"
|
806
797
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
807
|
-
checksum = "
|
798
|
+
checksum = "9028f49264629065d057f340a86acb84867925865f73bbf8d47b4d149a7e88b8"
|
808
799
|
|
809
800
|
[[package]]
|
810
801
|
name = "jemalloc-sys"
|
@@ -828,9 +819,9 @@ dependencies = [
|
|
828
819
|
|
829
820
|
[[package]]
|
830
821
|
name = "jobserver"
|
831
|
-
version = "0.1.
|
822
|
+
version = "0.1.26"
|
832
823
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
833
|
-
checksum = "
|
824
|
+
checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
|
834
825
|
dependencies = [
|
835
826
|
"libc",
|
836
827
|
]
|
@@ -950,15 +941,15 @@ dependencies = [
|
|
950
941
|
|
951
942
|
[[package]]
|
952
943
|
name = "libc"
|
953
|
-
version = "0.2.
|
944
|
+
version = "0.2.140"
|
954
945
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
955
|
-
checksum = "
|
946
|
+
checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c"
|
956
947
|
|
957
948
|
[[package]]
|
958
949
|
name = "libflate"
|
959
|
-
version = "1.
|
950
|
+
version = "1.3.0"
|
960
951
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
961
|
-
checksum = "
|
952
|
+
checksum = "97822bf791bd4d5b403713886a5fbe8bf49520fe78e323b0dc480ca1a03e50b0"
|
962
953
|
dependencies = [
|
963
954
|
"adler32",
|
964
955
|
"crc32fast",
|
@@ -967,9 +958,9 @@ dependencies = [
|
|
967
958
|
|
968
959
|
[[package]]
|
969
960
|
name = "libflate_lz77"
|
970
|
-
version = "1.
|
961
|
+
version = "1.2.0"
|
971
962
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
972
|
-
checksum = "
|
963
|
+
checksum = "a52d3a8bfc85f250440e4424db7d857e241a3aebbbe301f3eb606ab15c39acbf"
|
973
964
|
dependencies = [
|
974
965
|
"rle-decode-fast",
|
975
966
|
]
|
@@ -1050,9 +1041,9 @@ dependencies = [
|
|
1050
1041
|
|
1051
1042
|
[[package]]
|
1052
1043
|
name = "magnus"
|
1053
|
-
version = "0.5.
|
1044
|
+
version = "0.5.2"
|
1054
1045
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1055
|
-
checksum = "
|
1046
|
+
checksum = "f3fda351681130b40996b3e40592565b5e44ef1a677c45ea3768ed223b5918a5"
|
1056
1047
|
dependencies = [
|
1057
1048
|
"magnus-macros",
|
1058
1049
|
"rb-sys",
|
@@ -1061,13 +1052,13 @@ dependencies = [
|
|
1061
1052
|
|
1062
1053
|
[[package]]
|
1063
1054
|
name = "magnus-macros"
|
1064
|
-
version = "0.4.
|
1055
|
+
version = "0.4.1"
|
1065
1056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1066
|
-
checksum = "
|
1057
|
+
checksum = "6cc17af1d45442c011aa579d727ec6cff8a69aea8a6bbad26736e7112d749bfb"
|
1067
1058
|
dependencies = [
|
1068
1059
|
"proc-macro2",
|
1069
1060
|
"quote",
|
1070
|
-
"syn",
|
1061
|
+
"syn 1.0.109",
|
1071
1062
|
]
|
1072
1063
|
|
1073
1064
|
[[package]]
|
@@ -1078,18 +1069,18 @@ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
|
1078
1069
|
|
1079
1070
|
[[package]]
|
1080
1071
|
name = "memmap2"
|
1081
|
-
version = "0.5.
|
1072
|
+
version = "0.5.10"
|
1082
1073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1083
|
-
checksum = "
|
1074
|
+
checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327"
|
1084
1075
|
dependencies = [
|
1085
1076
|
"libc",
|
1086
1077
|
]
|
1087
1078
|
|
1088
1079
|
[[package]]
|
1089
1080
|
name = "memoffset"
|
1090
|
-
version = "0.
|
1081
|
+
version = "0.8.0"
|
1091
1082
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1092
|
-
checksum = "
|
1083
|
+
checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1"
|
1093
1084
|
dependencies = [
|
1094
1085
|
"autocfg",
|
1095
1086
|
]
|
@@ -1120,34 +1111,36 @@ dependencies = [
|
|
1120
1111
|
|
1121
1112
|
[[package]]
|
1122
1113
|
name = "mio"
|
1123
|
-
version = "0.8.
|
1114
|
+
version = "0.8.6"
|
1124
1115
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1125
|
-
checksum = "
|
1116
|
+
checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
|
1126
1117
|
dependencies = [
|
1127
1118
|
"libc",
|
1128
1119
|
"log",
|
1129
1120
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
1130
|
-
"windows-sys
|
1121
|
+
"windows-sys",
|
1131
1122
|
]
|
1132
1123
|
|
1133
1124
|
[[package]]
|
1134
1125
|
name = "multiversion"
|
1135
|
-
version = "0.
|
1126
|
+
version = "0.7.1"
|
1136
1127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1137
|
-
checksum = "
|
1128
|
+
checksum = "e6a87eede2251ca235e5573086d01d2ab6b59dfaea54c2be10f9320980f7e8f7"
|
1138
1129
|
dependencies = [
|
1139
1130
|
"multiversion-macros",
|
1131
|
+
"target-features",
|
1140
1132
|
]
|
1141
1133
|
|
1142
1134
|
[[package]]
|
1143
1135
|
name = "multiversion-macros"
|
1144
|
-
version = "0.
|
1136
|
+
version = "0.7.1"
|
1145
1137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1146
|
-
checksum = "
|
1138
|
+
checksum = "1af1abf82261d780d114014eff4b555e47d823f3b84f893c4388572b40e089fb"
|
1147
1139
|
dependencies = [
|
1148
1140
|
"proc-macro2",
|
1149
1141
|
"quote",
|
1150
|
-
"syn",
|
1142
|
+
"syn 1.0.109",
|
1143
|
+
"target-features",
|
1151
1144
|
]
|
1152
1145
|
|
1153
1146
|
[[package]]
|
@@ -1178,40 +1171,6 @@ dependencies = [
|
|
1178
1171
|
"winapi",
|
1179
1172
|
]
|
1180
1173
|
|
1181
|
-
[[package]]
|
1182
|
-
name = "num"
|
1183
|
-
version = "0.4.0"
|
1184
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1185
|
-
checksum = "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606"
|
1186
|
-
dependencies = [
|
1187
|
-
"num-bigint",
|
1188
|
-
"num-complex",
|
1189
|
-
"num-integer",
|
1190
|
-
"num-iter",
|
1191
|
-
"num-rational",
|
1192
|
-
"num-traits",
|
1193
|
-
]
|
1194
|
-
|
1195
|
-
[[package]]
|
1196
|
-
name = "num-bigint"
|
1197
|
-
version = "0.4.3"
|
1198
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1199
|
-
checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
|
1200
|
-
dependencies = [
|
1201
|
-
"autocfg",
|
1202
|
-
"num-integer",
|
1203
|
-
"num-traits",
|
1204
|
-
]
|
1205
|
-
|
1206
|
-
[[package]]
|
1207
|
-
name = "num-complex"
|
1208
|
-
version = "0.4.3"
|
1209
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1210
|
-
checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d"
|
1211
|
-
dependencies = [
|
1212
|
-
"num-traits",
|
1213
|
-
]
|
1214
|
-
|
1215
1174
|
[[package]]
|
1216
1175
|
name = "num-integer"
|
1217
1176
|
version = "0.1.45"
|
@@ -1222,29 +1181,6 @@ dependencies = [
|
|
1222
1181
|
"num-traits",
|
1223
1182
|
]
|
1224
1183
|
|
1225
|
-
[[package]]
|
1226
|
-
name = "num-iter"
|
1227
|
-
version = "0.1.43"
|
1228
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1229
|
-
checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
|
1230
|
-
dependencies = [
|
1231
|
-
"autocfg",
|
1232
|
-
"num-integer",
|
1233
|
-
"num-traits",
|
1234
|
-
]
|
1235
|
-
|
1236
|
-
[[package]]
|
1237
|
-
name = "num-rational"
|
1238
|
-
version = "0.4.1"
|
1239
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1240
|
-
checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
|
1241
|
-
dependencies = [
|
1242
|
-
"autocfg",
|
1243
|
-
"num-bigint",
|
1244
|
-
"num-integer",
|
1245
|
-
"num-traits",
|
1246
|
-
]
|
1247
|
-
|
1248
1184
|
[[package]]
|
1249
1185
|
name = "num-traits"
|
1250
1186
|
version = "0.2.15"
|
@@ -1267,9 +1203,9 @@ dependencies = [
|
|
1267
1203
|
|
1268
1204
|
[[package]]
|
1269
1205
|
name = "once_cell"
|
1270
|
-
version = "1.17.
|
1206
|
+
version = "1.17.1"
|
1271
1207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1272
|
-
checksum = "
|
1208
|
+
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
|
1273
1209
|
|
1274
1210
|
[[package]]
|
1275
1211
|
name = "parking_lot"
|
@@ -1316,7 +1252,7 @@ dependencies = [
|
|
1316
1252
|
"libc",
|
1317
1253
|
"redox_syscall",
|
1318
1254
|
"smallvec",
|
1319
|
-
"windows-sys
|
1255
|
+
"windows-sys",
|
1320
1256
|
]
|
1321
1257
|
|
1322
1258
|
[[package]]
|
@@ -1344,7 +1280,7 @@ dependencies = [
|
|
1344
1280
|
"seq-macro",
|
1345
1281
|
"snap",
|
1346
1282
|
"streaming-decompression",
|
1347
|
-
"zstd",
|
1283
|
+
"zstd 0.11.2+zstd.1.5.2",
|
1348
1284
|
]
|
1349
1285
|
|
1350
1286
|
[[package]]
|
@@ -1398,7 +1334,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1398
1334
|
checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676"
|
1399
1335
|
dependencies = [
|
1400
1336
|
"siphasher",
|
1401
|
-
"uncased",
|
1402
1337
|
]
|
1403
1338
|
|
1404
1339
|
[[package]]
|
@@ -1430,22 +1365,23 @@ dependencies = [
|
|
1430
1365
|
|
1431
1366
|
[[package]]
|
1432
1367
|
name = "polars"
|
1433
|
-
version = "0.
|
1368
|
+
version = "0.4.0"
|
1434
1369
|
dependencies = [
|
1435
1370
|
"ahash",
|
1436
1371
|
"jemallocator",
|
1437
1372
|
"magnus",
|
1438
1373
|
"mimalloc",
|
1439
|
-
"polars 0.
|
1374
|
+
"polars 0.28.0",
|
1440
1375
|
"polars-core",
|
1441
1376
|
"serde_json",
|
1377
|
+
"smartstring",
|
1442
1378
|
]
|
1443
1379
|
|
1444
1380
|
[[package]]
|
1445
1381
|
name = "polars"
|
1446
|
-
version = "0.
|
1382
|
+
version = "0.28.0"
|
1447
1383
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1448
|
-
checksum = "
|
1384
|
+
checksum = "b8f04742abbadbd348d73a803617e6df61464485a410361e9c6634e55a4bc01c"
|
1449
1385
|
dependencies = [
|
1450
1386
|
"getrandom",
|
1451
1387
|
"polars-core",
|
@@ -1458,37 +1394,42 @@ dependencies = [
|
|
1458
1394
|
|
1459
1395
|
[[package]]
|
1460
1396
|
name = "polars-arrow"
|
1461
|
-
version = "0.
|
1397
|
+
version = "0.28.0"
|
1462
1398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1463
|
-
checksum = "
|
1399
|
+
checksum = "eacd179fe0cc7cf18e12a80cfda3e6d15ce907655203cc69277e883a925f9bd8"
|
1464
1400
|
dependencies = [
|
1465
1401
|
"arrow2",
|
1466
1402
|
"chrono",
|
1467
|
-
"chrono-tz
|
1403
|
+
"chrono-tz",
|
1468
1404
|
"hashbrown 0.13.2",
|
1469
|
-
"
|
1405
|
+
"multiversion",
|
1406
|
+
"num-traits",
|
1407
|
+
"polars-error",
|
1470
1408
|
"serde",
|
1471
1409
|
"thiserror",
|
1472
1410
|
]
|
1473
1411
|
|
1474
1412
|
[[package]]
|
1475
1413
|
name = "polars-core"
|
1476
|
-
version = "0.
|
1414
|
+
version = "0.28.0"
|
1477
1415
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1478
|
-
checksum = "
|
1416
|
+
checksum = "04145d95791f31a0df3b2d3d600cbb5d0d43ccc105d74e871ffe7351a5e70cbe"
|
1479
1417
|
dependencies = [
|
1480
1418
|
"ahash",
|
1481
|
-
"anyhow",
|
1482
1419
|
"arrow2",
|
1483
1420
|
"bitflags",
|
1484
1421
|
"chrono",
|
1485
|
-
"chrono-tz
|
1422
|
+
"chrono-tz",
|
1486
1423
|
"comfy-table",
|
1424
|
+
"either",
|
1487
1425
|
"hashbrown 0.13.2",
|
1488
1426
|
"indexmap",
|
1489
|
-
"
|
1427
|
+
"itoap",
|
1428
|
+
"num-traits",
|
1490
1429
|
"once_cell",
|
1491
1430
|
"polars-arrow",
|
1431
|
+
"polars-error",
|
1432
|
+
"polars-row",
|
1492
1433
|
"polars-utils",
|
1493
1434
|
"rand",
|
1494
1435
|
"rand_distr",
|
@@ -1502,27 +1443,41 @@ dependencies = [
|
|
1502
1443
|
"xxhash-rust",
|
1503
1444
|
]
|
1504
1445
|
|
1446
|
+
[[package]]
|
1447
|
+
name = "polars-error"
|
1448
|
+
version = "0.28.0"
|
1449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1450
|
+
checksum = "5fc2fb4ff74f7224b4096b3551b309c50bfd49bb0b66fb3948e70feffb1a8e51"
|
1451
|
+
dependencies = [
|
1452
|
+
"arrow2",
|
1453
|
+
"regex",
|
1454
|
+
"thiserror",
|
1455
|
+
]
|
1456
|
+
|
1505
1457
|
[[package]]
|
1506
1458
|
name = "polars-io"
|
1507
|
-
version = "0.
|
1459
|
+
version = "0.28.0"
|
1508
1460
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1509
|
-
checksum = "
|
1461
|
+
checksum = "d4d186157d427b39085f812e74eefb04608b7bd033ef3a7f848b93a5939c396d"
|
1510
1462
|
dependencies = [
|
1511
1463
|
"ahash",
|
1512
|
-
"anyhow",
|
1513
1464
|
"arrow2",
|
1465
|
+
"async-trait",
|
1514
1466
|
"bytes",
|
1515
1467
|
"chrono",
|
1516
|
-
"chrono-tz
|
1468
|
+
"chrono-tz",
|
1517
1469
|
"dirs",
|
1470
|
+
"fast-float",
|
1471
|
+
"futures",
|
1518
1472
|
"lexical",
|
1519
1473
|
"lexical-core",
|
1520
1474
|
"memchr",
|
1521
1475
|
"memmap2",
|
1522
|
-
"num",
|
1476
|
+
"num-traits",
|
1523
1477
|
"once_cell",
|
1524
1478
|
"polars-arrow",
|
1525
1479
|
"polars-core",
|
1480
|
+
"polars-error",
|
1526
1481
|
"polars-time",
|
1527
1482
|
"polars-utils",
|
1528
1483
|
"rayon",
|
@@ -1531,13 +1486,14 @@ dependencies = [
|
|
1531
1486
|
"serde_json",
|
1532
1487
|
"simd-json",
|
1533
1488
|
"simdutf8",
|
1489
|
+
"tokio",
|
1534
1490
|
]
|
1535
1491
|
|
1536
1492
|
[[package]]
|
1537
1493
|
name = "polars-lazy"
|
1538
|
-
version = "0.
|
1494
|
+
version = "0.28.0"
|
1539
1495
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1540
|
-
checksum = "
|
1496
|
+
checksum = "385b1beb0ae4f1c8fbe6aef9769b8e0a22a8b56ba494e382f17de82ce653702f"
|
1541
1497
|
dependencies = [
|
1542
1498
|
"ahash",
|
1543
1499
|
"bitflags",
|
@@ -1551,16 +1507,18 @@ dependencies = [
|
|
1551
1507
|
"polars-time",
|
1552
1508
|
"polars-utils",
|
1553
1509
|
"rayon",
|
1510
|
+
"smartstring",
|
1554
1511
|
]
|
1555
1512
|
|
1556
1513
|
[[package]]
|
1557
1514
|
name = "polars-ops"
|
1558
|
-
version = "0.
|
1515
|
+
version = "0.28.0"
|
1559
1516
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1560
|
-
checksum = "
|
1517
|
+
checksum = "b8beae89044ad6f5a2237103852d2650c7a52e7b339e356c1d707b9427b48ba7"
|
1561
1518
|
dependencies = [
|
1562
1519
|
"arrow2",
|
1563
|
-
"base64
|
1520
|
+
"base64",
|
1521
|
+
"either",
|
1564
1522
|
"hex",
|
1565
1523
|
"jsonpath_lib",
|
1566
1524
|
"memchr",
|
@@ -1569,23 +1527,25 @@ dependencies = [
|
|
1569
1527
|
"polars-utils",
|
1570
1528
|
"serde",
|
1571
1529
|
"serde_json",
|
1530
|
+
"smartstring",
|
1572
1531
|
]
|
1573
1532
|
|
1574
1533
|
[[package]]
|
1575
1534
|
name = "polars-pipe"
|
1576
|
-
version = "0.
|
1535
|
+
version = "0.28.0"
|
1577
1536
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1578
|
-
checksum = "
|
1537
|
+
checksum = "59c7fbda6ff77db1ae1a0d8f210b9729b2c0cb7c584345504a8282e3bd38e97d"
|
1579
1538
|
dependencies = [
|
1580
1539
|
"crossbeam-channel",
|
1581
1540
|
"enum_dispatch",
|
1582
1541
|
"hashbrown 0.13.2",
|
1583
|
-
"num",
|
1542
|
+
"num-traits",
|
1584
1543
|
"polars-arrow",
|
1585
1544
|
"polars-core",
|
1586
1545
|
"polars-io",
|
1587
1546
|
"polars-ops",
|
1588
1547
|
"polars-plan",
|
1548
|
+
"polars-row",
|
1589
1549
|
"polars-utils",
|
1590
1550
|
"rayon",
|
1591
1551
|
"smartstring",
|
@@ -1593,11 +1553,14 @@ dependencies = [
|
|
1593
1553
|
|
1594
1554
|
[[package]]
|
1595
1555
|
name = "polars-plan"
|
1596
|
-
version = "0.
|
1556
|
+
version = "0.28.0"
|
1597
1557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1598
|
-
checksum = "
|
1558
|
+
checksum = "11b788cb03c651c9b92c2293b0adc07cb89ae64d7f187310cb7d62d688ccd9d8"
|
1599
1559
|
dependencies = [
|
1600
1560
|
"ahash",
|
1561
|
+
"arrow2",
|
1562
|
+
"chrono",
|
1563
|
+
"chrono-tz",
|
1601
1564
|
"once_cell",
|
1602
1565
|
"polars-arrow",
|
1603
1566
|
"polars-core",
|
@@ -1608,17 +1571,30 @@ dependencies = [
|
|
1608
1571
|
"rayon",
|
1609
1572
|
"regex",
|
1610
1573
|
"serde",
|
1574
|
+
"smartstring",
|
1575
|
+
]
|
1576
|
+
|
1577
|
+
[[package]]
|
1578
|
+
name = "polars-row"
|
1579
|
+
version = "0.28.0"
|
1580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1581
|
+
checksum = "4bfcd216b7953321a6946c38d352fdfa67260a4d2125cbb4a1c3b46f03d0bebb"
|
1582
|
+
dependencies = [
|
1583
|
+
"arrow2",
|
1584
|
+
"polars-error",
|
1585
|
+
"polars-utils",
|
1611
1586
|
]
|
1612
1587
|
|
1613
1588
|
[[package]]
|
1614
1589
|
name = "polars-time"
|
1615
|
-
version = "0.
|
1590
|
+
version = "0.28.0"
|
1616
1591
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1617
|
-
checksum = "
|
1592
|
+
checksum = "5384945cc104ba99683455760dcfe1048e4025bfaf78043e14450cc8c988a745"
|
1618
1593
|
dependencies = [
|
1594
|
+
"arrow2",
|
1595
|
+
"atoi",
|
1619
1596
|
"chrono",
|
1620
|
-
"chrono-tz
|
1621
|
-
"lexical",
|
1597
|
+
"chrono-tz",
|
1622
1598
|
"now",
|
1623
1599
|
"once_cell",
|
1624
1600
|
"polars-arrow",
|
@@ -1627,16 +1603,18 @@ dependencies = [
|
|
1627
1603
|
"polars-utils",
|
1628
1604
|
"regex",
|
1629
1605
|
"serde",
|
1606
|
+
"smartstring",
|
1630
1607
|
]
|
1631
1608
|
|
1632
1609
|
[[package]]
|
1633
1610
|
name = "polars-utils"
|
1634
|
-
version = "0.
|
1611
|
+
version = "0.28.0"
|
1635
1612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1636
|
-
checksum = "
|
1613
|
+
checksum = "7c1823141ed08322d17e9717ddf652c42df92f0d9b0c52cc5a242c96bc845144"
|
1637
1614
|
dependencies = [
|
1638
1615
|
"once_cell",
|
1639
1616
|
"rayon",
|
1617
|
+
"smartstring",
|
1640
1618
|
"sysinfo",
|
1641
1619
|
]
|
1642
1620
|
|
@@ -1648,18 +1626,18 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
1648
1626
|
|
1649
1627
|
[[package]]
|
1650
1628
|
name = "proc-macro2"
|
1651
|
-
version = "1.0.
|
1629
|
+
version = "1.0.54"
|
1652
1630
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1653
|
-
checksum = "
|
1631
|
+
checksum = "e472a104799c74b514a57226160104aa483546de37e839ec50e3c2e41dd87534"
|
1654
1632
|
dependencies = [
|
1655
1633
|
"unicode-ident",
|
1656
1634
|
]
|
1657
1635
|
|
1658
1636
|
[[package]]
|
1659
1637
|
name = "quote"
|
1660
|
-
version = "1.0.
|
1638
|
+
version = "1.0.26"
|
1661
1639
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1662
|
-
checksum = "
|
1640
|
+
checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc"
|
1663
1641
|
dependencies = [
|
1664
1642
|
"proc-macro2",
|
1665
1643
|
]
|
@@ -1706,9 +1684,9 @@ dependencies = [
|
|
1706
1684
|
|
1707
1685
|
[[package]]
|
1708
1686
|
name = "rayon"
|
1709
|
-
version = "1.
|
1687
|
+
version = "1.7.0"
|
1710
1688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1711
|
-
checksum = "
|
1689
|
+
checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
|
1712
1690
|
dependencies = [
|
1713
1691
|
"either",
|
1714
1692
|
"rayon-core",
|
@@ -1716,9 +1694,9 @@ dependencies = [
|
|
1716
1694
|
|
1717
1695
|
[[package]]
|
1718
1696
|
name = "rayon-core"
|
1719
|
-
version = "1.
|
1697
|
+
version = "1.11.0"
|
1720
1698
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1721
|
-
checksum = "
|
1699
|
+
checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
|
1722
1700
|
dependencies = [
|
1723
1701
|
"crossbeam-channel",
|
1724
1702
|
"crossbeam-deque",
|
@@ -1728,25 +1706,26 @@ dependencies = [
|
|
1728
1706
|
|
1729
1707
|
[[package]]
|
1730
1708
|
name = "rb-sys"
|
1731
|
-
version = "0.9.
|
1709
|
+
version = "0.9.70"
|
1732
1710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1733
|
-
checksum = "
|
1711
|
+
checksum = "dd532ce4ab93abcabd4b92d0eb1df5c02f64d3624b713e2bcf6a4186847f2c65"
|
1734
1712
|
dependencies = [
|
1735
1713
|
"rb-sys-build",
|
1736
1714
|
]
|
1737
1715
|
|
1738
1716
|
[[package]]
|
1739
1717
|
name = "rb-sys-build"
|
1740
|
-
version = "0.9.
|
1718
|
+
version = "0.9.70"
|
1741
1719
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1742
|
-
checksum = "
|
1720
|
+
checksum = "6959d6f87715ddb2854d833039aa22b06bbab3c3d63bb1df22e6da198e8390c5"
|
1743
1721
|
dependencies = [
|
1744
1722
|
"bindgen",
|
1745
1723
|
"lazy_static",
|
1724
|
+
"proc-macro2",
|
1746
1725
|
"quote",
|
1747
1726
|
"regex",
|
1748
1727
|
"shell-words",
|
1749
|
-
"syn",
|
1728
|
+
"syn 1.0.109",
|
1750
1729
|
]
|
1751
1730
|
|
1752
1731
|
[[package]]
|
@@ -1777,9 +1756,9 @@ dependencies = [
|
|
1777
1756
|
|
1778
1757
|
[[package]]
|
1779
1758
|
name = "regex"
|
1780
|
-
version = "1.7.
|
1759
|
+
version = "1.7.3"
|
1781
1760
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1782
|
-
checksum = "
|
1761
|
+
checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d"
|
1783
1762
|
dependencies = [
|
1784
1763
|
"aho-corasick",
|
1785
1764
|
"memchr",
|
@@ -1788,9 +1767,9 @@ dependencies = [
|
|
1788
1767
|
|
1789
1768
|
[[package]]
|
1790
1769
|
name = "regex-syntax"
|
1791
|
-
version = "0.6.
|
1770
|
+
version = "0.6.29"
|
1792
1771
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1793
|
-
checksum = "
|
1772
|
+
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
1794
1773
|
|
1795
1774
|
[[package]]
|
1796
1775
|
name = "rle-decode-fast"
|
@@ -1815,15 +1794,15 @@ dependencies = [
|
|
1815
1794
|
|
1816
1795
|
[[package]]
|
1817
1796
|
name = "rustversion"
|
1818
|
-
version = "1.0.
|
1797
|
+
version = "1.0.12"
|
1819
1798
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1820
|
-
checksum = "
|
1799
|
+
checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06"
|
1821
1800
|
|
1822
1801
|
[[package]]
|
1823
1802
|
name = "ryu"
|
1824
|
-
version = "1.0.
|
1803
|
+
version = "1.0.13"
|
1825
1804
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1826
|
-
checksum = "
|
1805
|
+
checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
|
1827
1806
|
|
1828
1807
|
[[package]]
|
1829
1808
|
name = "scopeguard"
|
@@ -1833,47 +1812,47 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
|
1833
1812
|
|
1834
1813
|
[[package]]
|
1835
1814
|
name = "scratch"
|
1836
|
-
version = "1.0.
|
1815
|
+
version = "1.0.5"
|
1837
1816
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1838
|
-
checksum = "
|
1817
|
+
checksum = "1792db035ce95be60c3f8853017b3999209281c24e2ba5bc8e59bf97a0c590c1"
|
1839
1818
|
|
1840
1819
|
[[package]]
|
1841
1820
|
name = "semver"
|
1842
|
-
version = "1.0.
|
1821
|
+
version = "1.0.17"
|
1843
1822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1844
|
-
checksum = "
|
1823
|
+
checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
|
1845
1824
|
|
1846
1825
|
[[package]]
|
1847
1826
|
name = "seq-macro"
|
1848
|
-
version = "0.3.
|
1827
|
+
version = "0.3.3"
|
1849
1828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1850
|
-
checksum = "
|
1829
|
+
checksum = "e6b44e8fc93a14e66336d230954dda83d18b4605ccace8fe09bc7514a71ad0bc"
|
1851
1830
|
|
1852
1831
|
[[package]]
|
1853
1832
|
name = "serde"
|
1854
|
-
version = "1.0.
|
1833
|
+
version = "1.0.159"
|
1855
1834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1856
|
-
checksum = "
|
1835
|
+
checksum = "3c04e8343c3daeec41f58990b9d77068df31209f2af111e059e9fe9646693065"
|
1857
1836
|
dependencies = [
|
1858
1837
|
"serde_derive",
|
1859
1838
|
]
|
1860
1839
|
|
1861
1840
|
[[package]]
|
1862
1841
|
name = "serde_derive"
|
1863
|
-
version = "1.0.
|
1842
|
+
version = "1.0.159"
|
1864
1843
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1865
|
-
checksum = "
|
1844
|
+
checksum = "4c614d17805b093df4b147b51339e7e44bf05ef59fba1e45d83500bcfb4d8585"
|
1866
1845
|
dependencies = [
|
1867
1846
|
"proc-macro2",
|
1868
1847
|
"quote",
|
1869
|
-
"syn",
|
1848
|
+
"syn 2.0.11",
|
1870
1849
|
]
|
1871
1850
|
|
1872
1851
|
[[package]]
|
1873
1852
|
name = "serde_json"
|
1874
|
-
version = "1.0.
|
1853
|
+
version = "1.0.95"
|
1875
1854
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1876
|
-
checksum = "
|
1855
|
+
checksum = "d721eca97ac802aa7777b701877c8004d950fc142651367300d21c1cc0194744"
|
1877
1856
|
dependencies = [
|
1878
1857
|
"indexmap",
|
1879
1858
|
"itoa",
|
@@ -1895,9 +1874,9 @@ checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
|
|
1895
1874
|
|
1896
1875
|
[[package]]
|
1897
1876
|
name = "signal-hook"
|
1898
|
-
version = "0.3.
|
1877
|
+
version = "0.3.15"
|
1899
1878
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1900
|
-
checksum = "
|
1879
|
+
checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9"
|
1901
1880
|
dependencies = [
|
1902
1881
|
"libc",
|
1903
1882
|
"signal-hook-registry",
|
@@ -1916,9 +1895,9 @@ dependencies = [
|
|
1916
1895
|
|
1917
1896
|
[[package]]
|
1918
1897
|
name = "signal-hook-registry"
|
1919
|
-
version = "1.4.
|
1898
|
+
version = "1.4.1"
|
1920
1899
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1921
|
-
checksum = "
|
1900
|
+
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
|
1922
1901
|
dependencies = [
|
1923
1902
|
"libc",
|
1924
1903
|
]
|
@@ -1951,9 +1930,9 @@ checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
|
|
1951
1930
|
|
1952
1931
|
[[package]]
|
1953
1932
|
name = "slab"
|
1954
|
-
version = "0.4.
|
1933
|
+
version = "0.4.8"
|
1955
1934
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1956
|
-
checksum = "
|
1935
|
+
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
|
1957
1936
|
dependencies = [
|
1958
1937
|
"autocfg",
|
1959
1938
|
]
|
@@ -1971,6 +1950,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1971
1950
|
checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
|
1972
1951
|
dependencies = [
|
1973
1952
|
"autocfg",
|
1953
|
+
"serde",
|
1974
1954
|
"static_assertions",
|
1975
1955
|
"version_check",
|
1976
1956
|
]
|
@@ -1981,6 +1961,16 @@ version = "1.1.0"
|
|
1981
1961
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1982
1962
|
checksum = "5e9f0ab6ef7eb7353d9119c170a436d1bf248eea575ac42d19d12f4e34130831"
|
1983
1963
|
|
1964
|
+
[[package]]
|
1965
|
+
name = "socket2"
|
1966
|
+
version = "0.4.9"
|
1967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1968
|
+
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
|
1969
|
+
dependencies = [
|
1970
|
+
"libc",
|
1971
|
+
"winapi",
|
1972
|
+
]
|
1973
|
+
|
1984
1974
|
[[package]]
|
1985
1975
|
name = "static_assertions"
|
1986
1976
|
version = "1.1.0"
|
@@ -2024,14 +2014,25 @@ dependencies = [
|
|
2024
2014
|
"proc-macro2",
|
2025
2015
|
"quote",
|
2026
2016
|
"rustversion",
|
2027
|
-
"syn",
|
2017
|
+
"syn 1.0.109",
|
2018
|
+
]
|
2019
|
+
|
2020
|
+
[[package]]
|
2021
|
+
name = "syn"
|
2022
|
+
version = "1.0.109"
|
2023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
2025
|
+
dependencies = [
|
2026
|
+
"proc-macro2",
|
2027
|
+
"quote",
|
2028
|
+
"unicode-ident",
|
2028
2029
|
]
|
2029
2030
|
|
2030
2031
|
[[package]]
|
2031
2032
|
name = "syn"
|
2032
|
-
version = "
|
2033
|
+
version = "2.0.11"
|
2033
2034
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2034
|
-
checksum = "
|
2035
|
+
checksum = "21e3787bb71465627110e7d87ed4faaa36c1f61042ee67badb9e2ef173accc40"
|
2035
2036
|
dependencies = [
|
2036
2037
|
"proc-macro2",
|
2037
2038
|
"quote",
|
@@ -2040,9 +2041,9 @@ dependencies = [
|
|
2040
2041
|
|
2041
2042
|
[[package]]
|
2042
2043
|
name = "sysinfo"
|
2043
|
-
version = "0.
|
2044
|
+
version = "0.28.4"
|
2044
2045
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2045
|
-
checksum = "
|
2046
|
+
checksum = "b4c2f3ca6693feb29a89724516f016488e9aafc7f37264f898593ee4b942f31b"
|
2046
2047
|
dependencies = [
|
2047
2048
|
"cfg-if",
|
2048
2049
|
"core-foundation-sys",
|
@@ -2052,6 +2053,12 @@ dependencies = [
|
|
2052
2053
|
"winapi",
|
2053
2054
|
]
|
2054
2055
|
|
2056
|
+
[[package]]
|
2057
|
+
name = "target-features"
|
2058
|
+
version = "0.1.3"
|
2059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2060
|
+
checksum = "24840de800c1707d75c800893dbd727a5e1501ce921944e602f0698167491e36"
|
2061
|
+
|
2055
2062
|
[[package]]
|
2056
2063
|
name = "termcolor"
|
2057
2064
|
version = "1.2.0"
|
@@ -2063,22 +2070,22 @@ dependencies = [
|
|
2063
2070
|
|
2064
2071
|
[[package]]
|
2065
2072
|
name = "thiserror"
|
2066
|
-
version = "1.0.
|
2073
|
+
version = "1.0.40"
|
2067
2074
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2068
|
-
checksum = "
|
2075
|
+
checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
|
2069
2076
|
dependencies = [
|
2070
2077
|
"thiserror-impl",
|
2071
2078
|
]
|
2072
2079
|
|
2073
2080
|
[[package]]
|
2074
2081
|
name = "thiserror-impl"
|
2075
|
-
version = "1.0.
|
2082
|
+
version = "1.0.40"
|
2076
2083
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2077
|
-
checksum = "
|
2084
|
+
checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
|
2078
2085
|
dependencies = [
|
2079
2086
|
"proc-macro2",
|
2080
2087
|
"quote",
|
2081
|
-
"syn",
|
2088
|
+
"syn 2.0.11",
|
2082
2089
|
]
|
2083
2090
|
|
2084
2091
|
[[package]]
|
@@ -2093,19 +2100,24 @@ dependencies = [
|
|
2093
2100
|
]
|
2094
2101
|
|
2095
2102
|
[[package]]
|
2096
|
-
name = "
|
2097
|
-
version = "
|
2103
|
+
name = "tokio"
|
2104
|
+
version = "1.27.0"
|
2098
2105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2099
|
-
checksum = "
|
2106
|
+
checksum = "d0de47a4eecbe11f498978a9b29d792f0d2692d1dd003650c24c76510e3bc001"
|
2100
2107
|
dependencies = [
|
2101
|
-
"
|
2108
|
+
"autocfg",
|
2109
|
+
"libc",
|
2110
|
+
"mio",
|
2111
|
+
"pin-project-lite",
|
2112
|
+
"socket2",
|
2113
|
+
"windows-sys",
|
2102
2114
|
]
|
2103
2115
|
|
2104
2116
|
[[package]]
|
2105
2117
|
name = "unicode-ident"
|
2106
|
-
version = "1.0.
|
2118
|
+
version = "1.0.8"
|
2107
2119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2108
|
-
checksum = "
|
2120
|
+
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
|
2109
2121
|
|
2110
2122
|
[[package]]
|
2111
2123
|
name = "unicode-width"
|
@@ -2164,7 +2176,7 @@ dependencies = [
|
|
2164
2176
|
"once_cell",
|
2165
2177
|
"proc-macro2",
|
2166
2178
|
"quote",
|
2167
|
-
"syn",
|
2179
|
+
"syn 1.0.109",
|
2168
2180
|
"wasm-bindgen-shared",
|
2169
2181
|
]
|
2170
2182
|
|
@@ -2198,7 +2210,7 @@ checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
|
|
2198
2210
|
dependencies = [
|
2199
2211
|
"proc-macro2",
|
2200
2212
|
"quote",
|
2201
|
-
"syn",
|
2213
|
+
"syn 1.0.109",
|
2202
2214
|
"wasm-bindgen-backend",
|
2203
2215
|
"wasm-bindgen-shared",
|
2204
2216
|
]
|
@@ -2266,18 +2278,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2266
2278
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2267
2279
|
|
2268
2280
|
[[package]]
|
2269
|
-
name = "windows
|
2270
|
-
version = "0.
|
2281
|
+
name = "windows"
|
2282
|
+
version = "0.46.0"
|
2271
2283
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2272
|
-
checksum = "
|
2284
|
+
checksum = "cdacb41e6a96a052c6cb63a144f24900236121c6f63f4f8219fef5977ecb0c25"
|
2273
2285
|
dependencies = [
|
2274
|
-
"
|
2275
|
-
"windows_aarch64_msvc",
|
2276
|
-
"windows_i686_gnu",
|
2277
|
-
"windows_i686_msvc",
|
2278
|
-
"windows_x86_64_gnu",
|
2279
|
-
"windows_x86_64_gnullvm",
|
2280
|
-
"windows_x86_64_msvc",
|
2286
|
+
"windows-targets",
|
2281
2287
|
]
|
2282
2288
|
|
2283
2289
|
[[package]]
|
@@ -2291,9 +2297,9 @@ dependencies = [
|
|
2291
2297
|
|
2292
2298
|
[[package]]
|
2293
2299
|
name = "windows-targets"
|
2294
|
-
version = "0.42.
|
2300
|
+
version = "0.42.2"
|
2295
2301
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2296
|
-
checksum = "
|
2302
|
+
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
2297
2303
|
dependencies = [
|
2298
2304
|
"windows_aarch64_gnullvm",
|
2299
2305
|
"windows_aarch64_msvc",
|
@@ -2306,45 +2312,45 @@ dependencies = [
|
|
2306
2312
|
|
2307
2313
|
[[package]]
|
2308
2314
|
name = "windows_aarch64_gnullvm"
|
2309
|
-
version = "0.42.
|
2315
|
+
version = "0.42.2"
|
2310
2316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2311
|
-
checksum = "
|
2317
|
+
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
2312
2318
|
|
2313
2319
|
[[package]]
|
2314
2320
|
name = "windows_aarch64_msvc"
|
2315
|
-
version = "0.42.
|
2321
|
+
version = "0.42.2"
|
2316
2322
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2317
|
-
checksum = "
|
2323
|
+
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
2318
2324
|
|
2319
2325
|
[[package]]
|
2320
2326
|
name = "windows_i686_gnu"
|
2321
|
-
version = "0.42.
|
2327
|
+
version = "0.42.2"
|
2322
2328
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2323
|
-
checksum = "
|
2329
|
+
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
2324
2330
|
|
2325
2331
|
[[package]]
|
2326
2332
|
name = "windows_i686_msvc"
|
2327
|
-
version = "0.42.
|
2333
|
+
version = "0.42.2"
|
2328
2334
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2329
|
-
checksum = "
|
2335
|
+
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
2330
2336
|
|
2331
2337
|
[[package]]
|
2332
2338
|
name = "windows_x86_64_gnu"
|
2333
|
-
version = "0.42.
|
2339
|
+
version = "0.42.2"
|
2334
2340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2335
|
-
checksum = "
|
2341
|
+
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
2336
2342
|
|
2337
2343
|
[[package]]
|
2338
2344
|
name = "windows_x86_64_gnullvm"
|
2339
|
-
version = "0.42.
|
2345
|
+
version = "0.42.2"
|
2340
2346
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2341
|
-
checksum = "
|
2347
|
+
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
2342
2348
|
|
2343
2349
|
[[package]]
|
2344
2350
|
name = "windows_x86_64_msvc"
|
2345
|
-
version = "0.42.
|
2351
|
+
version = "0.42.2"
|
2346
2352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2347
|
-
checksum = "
|
2353
|
+
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
2348
2354
|
|
2349
2355
|
[[package]]
|
2350
2356
|
name = "xxhash-rust"
|
@@ -2358,7 +2364,16 @@ version = "0.11.2+zstd.1.5.2"
|
|
2358
2364
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2359
2365
|
checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
|
2360
2366
|
dependencies = [
|
2361
|
-
"zstd-safe",
|
2367
|
+
"zstd-safe 5.0.2+zstd.1.5.2",
|
2368
|
+
]
|
2369
|
+
|
2370
|
+
[[package]]
|
2371
|
+
name = "zstd"
|
2372
|
+
version = "0.12.3+zstd.1.5.2"
|
2373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2374
|
+
checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806"
|
2375
|
+
dependencies = [
|
2376
|
+
"zstd-safe 6.0.4+zstd.1.5.4",
|
2362
2377
|
]
|
2363
2378
|
|
2364
2379
|
[[package]]
|
@@ -2371,6 +2386,16 @@ dependencies = [
|
|
2371
2386
|
"zstd-sys",
|
2372
2387
|
]
|
2373
2388
|
|
2389
|
+
[[package]]
|
2390
|
+
name = "zstd-safe"
|
2391
|
+
version = "6.0.4+zstd.1.5.4"
|
2392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2393
|
+
checksum = "7afb4b54b8910cf5447638cb54bf4e8a65cbedd783af98b98c62ffe91f185543"
|
2394
|
+
dependencies = [
|
2395
|
+
"libc",
|
2396
|
+
"zstd-sys",
|
2397
|
+
]
|
2398
|
+
|
2374
2399
|
[[package]]
|
2375
2400
|
name = "zstd-sys"
|
2376
2401
|
version = "2.0.7+zstd.1.5.4"
|