polars-df 0.15.0-arm64-darwin → 0.16.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 +10 -0
- data/Cargo.lock +588 -456
- data/LICENSE-THIRD-PARTY.txt +14994 -16055
- data/README.md +37 -2
- data/lib/polars/3.2/polars.bundle +0 -0
- data/lib/polars/3.3/polars.bundle +0 -0
- data/lib/polars/{3.1 → 3.4}/polars.bundle +0 -0
- data/lib/polars/data_frame.rb +179 -51
- data/lib/polars/data_types.rb +1 -1
- data/lib/polars/functions/aggregation/horizontal.rb +10 -4
- data/lib/polars/functions/lazy.rb +7 -3
- data/lib/polars/io/delta.rb +126 -0
- data/lib/polars/lazy_frame.rb +35 -5
- data/lib/polars/selectors.rb +85 -3
- data/lib/polars/version.rb +1 -1
- data/lib/polars.rb +15 -0
- metadata +7 -7
data/Cargo.lock
CHANGED
@@ -62,9 +62,9 @@ dependencies = [
|
|
62
62
|
|
63
63
|
[[package]]
|
64
64
|
name = "allocator-api2"
|
65
|
-
version = "0.2.
|
65
|
+
version = "0.2.21"
|
66
66
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
67
|
-
checksum = "
|
67
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
68
68
|
|
69
69
|
[[package]]
|
70
70
|
name = "android-tzdata"
|
@@ -127,7 +127,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
|
127
127
|
dependencies = [
|
128
128
|
"proc-macro2",
|
129
129
|
"quote",
|
130
|
-
"syn 2.0.
|
130
|
+
"syn 2.0.93",
|
131
131
|
]
|
132
132
|
|
133
133
|
[[package]]
|
@@ -138,7 +138,7 @@ checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd"
|
|
138
138
|
dependencies = [
|
139
139
|
"proc-macro2",
|
140
140
|
"quote",
|
141
|
-
"syn 2.0.
|
141
|
+
"syn 2.0.93",
|
142
142
|
]
|
143
143
|
|
144
144
|
[[package]]
|
@@ -152,9 +152,9 @@ dependencies = [
|
|
152
152
|
|
153
153
|
[[package]]
|
154
154
|
name = "atoi_simd"
|
155
|
-
version = "0.
|
155
|
+
version = "0.16.0"
|
156
156
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
157
|
-
checksum = "
|
157
|
+
checksum = "4790f9e8961209112beb783d85449b508673cf4a6a419c8449b210743ac4dbe9"
|
158
158
|
|
159
159
|
[[package]]
|
160
160
|
name = "atomic-waker"
|
@@ -220,7 +220,7 @@ dependencies = [
|
|
220
220
|
"regex",
|
221
221
|
"rustc-hash 1.1.0",
|
222
222
|
"shlex",
|
223
|
-
"syn 2.0.
|
223
|
+
"syn 2.0.93",
|
224
224
|
]
|
225
225
|
|
226
226
|
[[package]]
|
@@ -234,9 +234,9 @@ dependencies = [
|
|
234
234
|
|
235
235
|
[[package]]
|
236
236
|
name = "blake3"
|
237
|
-
version = "1.5.
|
237
|
+
version = "1.5.5"
|
238
238
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
239
|
-
checksum = "
|
239
|
+
checksum = "b8ee0c1824c4dea5b5f81736aff91bae041d2c07ee1192bec91054e10e3e601e"
|
240
240
|
dependencies = [
|
241
241
|
"arrayref",
|
242
242
|
"arrayvec",
|
@@ -256,9 +256,9 @@ dependencies = [
|
|
256
256
|
|
257
257
|
[[package]]
|
258
258
|
name = "brotli"
|
259
|
-
version = "
|
259
|
+
version = "7.0.0"
|
260
260
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
261
|
-
checksum = "
|
261
|
+
checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd"
|
262
262
|
dependencies = [
|
263
263
|
"alloc-no-stdlib",
|
264
264
|
"alloc-stdlib",
|
@@ -283,22 +283,22 @@ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
|
283
283
|
|
284
284
|
[[package]]
|
285
285
|
name = "bytemuck"
|
286
|
-
version = "1.
|
286
|
+
version = "1.21.0"
|
287
287
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
288
|
-
checksum = "
|
288
|
+
checksum = "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3"
|
289
289
|
dependencies = [
|
290
290
|
"bytemuck_derive",
|
291
291
|
]
|
292
292
|
|
293
293
|
[[package]]
|
294
294
|
name = "bytemuck_derive"
|
295
|
-
version = "1.8.
|
295
|
+
version = "1.8.1"
|
296
296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
297
|
-
checksum = "
|
297
|
+
checksum = "3fa76293b4f7bb636ab88fd78228235b5248b4d05cc589aed610f954af5d7c7a"
|
298
298
|
dependencies = [
|
299
299
|
"proc-macro2",
|
300
300
|
"quote",
|
301
|
-
"syn 2.0.
|
301
|
+
"syn 2.0.93",
|
302
302
|
]
|
303
303
|
|
304
304
|
[[package]]
|
@@ -309,9 +309,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
309
309
|
|
310
310
|
[[package]]
|
311
311
|
name = "bytes"
|
312
|
-
version = "1.
|
312
|
+
version = "1.9.0"
|
313
313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
314
|
-
checksum = "
|
314
|
+
checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
|
315
315
|
|
316
316
|
[[package]]
|
317
317
|
name = "castaway"
|
@@ -324,9 +324,9 @@ dependencies = [
|
|
324
324
|
|
325
325
|
[[package]]
|
326
326
|
name = "cc"
|
327
|
-
version = "1.
|
327
|
+
version = "1.2.6"
|
328
328
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
329
|
-
checksum = "
|
329
|
+
checksum = "8d6dbb628b8f8555f86d0323c2eb39e3ec81901f4b83e091db8a6a76d316a333"
|
330
330
|
dependencies = [
|
331
331
|
"jobserver",
|
332
332
|
"libc",
|
@@ -356,9 +356,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
356
356
|
|
357
357
|
[[package]]
|
358
358
|
name = "chrono"
|
359
|
-
version = "0.4.
|
359
|
+
version = "0.4.39"
|
360
360
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
361
|
-
checksum = "
|
361
|
+
checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
|
362
362
|
dependencies = [
|
363
363
|
"android-tzdata",
|
364
364
|
"iana-time-zone",
|
@@ -371,9 +371,9 @@ dependencies = [
|
|
371
371
|
|
372
372
|
[[package]]
|
373
373
|
name = "chrono-tz"
|
374
|
-
version = "0.
|
374
|
+
version = "0.10.0"
|
375
375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
376
|
-
checksum = "
|
376
|
+
checksum = "cd6dd8046d00723a59a2f8c5f295c515b9bb9a331ee4f8f3d4dd49e428acd3b6"
|
377
377
|
dependencies = [
|
378
378
|
"chrono",
|
379
379
|
"chrono-tz-build",
|
@@ -382,42 +382,14 @@ dependencies = [
|
|
382
382
|
|
383
383
|
[[package]]
|
384
384
|
name = "chrono-tz-build"
|
385
|
-
version = "0.
|
385
|
+
version = "0.4.0"
|
386
386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
387
|
-
checksum = "
|
387
|
+
checksum = "e94fea34d77a245229e7746bd2beb786cd2a896f306ff491fb8cecb3074b10a7"
|
388
388
|
dependencies = [
|
389
389
|
"parse-zoneinfo",
|
390
|
-
"phf",
|
391
390
|
"phf_codegen",
|
392
391
|
]
|
393
392
|
|
394
|
-
[[package]]
|
395
|
-
name = "ciborium"
|
396
|
-
version = "0.2.2"
|
397
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
398
|
-
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
399
|
-
dependencies = [
|
400
|
-
"ciborium-io",
|
401
|
-
"ciborium-ll",
|
402
|
-
"serde",
|
403
|
-
]
|
404
|
-
|
405
|
-
[[package]]
|
406
|
-
name = "ciborium-io"
|
407
|
-
version = "0.2.2"
|
408
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
409
|
-
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
410
|
-
|
411
|
-
[[package]]
|
412
|
-
name = "ciborium-ll"
|
413
|
-
version = "0.2.2"
|
414
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
415
|
-
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
416
|
-
dependencies = [
|
417
|
-
"ciborium-io",
|
418
|
-
"half",
|
419
|
-
]
|
420
|
-
|
421
393
|
[[package]]
|
422
394
|
name = "clang-sys"
|
423
395
|
version = "1.8.1"
|
@@ -431,9 +403,9 @@ dependencies = [
|
|
431
403
|
|
432
404
|
[[package]]
|
433
405
|
name = "comfy-table"
|
434
|
-
version = "7.1.
|
406
|
+
version = "7.1.3"
|
435
407
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
436
|
-
checksum = "
|
408
|
+
checksum = "24f165e7b643266ea80cb858aed492ad9280e3e05ce24d4a99d7d7b889b6a4d9"
|
437
409
|
dependencies = [
|
438
410
|
"crossterm",
|
439
411
|
"strum",
|
@@ -464,9 +436,9 @@ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
|
464
436
|
|
465
437
|
[[package]]
|
466
438
|
name = "core-foundation"
|
467
|
-
version = "0.
|
439
|
+
version = "0.10.0"
|
468
440
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
469
|
-
checksum = "
|
441
|
+
checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
|
470
442
|
dependencies = [
|
471
443
|
"core-foundation-sys",
|
472
444
|
"libc",
|
@@ -504,18 +476,18 @@ dependencies = [
|
|
504
476
|
|
505
477
|
[[package]]
|
506
478
|
name = "crossbeam-channel"
|
507
|
-
version = "0.5.
|
479
|
+
version = "0.5.14"
|
508
480
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
509
|
-
checksum = "
|
481
|
+
checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
|
510
482
|
dependencies = [
|
511
483
|
"crossbeam-utils",
|
512
484
|
]
|
513
485
|
|
514
486
|
[[package]]
|
515
487
|
name = "crossbeam-deque"
|
516
|
-
version = "0.8.
|
488
|
+
version = "0.8.6"
|
517
489
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
518
|
-
checksum = "
|
490
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
519
491
|
dependencies = [
|
520
492
|
"crossbeam-epoch",
|
521
493
|
"crossbeam-utils",
|
@@ -532,29 +504,29 @@ dependencies = [
|
|
532
504
|
|
533
505
|
[[package]]
|
534
506
|
name = "crossbeam-queue"
|
535
|
-
version = "0.3.
|
507
|
+
version = "0.3.12"
|
536
508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
537
|
-
checksum = "
|
509
|
+
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
|
538
510
|
dependencies = [
|
539
511
|
"crossbeam-utils",
|
540
512
|
]
|
541
513
|
|
542
514
|
[[package]]
|
543
515
|
name = "crossbeam-utils"
|
544
|
-
version = "0.8.
|
516
|
+
version = "0.8.21"
|
545
517
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
546
|
-
checksum = "
|
518
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
547
519
|
|
548
520
|
[[package]]
|
549
521
|
name = "crossterm"
|
550
|
-
version = "0.
|
522
|
+
version = "0.28.1"
|
551
523
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
552
|
-
checksum = "
|
524
|
+
checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
|
553
525
|
dependencies = [
|
554
526
|
"bitflags",
|
555
527
|
"crossterm_winapi",
|
556
|
-
"libc",
|
557
528
|
"parking_lot",
|
529
|
+
"rustix",
|
558
530
|
"winapi",
|
559
531
|
]
|
560
532
|
|
@@ -567,12 +539,6 @@ dependencies = [
|
|
567
539
|
"winapi",
|
568
540
|
]
|
569
541
|
|
570
|
-
[[package]]
|
571
|
-
name = "crunchy"
|
572
|
-
version = "0.2.2"
|
573
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
574
|
-
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
|
575
|
-
|
576
542
|
[[package]]
|
577
543
|
name = "crypto-common"
|
578
544
|
version = "0.1.6"
|
@@ -594,10 +560,15 @@ dependencies = [
|
|
594
560
|
]
|
595
561
|
|
596
562
|
[[package]]
|
597
|
-
name = "
|
598
|
-
version = "0.
|
563
|
+
name = "displaydoc"
|
564
|
+
version = "0.2.5"
|
599
565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
600
|
-
checksum = "
|
566
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
567
|
+
dependencies = [
|
568
|
+
"proc-macro2",
|
569
|
+
"quote",
|
570
|
+
"syn 2.0.93",
|
571
|
+
]
|
601
572
|
|
602
573
|
[[package]]
|
603
574
|
name = "dyn-clone"
|
@@ -623,7 +594,7 @@ dependencies = [
|
|
623
594
|
"once_cell",
|
624
595
|
"proc-macro2",
|
625
596
|
"quote",
|
626
|
-
"syn 2.0.
|
597
|
+
"syn 2.0.93",
|
627
598
|
]
|
628
599
|
|
629
600
|
[[package]]
|
@@ -634,12 +605,12 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
634
605
|
|
635
606
|
[[package]]
|
636
607
|
name = "errno"
|
637
|
-
version = "0.3.
|
608
|
+
version = "0.3.10"
|
638
609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
639
|
-
checksum = "
|
610
|
+
checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
|
640
611
|
dependencies = [
|
641
612
|
"libc",
|
642
|
-
"windows-sys 0.
|
613
|
+
"windows-sys 0.59.0",
|
643
614
|
]
|
644
615
|
|
645
616
|
[[package]]
|
@@ -655,16 +626,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
626
|
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
|
656
627
|
|
657
628
|
[[package]]
|
658
|
-
name = "fast-
|
659
|
-
version = "0.2.
|
629
|
+
name = "fast-float2"
|
630
|
+
version = "0.2.3"
|
660
631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
661
|
-
checksum = "
|
632
|
+
checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55"
|
662
633
|
|
663
634
|
[[package]]
|
664
635
|
name = "flate2"
|
665
|
-
version = "1.0.
|
636
|
+
version = "1.0.35"
|
666
637
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
667
|
-
checksum = "
|
638
|
+
checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
|
668
639
|
dependencies = [
|
669
640
|
"crc32fast",
|
670
641
|
"miniz_oxide",
|
@@ -687,9 +658,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
687
658
|
|
688
659
|
[[package]]
|
689
660
|
name = "foldhash"
|
690
|
-
version = "0.1.
|
661
|
+
version = "0.1.4"
|
691
662
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
692
|
-
checksum = "
|
663
|
+
checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f"
|
693
664
|
|
694
665
|
[[package]]
|
695
666
|
name = "form_urlencoded"
|
@@ -702,9 +673,9 @@ dependencies = [
|
|
702
673
|
|
703
674
|
[[package]]
|
704
675
|
name = "fs4"
|
705
|
-
version = "0.
|
676
|
+
version = "0.12.0"
|
706
677
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
707
|
-
checksum = "
|
678
|
+
checksum = "c29c30684418547d476f0b48e84f4821639119c483b1eccd566c8cd0cd05f521"
|
708
679
|
dependencies = [
|
709
680
|
"rustix",
|
710
681
|
"windows-sys 0.52.0",
|
@@ -766,7 +737,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
766
737
|
dependencies = [
|
767
738
|
"proc-macro2",
|
768
739
|
"quote",
|
769
|
-
"syn 2.0.
|
740
|
+
"syn 2.0.93",
|
770
741
|
]
|
771
742
|
|
772
743
|
[[package]]
|
@@ -830,15 +801,15 @@ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
830
801
|
|
831
802
|
[[package]]
|
832
803
|
name = "glob"
|
833
|
-
version = "0.3.
|
804
|
+
version = "0.3.2"
|
834
805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
835
|
-
checksum = "
|
806
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
836
807
|
|
837
808
|
[[package]]
|
838
809
|
name = "h2"
|
839
|
-
version = "0.4.
|
810
|
+
version = "0.4.7"
|
840
811
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
841
|
-
checksum = "
|
812
|
+
checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e"
|
842
813
|
dependencies = [
|
843
814
|
"atomic-waker",
|
844
815
|
"bytes",
|
@@ -853,16 +824,6 @@ dependencies = [
|
|
853
824
|
"tracing",
|
854
825
|
]
|
855
826
|
|
856
|
-
[[package]]
|
857
|
-
name = "half"
|
858
|
-
version = "2.4.1"
|
859
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
860
|
-
checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
|
861
|
-
dependencies = [
|
862
|
-
"cfg-if",
|
863
|
-
"crunchy",
|
864
|
-
]
|
865
|
-
|
866
827
|
[[package]]
|
867
828
|
name = "halfbrown"
|
868
829
|
version = "0.2.5"
|
@@ -887,9 +848,9 @@ dependencies = [
|
|
887
848
|
|
888
849
|
[[package]]
|
889
850
|
name = "hashbrown"
|
890
|
-
version = "0.15.
|
851
|
+
version = "0.15.2"
|
891
852
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
892
|
-
checksum = "
|
853
|
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
893
854
|
dependencies = [
|
894
855
|
"allocator-api2",
|
895
856
|
"equivalent",
|
@@ -898,24 +859,12 @@ dependencies = [
|
|
898
859
|
"serde",
|
899
860
|
]
|
900
861
|
|
901
|
-
[[package]]
|
902
|
-
name = "heck"
|
903
|
-
version = "0.4.1"
|
904
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
905
|
-
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
906
|
-
|
907
862
|
[[package]]
|
908
863
|
name = "heck"
|
909
864
|
version = "0.5.0"
|
910
865
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
911
866
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
912
867
|
|
913
|
-
[[package]]
|
914
|
-
name = "hermit-abi"
|
915
|
-
version = "0.3.9"
|
916
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
917
|
-
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
918
|
-
|
919
868
|
[[package]]
|
920
869
|
name = "hex"
|
921
870
|
version = "0.4.3"
|
@@ -924,18 +873,18 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
924
873
|
|
925
874
|
[[package]]
|
926
875
|
name = "home"
|
927
|
-
version = "0.5.
|
876
|
+
version = "0.5.11"
|
928
877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
929
|
-
checksum = "
|
878
|
+
checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
|
930
879
|
dependencies = [
|
931
|
-
"windows-sys 0.
|
880
|
+
"windows-sys 0.59.0",
|
932
881
|
]
|
933
882
|
|
934
883
|
[[package]]
|
935
884
|
name = "http"
|
936
|
-
version = "1.
|
885
|
+
version = "1.2.0"
|
937
886
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
938
|
-
checksum = "
|
887
|
+
checksum = "f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea"
|
939
888
|
dependencies = [
|
940
889
|
"bytes",
|
941
890
|
"fnv",
|
@@ -979,9 +928,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
|
979
928
|
|
980
929
|
[[package]]
|
981
930
|
name = "hyper"
|
982
|
-
version = "1.5.
|
931
|
+
version = "1.5.2"
|
983
932
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
984
|
-
checksum = "
|
933
|
+
checksum = "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0"
|
985
934
|
dependencies = [
|
986
935
|
"bytes",
|
987
936
|
"futures-channel",
|
@@ -999,9 +948,9 @@ dependencies = [
|
|
999
948
|
|
1000
949
|
[[package]]
|
1001
950
|
name = "hyper-rustls"
|
1002
|
-
version = "0.27.
|
951
|
+
version = "0.27.5"
|
1003
952
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1004
|
-
checksum = "
|
953
|
+
checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
|
1005
954
|
dependencies = [
|
1006
955
|
"futures-util",
|
1007
956
|
"http",
|
@@ -1057,32 +1006,155 @@ dependencies = [
|
|
1057
1006
|
"cc",
|
1058
1007
|
]
|
1059
1008
|
|
1009
|
+
[[package]]
|
1010
|
+
name = "icu_collections"
|
1011
|
+
version = "1.5.0"
|
1012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1013
|
+
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
|
1014
|
+
dependencies = [
|
1015
|
+
"displaydoc",
|
1016
|
+
"yoke",
|
1017
|
+
"zerofrom",
|
1018
|
+
"zerovec",
|
1019
|
+
]
|
1020
|
+
|
1021
|
+
[[package]]
|
1022
|
+
name = "icu_locid"
|
1023
|
+
version = "1.5.0"
|
1024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1025
|
+
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
|
1026
|
+
dependencies = [
|
1027
|
+
"displaydoc",
|
1028
|
+
"litemap",
|
1029
|
+
"tinystr",
|
1030
|
+
"writeable",
|
1031
|
+
"zerovec",
|
1032
|
+
]
|
1033
|
+
|
1034
|
+
[[package]]
|
1035
|
+
name = "icu_locid_transform"
|
1036
|
+
version = "1.5.0"
|
1037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1038
|
+
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
1039
|
+
dependencies = [
|
1040
|
+
"displaydoc",
|
1041
|
+
"icu_locid",
|
1042
|
+
"icu_locid_transform_data",
|
1043
|
+
"icu_provider",
|
1044
|
+
"tinystr",
|
1045
|
+
"zerovec",
|
1046
|
+
]
|
1047
|
+
|
1048
|
+
[[package]]
|
1049
|
+
name = "icu_locid_transform_data"
|
1050
|
+
version = "1.5.0"
|
1051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1052
|
+
checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
|
1053
|
+
|
1054
|
+
[[package]]
|
1055
|
+
name = "icu_normalizer"
|
1056
|
+
version = "1.5.0"
|
1057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1058
|
+
checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
|
1059
|
+
dependencies = [
|
1060
|
+
"displaydoc",
|
1061
|
+
"icu_collections",
|
1062
|
+
"icu_normalizer_data",
|
1063
|
+
"icu_properties",
|
1064
|
+
"icu_provider",
|
1065
|
+
"smallvec",
|
1066
|
+
"utf16_iter",
|
1067
|
+
"utf8_iter",
|
1068
|
+
"write16",
|
1069
|
+
"zerovec",
|
1070
|
+
]
|
1071
|
+
|
1072
|
+
[[package]]
|
1073
|
+
name = "icu_normalizer_data"
|
1074
|
+
version = "1.5.0"
|
1075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1076
|
+
checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
|
1077
|
+
|
1078
|
+
[[package]]
|
1079
|
+
name = "icu_properties"
|
1080
|
+
version = "1.5.1"
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1082
|
+
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
|
1083
|
+
dependencies = [
|
1084
|
+
"displaydoc",
|
1085
|
+
"icu_collections",
|
1086
|
+
"icu_locid_transform",
|
1087
|
+
"icu_properties_data",
|
1088
|
+
"icu_provider",
|
1089
|
+
"tinystr",
|
1090
|
+
"zerovec",
|
1091
|
+
]
|
1092
|
+
|
1093
|
+
[[package]]
|
1094
|
+
name = "icu_properties_data"
|
1095
|
+
version = "1.5.0"
|
1096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1097
|
+
checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
|
1098
|
+
|
1099
|
+
[[package]]
|
1100
|
+
name = "icu_provider"
|
1101
|
+
version = "1.5.0"
|
1102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1103
|
+
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
|
1104
|
+
dependencies = [
|
1105
|
+
"displaydoc",
|
1106
|
+
"icu_locid",
|
1107
|
+
"icu_provider_macros",
|
1108
|
+
"stable_deref_trait",
|
1109
|
+
"tinystr",
|
1110
|
+
"writeable",
|
1111
|
+
"yoke",
|
1112
|
+
"zerofrom",
|
1113
|
+
"zerovec",
|
1114
|
+
]
|
1115
|
+
|
1116
|
+
[[package]]
|
1117
|
+
name = "icu_provider_macros"
|
1118
|
+
version = "1.5.0"
|
1119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1120
|
+
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
1121
|
+
dependencies = [
|
1122
|
+
"proc-macro2",
|
1123
|
+
"quote",
|
1124
|
+
"syn 2.0.93",
|
1125
|
+
]
|
1126
|
+
|
1060
1127
|
[[package]]
|
1061
1128
|
name = "idna"
|
1062
|
-
version = "0.
|
1129
|
+
version = "1.0.3"
|
1063
1130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1064
|
-
checksum = "
|
1131
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
1065
1132
|
dependencies = [
|
1066
|
-
"
|
1067
|
-
"
|
1133
|
+
"idna_adapter",
|
1134
|
+
"smallvec",
|
1135
|
+
"utf8_iter",
|
1068
1136
|
]
|
1069
1137
|
|
1070
1138
|
[[package]]
|
1071
|
-
name = "
|
1072
|
-
version = "2.
|
1139
|
+
name = "idna_adapter"
|
1140
|
+
version = "1.2.0"
|
1073
1141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1074
|
-
checksum = "
|
1142
|
+
checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
|
1075
1143
|
dependencies = [
|
1076
|
-
"
|
1077
|
-
"
|
1078
|
-
"serde",
|
1144
|
+
"icu_normalizer",
|
1145
|
+
"icu_properties",
|
1079
1146
|
]
|
1080
1147
|
|
1081
1148
|
[[package]]
|
1082
|
-
name = "
|
1083
|
-
version = "2.0
|
1149
|
+
name = "indexmap"
|
1150
|
+
version = "2.7.0"
|
1084
1151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1085
|
-
checksum = "
|
1152
|
+
checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f"
|
1153
|
+
dependencies = [
|
1154
|
+
"equivalent",
|
1155
|
+
"hashbrown 0.15.2",
|
1156
|
+
"serde",
|
1157
|
+
]
|
1086
1158
|
|
1087
1159
|
[[package]]
|
1088
1160
|
name = "ipnet"
|
@@ -1110,9 +1182,9 @@ dependencies = [
|
|
1110
1182
|
|
1111
1183
|
[[package]]
|
1112
1184
|
name = "itoa"
|
1113
|
-
version = "1.0.
|
1185
|
+
version = "1.0.14"
|
1114
1186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1115
|
-
checksum = "
|
1187
|
+
checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
|
1116
1188
|
|
1117
1189
|
[[package]]
|
1118
1190
|
name = "itoap"
|
@@ -1151,10 +1223,11 @@ dependencies = [
|
|
1151
1223
|
|
1152
1224
|
[[package]]
|
1153
1225
|
name = "js-sys"
|
1154
|
-
version = "0.3.
|
1226
|
+
version = "0.3.76"
|
1155
1227
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1156
|
-
checksum = "
|
1228
|
+
checksum = "6717b6b5b077764fb5966237269cb3c64edddde4b14ce42647430a78ced9e7b7"
|
1157
1229
|
dependencies = [
|
1230
|
+
"once_cell",
|
1158
1231
|
"wasm-bindgen",
|
1159
1232
|
]
|
1160
1233
|
|
@@ -1183,9 +1256,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
1183
1256
|
|
1184
1257
|
[[package]]
|
1185
1258
|
name = "libc"
|
1186
|
-
version = "0.2.
|
1259
|
+
version = "0.2.169"
|
1187
1260
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1188
|
-
checksum = "
|
1261
|
+
checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
|
1189
1262
|
|
1190
1263
|
[[package]]
|
1191
1264
|
name = "libflate"
|
@@ -1209,9 +1282,9 @@ dependencies = [
|
|
1209
1282
|
|
1210
1283
|
[[package]]
|
1211
1284
|
name = "libloading"
|
1212
|
-
version = "0.8.
|
1285
|
+
version = "0.8.6"
|
1213
1286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1214
|
-
checksum = "
|
1287
|
+
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
1215
1288
|
dependencies = [
|
1216
1289
|
"cfg-if",
|
1217
1290
|
"windows-targets",
|
@@ -1239,6 +1312,12 @@ version = "0.4.14"
|
|
1239
1312
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1240
1313
|
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
1241
1314
|
|
1315
|
+
[[package]]
|
1316
|
+
name = "litemap"
|
1317
|
+
version = "0.7.4"
|
1318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1319
|
+
checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
|
1320
|
+
|
1242
1321
|
[[package]]
|
1243
1322
|
name = "lock_api"
|
1244
1323
|
version = "0.4.12"
|
@@ -1294,7 +1373,7 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
|
1294
1373
|
dependencies = [
|
1295
1374
|
"proc-macro2",
|
1296
1375
|
"quote",
|
1297
|
-
"syn 2.0.
|
1376
|
+
"syn 2.0.93",
|
1298
1377
|
]
|
1299
1378
|
|
1300
1379
|
[[package]]
|
@@ -1315,22 +1394,13 @@ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
1315
1394
|
|
1316
1395
|
[[package]]
|
1317
1396
|
name = "memmap2"
|
1318
|
-
version = "0.
|
1397
|
+
version = "0.9.5"
|
1319
1398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1320
|
-
checksum = "
|
1399
|
+
checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
|
1321
1400
|
dependencies = [
|
1322
1401
|
"libc",
|
1323
1402
|
]
|
1324
1403
|
|
1325
|
-
[[package]]
|
1326
|
-
name = "memoffset"
|
1327
|
-
version = "0.9.1"
|
1328
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1329
|
-
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
1330
|
-
dependencies = [
|
1331
|
-
"autocfg",
|
1332
|
-
]
|
1333
|
-
|
1334
1404
|
[[package]]
|
1335
1405
|
name = "mimalloc"
|
1336
1406
|
version = "0.1.43"
|
@@ -1354,20 +1424,19 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1354
1424
|
|
1355
1425
|
[[package]]
|
1356
1426
|
name = "miniz_oxide"
|
1357
|
-
version = "0.8.
|
1427
|
+
version = "0.8.2"
|
1358
1428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1359
|
-
checksum = "
|
1429
|
+
checksum = "4ffbe83022cedc1d264172192511ae958937694cd57ce297164951b8b3568394"
|
1360
1430
|
dependencies = [
|
1361
1431
|
"adler2",
|
1362
1432
|
]
|
1363
1433
|
|
1364
1434
|
[[package]]
|
1365
1435
|
name = "mio"
|
1366
|
-
version = "1.0.
|
1436
|
+
version = "1.0.3"
|
1367
1437
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1368
|
-
checksum = "
|
1438
|
+
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
1369
1439
|
dependencies = [
|
1370
|
-
"hermit-abi",
|
1371
1440
|
"libc",
|
1372
1441
|
"wasi",
|
1373
1442
|
"windows-sys 0.52.0",
|
@@ -1435,24 +1504,25 @@ dependencies = [
|
|
1435
1504
|
|
1436
1505
|
[[package]]
|
1437
1506
|
name = "object"
|
1438
|
-
version = "0.36.
|
1507
|
+
version = "0.36.7"
|
1439
1508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1440
|
-
checksum = "
|
1509
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
1441
1510
|
dependencies = [
|
1442
1511
|
"memchr",
|
1443
1512
|
]
|
1444
1513
|
|
1445
1514
|
[[package]]
|
1446
1515
|
name = "object_store"
|
1447
|
-
version = "0.
|
1516
|
+
version = "0.11.2"
|
1448
1517
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1449
|
-
checksum = "
|
1518
|
+
checksum = "3cfccb68961a56facde1163f9319e0d15743352344e7808a11795fb99698dcaf"
|
1450
1519
|
dependencies = [
|
1451
1520
|
"async-trait",
|
1452
1521
|
"base64",
|
1453
1522
|
"bytes",
|
1454
1523
|
"chrono",
|
1455
1524
|
"futures",
|
1525
|
+
"httparse",
|
1456
1526
|
"humantime",
|
1457
1527
|
"hyper",
|
1458
1528
|
"itertools 0.13.0",
|
@@ -1590,7 +1660,7 @@ dependencies = [
|
|
1590
1660
|
|
1591
1661
|
[[package]]
|
1592
1662
|
name = "polars"
|
1593
|
-
version = "0.
|
1663
|
+
version = "0.16.0"
|
1594
1664
|
dependencies = [
|
1595
1665
|
"ahash",
|
1596
1666
|
"bytes",
|
@@ -1599,7 +1669,7 @@ dependencies = [
|
|
1599
1669
|
"jemallocator",
|
1600
1670
|
"magnus",
|
1601
1671
|
"mimalloc",
|
1602
|
-
"polars 0.
|
1672
|
+
"polars 0.45.1",
|
1603
1673
|
"polars-arrow",
|
1604
1674
|
"polars-core",
|
1605
1675
|
"polars-parquet",
|
@@ -1611,9 +1681,9 @@ dependencies = [
|
|
1611
1681
|
|
1612
1682
|
[[package]]
|
1613
1683
|
name = "polars"
|
1614
|
-
version = "0.
|
1684
|
+
version = "0.45.1"
|
1615
1685
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1616
|
-
checksum = "
|
1686
|
+
checksum = "0c0af18ae021b0396c42f39396146332957ebc4d4d25d931b4fe73509948f348"
|
1617
1687
|
dependencies = [
|
1618
1688
|
"getrandom",
|
1619
1689
|
"polars-arrow",
|
@@ -1632,13 +1702,12 @@ dependencies = [
|
|
1632
1702
|
|
1633
1703
|
[[package]]
|
1634
1704
|
name = "polars-arrow"
|
1635
|
-
version = "0.
|
1705
|
+
version = "0.45.1"
|
1636
1706
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1637
|
-
checksum = "
|
1707
|
+
checksum = "d1fd3c64d50b7f5f328e1566cab9979d4bc1ba2ff22114b301ed2ee0e518dbca"
|
1638
1708
|
dependencies = [
|
1639
1709
|
"ahash",
|
1640
1710
|
"atoi",
|
1641
|
-
"atoi_simd",
|
1642
1711
|
"avro-schema",
|
1643
1712
|
"bytemuck",
|
1644
1713
|
"chrono",
|
@@ -1646,10 +1715,8 @@ dependencies = [
|
|
1646
1715
|
"dyn-clone",
|
1647
1716
|
"either",
|
1648
1717
|
"ethnum",
|
1649
|
-
"fast-float",
|
1650
1718
|
"getrandom",
|
1651
|
-
"hashbrown 0.15.
|
1652
|
-
"itoa",
|
1719
|
+
"hashbrown 0.15.2",
|
1653
1720
|
"itoap",
|
1654
1721
|
"lz4",
|
1655
1722
|
"multiversion",
|
@@ -1659,7 +1726,6 @@ dependencies = [
|
|
1659
1726
|
"polars-error",
|
1660
1727
|
"polars-schema",
|
1661
1728
|
"polars-utils",
|
1662
|
-
"ryu",
|
1663
1729
|
"serde",
|
1664
1730
|
"simdutf8",
|
1665
1731
|
"streaming-iterator",
|
@@ -1681,25 +1747,31 @@ dependencies = [
|
|
1681
1747
|
|
1682
1748
|
[[package]]
|
1683
1749
|
name = "polars-compute"
|
1684
|
-
version = "0.
|
1750
|
+
version = "0.45.1"
|
1685
1751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1686
|
-
checksum = "
|
1752
|
+
checksum = "e60822c245a870113df5a88fb184039501eda0a56bcd0c3f866406ff659df340"
|
1687
1753
|
dependencies = [
|
1754
|
+
"atoi_simd",
|
1688
1755
|
"bytemuck",
|
1756
|
+
"chrono",
|
1689
1757
|
"either",
|
1758
|
+
"fast-float2",
|
1759
|
+
"itoa",
|
1760
|
+
"itoap",
|
1690
1761
|
"num-traits",
|
1691
1762
|
"polars-arrow",
|
1692
1763
|
"polars-error",
|
1693
1764
|
"polars-utils",
|
1765
|
+
"ryu",
|
1694
1766
|
"strength_reduce",
|
1695
1767
|
"version_check",
|
1696
1768
|
]
|
1697
1769
|
|
1698
1770
|
[[package]]
|
1699
1771
|
name = "polars-core"
|
1700
|
-
version = "0.
|
1772
|
+
version = "0.45.1"
|
1701
1773
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1702
|
-
checksum = "
|
1774
|
+
checksum = "4794a9e38ef2faf7e47a6f736c7f156c6fbb66cd529f82593b2d48348e422c8d"
|
1703
1775
|
dependencies = [
|
1704
1776
|
"ahash",
|
1705
1777
|
"bitflags",
|
@@ -1709,8 +1781,9 @@ dependencies = [
|
|
1709
1781
|
"comfy-table",
|
1710
1782
|
"either",
|
1711
1783
|
"hashbrown 0.14.5",
|
1712
|
-
"hashbrown 0.15.
|
1784
|
+
"hashbrown 0.15.2",
|
1713
1785
|
"indexmap",
|
1786
|
+
"itoa",
|
1714
1787
|
"num-traits",
|
1715
1788
|
"once_cell",
|
1716
1789
|
"polars-arrow",
|
@@ -1733,9 +1806,9 @@ dependencies = [
|
|
1733
1806
|
|
1734
1807
|
[[package]]
|
1735
1808
|
name = "polars-error"
|
1736
|
-
version = "0.
|
1809
|
+
version = "0.45.1"
|
1737
1810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1738
|
-
checksum = "
|
1811
|
+
checksum = "100093a164bf6c001487ea528b7504f4be1a6881bcffe279bd6133e8f4b4e4f7"
|
1739
1812
|
dependencies = [
|
1740
1813
|
"avro-schema",
|
1741
1814
|
"object_store",
|
@@ -1747,13 +1820,13 @@ dependencies = [
|
|
1747
1820
|
|
1748
1821
|
[[package]]
|
1749
1822
|
name = "polars-expr"
|
1750
|
-
version = "0.
|
1823
|
+
version = "0.45.1"
|
1751
1824
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1752
|
-
checksum = "
|
1825
|
+
checksum = "ad56c5ea4d6e0546fbc3fa35918a537b76587600a5118770ed331136249d50d8"
|
1753
1826
|
dependencies = [
|
1754
1827
|
"ahash",
|
1755
1828
|
"bitflags",
|
1756
|
-
"hashbrown 0.15.
|
1829
|
+
"hashbrown 0.15.2",
|
1757
1830
|
"num-traits",
|
1758
1831
|
"once_cell",
|
1759
1832
|
"polars-arrow",
|
@@ -1771,9 +1844,9 @@ dependencies = [
|
|
1771
1844
|
|
1772
1845
|
[[package]]
|
1773
1846
|
name = "polars-io"
|
1774
|
-
version = "0.
|
1847
|
+
version = "0.45.1"
|
1775
1848
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1776
|
-
checksum = "
|
1849
|
+
checksum = "95d774d5971d2092f0588e89d2f0be524dff35ea368272c0810ba54a860e4411"
|
1777
1850
|
dependencies = [
|
1778
1851
|
"ahash",
|
1779
1852
|
"async-trait",
|
@@ -1782,11 +1855,11 @@ dependencies = [
|
|
1782
1855
|
"bytes",
|
1783
1856
|
"chrono",
|
1784
1857
|
"chrono-tz",
|
1785
|
-
"fast-
|
1858
|
+
"fast-float2",
|
1786
1859
|
"fs4",
|
1787
1860
|
"futures",
|
1788
1861
|
"glob",
|
1789
|
-
"hashbrown 0.15.
|
1862
|
+
"hashbrown 0.15.2",
|
1790
1863
|
"home",
|
1791
1864
|
"itoa",
|
1792
1865
|
"memchr",
|
@@ -1803,7 +1876,6 @@ dependencies = [
|
|
1803
1876
|
"polars-schema",
|
1804
1877
|
"polars-time",
|
1805
1878
|
"polars-utils",
|
1806
|
-
"pyo3",
|
1807
1879
|
"rayon",
|
1808
1880
|
"regex",
|
1809
1881
|
"reqwest",
|
@@ -1819,19 +1891,20 @@ dependencies = [
|
|
1819
1891
|
|
1820
1892
|
[[package]]
|
1821
1893
|
name = "polars-json"
|
1822
|
-
version = "0.
|
1894
|
+
version = "0.45.1"
|
1823
1895
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1824
|
-
checksum = "
|
1896
|
+
checksum = "19d97ebf73da016f4af4e5af8663523137e273e09d1a459e0cf87b5fdfd8f007"
|
1825
1897
|
dependencies = [
|
1826
1898
|
"ahash",
|
1827
1899
|
"chrono",
|
1828
1900
|
"chrono-tz",
|
1829
1901
|
"fallible-streaming-iterator",
|
1830
|
-
"hashbrown 0.15.
|
1902
|
+
"hashbrown 0.15.2",
|
1831
1903
|
"indexmap",
|
1832
1904
|
"itoa",
|
1833
1905
|
"num-traits",
|
1834
1906
|
"polars-arrow",
|
1907
|
+
"polars-compute",
|
1835
1908
|
"polars-error",
|
1836
1909
|
"polars-utils",
|
1837
1910
|
"ryu",
|
@@ -1841,9 +1914,9 @@ dependencies = [
|
|
1841
1914
|
|
1842
1915
|
[[package]]
|
1843
1916
|
name = "polars-lazy"
|
1844
|
-
version = "0.
|
1917
|
+
version = "0.45.1"
|
1845
1918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1846
|
-
checksum = "
|
1919
|
+
checksum = "fa457bfa96f45cf14c33507eaa3ebcec6a8d52e7f7fc60cd23f338631369d417"
|
1847
1920
|
dependencies = [
|
1848
1921
|
"ahash",
|
1849
1922
|
"bitflags",
|
@@ -1869,9 +1942,9 @@ dependencies = [
|
|
1869
1942
|
|
1870
1943
|
[[package]]
|
1871
1944
|
name = "polars-mem-engine"
|
1872
|
-
version = "0.
|
1945
|
+
version = "0.45.1"
|
1873
1946
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1874
|
-
checksum = "
|
1947
|
+
checksum = "f73aa56fc0a4c1e9d56b4a4485800f4780ca214030d32d0150eccc44f71d6dab"
|
1875
1948
|
dependencies = [
|
1876
1949
|
"futures",
|
1877
1950
|
"memmap2",
|
@@ -1885,16 +1958,15 @@ dependencies = [
|
|
1885
1958
|
"polars-plan",
|
1886
1959
|
"polars-time",
|
1887
1960
|
"polars-utils",
|
1888
|
-
"pyo3",
|
1889
1961
|
"rayon",
|
1890
1962
|
"tokio",
|
1891
1963
|
]
|
1892
1964
|
|
1893
1965
|
[[package]]
|
1894
1966
|
name = "polars-ops"
|
1895
|
-
version = "0.
|
1967
|
+
version = "0.45.1"
|
1896
1968
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1897
|
-
checksum = "
|
1969
|
+
checksum = "b267480495ffe382dab63318e3c6bf4073bb82971c8b80294d079293fece458b"
|
1898
1970
|
dependencies = [
|
1899
1971
|
"ahash",
|
1900
1972
|
"aho-corasick",
|
@@ -1904,7 +1976,7 @@ dependencies = [
|
|
1904
1976
|
"chrono",
|
1905
1977
|
"chrono-tz",
|
1906
1978
|
"either",
|
1907
|
-
"hashbrown 0.15.
|
1979
|
+
"hashbrown 0.15.2",
|
1908
1980
|
"hex",
|
1909
1981
|
"indexmap",
|
1910
1982
|
"jsonpath_lib_polars_vendor",
|
@@ -1931,9 +2003,9 @@ dependencies = [
|
|
1931
2003
|
|
1932
2004
|
[[package]]
|
1933
2005
|
name = "polars-parquet"
|
1934
|
-
version = "0.
|
2006
|
+
version = "0.45.1"
|
1935
2007
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1936
|
-
checksum = "
|
2008
|
+
checksum = "20237f232b1a74b1fae6b5c9bea8c440f2e5d3b5506601b038f0a7a34b84b710"
|
1937
2009
|
dependencies = [
|
1938
2010
|
"ahash",
|
1939
2011
|
"async-stream",
|
@@ -1943,7 +2015,7 @@ dependencies = [
|
|
1943
2015
|
"ethnum",
|
1944
2016
|
"flate2",
|
1945
2017
|
"futures",
|
1946
|
-
"hashbrown 0.15.
|
2018
|
+
"hashbrown 0.15.2",
|
1947
2019
|
"lz4",
|
1948
2020
|
"num-traits",
|
1949
2021
|
"polars-arrow",
|
@@ -1970,15 +2042,15 @@ dependencies = [
|
|
1970
2042
|
|
1971
2043
|
[[package]]
|
1972
2044
|
name = "polars-pipe"
|
1973
|
-
version = "0.
|
2045
|
+
version = "0.45.1"
|
1974
2046
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1975
|
-
checksum = "
|
2047
|
+
checksum = "82e3066f4fea8e55e72eba54ffe20ebdf08f63b9691aba8ea1135c3aeb9c2c7e"
|
1976
2048
|
dependencies = [
|
1977
2049
|
"crossbeam-channel",
|
1978
2050
|
"crossbeam-queue",
|
1979
2051
|
"enum_dispatch",
|
1980
2052
|
"futures",
|
1981
|
-
"hashbrown 0.15.
|
2053
|
+
"hashbrown 0.15.2",
|
1982
2054
|
"num-traits",
|
1983
2055
|
"polars-arrow",
|
1984
2056
|
"polars-compute",
|
@@ -1997,9 +2069,9 @@ dependencies = [
|
|
1997
2069
|
|
1998
2070
|
[[package]]
|
1999
2071
|
name = "polars-plan"
|
2000
|
-
version = "0.
|
2072
|
+
version = "0.45.1"
|
2001
2073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2002
|
-
checksum = "
|
2074
|
+
checksum = "99a3832887671df1eb326df52cbfcc47789d3d58454c1084a154b48b240175e2"
|
2003
2075
|
dependencies = [
|
2004
2076
|
"ahash",
|
2005
2077
|
"bitflags",
|
@@ -2007,15 +2079,15 @@ dependencies = [
|
|
2007
2079
|
"bytes",
|
2008
2080
|
"chrono",
|
2009
2081
|
"chrono-tz",
|
2010
|
-
"ciborium",
|
2011
2082
|
"either",
|
2012
2083
|
"futures",
|
2013
|
-
"hashbrown 0.15.
|
2084
|
+
"hashbrown 0.15.2",
|
2014
2085
|
"memmap2",
|
2015
2086
|
"num-traits",
|
2016
2087
|
"once_cell",
|
2017
2088
|
"percent-encoding",
|
2018
2089
|
"polars-arrow",
|
2090
|
+
"polars-compute",
|
2019
2091
|
"polars-core",
|
2020
2092
|
"polars-io",
|
2021
2093
|
"polars-json",
|
@@ -2023,7 +2095,6 @@ dependencies = [
|
|
2023
2095
|
"polars-parquet",
|
2024
2096
|
"polars-time",
|
2025
2097
|
"polars-utils",
|
2026
|
-
"pyo3",
|
2027
2098
|
"rayon",
|
2028
2099
|
"recursive",
|
2029
2100
|
"regex",
|
@@ -2034,21 +2105,23 @@ dependencies = [
|
|
2034
2105
|
|
2035
2106
|
[[package]]
|
2036
2107
|
name = "polars-row"
|
2037
|
-
version = "0.
|
2108
|
+
version = "0.45.1"
|
2038
2109
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2039
|
-
checksum = "
|
2110
|
+
checksum = "8e36350fb8a90238e02c8ece0f0c4c24f3374197e9c08c1c22cc8b9c526e6c25"
|
2040
2111
|
dependencies = [
|
2112
|
+
"bitflags",
|
2041
2113
|
"bytemuck",
|
2042
2114
|
"polars-arrow",
|
2115
|
+
"polars-compute",
|
2043
2116
|
"polars-error",
|
2044
2117
|
"polars-utils",
|
2045
2118
|
]
|
2046
2119
|
|
2047
2120
|
[[package]]
|
2048
2121
|
name = "polars-schema"
|
2049
|
-
version = "0.
|
2122
|
+
version = "0.45.1"
|
2050
2123
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2051
|
-
checksum = "
|
2124
|
+
checksum = "8c6aa4913cffc522cea3ccbc0cafb350bec18fed0a1ef8d417ac88ea320d7749"
|
2052
2125
|
dependencies = [
|
2053
2126
|
"indexmap",
|
2054
2127
|
"polars-error",
|
@@ -2059,9 +2132,9 @@ dependencies = [
|
|
2059
2132
|
|
2060
2133
|
[[package]]
|
2061
2134
|
name = "polars-sql"
|
2062
|
-
version = "0.
|
2135
|
+
version = "0.45.1"
|
2063
2136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2064
|
-
checksum = "
|
2137
|
+
checksum = "c62a2247028629b1db384437a9f2792488f0ddb539ec16fb46a5e2bceeba6dbc"
|
2065
2138
|
dependencies = [
|
2066
2139
|
"hex",
|
2067
2140
|
"once_cell",
|
@@ -2081,9 +2154,9 @@ dependencies = [
|
|
2081
2154
|
|
2082
2155
|
[[package]]
|
2083
2156
|
name = "polars-stream"
|
2084
|
-
version = "0.
|
2157
|
+
version = "0.45.1"
|
2085
2158
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2086
|
-
checksum = "
|
2159
|
+
checksum = "b8cd9da4b063146c3ab7c08678a52eb9d466ade4f4c8617605a5a3ea063002c6"
|
2087
2160
|
dependencies = [
|
2088
2161
|
"atomic-waker",
|
2089
2162
|
"crossbeam-deque",
|
@@ -2097,6 +2170,7 @@ dependencies = [
|
|
2097
2170
|
"polars-expr",
|
2098
2171
|
"polars-io",
|
2099
2172
|
"polars-mem-engine",
|
2173
|
+
"polars-ops",
|
2100
2174
|
"polars-parquet",
|
2101
2175
|
"polars-plan",
|
2102
2176
|
"polars-utils",
|
@@ -2110,9 +2184,9 @@ dependencies = [
|
|
2110
2184
|
|
2111
2185
|
[[package]]
|
2112
2186
|
name = "polars-time"
|
2113
|
-
version = "0.
|
2187
|
+
version = "0.45.1"
|
2114
2188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2115
|
-
checksum = "
|
2189
|
+
checksum = "12f005c3441eed1a96464305f73e197813cbae7894ff6712726a1182e31f52b4"
|
2116
2190
|
dependencies = [
|
2117
2191
|
"atoi",
|
2118
2192
|
"bytemuck",
|
@@ -2121,6 +2195,7 @@ dependencies = [
|
|
2121
2195
|
"now",
|
2122
2196
|
"once_cell",
|
2123
2197
|
"polars-arrow",
|
2198
|
+
"polars-compute",
|
2124
2199
|
"polars-core",
|
2125
2200
|
"polars-error",
|
2126
2201
|
"polars-ops",
|
@@ -2132,22 +2207,22 @@ dependencies = [
|
|
2132
2207
|
|
2133
2208
|
[[package]]
|
2134
2209
|
name = "polars-utils"
|
2135
|
-
version = "0.
|
2210
|
+
version = "0.45.1"
|
2136
2211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2137
|
-
checksum = "
|
2212
|
+
checksum = "e0fc010eea42ad113b641aa53106e4d6e474650c73573d959a546eed0ce6d479"
|
2138
2213
|
dependencies = [
|
2139
2214
|
"ahash",
|
2140
2215
|
"bytemuck",
|
2141
2216
|
"bytes",
|
2142
2217
|
"compact_str",
|
2143
|
-
"hashbrown 0.15.
|
2218
|
+
"hashbrown 0.15.2",
|
2144
2219
|
"indexmap",
|
2145
2220
|
"libc",
|
2146
2221
|
"memmap2",
|
2147
2222
|
"num-traits",
|
2148
2223
|
"once_cell",
|
2149
2224
|
"polars-error",
|
2150
|
-
"
|
2225
|
+
"rand",
|
2151
2226
|
"raw-cpuid",
|
2152
2227
|
"rayon",
|
2153
2228
|
"serde",
|
@@ -2156,12 +2231,6 @@ dependencies = [
|
|
2156
2231
|
"version_check",
|
2157
2232
|
]
|
2158
2233
|
|
2159
|
-
[[package]]
|
2160
|
-
name = "portable-atomic"
|
2161
|
-
version = "1.9.0"
|
2162
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2163
|
-
checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
|
2164
|
-
|
2165
2234
|
[[package]]
|
2166
2235
|
name = "ppv-lite86"
|
2167
2236
|
version = "0.2.20"
|
@@ -2173,90 +2242,27 @@ dependencies = [
|
|
2173
2242
|
|
2174
2243
|
[[package]]
|
2175
2244
|
name = "proc-macro2"
|
2176
|
-
version = "1.0.
|
2245
|
+
version = "1.0.92"
|
2177
2246
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2178
|
-
checksum = "
|
2247
|
+
checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
|
2179
2248
|
dependencies = [
|
2180
2249
|
"unicode-ident",
|
2181
2250
|
]
|
2182
2251
|
|
2183
2252
|
[[package]]
|
2184
2253
|
name = "psm"
|
2185
|
-
version = "0.1.
|
2254
|
+
version = "0.1.24"
|
2186
2255
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2187
|
-
checksum = "
|
2256
|
+
checksum = "200b9ff220857e53e184257720a14553b2f4aa02577d2ed9842d45d4b9654810"
|
2188
2257
|
dependencies = [
|
2189
2258
|
"cc",
|
2190
2259
|
]
|
2191
2260
|
|
2192
|
-
[[package]]
|
2193
|
-
name = "pyo3"
|
2194
|
-
version = "0.21.2"
|
2195
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2196
|
-
checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8"
|
2197
|
-
dependencies = [
|
2198
|
-
"cfg-if",
|
2199
|
-
"indoc",
|
2200
|
-
"libc",
|
2201
|
-
"memoffset",
|
2202
|
-
"parking_lot",
|
2203
|
-
"portable-atomic",
|
2204
|
-
"pyo3-build-config",
|
2205
|
-
"pyo3-ffi",
|
2206
|
-
"pyo3-macros",
|
2207
|
-
"unindent",
|
2208
|
-
]
|
2209
|
-
|
2210
|
-
[[package]]
|
2211
|
-
name = "pyo3-build-config"
|
2212
|
-
version = "0.21.2"
|
2213
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2214
|
-
checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50"
|
2215
|
-
dependencies = [
|
2216
|
-
"once_cell",
|
2217
|
-
"target-lexicon",
|
2218
|
-
]
|
2219
|
-
|
2220
|
-
[[package]]
|
2221
|
-
name = "pyo3-ffi"
|
2222
|
-
version = "0.21.2"
|
2223
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2224
|
-
checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403"
|
2225
|
-
dependencies = [
|
2226
|
-
"libc",
|
2227
|
-
"pyo3-build-config",
|
2228
|
-
]
|
2229
|
-
|
2230
|
-
[[package]]
|
2231
|
-
name = "pyo3-macros"
|
2232
|
-
version = "0.21.2"
|
2233
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2234
|
-
checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c"
|
2235
|
-
dependencies = [
|
2236
|
-
"proc-macro2",
|
2237
|
-
"pyo3-macros-backend",
|
2238
|
-
"quote",
|
2239
|
-
"syn 2.0.85",
|
2240
|
-
]
|
2241
|
-
|
2242
|
-
[[package]]
|
2243
|
-
name = "pyo3-macros-backend"
|
2244
|
-
version = "0.21.2"
|
2245
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2246
|
-
checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c"
|
2247
|
-
dependencies = [
|
2248
|
-
"heck 0.4.1",
|
2249
|
-
"proc-macro2",
|
2250
|
-
"pyo3-build-config",
|
2251
|
-
"quote",
|
2252
|
-
"syn 2.0.85",
|
2253
|
-
]
|
2254
|
-
|
2255
2261
|
[[package]]
|
2256
2262
|
name = "quick-xml"
|
2257
|
-
version = "0.
|
2263
|
+
version = "0.37.1"
|
2258
2264
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2259
|
-
checksum = "
|
2265
|
+
checksum = "f22f29bdff3987b4d8632ef95fd6424ec7e4e0a57e2f4fc63e489e75357f6a03"
|
2260
2266
|
dependencies = [
|
2261
2267
|
"memchr",
|
2262
2268
|
"serde",
|
@@ -2264,15 +2270,15 @@ dependencies = [
|
|
2264
2270
|
|
2265
2271
|
[[package]]
|
2266
2272
|
name = "quinn"
|
2267
|
-
version = "0.11.
|
2273
|
+
version = "0.11.6"
|
2268
2274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2269
|
-
checksum = "
|
2275
|
+
checksum = "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef"
|
2270
2276
|
dependencies = [
|
2271
2277
|
"bytes",
|
2272
2278
|
"pin-project-lite",
|
2273
2279
|
"quinn-proto",
|
2274
2280
|
"quinn-udp",
|
2275
|
-
"rustc-hash 2.
|
2281
|
+
"rustc-hash 2.1.0",
|
2276
2282
|
"rustls",
|
2277
2283
|
"socket2",
|
2278
2284
|
"thiserror",
|
@@ -2282,26 +2288,29 @@ dependencies = [
|
|
2282
2288
|
|
2283
2289
|
[[package]]
|
2284
2290
|
name = "quinn-proto"
|
2285
|
-
version = "0.11.
|
2291
|
+
version = "0.11.9"
|
2286
2292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2287
|
-
checksum = "
|
2293
|
+
checksum = "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d"
|
2288
2294
|
dependencies = [
|
2289
2295
|
"bytes",
|
2296
|
+
"getrandom",
|
2290
2297
|
"rand",
|
2291
2298
|
"ring",
|
2292
|
-
"rustc-hash 2.
|
2299
|
+
"rustc-hash 2.1.0",
|
2293
2300
|
"rustls",
|
2301
|
+
"rustls-pki-types",
|
2294
2302
|
"slab",
|
2295
2303
|
"thiserror",
|
2296
2304
|
"tinyvec",
|
2297
2305
|
"tracing",
|
2306
|
+
"web-time",
|
2298
2307
|
]
|
2299
2308
|
|
2300
2309
|
[[package]]
|
2301
2310
|
name = "quinn-udp"
|
2302
|
-
version = "0.5.
|
2311
|
+
version = "0.5.9"
|
2303
2312
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2304
|
-
checksum = "
|
2313
|
+
checksum = "1c40286217b4ba3a71d644d752e6a0b71f13f1b6a2c5311acfcbe0c2418ed904"
|
2305
2314
|
dependencies = [
|
2306
2315
|
"cfg_aliases",
|
2307
2316
|
"libc",
|
@@ -2313,9 +2322,9 @@ dependencies = [
|
|
2313
2322
|
|
2314
2323
|
[[package]]
|
2315
2324
|
name = "quote"
|
2316
|
-
version = "1.0.
|
2325
|
+
version = "1.0.38"
|
2317
2326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2318
|
-
checksum = "
|
2327
|
+
checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
|
2319
2328
|
dependencies = [
|
2320
2329
|
"proc-macro2",
|
2321
2330
|
]
|
@@ -2391,18 +2400,18 @@ dependencies = [
|
|
2391
2400
|
|
2392
2401
|
[[package]]
|
2393
2402
|
name = "rb-sys"
|
2394
|
-
version = "0.9.
|
2403
|
+
version = "0.9.105"
|
2395
2404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2396
|
-
checksum = "
|
2405
|
+
checksum = "4b3a1f3ce8e7c36d777d52fe7a99039fe4fea7c8ec355a4c4f3a17f92a14029f"
|
2397
2406
|
dependencies = [
|
2398
2407
|
"rb-sys-build",
|
2399
2408
|
]
|
2400
2409
|
|
2401
2410
|
[[package]]
|
2402
2411
|
name = "rb-sys-build"
|
2403
|
-
version = "0.9.
|
2412
|
+
version = "0.9.105"
|
2404
2413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2405
|
-
checksum = "
|
2414
|
+
checksum = "3e6b246c29c0809e1cbe60a1ba9e093da72a4676d02adc68469297d1e589bbf0"
|
2406
2415
|
dependencies = [
|
2407
2416
|
"bindgen",
|
2408
2417
|
"lazy_static",
|
@@ -2410,7 +2419,7 @@ dependencies = [
|
|
2410
2419
|
"quote",
|
2411
2420
|
"regex",
|
2412
2421
|
"shell-words",
|
2413
|
-
"syn 2.0.
|
2422
|
+
"syn 2.0.93",
|
2414
2423
|
]
|
2415
2424
|
|
2416
2425
|
[[package]]
|
@@ -2436,14 +2445,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2436
2445
|
checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
|
2437
2446
|
dependencies = [
|
2438
2447
|
"quote",
|
2439
|
-
"syn 2.0.
|
2448
|
+
"syn 2.0.93",
|
2440
2449
|
]
|
2441
2450
|
|
2442
2451
|
[[package]]
|
2443
2452
|
name = "redox_syscall"
|
2444
|
-
version = "0.5.
|
2453
|
+
version = "0.5.8"
|
2445
2454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2446
|
-
checksum = "
|
2455
|
+
checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
|
2447
2456
|
dependencies = [
|
2448
2457
|
"bitflags",
|
2449
2458
|
]
|
@@ -2465,7 +2474,7 @@ checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6"
|
|
2465
2474
|
dependencies = [
|
2466
2475
|
"proc-macro2",
|
2467
2476
|
"quote",
|
2468
|
-
"syn 2.0.
|
2477
|
+
"syn 2.0.93",
|
2469
2478
|
]
|
2470
2479
|
|
2471
2480
|
[[package]]
|
@@ -2482,9 +2491,9 @@ dependencies = [
|
|
2482
2491
|
|
2483
2492
|
[[package]]
|
2484
2493
|
name = "regex-automata"
|
2485
|
-
version = "0.4.
|
2494
|
+
version = "0.4.9"
|
2486
2495
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2487
|
-
checksum = "
|
2496
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
2488
2497
|
dependencies = [
|
2489
2498
|
"aho-corasick",
|
2490
2499
|
"memchr",
|
@@ -2499,9 +2508,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
2499
2508
|
|
2500
2509
|
[[package]]
|
2501
2510
|
name = "reqwest"
|
2502
|
-
version = "0.12.
|
2511
|
+
version = "0.12.11"
|
2503
2512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2504
|
-
checksum = "
|
2513
|
+
checksum = "7fe060fe50f524be480214aba758c71f99f90ee8c83c5a36b5e9e1d568eb4eb3"
|
2505
2514
|
dependencies = [
|
2506
2515
|
"base64",
|
2507
2516
|
"bytes",
|
@@ -2533,6 +2542,7 @@ dependencies = [
|
|
2533
2542
|
"tokio",
|
2534
2543
|
"tokio-rustls",
|
2535
2544
|
"tokio-util",
|
2545
|
+
"tower",
|
2536
2546
|
"tower-service",
|
2537
2547
|
"url",
|
2538
2548
|
"wasm-bindgen",
|
@@ -2577,28 +2587,28 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
2577
2587
|
|
2578
2588
|
[[package]]
|
2579
2589
|
name = "rustc-hash"
|
2580
|
-
version = "2.
|
2590
|
+
version = "2.1.0"
|
2581
2591
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2582
|
-
checksum = "
|
2592
|
+
checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497"
|
2583
2593
|
|
2584
2594
|
[[package]]
|
2585
2595
|
name = "rustix"
|
2586
|
-
version = "0.38.
|
2596
|
+
version = "0.38.42"
|
2587
2597
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2588
|
-
checksum = "
|
2598
|
+
checksum = "f93dc38ecbab2eb790ff964bb77fa94faf256fd3e73285fd7ba0903b76bedb85"
|
2589
2599
|
dependencies = [
|
2590
2600
|
"bitflags",
|
2591
2601
|
"errno",
|
2592
2602
|
"libc",
|
2593
2603
|
"linux-raw-sys",
|
2594
|
-
"windows-sys 0.
|
2604
|
+
"windows-sys 0.59.0",
|
2595
2605
|
]
|
2596
2606
|
|
2597
2607
|
[[package]]
|
2598
2608
|
name = "rustls"
|
2599
|
-
version = "0.23.
|
2609
|
+
version = "0.23.20"
|
2600
2610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2601
|
-
checksum = "
|
2611
|
+
checksum = "5065c3f250cbd332cd894be57c40fa52387247659b14a2d6041d121547903b1b"
|
2602
2612
|
dependencies = [
|
2603
2613
|
"once_cell",
|
2604
2614
|
"ring",
|
@@ -2610,12 +2620,11 @@ dependencies = [
|
|
2610
2620
|
|
2611
2621
|
[[package]]
|
2612
2622
|
name = "rustls-native-certs"
|
2613
|
-
version = "0.8.
|
2623
|
+
version = "0.8.1"
|
2614
2624
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2615
|
-
checksum = "
|
2625
|
+
checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3"
|
2616
2626
|
dependencies = [
|
2617
2627
|
"openssl-probe",
|
2618
|
-
"rustls-pemfile",
|
2619
2628
|
"rustls-pki-types",
|
2620
2629
|
"schannel",
|
2621
2630
|
"security-framework",
|
@@ -2632,9 +2641,12 @@ dependencies = [
|
|
2632
2641
|
|
2633
2642
|
[[package]]
|
2634
2643
|
name = "rustls-pki-types"
|
2635
|
-
version = "1.10.
|
2644
|
+
version = "1.10.1"
|
2636
2645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2637
|
-
checksum = "
|
2646
|
+
checksum = "d2bf47e6ff922db3825eb750c4e2ff784c6ff8fb9e13046ef6a1d1c5401b0b37"
|
2647
|
+
dependencies = [
|
2648
|
+
"web-time",
|
2649
|
+
]
|
2638
2650
|
|
2639
2651
|
[[package]]
|
2640
2652
|
name = "rustls-webpki"
|
@@ -2649,9 +2661,9 @@ dependencies = [
|
|
2649
2661
|
|
2650
2662
|
[[package]]
|
2651
2663
|
name = "rustversion"
|
2652
|
-
version = "1.0.
|
2664
|
+
version = "1.0.19"
|
2653
2665
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2654
|
-
checksum = "
|
2666
|
+
checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
|
2655
2667
|
|
2656
2668
|
[[package]]
|
2657
2669
|
name = "ryu"
|
@@ -2670,9 +2682,9 @@ dependencies = [
|
|
2670
2682
|
|
2671
2683
|
[[package]]
|
2672
2684
|
name = "schannel"
|
2673
|
-
version = "0.1.
|
2685
|
+
version = "0.1.27"
|
2674
2686
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2675
|
-
checksum = "
|
2687
|
+
checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
|
2676
2688
|
dependencies = [
|
2677
2689
|
"windows-sys 0.59.0",
|
2678
2690
|
]
|
@@ -2685,9 +2697,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2685
2697
|
|
2686
2698
|
[[package]]
|
2687
2699
|
name = "security-framework"
|
2688
|
-
version = "
|
2700
|
+
version = "3.1.0"
|
2689
2701
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2690
|
-
checksum = "
|
2702
|
+
checksum = "81d3f8c9bfcc3cbb6b0179eb57042d75b1582bdc65c3cb95f3fa999509c03cbc"
|
2691
2703
|
dependencies = [
|
2692
2704
|
"bitflags",
|
2693
2705
|
"core-foundation",
|
@@ -2698,9 +2710,9 @@ dependencies = [
|
|
2698
2710
|
|
2699
2711
|
[[package]]
|
2700
2712
|
name = "security-framework-sys"
|
2701
|
-
version = "2.
|
2713
|
+
version = "2.13.0"
|
2702
2714
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2703
|
-
checksum = "
|
2715
|
+
checksum = "1863fd3768cd83c56a7f60faa4dc0d403f1b6df0a38c3c25f44b7894e45370d5"
|
2704
2716
|
dependencies = [
|
2705
2717
|
"core-foundation-sys",
|
2706
2718
|
"libc",
|
@@ -2714,29 +2726,29 @@ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
|
2714
2726
|
|
2715
2727
|
[[package]]
|
2716
2728
|
name = "serde"
|
2717
|
-
version = "1.0.
|
2729
|
+
version = "1.0.217"
|
2718
2730
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2719
|
-
checksum = "
|
2731
|
+
checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
|
2720
2732
|
dependencies = [
|
2721
2733
|
"serde_derive",
|
2722
2734
|
]
|
2723
2735
|
|
2724
2736
|
[[package]]
|
2725
2737
|
name = "serde_derive"
|
2726
|
-
version = "1.0.
|
2738
|
+
version = "1.0.217"
|
2727
2739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2728
|
-
checksum = "
|
2740
|
+
checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
|
2729
2741
|
dependencies = [
|
2730
2742
|
"proc-macro2",
|
2731
2743
|
"quote",
|
2732
|
-
"syn 2.0.
|
2744
|
+
"syn 2.0.93",
|
2733
2745
|
]
|
2734
2746
|
|
2735
2747
|
[[package]]
|
2736
2748
|
name = "serde_json"
|
2737
|
-
version = "1.0.
|
2749
|
+
version = "1.0.134"
|
2738
2750
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2739
|
-
checksum = "
|
2751
|
+
checksum = "d00f4175c42ee48b15416f6193a959ba3a0d67fc699a0db9ad12df9f83991c7d"
|
2740
2752
|
dependencies = [
|
2741
2753
|
"indexmap",
|
2742
2754
|
"itoa",
|
@@ -2771,9 +2783,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2771
2783
|
|
2772
2784
|
[[package]]
|
2773
2785
|
name = "simd-json"
|
2774
|
-
version = "0.14.
|
2786
|
+
version = "0.14.3"
|
2775
2787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2776
|
-
checksum = "
|
2788
|
+
checksum = "aa2bcf6c6e164e81bc7a5d49fc6988b3d515d9e8c07457d7b74ffb9324b9cd40"
|
2777
2789
|
dependencies = [
|
2778
2790
|
"ahash",
|
2779
2791
|
"getrandom",
|
@@ -2824,24 +2836,23 @@ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
2824
2836
|
|
2825
2837
|
[[package]]
|
2826
2838
|
name = "snafu"
|
2827
|
-
version = "0.
|
2839
|
+
version = "0.8.5"
|
2828
2840
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2829
|
-
checksum = "
|
2841
|
+
checksum = "223891c85e2a29c3fe8fb900c1fae5e69c2e42415e3177752e8718475efa5019"
|
2830
2842
|
dependencies = [
|
2831
|
-
"doc-comment",
|
2832
2843
|
"snafu-derive",
|
2833
2844
|
]
|
2834
2845
|
|
2835
2846
|
[[package]]
|
2836
2847
|
name = "snafu-derive"
|
2837
|
-
version = "0.
|
2848
|
+
version = "0.8.5"
|
2838
2849
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2839
|
-
checksum = "
|
2850
|
+
checksum = "03c3c6b7927ffe7ecaa769ee0e3994da3b8cafc8f444578982c83ecb161af917"
|
2840
2851
|
dependencies = [
|
2841
|
-
"heck
|
2852
|
+
"heck",
|
2842
2853
|
"proc-macro2",
|
2843
2854
|
"quote",
|
2844
|
-
"syn
|
2855
|
+
"syn 2.0.93",
|
2845
2856
|
]
|
2846
2857
|
|
2847
2858
|
[[package]]
|
@@ -2852,9 +2863,9 @@ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
|
2852
2863
|
|
2853
2864
|
[[package]]
|
2854
2865
|
name = "socket2"
|
2855
|
-
version = "0.5.
|
2866
|
+
version = "0.5.8"
|
2856
2867
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2857
|
-
checksum = "
|
2868
|
+
checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
|
2858
2869
|
dependencies = [
|
2859
2870
|
"libc",
|
2860
2871
|
"windows-sys 0.52.0",
|
@@ -2868,13 +2879,19 @@ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
2868
2879
|
|
2869
2880
|
[[package]]
|
2870
2881
|
name = "sqlparser"
|
2871
|
-
version = "0.
|
2882
|
+
version = "0.52.0"
|
2872
2883
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2873
|
-
checksum = "
|
2884
|
+
checksum = "9a875d8cd437cc8a97e9aeaeea352ec9a19aea99c23e9effb17757291de80b08"
|
2874
2885
|
dependencies = [
|
2875
2886
|
"log",
|
2876
2887
|
]
|
2877
2888
|
|
2889
|
+
[[package]]
|
2890
|
+
name = "stable_deref_trait"
|
2891
|
+
version = "1.2.0"
|
2892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2893
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
2894
|
+
|
2878
2895
|
[[package]]
|
2879
2896
|
name = "stacker"
|
2880
2897
|
version = "0.1.17"
|
@@ -2927,11 +2944,11 @@ version = "0.26.4"
|
|
2927
2944
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2928
2945
|
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
2929
2946
|
dependencies = [
|
2930
|
-
"heck
|
2947
|
+
"heck",
|
2931
2948
|
"proc-macro2",
|
2932
2949
|
"quote",
|
2933
2950
|
"rustversion",
|
2934
|
-
"syn 2.0.
|
2951
|
+
"syn 2.0.93",
|
2935
2952
|
]
|
2936
2953
|
|
2937
2954
|
[[package]]
|
@@ -2953,9 +2970,9 @@ dependencies = [
|
|
2953
2970
|
|
2954
2971
|
[[package]]
|
2955
2972
|
name = "syn"
|
2956
|
-
version = "2.0.
|
2973
|
+
version = "2.0.93"
|
2957
2974
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2958
|
-
checksum = "
|
2975
|
+
checksum = "9c786062daee0d6db1132800e623df74274a0a87322d8e183338e01b3d98d058"
|
2959
2976
|
dependencies = [
|
2960
2977
|
"proc-macro2",
|
2961
2978
|
"quote",
|
@@ -2964,18 +2981,29 @@ dependencies = [
|
|
2964
2981
|
|
2965
2982
|
[[package]]
|
2966
2983
|
name = "sync_wrapper"
|
2967
|
-
version = "1.0.
|
2984
|
+
version = "1.0.2"
|
2968
2985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2969
|
-
checksum = "
|
2986
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
2970
2987
|
dependencies = [
|
2971
2988
|
"futures-core",
|
2972
2989
|
]
|
2973
2990
|
|
2991
|
+
[[package]]
|
2992
|
+
name = "synstructure"
|
2993
|
+
version = "0.13.1"
|
2994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2995
|
+
checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
2996
|
+
dependencies = [
|
2997
|
+
"proc-macro2",
|
2998
|
+
"quote",
|
2999
|
+
"syn 2.0.93",
|
3000
|
+
]
|
3001
|
+
|
2974
3002
|
[[package]]
|
2975
3003
|
name = "sysinfo"
|
2976
|
-
version = "0.
|
3004
|
+
version = "0.32.1"
|
2977
3005
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2978
|
-
checksum = "
|
3006
|
+
checksum = "4c33cd241af0f2e9e3b5c32163b873b29956890b5342e6745b917ce9d490f4af"
|
2979
3007
|
dependencies = [
|
2980
3008
|
"core-foundation-sys",
|
2981
3009
|
"libc",
|
@@ -2990,37 +3018,41 @@ version = "0.1.6"
|
|
2990
3018
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2991
3019
|
checksum = "c1bbb9f3c5c463a01705937a24fdabc5047929ac764b2d5b9cf681c1f5041ed5"
|
2992
3020
|
|
2993
|
-
[[package]]
|
2994
|
-
name = "target-lexicon"
|
2995
|
-
version = "0.12.16"
|
2996
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2997
|
-
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
2998
|
-
|
2999
3021
|
[[package]]
|
3000
3022
|
name = "thiserror"
|
3001
|
-
version = "
|
3023
|
+
version = "2.0.9"
|
3002
3024
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3003
|
-
checksum = "
|
3025
|
+
checksum = "f072643fd0190df67a8bab670c20ef5d8737177d6ac6b2e9a236cb096206b2cc"
|
3004
3026
|
dependencies = [
|
3005
3027
|
"thiserror-impl",
|
3006
3028
|
]
|
3007
3029
|
|
3008
3030
|
[[package]]
|
3009
3031
|
name = "thiserror-impl"
|
3010
|
-
version = "
|
3032
|
+
version = "2.0.9"
|
3011
3033
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3012
|
-
checksum = "
|
3034
|
+
checksum = "7b50fa271071aae2e6ee85f842e2e28ba8cd2c5fb67f11fcb1fd70b276f9e7d4"
|
3013
3035
|
dependencies = [
|
3014
3036
|
"proc-macro2",
|
3015
3037
|
"quote",
|
3016
|
-
"syn 2.0.
|
3038
|
+
"syn 2.0.93",
|
3039
|
+
]
|
3040
|
+
|
3041
|
+
[[package]]
|
3042
|
+
name = "tinystr"
|
3043
|
+
version = "0.7.6"
|
3044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3045
|
+
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
|
3046
|
+
dependencies = [
|
3047
|
+
"displaydoc",
|
3048
|
+
"zerovec",
|
3017
3049
|
]
|
3018
3050
|
|
3019
3051
|
[[package]]
|
3020
3052
|
name = "tinyvec"
|
3021
|
-
version = "1.8.
|
3053
|
+
version = "1.8.1"
|
3022
3054
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3023
|
-
checksum = "
|
3055
|
+
checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8"
|
3024
3056
|
dependencies = [
|
3025
3057
|
"tinyvec_macros",
|
3026
3058
|
]
|
@@ -3033,9 +3065,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
3033
3065
|
|
3034
3066
|
[[package]]
|
3035
3067
|
name = "tokio"
|
3036
|
-
version = "1.
|
3068
|
+
version = "1.42.0"
|
3037
3069
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3038
|
-
checksum = "
|
3070
|
+
checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551"
|
3039
3071
|
dependencies = [
|
3040
3072
|
"backtrace",
|
3041
3073
|
"bytes",
|
@@ -3055,25 +3087,24 @@ checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
|
|
3055
3087
|
dependencies = [
|
3056
3088
|
"proc-macro2",
|
3057
3089
|
"quote",
|
3058
|
-
"syn 2.0.
|
3090
|
+
"syn 2.0.93",
|
3059
3091
|
]
|
3060
3092
|
|
3061
3093
|
[[package]]
|
3062
3094
|
name = "tokio-rustls"
|
3063
|
-
version = "0.26.
|
3095
|
+
version = "0.26.1"
|
3064
3096
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3065
|
-
checksum = "
|
3097
|
+
checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37"
|
3066
3098
|
dependencies = [
|
3067
3099
|
"rustls",
|
3068
|
-
"rustls-pki-types",
|
3069
3100
|
"tokio",
|
3070
3101
|
]
|
3071
3102
|
|
3072
3103
|
[[package]]
|
3073
3104
|
name = "tokio-util"
|
3074
|
-
version = "0.7.
|
3105
|
+
version = "0.7.13"
|
3075
3106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3076
|
-
checksum = "
|
3107
|
+
checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078"
|
3077
3108
|
dependencies = [
|
3078
3109
|
"bytes",
|
3079
3110
|
"futures-core",
|
@@ -3082,6 +3113,27 @@ dependencies = [
|
|
3082
3113
|
"tokio",
|
3083
3114
|
]
|
3084
3115
|
|
3116
|
+
[[package]]
|
3117
|
+
name = "tower"
|
3118
|
+
version = "0.5.2"
|
3119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3120
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
3121
|
+
dependencies = [
|
3122
|
+
"futures-core",
|
3123
|
+
"futures-util",
|
3124
|
+
"pin-project-lite",
|
3125
|
+
"sync_wrapper",
|
3126
|
+
"tokio",
|
3127
|
+
"tower-layer",
|
3128
|
+
"tower-service",
|
3129
|
+
]
|
3130
|
+
|
3131
|
+
[[package]]
|
3132
|
+
name = "tower-layer"
|
3133
|
+
version = "0.3.3"
|
3134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3135
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
3136
|
+
|
3085
3137
|
[[package]]
|
3086
3138
|
name = "tower-service"
|
3087
3139
|
version = "0.3.3"
|
@@ -3090,9 +3142,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
3090
3142
|
|
3091
3143
|
[[package]]
|
3092
3144
|
name = "tracing"
|
3093
|
-
version = "0.1.
|
3145
|
+
version = "0.1.41"
|
3094
3146
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3095
|
-
checksum = "
|
3147
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
3096
3148
|
dependencies = [
|
3097
3149
|
"pin-project-lite",
|
3098
3150
|
"tracing-attributes",
|
@@ -3101,20 +3153,20 @@ dependencies = [
|
|
3101
3153
|
|
3102
3154
|
[[package]]
|
3103
3155
|
name = "tracing-attributes"
|
3104
|
-
version = "0.1.
|
3156
|
+
version = "0.1.28"
|
3105
3157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3106
|
-
checksum = "
|
3158
|
+
checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
3107
3159
|
dependencies = [
|
3108
3160
|
"proc-macro2",
|
3109
3161
|
"quote",
|
3110
|
-
"syn 2.0.
|
3162
|
+
"syn 2.0.93",
|
3111
3163
|
]
|
3112
3164
|
|
3113
3165
|
[[package]]
|
3114
3166
|
name = "tracing-core"
|
3115
|
-
version = "0.1.
|
3167
|
+
version = "0.1.33"
|
3116
3168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3117
|
-
checksum = "
|
3169
|
+
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
3118
3170
|
dependencies = [
|
3119
3171
|
"once_cell",
|
3120
3172
|
]
|
@@ -3131,26 +3183,11 @@ version = "1.17.0"
|
|
3131
3183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3132
3184
|
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
3133
3185
|
|
3134
|
-
[[package]]
|
3135
|
-
name = "unicode-bidi"
|
3136
|
-
version = "0.3.17"
|
3137
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3138
|
-
checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893"
|
3139
|
-
|
3140
3186
|
[[package]]
|
3141
3187
|
name = "unicode-ident"
|
3142
|
-
version = "1.0.
|
3188
|
+
version = "1.0.14"
|
3143
3189
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3144
|
-
checksum = "
|
3145
|
-
|
3146
|
-
[[package]]
|
3147
|
-
name = "unicode-normalization"
|
3148
|
-
version = "0.1.24"
|
3149
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3150
|
-
checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
|
3151
|
-
dependencies = [
|
3152
|
-
"tinyvec",
|
3153
|
-
]
|
3190
|
+
checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
|
3154
3191
|
|
3155
3192
|
[[package]]
|
3156
3193
|
name = "unicode-reverse"
|
@@ -3169,15 +3206,9 @@ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
3169
3206
|
|
3170
3207
|
[[package]]
|
3171
3208
|
name = "unicode-width"
|
3172
|
-
version = "0.
|
3173
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3174
|
-
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
3175
|
-
|
3176
|
-
[[package]]
|
3177
|
-
name = "unindent"
|
3178
|
-
version = "0.2.3"
|
3209
|
+
version = "0.2.0"
|
3179
3210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3180
|
-
checksum = "
|
3211
|
+
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
|
3181
3212
|
|
3182
3213
|
[[package]]
|
3183
3214
|
name = "untrusted"
|
@@ -3187,15 +3218,27 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
3187
3218
|
|
3188
3219
|
[[package]]
|
3189
3220
|
name = "url"
|
3190
|
-
version = "2.5.
|
3221
|
+
version = "2.5.4"
|
3191
3222
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3192
|
-
checksum = "
|
3223
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
3193
3224
|
dependencies = [
|
3194
3225
|
"form_urlencoded",
|
3195
3226
|
"idna",
|
3196
3227
|
"percent-encoding",
|
3197
3228
|
]
|
3198
3229
|
|
3230
|
+
[[package]]
|
3231
|
+
name = "utf16_iter"
|
3232
|
+
version = "1.0.5"
|
3233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3234
|
+
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
3235
|
+
|
3236
|
+
[[package]]
|
3237
|
+
name = "utf8_iter"
|
3238
|
+
version = "1.0.4"
|
3239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3240
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
3241
|
+
|
3199
3242
|
[[package]]
|
3200
3243
|
name = "uuid"
|
3201
3244
|
version = "1.11.0"
|
@@ -3250,9 +3293,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
3250
3293
|
|
3251
3294
|
[[package]]
|
3252
3295
|
name = "wasm-bindgen"
|
3253
|
-
version = "0.2.
|
3296
|
+
version = "0.2.99"
|
3254
3297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3255
|
-
checksum = "
|
3298
|
+
checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396"
|
3256
3299
|
dependencies = [
|
3257
3300
|
"cfg-if",
|
3258
3301
|
"once_cell",
|
@@ -3261,36 +3304,36 @@ dependencies = [
|
|
3261
3304
|
|
3262
3305
|
[[package]]
|
3263
3306
|
name = "wasm-bindgen-backend"
|
3264
|
-
version = "0.2.
|
3307
|
+
version = "0.2.99"
|
3265
3308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3266
|
-
checksum = "
|
3309
|
+
checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79"
|
3267
3310
|
dependencies = [
|
3268
3311
|
"bumpalo",
|
3269
3312
|
"log",
|
3270
|
-
"once_cell",
|
3271
3313
|
"proc-macro2",
|
3272
3314
|
"quote",
|
3273
|
-
"syn 2.0.
|
3315
|
+
"syn 2.0.93",
|
3274
3316
|
"wasm-bindgen-shared",
|
3275
3317
|
]
|
3276
3318
|
|
3277
3319
|
[[package]]
|
3278
3320
|
name = "wasm-bindgen-futures"
|
3279
|
-
version = "0.4.
|
3321
|
+
version = "0.4.49"
|
3280
3322
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3281
|
-
checksum = "
|
3323
|
+
checksum = "38176d9b44ea84e9184eff0bc34cc167ed044f816accfe5922e54d84cf48eca2"
|
3282
3324
|
dependencies = [
|
3283
3325
|
"cfg-if",
|
3284
3326
|
"js-sys",
|
3327
|
+
"once_cell",
|
3285
3328
|
"wasm-bindgen",
|
3286
3329
|
"web-sys",
|
3287
3330
|
]
|
3288
3331
|
|
3289
3332
|
[[package]]
|
3290
3333
|
name = "wasm-bindgen-macro"
|
3291
|
-
version = "0.2.
|
3334
|
+
version = "0.2.99"
|
3292
3335
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3293
|
-
checksum = "
|
3336
|
+
checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe"
|
3294
3337
|
dependencies = [
|
3295
3338
|
"quote",
|
3296
3339
|
"wasm-bindgen-macro-support",
|
@@ -3298,22 +3341,22 @@ dependencies = [
|
|
3298
3341
|
|
3299
3342
|
[[package]]
|
3300
3343
|
name = "wasm-bindgen-macro-support"
|
3301
|
-
version = "0.2.
|
3344
|
+
version = "0.2.99"
|
3302
3345
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3303
|
-
checksum = "
|
3346
|
+
checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2"
|
3304
3347
|
dependencies = [
|
3305
3348
|
"proc-macro2",
|
3306
3349
|
"quote",
|
3307
|
-
"syn 2.0.
|
3350
|
+
"syn 2.0.93",
|
3308
3351
|
"wasm-bindgen-backend",
|
3309
3352
|
"wasm-bindgen-shared",
|
3310
3353
|
]
|
3311
3354
|
|
3312
3355
|
[[package]]
|
3313
3356
|
name = "wasm-bindgen-shared"
|
3314
|
-
version = "0.2.
|
3357
|
+
version = "0.2.99"
|
3315
3358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3316
|
-
checksum = "
|
3359
|
+
checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6"
|
3317
3360
|
|
3318
3361
|
[[package]]
|
3319
3362
|
name = "wasm-streams"
|
@@ -3330,9 +3373,19 @@ dependencies = [
|
|
3330
3373
|
|
3331
3374
|
[[package]]
|
3332
3375
|
name = "web-sys"
|
3333
|
-
version = "0.3.
|
3376
|
+
version = "0.3.76"
|
3377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3378
|
+
checksum = "04dd7223427d52553d3702c004d3b2fe07c148165faa56313cb00211e31c12bc"
|
3379
|
+
dependencies = [
|
3380
|
+
"js-sys",
|
3381
|
+
"wasm-bindgen",
|
3382
|
+
]
|
3383
|
+
|
3384
|
+
[[package]]
|
3385
|
+
name = "web-time"
|
3386
|
+
version = "1.1.0"
|
3334
3387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3335
|
-
checksum = "
|
3388
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
3336
3389
|
dependencies = [
|
3337
3390
|
"js-sys",
|
3338
3391
|
"wasm-bindgen",
|
@@ -3408,7 +3461,7 @@ checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
|
|
3408
3461
|
dependencies = [
|
3409
3462
|
"proc-macro2",
|
3410
3463
|
"quote",
|
3411
|
-
"syn 2.0.
|
3464
|
+
"syn 2.0.93",
|
3412
3465
|
]
|
3413
3466
|
|
3414
3467
|
[[package]]
|
@@ -3419,7 +3472,7 @@ checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
|
|
3419
3472
|
dependencies = [
|
3420
3473
|
"proc-macro2",
|
3421
3474
|
"quote",
|
3422
|
-
"syn 2.0.
|
3475
|
+
"syn 2.0.93",
|
3423
3476
|
]
|
3424
3477
|
|
3425
3478
|
[[package]]
|
@@ -3543,11 +3596,47 @@ version = "0.52.6"
|
|
3543
3596
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3544
3597
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
3545
3598
|
|
3599
|
+
[[package]]
|
3600
|
+
name = "write16"
|
3601
|
+
version = "1.0.0"
|
3602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3603
|
+
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
3604
|
+
|
3605
|
+
[[package]]
|
3606
|
+
name = "writeable"
|
3607
|
+
version = "0.5.5"
|
3608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3609
|
+
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
3610
|
+
|
3546
3611
|
[[package]]
|
3547
3612
|
name = "xxhash-rust"
|
3548
|
-
version = "0.8.
|
3613
|
+
version = "0.8.14"
|
3614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3615
|
+
checksum = "d7d48f1b18be023c95e7b75f481cac649d74be7c507ff4a407c55cfb957f7934"
|
3616
|
+
|
3617
|
+
[[package]]
|
3618
|
+
name = "yoke"
|
3619
|
+
version = "0.7.5"
|
3620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3621
|
+
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
3622
|
+
dependencies = [
|
3623
|
+
"serde",
|
3624
|
+
"stable_deref_trait",
|
3625
|
+
"yoke-derive",
|
3626
|
+
"zerofrom",
|
3627
|
+
]
|
3628
|
+
|
3629
|
+
[[package]]
|
3630
|
+
name = "yoke-derive"
|
3631
|
+
version = "0.7.5"
|
3549
3632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3550
|
-
checksum = "
|
3633
|
+
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
3634
|
+
dependencies = [
|
3635
|
+
"proc-macro2",
|
3636
|
+
"quote",
|
3637
|
+
"syn 2.0.93",
|
3638
|
+
"synstructure",
|
3639
|
+
]
|
3551
3640
|
|
3552
3641
|
[[package]]
|
3553
3642
|
name = "zerocopy"
|
@@ -3567,7 +3656,28 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
3567
3656
|
dependencies = [
|
3568
3657
|
"proc-macro2",
|
3569
3658
|
"quote",
|
3570
|
-
"syn 2.0.
|
3659
|
+
"syn 2.0.93",
|
3660
|
+
]
|
3661
|
+
|
3662
|
+
[[package]]
|
3663
|
+
name = "zerofrom"
|
3664
|
+
version = "0.1.5"
|
3665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3666
|
+
checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
|
3667
|
+
dependencies = [
|
3668
|
+
"zerofrom-derive",
|
3669
|
+
]
|
3670
|
+
|
3671
|
+
[[package]]
|
3672
|
+
name = "zerofrom-derive"
|
3673
|
+
version = "0.1.5"
|
3674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3675
|
+
checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
|
3676
|
+
dependencies = [
|
3677
|
+
"proc-macro2",
|
3678
|
+
"quote",
|
3679
|
+
"syn 2.0.93",
|
3680
|
+
"synstructure",
|
3571
3681
|
]
|
3572
3682
|
|
3573
3683
|
[[package]]
|
@@ -3576,6 +3686,28 @@ version = "1.8.1"
|
|
3576
3686
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3577
3687
|
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
3578
3688
|
|
3689
|
+
[[package]]
|
3690
|
+
name = "zerovec"
|
3691
|
+
version = "0.10.4"
|
3692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3693
|
+
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
3694
|
+
dependencies = [
|
3695
|
+
"yoke",
|
3696
|
+
"zerofrom",
|
3697
|
+
"zerovec-derive",
|
3698
|
+
]
|
3699
|
+
|
3700
|
+
[[package]]
|
3701
|
+
name = "zerovec-derive"
|
3702
|
+
version = "0.10.3"
|
3703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3704
|
+
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
3705
|
+
dependencies = [
|
3706
|
+
"proc-macro2",
|
3707
|
+
"quote",
|
3708
|
+
"syn 2.0.93",
|
3709
|
+
]
|
3710
|
+
|
3579
3711
|
[[package]]
|
3580
3712
|
name = "zstd"
|
3581
3713
|
version = "0.13.2"
|