polars-df 0.17.0-aarch64-linux → 0.18.0-aarch64-linux
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 +16 -0
- data/Cargo.lock +668 -377
- data/LICENSE-THIRD-PARTY.txt +6123 -2972
- data/README.md +2 -2
- data/lib/polars/3.2/polars.so +0 -0
- data/lib/polars/3.3/polars.so +0 -0
- data/lib/polars/3.4/polars.so +0 -0
- data/lib/polars/data_frame.rb +304 -6
- data/lib/polars/expr.rb +58 -19
- data/lib/polars/functions/eager.rb +145 -16
- data/lib/polars/io/database.rb +17 -0
- data/lib/polars/lazy_frame.rb +135 -18
- data/lib/polars/list_expr.rb +4 -7
- data/lib/polars/schema.rb +29 -0
- data/lib/polars/series.rb +36 -32
- data/lib/polars/version.rb +1 -1
- data/lib/polars.rb +1 -0
- metadata +3 -2
data/Cargo.lock
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# This file is automatically @generated by Cargo.
|
2
2
|
# It is not intended for manual editing.
|
3
|
-
version =
|
3
|
+
version = 4
|
4
4
|
|
5
5
|
[[package]]
|
6
6
|
name = "addr2line"
|
@@ -30,10 +30,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
30
|
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
31
31
|
dependencies = [
|
32
32
|
"cfg-if",
|
33
|
-
"getrandom",
|
33
|
+
"getrandom 0.2.16",
|
34
34
|
"once_cell",
|
35
35
|
"version_check",
|
36
|
-
"zerocopy",
|
36
|
+
"zerocopy 0.7.35",
|
37
37
|
]
|
38
38
|
|
39
39
|
[[package]]
|
@@ -92,9 +92,9 @@ dependencies = [
|
|
92
92
|
|
93
93
|
[[package]]
|
94
94
|
name = "array-init-cursor"
|
95
|
-
version = "0.2.
|
95
|
+
version = "0.2.1"
|
96
96
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
97
|
-
checksum = "
|
97
|
+
checksum = "ed51fe0f224d1d4ea768be38c51f9f831dee9d05c163c11fba0b8c44387b1fc3"
|
98
98
|
|
99
99
|
[[package]]
|
100
100
|
name = "arrayref"
|
@@ -108,6 +108,18 @@ version = "0.7.6"
|
|
108
108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
109
109
|
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
110
110
|
|
111
|
+
[[package]]
|
112
|
+
name = "async-channel"
|
113
|
+
version = "2.3.1"
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
115
|
+
checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
|
116
|
+
dependencies = [
|
117
|
+
"concurrent-queue",
|
118
|
+
"event-listener-strategy",
|
119
|
+
"futures-core",
|
120
|
+
"pin-project-lite",
|
121
|
+
]
|
122
|
+
|
111
123
|
[[package]]
|
112
124
|
name = "async-stream"
|
113
125
|
version = "0.3.6"
|
@@ -132,9 +144,9 @@ dependencies = [
|
|
132
144
|
|
133
145
|
[[package]]
|
134
146
|
name = "async-trait"
|
135
|
-
version = "0.1.
|
147
|
+
version = "0.1.88"
|
136
148
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
137
|
-
checksum = "
|
149
|
+
checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
|
138
150
|
dependencies = [
|
139
151
|
"proc-macro2",
|
140
152
|
"quote",
|
@@ -185,7 +197,7 @@ dependencies = [
|
|
185
197
|
"miniz_oxide",
|
186
198
|
"object",
|
187
199
|
"rustc-demangle",
|
188
|
-
"windows-targets",
|
200
|
+
"windows-targets 0.52.6",
|
189
201
|
]
|
190
202
|
|
191
203
|
[[package]]
|
@@ -225,18 +237,18 @@ dependencies = [
|
|
225
237
|
|
226
238
|
[[package]]
|
227
239
|
name = "bitflags"
|
228
|
-
version = "2.
|
240
|
+
version = "2.9.0"
|
229
241
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
230
|
-
checksum = "
|
242
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
231
243
|
dependencies = [
|
232
244
|
"serde",
|
233
245
|
]
|
234
246
|
|
235
247
|
[[package]]
|
236
248
|
name = "blake3"
|
237
|
-
version = "1.
|
249
|
+
version = "1.8.2"
|
238
250
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
239
|
-
checksum = "
|
251
|
+
checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0"
|
240
252
|
dependencies = [
|
241
253
|
"arrayref",
|
242
254
|
"arrayvec",
|
@@ -267,9 +279,9 @@ dependencies = [
|
|
267
279
|
|
268
280
|
[[package]]
|
269
281
|
name = "brotli-decompressor"
|
270
|
-
version = "4.0.
|
282
|
+
version = "4.0.3"
|
271
283
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
272
|
-
checksum = "
|
284
|
+
checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd"
|
273
285
|
dependencies = [
|
274
286
|
"alloc-no-stdlib",
|
275
287
|
"alloc-stdlib",
|
@@ -277,24 +289,24 @@ dependencies = [
|
|
277
289
|
|
278
290
|
[[package]]
|
279
291
|
name = "bumpalo"
|
280
|
-
version = "3.
|
292
|
+
version = "3.17.0"
|
281
293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
282
|
-
checksum = "
|
294
|
+
checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
|
283
295
|
|
284
296
|
[[package]]
|
285
297
|
name = "bytemuck"
|
286
|
-
version = "1.
|
298
|
+
version = "1.23.0"
|
287
299
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
288
|
-
checksum = "
|
300
|
+
checksum = "9134a6ef01ce4b366b50689c94f82c14bc72bc5d0386829828a2e2752ef7958c"
|
289
301
|
dependencies = [
|
290
302
|
"bytemuck_derive",
|
291
303
|
]
|
292
304
|
|
293
305
|
[[package]]
|
294
306
|
name = "bytemuck_derive"
|
295
|
-
version = "1.
|
307
|
+
version = "1.9.3"
|
296
308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
297
|
-
checksum = "
|
309
|
+
checksum = "7ecc273b49b3205b83d648f0690daa588925572cc5063745bfe547fe7ec8e1a1"
|
298
310
|
dependencies = [
|
299
311
|
"proc-macro2",
|
300
312
|
"quote",
|
@@ -309,9 +321,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
309
321
|
|
310
322
|
[[package]]
|
311
323
|
name = "bytes"
|
312
|
-
version = "1.
|
324
|
+
version = "1.10.1"
|
313
325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
314
|
-
checksum = "
|
326
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
315
327
|
dependencies = [
|
316
328
|
"serde",
|
317
329
|
]
|
@@ -327,9 +339,9 @@ dependencies = [
|
|
327
339
|
|
328
340
|
[[package]]
|
329
341
|
name = "cc"
|
330
|
-
version = "1.2.
|
342
|
+
version = "1.2.21"
|
331
343
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
332
|
-
checksum = "
|
344
|
+
checksum = "8691782945451c1c383942c4874dbe63814f61cb57ef773cda2972682b7bb3c0"
|
333
345
|
dependencies = [
|
334
346
|
"jobserver",
|
335
347
|
"libc",
|
@@ -359,9 +371,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
359
371
|
|
360
372
|
[[package]]
|
361
373
|
name = "chrono"
|
362
|
-
version = "0.4.
|
374
|
+
version = "0.4.41"
|
363
375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
364
|
-
checksum = "
|
376
|
+
checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
|
365
377
|
dependencies = [
|
366
378
|
"android-tzdata",
|
367
379
|
"iana-time-zone",
|
@@ -369,14 +381,14 @@ dependencies = [
|
|
369
381
|
"num-traits",
|
370
382
|
"serde",
|
371
383
|
"wasm-bindgen",
|
372
|
-
"windows-
|
384
|
+
"windows-link",
|
373
385
|
]
|
374
386
|
|
375
387
|
[[package]]
|
376
388
|
name = "chrono-tz"
|
377
|
-
version = "0.10.
|
389
|
+
version = "0.10.3"
|
378
390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
379
|
-
checksum = "
|
391
|
+
checksum = "efdce149c370f133a071ca8ef6ea340b7b88748ab0810097a9e2976eaa34b4f3"
|
380
392
|
dependencies = [
|
381
393
|
"chrono",
|
382
394
|
"chrono-tz-build",
|
@@ -385,9 +397,9 @@ dependencies = [
|
|
385
397
|
|
386
398
|
[[package]]
|
387
399
|
name = "chrono-tz-build"
|
388
|
-
version = "0.4.
|
400
|
+
version = "0.4.1"
|
389
401
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
390
|
-
checksum = "
|
402
|
+
checksum = "8f10f8c9340e31fc120ff885fcdb54a0b48e474bbd77cab557f0c30a3e569402"
|
391
403
|
dependencies = [
|
392
404
|
"parse-zoneinfo",
|
393
405
|
"phf_codegen",
|
@@ -406,13 +418,12 @@ dependencies = [
|
|
406
418
|
|
407
419
|
[[package]]
|
408
420
|
name = "comfy-table"
|
409
|
-
version = "7.1.
|
421
|
+
version = "7.1.4"
|
410
422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
411
|
-
checksum = "
|
423
|
+
checksum = "4a65ebfec4fb190b6f90e944a817d60499ee0744e582530e2c9900a22e591d9a"
|
412
424
|
dependencies = [
|
413
425
|
"crossterm",
|
414
|
-
"
|
415
|
-
"strum_macros",
|
426
|
+
"unicode-segmentation",
|
416
427
|
"unicode-width",
|
417
428
|
]
|
418
429
|
|
@@ -431,6 +442,15 @@ dependencies = [
|
|
431
442
|
"static_assertions",
|
432
443
|
]
|
433
444
|
|
445
|
+
[[package]]
|
446
|
+
name = "concurrent-queue"
|
447
|
+
version = "2.5.0"
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
449
|
+
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
|
450
|
+
dependencies = [
|
451
|
+
"crossbeam-utils",
|
452
|
+
]
|
453
|
+
|
434
454
|
[[package]]
|
435
455
|
name = "constant_time_eq"
|
436
456
|
version = "0.3.1"
|
@@ -479,9 +499,9 @@ dependencies = [
|
|
479
499
|
|
480
500
|
[[package]]
|
481
501
|
name = "crossbeam-channel"
|
482
|
-
version = "0.5.
|
502
|
+
version = "0.5.15"
|
483
503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
484
|
-
checksum = "
|
504
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
485
505
|
dependencies = [
|
486
506
|
"crossbeam-utils",
|
487
507
|
]
|
@@ -529,7 +549,7 @@ dependencies = [
|
|
529
549
|
"bitflags",
|
530
550
|
"crossterm_winapi",
|
531
551
|
"parking_lot",
|
532
|
-
"rustix",
|
552
|
+
"rustix 0.38.44",
|
533
553
|
"winapi",
|
534
554
|
]
|
535
555
|
|
@@ -575,15 +595,15 @@ dependencies = [
|
|
575
595
|
|
576
596
|
[[package]]
|
577
597
|
name = "dyn-clone"
|
578
|
-
version = "1.0.
|
598
|
+
version = "1.0.19"
|
579
599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
580
|
-
checksum = "
|
600
|
+
checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005"
|
581
601
|
|
582
602
|
[[package]]
|
583
603
|
name = "either"
|
584
|
-
version = "1.
|
604
|
+
version = "1.15.0"
|
585
605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
586
|
-
checksum = "
|
606
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
587
607
|
dependencies = [
|
588
608
|
"serde",
|
589
609
|
]
|
@@ -602,15 +622,15 @@ dependencies = [
|
|
602
622
|
|
603
623
|
[[package]]
|
604
624
|
name = "equivalent"
|
605
|
-
version = "1.0.
|
625
|
+
version = "1.0.2"
|
606
626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
607
|
-
checksum = "
|
627
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
608
628
|
|
609
629
|
[[package]]
|
610
630
|
name = "errno"
|
611
|
-
version = "0.3.
|
631
|
+
version = "0.3.11"
|
612
632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
613
|
-
checksum = "
|
633
|
+
checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
|
614
634
|
dependencies = [
|
615
635
|
"libc",
|
616
636
|
"windows-sys 0.59.0",
|
@@ -618,9 +638,30 @@ dependencies = [
|
|
618
638
|
|
619
639
|
[[package]]
|
620
640
|
name = "ethnum"
|
621
|
-
version = "1.5.
|
641
|
+
version = "1.5.1"
|
622
642
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
623
|
-
checksum = "
|
643
|
+
checksum = "0939f82868b77ef93ce3c3c3daf2b3c526b456741da5a1a4559e590965b6026b"
|
644
|
+
|
645
|
+
[[package]]
|
646
|
+
name = "event-listener"
|
647
|
+
version = "5.4.0"
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
649
|
+
checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
|
650
|
+
dependencies = [
|
651
|
+
"concurrent-queue",
|
652
|
+
"parking",
|
653
|
+
"pin-project-lite",
|
654
|
+
]
|
655
|
+
|
656
|
+
[[package]]
|
657
|
+
name = "event-listener-strategy"
|
658
|
+
version = "0.5.4"
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
660
|
+
checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
|
661
|
+
dependencies = [
|
662
|
+
"event-listener",
|
663
|
+
"pin-project-lite",
|
664
|
+
]
|
624
665
|
|
625
666
|
[[package]]
|
626
667
|
name = "fallible-streaming-iterator"
|
@@ -636,9 +677,9 @@ checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55"
|
|
636
677
|
|
637
678
|
[[package]]
|
638
679
|
name = "flate2"
|
639
|
-
version = "1.
|
680
|
+
version = "1.1.1"
|
640
681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
641
|
-
checksum = "
|
682
|
+
checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
|
642
683
|
dependencies = [
|
643
684
|
"crc32fast",
|
644
685
|
"libz-rs-sys",
|
@@ -662,9 +703,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
662
703
|
|
663
704
|
[[package]]
|
664
705
|
name = "foldhash"
|
665
|
-
version = "0.1.
|
706
|
+
version = "0.1.5"
|
666
707
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
667
|
-
checksum = "
|
708
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
668
709
|
|
669
710
|
[[package]]
|
670
711
|
name = "form_urlencoded"
|
@@ -677,12 +718,12 @@ dependencies = [
|
|
677
718
|
|
678
719
|
[[package]]
|
679
720
|
name = "fs4"
|
680
|
-
version = "0.
|
721
|
+
version = "0.13.1"
|
681
722
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
682
|
-
checksum = "
|
723
|
+
checksum = "8640e34b88f7652208ce9e88b1a37a2ae95227d84abec377ccd3c5cfeb141ed4"
|
683
724
|
dependencies = [
|
684
|
-
"rustix",
|
685
|
-
"windows-sys 0.
|
725
|
+
"rustix 1.0.7",
|
726
|
+
"windows-sys 0.59.0",
|
686
727
|
]
|
687
728
|
|
688
729
|
[[package]]
|
@@ -786,14 +827,28 @@ dependencies = [
|
|
786
827
|
|
787
828
|
[[package]]
|
788
829
|
name = "getrandom"
|
789
|
-
version = "0.2.
|
830
|
+
version = "0.2.16"
|
790
831
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
791
|
-
checksum = "
|
832
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
792
833
|
dependencies = [
|
793
834
|
"cfg-if",
|
794
835
|
"js-sys",
|
795
836
|
"libc",
|
796
|
-
"wasi",
|
837
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
838
|
+
"wasm-bindgen",
|
839
|
+
]
|
840
|
+
|
841
|
+
[[package]]
|
842
|
+
name = "getrandom"
|
843
|
+
version = "0.3.2"
|
844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
845
|
+
checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
|
846
|
+
dependencies = [
|
847
|
+
"cfg-if",
|
848
|
+
"js-sys",
|
849
|
+
"libc",
|
850
|
+
"r-efi",
|
851
|
+
"wasi 0.14.2+wasi-0.2.4",
|
797
852
|
"wasm-bindgen",
|
798
853
|
]
|
799
854
|
|
@@ -811,9 +866,9 @@ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
811
866
|
|
812
867
|
[[package]]
|
813
868
|
name = "h2"
|
814
|
-
version = "0.4.
|
869
|
+
version = "0.4.10"
|
815
870
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
816
|
-
checksum = "
|
871
|
+
checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5"
|
817
872
|
dependencies = [
|
818
873
|
"atomic-waker",
|
819
874
|
"bytes",
|
@@ -852,9 +907,9 @@ dependencies = [
|
|
852
907
|
|
853
908
|
[[package]]
|
854
909
|
name = "hashbrown"
|
855
|
-
version = "0.15.
|
910
|
+
version = "0.15.3"
|
856
911
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
857
|
-
checksum = "
|
912
|
+
checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
|
858
913
|
dependencies = [
|
859
914
|
"allocator-api2",
|
860
915
|
"equivalent",
|
@@ -886,9 +941,9 @@ dependencies = [
|
|
886
941
|
|
887
942
|
[[package]]
|
888
943
|
name = "http"
|
889
|
-
version = "1.
|
944
|
+
version = "1.3.1"
|
890
945
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
891
|
-
checksum = "
|
946
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
892
947
|
dependencies = [
|
893
948
|
"bytes",
|
894
949
|
"fnv",
|
@@ -907,12 +962,12 @@ dependencies = [
|
|
907
962
|
|
908
963
|
[[package]]
|
909
964
|
name = "http-body-util"
|
910
|
-
version = "0.1.
|
965
|
+
version = "0.1.3"
|
911
966
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
912
|
-
checksum = "
|
967
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
913
968
|
dependencies = [
|
914
969
|
"bytes",
|
915
|
-
"futures-
|
970
|
+
"futures-core",
|
916
971
|
"http",
|
917
972
|
"http-body",
|
918
973
|
"pin-project-lite",
|
@@ -920,21 +975,21 @@ dependencies = [
|
|
920
975
|
|
921
976
|
[[package]]
|
922
977
|
name = "httparse"
|
923
|
-
version = "1.
|
978
|
+
version = "1.10.1"
|
924
979
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
925
|
-
checksum = "
|
980
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
926
981
|
|
927
982
|
[[package]]
|
928
983
|
name = "humantime"
|
929
|
-
version = "2.
|
984
|
+
version = "2.2.0"
|
930
985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
931
|
-
checksum = "
|
986
|
+
checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
|
932
987
|
|
933
988
|
[[package]]
|
934
989
|
name = "hyper"
|
935
|
-
version = "1.
|
990
|
+
version = "1.6.0"
|
936
991
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
937
|
-
checksum = "
|
992
|
+
checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
|
938
993
|
dependencies = [
|
939
994
|
"bytes",
|
940
995
|
"futures-channel",
|
@@ -970,9 +1025,9 @@ dependencies = [
|
|
970
1025
|
|
971
1026
|
[[package]]
|
972
1027
|
name = "hyper-util"
|
973
|
-
version = "0.1.
|
1028
|
+
version = "0.1.11"
|
974
1029
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
975
|
-
checksum = "
|
1030
|
+
checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
|
976
1031
|
dependencies = [
|
977
1032
|
"bytes",
|
978
1033
|
"futures-channel",
|
@@ -980,6 +1035,7 @@ dependencies = [
|
|
980
1035
|
"http",
|
981
1036
|
"http-body",
|
982
1037
|
"hyper",
|
1038
|
+
"libc",
|
983
1039
|
"pin-project-lite",
|
984
1040
|
"socket2",
|
985
1041
|
"tokio",
|
@@ -989,16 +1045,17 @@ dependencies = [
|
|
989
1045
|
|
990
1046
|
[[package]]
|
991
1047
|
name = "iana-time-zone"
|
992
|
-
version = "0.1.
|
1048
|
+
version = "0.1.63"
|
993
1049
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
994
|
-
checksum = "
|
1050
|
+
checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
|
995
1051
|
dependencies = [
|
996
1052
|
"android_system_properties",
|
997
1053
|
"core-foundation-sys",
|
998
1054
|
"iana-time-zone-haiku",
|
999
1055
|
"js-sys",
|
1056
|
+
"log",
|
1000
1057
|
"wasm-bindgen",
|
1001
|
-
"windows-core 0.
|
1058
|
+
"windows-core 0.61.0",
|
1002
1059
|
]
|
1003
1060
|
|
1004
1061
|
[[package]]
|
@@ -1051,9 +1108,9 @@ dependencies = [
|
|
1051
1108
|
|
1052
1109
|
[[package]]
|
1053
1110
|
name = "icu_locid_transform_data"
|
1054
|
-
version = "1.5.
|
1111
|
+
version = "1.5.1"
|
1055
1112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1056
|
-
checksum = "
|
1113
|
+
checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
|
1057
1114
|
|
1058
1115
|
[[package]]
|
1059
1116
|
name = "icu_normalizer"
|
@@ -1075,9 +1132,9 @@ dependencies = [
|
|
1075
1132
|
|
1076
1133
|
[[package]]
|
1077
1134
|
name = "icu_normalizer_data"
|
1078
|
-
version = "1.5.
|
1135
|
+
version = "1.5.1"
|
1079
1136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1080
|
-
checksum = "
|
1137
|
+
checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
|
1081
1138
|
|
1082
1139
|
[[package]]
|
1083
1140
|
name = "icu_properties"
|
@@ -1096,9 +1153,9 @@ dependencies = [
|
|
1096
1153
|
|
1097
1154
|
[[package]]
|
1098
1155
|
name = "icu_properties_data"
|
1099
|
-
version = "1.5.
|
1156
|
+
version = "1.5.1"
|
1100
1157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1101
|
-
checksum = "
|
1158
|
+
checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
|
1102
1159
|
|
1103
1160
|
[[package]]
|
1104
1161
|
name = "icu_provider"
|
@@ -1151,12 +1208,12 @@ dependencies = [
|
|
1151
1208
|
|
1152
1209
|
[[package]]
|
1153
1210
|
name = "indexmap"
|
1154
|
-
version = "2.
|
1211
|
+
version = "2.9.0"
|
1155
1212
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1156
|
-
checksum = "
|
1213
|
+
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
1157
1214
|
dependencies = [
|
1158
1215
|
"equivalent",
|
1159
|
-
"hashbrown 0.15.
|
1216
|
+
"hashbrown 0.15.3",
|
1160
1217
|
"serde",
|
1161
1218
|
]
|
1162
1219
|
|
@@ -1177,18 +1234,18 @@ dependencies = [
|
|
1177
1234
|
|
1178
1235
|
[[package]]
|
1179
1236
|
name = "itertools"
|
1180
|
-
version = "0.
|
1237
|
+
version = "0.14.0"
|
1181
1238
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1182
|
-
checksum = "
|
1239
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
1183
1240
|
dependencies = [
|
1184
1241
|
"either",
|
1185
1242
|
]
|
1186
1243
|
|
1187
1244
|
[[package]]
|
1188
1245
|
name = "itoa"
|
1189
|
-
version = "1.0.
|
1246
|
+
version = "1.0.15"
|
1190
1247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1191
|
-
checksum = "
|
1248
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
1192
1249
|
|
1193
1250
|
[[package]]
|
1194
1251
|
name = "jemalloc-sys"
|
@@ -1212,10 +1269,11 @@ dependencies = [
|
|
1212
1269
|
|
1213
1270
|
[[package]]
|
1214
1271
|
name = "jobserver"
|
1215
|
-
version = "0.1.
|
1272
|
+
version = "0.1.33"
|
1216
1273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1217
|
-
checksum = "
|
1274
|
+
checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
|
1218
1275
|
dependencies = [
|
1276
|
+
"getrandom 0.3.2",
|
1219
1277
|
"libc",
|
1220
1278
|
]
|
1221
1279
|
|
@@ -1254,9 +1312,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
1254
1312
|
|
1255
1313
|
[[package]]
|
1256
1314
|
name = "libc"
|
1257
|
-
version = "0.2.
|
1315
|
+
version = "0.2.172"
|
1258
1316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1259
|
-
checksum = "
|
1317
|
+
checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
|
1260
1318
|
|
1261
1319
|
[[package]]
|
1262
1320
|
name = "libflate"
|
@@ -1285,20 +1343,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
1343
|
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
1286
1344
|
dependencies = [
|
1287
1345
|
"cfg-if",
|
1288
|
-
"windows-targets",
|
1346
|
+
"windows-targets 0.52.6",
|
1289
1347
|
]
|
1290
1348
|
|
1291
1349
|
[[package]]
|
1292
1350
|
name = "libm"
|
1293
|
-
version = "0.2.
|
1351
|
+
version = "0.2.14"
|
1294
1352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1295
|
-
checksum = "
|
1353
|
+
checksum = "a25169bd5913a4b437588a7e3d127cd6e90127b60e0ffbd834a38f1599e016b8"
|
1296
1354
|
|
1297
1355
|
[[package]]
|
1298
1356
|
name = "libmimalloc-sys"
|
1299
|
-
version = "0.1.
|
1357
|
+
version = "0.1.42"
|
1300
1358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1301
|
-
checksum = "
|
1359
|
+
checksum = "ec9d6fac27761dabcd4ee73571cdb06b7022dc99089acbe5435691edffaac0f4"
|
1302
1360
|
dependencies = [
|
1303
1361
|
"cc",
|
1304
1362
|
"libc",
|
@@ -1306,9 +1364,9 @@ dependencies = [
|
|
1306
1364
|
|
1307
1365
|
[[package]]
|
1308
1366
|
name = "libz-rs-sys"
|
1309
|
-
version = "0.
|
1367
|
+
version = "0.5.0"
|
1310
1368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1311
|
-
checksum = "
|
1369
|
+
checksum = "6489ca9bd760fe9642d7644e827b0c9add07df89857b0416ee15c1cc1a3b8c5a"
|
1312
1370
|
dependencies = [
|
1313
1371
|
"zlib-rs",
|
1314
1372
|
]
|
@@ -1319,11 +1377,17 @@ version = "0.4.15"
|
|
1319
1377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1320
1378
|
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
1321
1379
|
|
1380
|
+
[[package]]
|
1381
|
+
name = "linux-raw-sys"
|
1382
|
+
version = "0.9.4"
|
1383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1384
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
1385
|
+
|
1322
1386
|
[[package]]
|
1323
1387
|
name = "litemap"
|
1324
|
-
version = "0.7.
|
1388
|
+
version = "0.7.5"
|
1325
1389
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1326
|
-
checksum = "
|
1390
|
+
checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
|
1327
1391
|
|
1328
1392
|
[[package]]
|
1329
1393
|
name = "lock_api"
|
@@ -1337,9 +1401,9 @@ dependencies = [
|
|
1337
1401
|
|
1338
1402
|
[[package]]
|
1339
1403
|
name = "log"
|
1340
|
-
version = "0.4.
|
1404
|
+
version = "0.4.27"
|
1341
1405
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1342
|
-
checksum = "
|
1406
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
1343
1407
|
|
1344
1408
|
[[package]]
|
1345
1409
|
name = "lz4"
|
@@ -1410,9 +1474,9 @@ dependencies = [
|
|
1410
1474
|
|
1411
1475
|
[[package]]
|
1412
1476
|
name = "mimalloc"
|
1413
|
-
version = "0.1.
|
1477
|
+
version = "0.1.46"
|
1414
1478
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1415
|
-
checksum = "
|
1479
|
+
checksum = "995942f432bbb4822a7e9c3faa87a695185b0d09273ba85f097b54f4e458f2af"
|
1416
1480
|
dependencies = [
|
1417
1481
|
"libmimalloc-sys",
|
1418
1482
|
]
|
@@ -1431,9 +1495,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1431
1495
|
|
1432
1496
|
[[package]]
|
1433
1497
|
name = "miniz_oxide"
|
1434
|
-
version = "0.8.
|
1498
|
+
version = "0.8.8"
|
1435
1499
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1436
|
-
checksum = "
|
1500
|
+
checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
|
1437
1501
|
dependencies = [
|
1438
1502
|
"adler2",
|
1439
1503
|
]
|
@@ -1445,7 +1509,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1445
1509
|
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
1446
1510
|
dependencies = [
|
1447
1511
|
"libc",
|
1448
|
-
"wasi",
|
1512
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
1449
1513
|
"windows-sys 0.52.0",
|
1450
1514
|
]
|
1451
1515
|
|
@@ -1498,30 +1562,34 @@ dependencies = [
|
|
1498
1562
|
|
1499
1563
|
[[package]]
|
1500
1564
|
name = "object_store"
|
1501
|
-
version = "0.
|
1565
|
+
version = "0.12.0"
|
1502
1566
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1503
|
-
checksum = "
|
1567
|
+
checksum = "e9ce831b09395f933addbc56d894d889e4b226eba304d4e7adbab591e26daf1e"
|
1504
1568
|
dependencies = [
|
1505
1569
|
"async-trait",
|
1506
1570
|
"base64",
|
1507
1571
|
"bytes",
|
1508
1572
|
"chrono",
|
1573
|
+
"form_urlencoded",
|
1509
1574
|
"futures",
|
1575
|
+
"http",
|
1576
|
+
"http-body-util",
|
1510
1577
|
"httparse",
|
1511
1578
|
"humantime",
|
1512
1579
|
"hyper",
|
1513
|
-
"itertools 0.
|
1580
|
+
"itertools 0.14.0",
|
1514
1581
|
"md-5",
|
1515
1582
|
"parking_lot",
|
1516
1583
|
"percent-encoding",
|
1517
1584
|
"quick-xml",
|
1518
|
-
"rand",
|
1585
|
+
"rand 0.8.5",
|
1519
1586
|
"reqwest",
|
1520
1587
|
"ring",
|
1521
1588
|
"rustls-pemfile",
|
1522
1589
|
"serde",
|
1523
1590
|
"serde_json",
|
1524
|
-
"
|
1591
|
+
"serde_urlencoded",
|
1592
|
+
"thiserror",
|
1525
1593
|
"tokio",
|
1526
1594
|
"tracing",
|
1527
1595
|
"url",
|
@@ -1530,9 +1598,9 @@ dependencies = [
|
|
1530
1598
|
|
1531
1599
|
[[package]]
|
1532
1600
|
name = "once_cell"
|
1533
|
-
version = "1.
|
1601
|
+
version = "1.21.3"
|
1534
1602
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1535
|
-
checksum = "
|
1603
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
1536
1604
|
|
1537
1605
|
[[package]]
|
1538
1606
|
name = "openssl-probe"
|
@@ -1540,6 +1608,12 @@ version = "0.1.6"
|
|
1540
1608
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1541
1609
|
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
1542
1610
|
|
1611
|
+
[[package]]
|
1612
|
+
name = "parking"
|
1613
|
+
version = "2.2.1"
|
1614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1615
|
+
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
|
1616
|
+
|
1543
1617
|
[[package]]
|
1544
1618
|
name = "parking_lot"
|
1545
1619
|
version = "0.12.3"
|
@@ -1560,7 +1634,7 @@ dependencies = [
|
|
1560
1634
|
"libc",
|
1561
1635
|
"redox_syscall",
|
1562
1636
|
"smallvec",
|
1563
|
-
"windows-targets",
|
1637
|
+
"windows-targets 0.52.6",
|
1564
1638
|
]
|
1565
1639
|
|
1566
1640
|
[[package]]
|
@@ -1572,6 +1646,12 @@ dependencies = [
|
|
1572
1646
|
"regex",
|
1573
1647
|
]
|
1574
1648
|
|
1649
|
+
[[package]]
|
1650
|
+
name = "paste"
|
1651
|
+
version = "1.0.15"
|
1652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1653
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
1654
|
+
|
1575
1655
|
[[package]]
|
1576
1656
|
name = "percent-encoding"
|
1577
1657
|
version = "2.3.1"
|
@@ -1604,7 +1684,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1604
1684
|
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
1605
1685
|
dependencies = [
|
1606
1686
|
"phf_shared",
|
1607
|
-
"rand",
|
1687
|
+
"rand 0.8.5",
|
1608
1688
|
]
|
1609
1689
|
|
1610
1690
|
[[package]]
|
@@ -1630,9 +1710,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1630
1710
|
|
1631
1711
|
[[package]]
|
1632
1712
|
name = "pkg-config"
|
1633
|
-
version = "0.3.
|
1713
|
+
version = "0.3.32"
|
1634
1714
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1635
|
-
checksum = "
|
1715
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
1636
1716
|
|
1637
1717
|
[[package]]
|
1638
1718
|
name = "planus"
|
@@ -1645,7 +1725,7 @@ dependencies = [
|
|
1645
1725
|
|
1646
1726
|
[[package]]
|
1647
1727
|
name = "polars"
|
1648
|
-
version = "0.
|
1728
|
+
version = "0.18.0"
|
1649
1729
|
dependencies = [
|
1650
1730
|
"ahash",
|
1651
1731
|
"bytes",
|
@@ -1654,7 +1734,8 @@ dependencies = [
|
|
1654
1734
|
"jemallocator",
|
1655
1735
|
"magnus",
|
1656
1736
|
"mimalloc",
|
1657
|
-
"
|
1737
|
+
"num-traits",
|
1738
|
+
"polars 0.47.1",
|
1658
1739
|
"polars-arrow",
|
1659
1740
|
"polars-core",
|
1660
1741
|
"polars-parquet",
|
@@ -1667,11 +1748,11 @@ dependencies = [
|
|
1667
1748
|
|
1668
1749
|
[[package]]
|
1669
1750
|
name = "polars"
|
1670
|
-
version = "0.
|
1751
|
+
version = "0.47.1"
|
1671
1752
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1672
|
-
checksum = "
|
1753
|
+
checksum = "ac02460e291fae58ad7859623ba90e4299a6f7899a3f583d7e5805fe7bfa9089"
|
1673
1754
|
dependencies = [
|
1674
|
-
"getrandom",
|
1755
|
+
"getrandom 0.2.16",
|
1675
1756
|
"polars-arrow",
|
1676
1757
|
"polars-core",
|
1677
1758
|
"polars-error",
|
@@ -1688,11 +1769,10 @@ dependencies = [
|
|
1688
1769
|
|
1689
1770
|
[[package]]
|
1690
1771
|
name = "polars-arrow"
|
1691
|
-
version = "0.
|
1772
|
+
version = "0.47.1"
|
1692
1773
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1693
|
-
checksum = "
|
1774
|
+
checksum = "78bb7b06ed46dc65fdd33a7a5900b6a42aac436fda954b02e01b6d1a7cbcc79a"
|
1694
1775
|
dependencies = [
|
1695
|
-
"ahash",
|
1696
1776
|
"atoi_simd",
|
1697
1777
|
"avro-schema",
|
1698
1778
|
"bytemuck",
|
@@ -1701,8 +1781,8 @@ dependencies = [
|
|
1701
1781
|
"dyn-clone",
|
1702
1782
|
"either",
|
1703
1783
|
"ethnum",
|
1704
|
-
"getrandom",
|
1705
|
-
"hashbrown 0.15.
|
1784
|
+
"getrandom 0.2.16",
|
1785
|
+
"hashbrown 0.15.3",
|
1706
1786
|
"itoa",
|
1707
1787
|
"lz4",
|
1708
1788
|
"num-traits",
|
@@ -1732,32 +1812,36 @@ dependencies = [
|
|
1732
1812
|
|
1733
1813
|
[[package]]
|
1734
1814
|
name = "polars-compute"
|
1735
|
-
version = "0.
|
1815
|
+
version = "0.47.1"
|
1736
1816
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1737
|
-
checksum = "
|
1817
|
+
checksum = "0314d92b13c2b5c65552970ef51f0265359a8313f3c64115ffa653be10203b2f"
|
1738
1818
|
dependencies = [
|
1739
1819
|
"atoi_simd",
|
1740
1820
|
"bytemuck",
|
1741
1821
|
"chrono",
|
1742
1822
|
"either",
|
1743
1823
|
"fast-float2",
|
1824
|
+
"hashbrown 0.15.3",
|
1744
1825
|
"itoa",
|
1745
1826
|
"num-traits",
|
1746
1827
|
"polars-arrow",
|
1747
1828
|
"polars-error",
|
1748
1829
|
"polars-utils",
|
1830
|
+
"rand 0.8.5",
|
1749
1831
|
"ryu",
|
1832
|
+
"serde",
|
1833
|
+
"skiplist",
|
1750
1834
|
"strength_reduce",
|
1835
|
+
"strum_macros",
|
1751
1836
|
"version_check",
|
1752
1837
|
]
|
1753
1838
|
|
1754
1839
|
[[package]]
|
1755
1840
|
name = "polars-core"
|
1756
|
-
version = "0.
|
1841
|
+
version = "0.47.1"
|
1757
1842
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1758
|
-
checksum = "
|
1843
|
+
checksum = "77a69359af2d0b24839974f38a3144b8b2fdfd187c6f11e8410b90378e19bf56"
|
1759
1844
|
dependencies = [
|
1760
|
-
"ahash",
|
1761
1845
|
"bitflags",
|
1762
1846
|
"bytemuck",
|
1763
1847
|
"chrono",
|
@@ -1765,54 +1849,51 @@ dependencies = [
|
|
1765
1849
|
"comfy-table",
|
1766
1850
|
"either",
|
1767
1851
|
"hashbrown 0.14.5",
|
1768
|
-
"hashbrown 0.15.
|
1852
|
+
"hashbrown 0.15.3",
|
1769
1853
|
"indexmap",
|
1770
1854
|
"itoa",
|
1771
1855
|
"num-traits",
|
1772
|
-
"once_cell",
|
1773
1856
|
"polars-arrow",
|
1774
1857
|
"polars-compute",
|
1775
1858
|
"polars-error",
|
1776
1859
|
"polars-row",
|
1777
1860
|
"polars-schema",
|
1778
1861
|
"polars-utils",
|
1779
|
-
"rand",
|
1862
|
+
"rand 0.8.5",
|
1780
1863
|
"rand_distr",
|
1781
1864
|
"rayon",
|
1782
1865
|
"regex",
|
1783
1866
|
"serde",
|
1784
1867
|
"serde_json",
|
1785
1868
|
"strum_macros",
|
1786
|
-
"thiserror",
|
1787
1869
|
"version_check",
|
1788
1870
|
"xxhash-rust",
|
1789
1871
|
]
|
1790
1872
|
|
1791
1873
|
[[package]]
|
1792
1874
|
name = "polars-error"
|
1793
|
-
version = "0.
|
1875
|
+
version = "0.47.1"
|
1794
1876
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1795
|
-
checksum = "
|
1877
|
+
checksum = "0331d53bc142e1c46d218d9d36e4bd22cdb203c821e1a399c03d55e37c5084d3"
|
1796
1878
|
dependencies = [
|
1797
1879
|
"avro-schema",
|
1798
1880
|
"object_store",
|
1881
|
+
"parking_lot",
|
1799
1882
|
"polars-arrow-format",
|
1800
1883
|
"regex",
|
1884
|
+
"signal-hook",
|
1801
1885
|
"simdutf8",
|
1802
|
-
"thiserror",
|
1803
1886
|
]
|
1804
1887
|
|
1805
1888
|
[[package]]
|
1806
1889
|
name = "polars-expr"
|
1807
|
-
version = "0.
|
1890
|
+
version = "0.47.1"
|
1808
1891
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1809
|
-
checksum = "
|
1892
|
+
checksum = "f86b2c7c352fa121b45a9610a582f4be5f4b3b2c497e4f4031aaef910caf2517"
|
1810
1893
|
dependencies = [
|
1811
|
-
"ahash",
|
1812
1894
|
"bitflags",
|
1813
|
-
"hashbrown 0.15.
|
1895
|
+
"hashbrown 0.15.3",
|
1814
1896
|
"num-traits",
|
1815
|
-
"once_cell",
|
1816
1897
|
"polars-arrow",
|
1817
1898
|
"polars-compute",
|
1818
1899
|
"polars-core",
|
@@ -1822,17 +1903,17 @@ dependencies = [
|
|
1822
1903
|
"polars-row",
|
1823
1904
|
"polars-time",
|
1824
1905
|
"polars-utils",
|
1825
|
-
"rand",
|
1906
|
+
"rand 0.8.5",
|
1826
1907
|
"rayon",
|
1908
|
+
"recursive",
|
1827
1909
|
]
|
1828
1910
|
|
1829
1911
|
[[package]]
|
1830
1912
|
name = "polars-io"
|
1831
|
-
version = "0.
|
1913
|
+
version = "0.47.1"
|
1832
1914
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1833
|
-
checksum = "
|
1915
|
+
checksum = "4f4583e7642b0fdd36d102834d95d40deb7e3eaea29c6e69d6cf14f9e2b22b86"
|
1834
1916
|
dependencies = [
|
1835
|
-
"ahash",
|
1836
1917
|
"async-trait",
|
1837
1918
|
"atoi_simd",
|
1838
1919
|
"blake3",
|
@@ -1843,14 +1924,13 @@ dependencies = [
|
|
1843
1924
|
"fs4",
|
1844
1925
|
"futures",
|
1845
1926
|
"glob",
|
1846
|
-
"hashbrown 0.15.
|
1927
|
+
"hashbrown 0.15.3",
|
1847
1928
|
"home",
|
1848
1929
|
"itoa",
|
1849
1930
|
"memchr",
|
1850
1931
|
"memmap2",
|
1851
1932
|
"num-traits",
|
1852
1933
|
"object_store",
|
1853
|
-
"once_cell",
|
1854
1934
|
"percent-encoding",
|
1855
1935
|
"polars-arrow",
|
1856
1936
|
"polars-core",
|
@@ -1875,15 +1955,14 @@ dependencies = [
|
|
1875
1955
|
|
1876
1956
|
[[package]]
|
1877
1957
|
name = "polars-json"
|
1878
|
-
version = "0.
|
1958
|
+
version = "0.47.1"
|
1879
1959
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1880
|
-
checksum = "
|
1960
|
+
checksum = "82eb2da3f08d5df303a1b89bdfa2741950474a64ce4b811af7e6f30f869c9a3a"
|
1881
1961
|
dependencies = [
|
1882
|
-
"ahash",
|
1883
1962
|
"chrono",
|
1884
1963
|
"chrono-tz",
|
1885
1964
|
"fallible-streaming-iterator",
|
1886
|
-
"hashbrown 0.15.
|
1965
|
+
"hashbrown 0.15.3",
|
1887
1966
|
"indexmap",
|
1888
1967
|
"itoa",
|
1889
1968
|
"num-traits",
|
@@ -1898,17 +1977,17 @@ dependencies = [
|
|
1898
1977
|
|
1899
1978
|
[[package]]
|
1900
1979
|
name = "polars-lazy"
|
1901
|
-
version = "0.
|
1980
|
+
version = "0.47.1"
|
1902
1981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1903
|
-
checksum = "
|
1982
|
+
checksum = "592adb285860014312f7e18cdad10ff67e984b3047c768f80110f8ce0b95044e"
|
1904
1983
|
dependencies = [
|
1905
|
-
"ahash",
|
1906
1984
|
"bitflags",
|
1907
1985
|
"chrono",
|
1986
|
+
"either",
|
1908
1987
|
"futures",
|
1909
1988
|
"memchr",
|
1910
|
-
"once_cell",
|
1911
1989
|
"polars-arrow",
|
1990
|
+
"polars-compute",
|
1912
1991
|
"polars-core",
|
1913
1992
|
"polars-expr",
|
1914
1993
|
"polars-io",
|
@@ -1927,9 +2006,9 @@ dependencies = [
|
|
1927
2006
|
|
1928
2007
|
[[package]]
|
1929
2008
|
name = "polars-mem-engine"
|
1930
|
-
version = "0.
|
2009
|
+
version = "0.47.1"
|
1931
2010
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1932
|
-
checksum = "
|
2011
|
+
checksum = "6c0993cf0fd5ee8259b29798fe6a4c1c9187f83f3dc7cedb865e1b830099f122"
|
1933
2012
|
dependencies = [
|
1934
2013
|
"futures",
|
1935
2014
|
"memmap2",
|
@@ -1944,16 +2023,16 @@ dependencies = [
|
|
1944
2023
|
"polars-time",
|
1945
2024
|
"polars-utils",
|
1946
2025
|
"rayon",
|
2026
|
+
"recursive",
|
1947
2027
|
"tokio",
|
1948
2028
|
]
|
1949
2029
|
|
1950
2030
|
[[package]]
|
1951
2031
|
name = "polars-ops"
|
1952
|
-
version = "0.
|
2032
|
+
version = "0.47.1"
|
1953
2033
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1954
|
-
checksum = "
|
2034
|
+
checksum = "eb498945651de799377b3ef584972bd2d81a34636b47ed39805cc69892024444"
|
1955
2035
|
dependencies = [
|
1956
|
-
"ahash",
|
1957
2036
|
"aho-corasick",
|
1958
2037
|
"argminmax",
|
1959
2038
|
"base64",
|
@@ -1961,13 +2040,13 @@ dependencies = [
|
|
1961
2040
|
"chrono",
|
1962
2041
|
"chrono-tz",
|
1963
2042
|
"either",
|
1964
|
-
"hashbrown 0.15.
|
2043
|
+
"hashbrown 0.15.3",
|
1965
2044
|
"hex",
|
1966
2045
|
"indexmap",
|
1967
2046
|
"jsonpath_lib_polars_vendor",
|
2047
|
+
"libm",
|
1968
2048
|
"memchr",
|
1969
2049
|
"num-traits",
|
1970
|
-
"once_cell",
|
1971
2050
|
"polars-arrow",
|
1972
2051
|
"polars-compute",
|
1973
2052
|
"polars-core",
|
@@ -1975,7 +2054,7 @@ dependencies = [
|
|
1975
2054
|
"polars-json",
|
1976
2055
|
"polars-schema",
|
1977
2056
|
"polars-utils",
|
1978
|
-
"rand",
|
2057
|
+
"rand 0.8.5",
|
1979
2058
|
"rand_distr",
|
1980
2059
|
"rayon",
|
1981
2060
|
"regex",
|
@@ -1990,11 +2069,10 @@ dependencies = [
|
|
1990
2069
|
|
1991
2070
|
[[package]]
|
1992
2071
|
name = "polars-parquet"
|
1993
|
-
version = "0.
|
2072
|
+
version = "0.47.1"
|
1994
2073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1995
|
-
checksum = "
|
2074
|
+
checksum = "a06cbddfd99a7055be4d8039f5dcc83b688e6e6eb6d1c87ed77a34391b87d79c"
|
1996
2075
|
dependencies = [
|
1997
|
-
"ahash",
|
1998
2076
|
"async-stream",
|
1999
2077
|
"base64",
|
2000
2078
|
"brotli",
|
@@ -2002,7 +2080,7 @@ dependencies = [
|
|
2002
2080
|
"ethnum",
|
2003
2081
|
"flate2",
|
2004
2082
|
"futures",
|
2005
|
-
"hashbrown 0.15.
|
2083
|
+
"hashbrown 0.15.3",
|
2006
2084
|
"lz4",
|
2007
2085
|
"num-traits",
|
2008
2086
|
"polars-arrow",
|
@@ -2029,17 +2107,16 @@ dependencies = [
|
|
2029
2107
|
|
2030
2108
|
[[package]]
|
2031
2109
|
name = "polars-pipe"
|
2032
|
-
version = "0.
|
2110
|
+
version = "0.47.1"
|
2033
2111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2034
|
-
checksum = "
|
2112
|
+
checksum = "c16083c97c2b335f44af22c51b2194ae4df00ea6833ef09f1c0da9e743ba863e"
|
2035
2113
|
dependencies = [
|
2036
2114
|
"crossbeam-channel",
|
2037
2115
|
"crossbeam-queue",
|
2038
2116
|
"enum_dispatch",
|
2039
2117
|
"futures",
|
2040
|
-
"hashbrown 0.15.
|
2118
|
+
"hashbrown 0.15.3",
|
2041
2119
|
"num-traits",
|
2042
|
-
"once_cell",
|
2043
2120
|
"polars-arrow",
|
2044
2121
|
"polars-compute",
|
2045
2122
|
"polars-core",
|
@@ -2057,11 +2134,10 @@ dependencies = [
|
|
2057
2134
|
|
2058
2135
|
[[package]]
|
2059
2136
|
name = "polars-plan"
|
2060
|
-
version = "0.
|
2137
|
+
version = "0.47.1"
|
2061
2138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2062
|
-
checksum = "
|
2139
|
+
checksum = "77b073a7567bf6cc54c8f2c2387aa440afefcb8d2f3572d7a524f6e1d78c8222"
|
2063
2140
|
dependencies = [
|
2064
|
-
"ahash",
|
2065
2141
|
"bitflags",
|
2066
2142
|
"bytemuck",
|
2067
2143
|
"bytes",
|
@@ -2069,10 +2145,9 @@ dependencies = [
|
|
2069
2145
|
"chrono-tz",
|
2070
2146
|
"either",
|
2071
2147
|
"futures",
|
2072
|
-
"hashbrown 0.15.
|
2148
|
+
"hashbrown 0.15.3",
|
2073
2149
|
"memmap2",
|
2074
2150
|
"num-traits",
|
2075
|
-
"once_cell",
|
2076
2151
|
"percent-encoding",
|
2077
2152
|
"polars-arrow",
|
2078
2153
|
"polars-compute",
|
@@ -2093,9 +2168,9 @@ dependencies = [
|
|
2093
2168
|
|
2094
2169
|
[[package]]
|
2095
2170
|
name = "polars-row"
|
2096
|
-
version = "0.
|
2171
|
+
version = "0.47.1"
|
2097
2172
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2098
|
-
checksum = "
|
2173
|
+
checksum = "fd24cbece6f824fa2d9e80336fb3b5a841ee3c9abebdfbd63e4a2ab42c4b1bf6"
|
2099
2174
|
dependencies = [
|
2100
2175
|
"bitflags",
|
2101
2176
|
"bytemuck",
|
@@ -2107,9 +2182,9 @@ dependencies = [
|
|
2107
2182
|
|
2108
2183
|
[[package]]
|
2109
2184
|
name = "polars-schema"
|
2110
|
-
version = "0.
|
2185
|
+
version = "0.47.1"
|
2111
2186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2112
|
-
checksum = "
|
2187
|
+
checksum = "e93baedc84913132cbe978d140ce4e9bbcbf2258247a451dfb59bc3fe5a644b8"
|
2113
2188
|
dependencies = [
|
2114
2189
|
"indexmap",
|
2115
2190
|
"polars-error",
|
@@ -2120,10 +2195,11 @@ dependencies = [
|
|
2120
2195
|
|
2121
2196
|
[[package]]
|
2122
2197
|
name = "polars-sql"
|
2123
|
-
version = "0.
|
2198
|
+
version = "0.47.1"
|
2124
2199
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2125
|
-
checksum = "
|
2200
|
+
checksum = "352ddfc2e986191ef9e68cb9fb3a4c90a5e10d31cc337bd5c981598b45ee3bdf"
|
2126
2201
|
dependencies = [
|
2202
|
+
"bitflags",
|
2127
2203
|
"hex",
|
2128
2204
|
"polars-core",
|
2129
2205
|
"polars-error",
|
@@ -2132,7 +2208,7 @@ dependencies = [
|
|
2132
2208
|
"polars-plan",
|
2133
2209
|
"polars-time",
|
2134
2210
|
"polars-utils",
|
2135
|
-
"rand",
|
2211
|
+
"rand 0.8.5",
|
2136
2212
|
"regex",
|
2137
2213
|
"serde",
|
2138
2214
|
"sqlparser",
|
@@ -2140,17 +2216,24 @@ dependencies = [
|
|
2140
2216
|
|
2141
2217
|
[[package]]
|
2142
2218
|
name = "polars-stream"
|
2143
|
-
version = "0.
|
2219
|
+
version = "0.47.1"
|
2144
2220
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2145
|
-
checksum = "
|
2221
|
+
checksum = "c153a160bd6b1926d0db8dda17defe9883c84f6f076585b41f0ba710d366d97b"
|
2146
2222
|
dependencies = [
|
2223
|
+
"async-channel",
|
2224
|
+
"async-trait",
|
2147
2225
|
"atomic-waker",
|
2226
|
+
"bitflags",
|
2227
|
+
"crossbeam-channel",
|
2148
2228
|
"crossbeam-deque",
|
2229
|
+
"crossbeam-queue",
|
2149
2230
|
"crossbeam-utils",
|
2150
2231
|
"futures",
|
2151
2232
|
"memmap2",
|
2152
2233
|
"parking_lot",
|
2234
|
+
"percent-encoding",
|
2153
2235
|
"pin-project-lite",
|
2236
|
+
"polars-arrow",
|
2154
2237
|
"polars-core",
|
2155
2238
|
"polars-error",
|
2156
2239
|
"polars-expr",
|
@@ -2160,7 +2243,7 @@ dependencies = [
|
|
2160
2243
|
"polars-parquet",
|
2161
2244
|
"polars-plan",
|
2162
2245
|
"polars-utils",
|
2163
|
-
"rand",
|
2246
|
+
"rand 0.8.5",
|
2164
2247
|
"rayon",
|
2165
2248
|
"recursive",
|
2166
2249
|
"slotmap",
|
@@ -2170,9 +2253,9 @@ dependencies = [
|
|
2170
2253
|
|
2171
2254
|
[[package]]
|
2172
2255
|
name = "polars-time"
|
2173
|
-
version = "0.
|
2256
|
+
version = "0.47.1"
|
2174
2257
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2175
|
-
checksum = "
|
2258
|
+
checksum = "dd5ad35038dbbb2084311a823eb84fe4fcfe2dbfc5ecea8d6ce47fedc88e2985"
|
2176
2259
|
dependencies = [
|
2177
2260
|
"atoi_simd",
|
2178
2261
|
"bytemuck",
|
@@ -2180,7 +2263,6 @@ dependencies = [
|
|
2180
2263
|
"chrono-tz",
|
2181
2264
|
"now",
|
2182
2265
|
"num-traits",
|
2183
|
-
"once_cell",
|
2184
2266
|
"polars-arrow",
|
2185
2267
|
"polars-compute",
|
2186
2268
|
"polars-core",
|
@@ -2195,28 +2277,30 @@ dependencies = [
|
|
2195
2277
|
|
2196
2278
|
[[package]]
|
2197
2279
|
name = "polars-utils"
|
2198
|
-
version = "0.
|
2280
|
+
version = "0.47.1"
|
2199
2281
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2200
|
-
checksum = "
|
2282
|
+
checksum = "7c82d0303bcea45d51ff72975266bc9b2911a6f948a8da64c69ec811cf6a9191"
|
2201
2283
|
dependencies = [
|
2202
|
-
"ahash",
|
2203
2284
|
"bincode",
|
2204
2285
|
"bytemuck",
|
2205
2286
|
"bytes",
|
2206
2287
|
"compact_str",
|
2207
2288
|
"flate2",
|
2208
|
-
"
|
2289
|
+
"foldhash",
|
2290
|
+
"hashbrown 0.15.3",
|
2209
2291
|
"indexmap",
|
2210
2292
|
"libc",
|
2211
2293
|
"memmap2",
|
2212
2294
|
"num-traits",
|
2213
|
-
"once_cell",
|
2214
2295
|
"polars-error",
|
2215
|
-
"rand",
|
2296
|
+
"rand 0.8.5",
|
2216
2297
|
"raw-cpuid",
|
2217
2298
|
"rayon",
|
2299
|
+
"regex",
|
2300
|
+
"rmp-serde",
|
2218
2301
|
"serde",
|
2219
2302
|
"serde_json",
|
2303
|
+
"slotmap",
|
2220
2304
|
"stacker",
|
2221
2305
|
"sysinfo",
|
2222
2306
|
"version_check",
|
@@ -2224,36 +2308,36 @@ dependencies = [
|
|
2224
2308
|
|
2225
2309
|
[[package]]
|
2226
2310
|
name = "ppv-lite86"
|
2227
|
-
version = "0.2.
|
2311
|
+
version = "0.2.21"
|
2228
2312
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2229
|
-
checksum = "
|
2313
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
2230
2314
|
dependencies = [
|
2231
|
-
"zerocopy",
|
2315
|
+
"zerocopy 0.8.25",
|
2232
2316
|
]
|
2233
2317
|
|
2234
2318
|
[[package]]
|
2235
2319
|
name = "proc-macro2"
|
2236
|
-
version = "1.0.
|
2320
|
+
version = "1.0.95"
|
2237
2321
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2238
|
-
checksum = "
|
2322
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
2239
2323
|
dependencies = [
|
2240
2324
|
"unicode-ident",
|
2241
2325
|
]
|
2242
2326
|
|
2243
2327
|
[[package]]
|
2244
2328
|
name = "psm"
|
2245
|
-
version = "0.1.
|
2329
|
+
version = "0.1.26"
|
2246
2330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2247
|
-
checksum = "
|
2331
|
+
checksum = "6e944464ec8536cd1beb0bbfd96987eb5e3b72f2ecdafdc5c769a37f1fa2ae1f"
|
2248
2332
|
dependencies = [
|
2249
2333
|
"cc",
|
2250
2334
|
]
|
2251
2335
|
|
2252
2336
|
[[package]]
|
2253
2337
|
name = "quick-xml"
|
2254
|
-
version = "0.37.
|
2338
|
+
version = "0.37.5"
|
2255
2339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2256
|
-
checksum = "
|
2340
|
+
checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
|
2257
2341
|
dependencies = [
|
2258
2342
|
"memchr",
|
2259
2343
|
"serde",
|
@@ -2261,33 +2345,35 @@ dependencies = [
|
|
2261
2345
|
|
2262
2346
|
[[package]]
|
2263
2347
|
name = "quinn"
|
2264
|
-
version = "0.11.
|
2348
|
+
version = "0.11.7"
|
2265
2349
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2266
|
-
checksum = "
|
2350
|
+
checksum = "c3bd15a6f2967aef83887dcb9fec0014580467e33720d073560cf015a5683012"
|
2267
2351
|
dependencies = [
|
2268
2352
|
"bytes",
|
2353
|
+
"cfg_aliases",
|
2269
2354
|
"pin-project-lite",
|
2270
2355
|
"quinn-proto",
|
2271
2356
|
"quinn-udp",
|
2272
|
-
"rustc-hash 2.1.
|
2357
|
+
"rustc-hash 2.1.1",
|
2273
2358
|
"rustls",
|
2274
2359
|
"socket2",
|
2275
2360
|
"thiserror",
|
2276
2361
|
"tokio",
|
2277
2362
|
"tracing",
|
2363
|
+
"web-time",
|
2278
2364
|
]
|
2279
2365
|
|
2280
2366
|
[[package]]
|
2281
2367
|
name = "quinn-proto"
|
2282
|
-
version = "0.11.
|
2368
|
+
version = "0.11.11"
|
2283
2369
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2284
|
-
checksum = "
|
2370
|
+
checksum = "bcbafbbdbb0f638fe3f35f3c56739f77a8a1d070cb25603226c83339b391472b"
|
2285
2371
|
dependencies = [
|
2286
2372
|
"bytes",
|
2287
|
-
"getrandom",
|
2288
|
-
"rand",
|
2373
|
+
"getrandom 0.3.2",
|
2374
|
+
"rand 0.9.1",
|
2289
2375
|
"ring",
|
2290
|
-
"rustc-hash 2.1.
|
2376
|
+
"rustc-hash 2.1.1",
|
2291
2377
|
"rustls",
|
2292
2378
|
"rustls-pki-types",
|
2293
2379
|
"slab",
|
@@ -2299,9 +2385,9 @@ dependencies = [
|
|
2299
2385
|
|
2300
2386
|
[[package]]
|
2301
2387
|
name = "quinn-udp"
|
2302
|
-
version = "0.5.
|
2388
|
+
version = "0.5.12"
|
2303
2389
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2304
|
-
checksum = "
|
2390
|
+
checksum = "ee4e529991f949c5e25755532370b8af5d114acae52326361d68d47af64aa842"
|
2305
2391
|
dependencies = [
|
2306
2392
|
"cfg_aliases",
|
2307
2393
|
"libc",
|
@@ -2313,13 +2399,19 @@ dependencies = [
|
|
2313
2399
|
|
2314
2400
|
[[package]]
|
2315
2401
|
name = "quote"
|
2316
|
-
version = "1.0.
|
2402
|
+
version = "1.0.40"
|
2317
2403
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2318
|
-
checksum = "
|
2404
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
2319
2405
|
dependencies = [
|
2320
2406
|
"proc-macro2",
|
2321
2407
|
]
|
2322
2408
|
|
2409
|
+
[[package]]
|
2410
|
+
name = "r-efi"
|
2411
|
+
version = "5.2.0"
|
2412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2413
|
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
2414
|
+
|
2323
2415
|
[[package]]
|
2324
2416
|
name = "rand"
|
2325
2417
|
version = "0.8.5"
|
@@ -2327,8 +2419,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2327
2419
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
2328
2420
|
dependencies = [
|
2329
2421
|
"libc",
|
2330
|
-
"rand_chacha",
|
2331
|
-
"rand_core",
|
2422
|
+
"rand_chacha 0.3.1",
|
2423
|
+
"rand_core 0.6.4",
|
2424
|
+
]
|
2425
|
+
|
2426
|
+
[[package]]
|
2427
|
+
name = "rand"
|
2428
|
+
version = "0.9.1"
|
2429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2430
|
+
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
|
2431
|
+
dependencies = [
|
2432
|
+
"rand_chacha 0.9.0",
|
2433
|
+
"rand_core 0.9.3",
|
2332
2434
|
]
|
2333
2435
|
|
2334
2436
|
[[package]]
|
@@ -2338,7 +2440,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2338
2440
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
2339
2441
|
dependencies = [
|
2340
2442
|
"ppv-lite86",
|
2341
|
-
"rand_core",
|
2443
|
+
"rand_core 0.6.4",
|
2444
|
+
]
|
2445
|
+
|
2446
|
+
[[package]]
|
2447
|
+
name = "rand_chacha"
|
2448
|
+
version = "0.9.0"
|
2449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2450
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
2451
|
+
dependencies = [
|
2452
|
+
"ppv-lite86",
|
2453
|
+
"rand_core 0.9.3",
|
2342
2454
|
]
|
2343
2455
|
|
2344
2456
|
[[package]]
|
@@ -2347,7 +2459,16 @@ version = "0.6.4"
|
|
2347
2459
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2348
2460
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
2349
2461
|
dependencies = [
|
2350
|
-
"getrandom",
|
2462
|
+
"getrandom 0.2.16",
|
2463
|
+
]
|
2464
|
+
|
2465
|
+
[[package]]
|
2466
|
+
name = "rand_core"
|
2467
|
+
version = "0.9.3"
|
2468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2469
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
2470
|
+
dependencies = [
|
2471
|
+
"getrandom 0.3.2",
|
2351
2472
|
]
|
2352
2473
|
|
2353
2474
|
[[package]]
|
@@ -2357,14 +2478,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2357
2478
|
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
|
2358
2479
|
dependencies = [
|
2359
2480
|
"num-traits",
|
2360
|
-
"rand",
|
2481
|
+
"rand 0.8.5",
|
2361
2482
|
]
|
2362
2483
|
|
2363
2484
|
[[package]]
|
2364
2485
|
name = "raw-cpuid"
|
2365
|
-
version = "11.
|
2486
|
+
version = "11.5.0"
|
2366
2487
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2367
|
-
checksum = "
|
2488
|
+
checksum = "c6df7ab838ed27997ba19a4664507e6f82b41fe6e20be42929332156e5e85146"
|
2368
2489
|
dependencies = [
|
2369
2490
|
"bitflags",
|
2370
2491
|
]
|
@@ -2391,18 +2512,18 @@ dependencies = [
|
|
2391
2512
|
|
2392
2513
|
[[package]]
|
2393
2514
|
name = "rb-sys"
|
2394
|
-
version = "0.9.
|
2515
|
+
version = "0.9.111"
|
2395
2516
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2396
|
-
checksum = "
|
2517
|
+
checksum = "becea799ce051c16fb140be80f5e7cf781070f99ca099332383c2b17861249af"
|
2397
2518
|
dependencies = [
|
2398
2519
|
"rb-sys-build",
|
2399
2520
|
]
|
2400
2521
|
|
2401
2522
|
[[package]]
|
2402
2523
|
name = "rb-sys-build"
|
2403
|
-
version = "0.9.
|
2524
|
+
version = "0.9.111"
|
2404
2525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2405
|
-
checksum = "
|
2526
|
+
checksum = "64691175abc704862f60a9ca8ef06174080cc50615f2bf1d4759f46db18b4d29"
|
2406
2527
|
dependencies = [
|
2407
2528
|
"bindgen",
|
2408
2529
|
"lazy_static",
|
@@ -2441,27 +2562,27 @@ dependencies = [
|
|
2441
2562
|
|
2442
2563
|
[[package]]
|
2443
2564
|
name = "redox_syscall"
|
2444
|
-
version = "0.5.
|
2565
|
+
version = "0.5.12"
|
2445
2566
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2446
|
-
checksum = "
|
2567
|
+
checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af"
|
2447
2568
|
dependencies = [
|
2448
2569
|
"bitflags",
|
2449
2570
|
]
|
2450
2571
|
|
2451
2572
|
[[package]]
|
2452
2573
|
name = "ref-cast"
|
2453
|
-
version = "1.0.
|
2574
|
+
version = "1.0.24"
|
2454
2575
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2455
|
-
checksum = "
|
2576
|
+
checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf"
|
2456
2577
|
dependencies = [
|
2457
2578
|
"ref-cast-impl",
|
2458
2579
|
]
|
2459
2580
|
|
2460
2581
|
[[package]]
|
2461
2582
|
name = "ref-cast-impl"
|
2462
|
-
version = "1.0.
|
2583
|
+
version = "1.0.24"
|
2463
2584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2464
|
-
checksum = "
|
2585
|
+
checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
|
2465
2586
|
dependencies = [
|
2466
2587
|
"proc-macro2",
|
2467
2588
|
"quote",
|
@@ -2499,9 +2620,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
2499
2620
|
|
2500
2621
|
[[package]]
|
2501
2622
|
name = "reqwest"
|
2502
|
-
version = "0.12.
|
2623
|
+
version = "0.12.15"
|
2503
2624
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2504
|
-
checksum = "
|
2625
|
+
checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
|
2505
2626
|
dependencies = [
|
2506
2627
|
"base64",
|
2507
2628
|
"bytes",
|
@@ -2545,15 +2666,14 @@ dependencies = [
|
|
2545
2666
|
|
2546
2667
|
[[package]]
|
2547
2668
|
name = "ring"
|
2548
|
-
version = "0.17.
|
2669
|
+
version = "0.17.14"
|
2549
2670
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2550
|
-
checksum = "
|
2671
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
2551
2672
|
dependencies = [
|
2552
2673
|
"cc",
|
2553
2674
|
"cfg-if",
|
2554
|
-
"getrandom",
|
2675
|
+
"getrandom 0.2.16",
|
2555
2676
|
"libc",
|
2556
|
-
"spin",
|
2557
2677
|
"untrusted",
|
2558
2678
|
"windows-sys 0.52.0",
|
2559
2679
|
]
|
@@ -2564,6 +2684,28 @@ version = "1.0.3"
|
|
2564
2684
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2565
2685
|
checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422"
|
2566
2686
|
|
2687
|
+
[[package]]
|
2688
|
+
name = "rmp"
|
2689
|
+
version = "0.8.14"
|
2690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2691
|
+
checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4"
|
2692
|
+
dependencies = [
|
2693
|
+
"byteorder",
|
2694
|
+
"num-traits",
|
2695
|
+
"paste",
|
2696
|
+
]
|
2697
|
+
|
2698
|
+
[[package]]
|
2699
|
+
name = "rmp-serde"
|
2700
|
+
version = "1.3.0"
|
2701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2702
|
+
checksum = "52e599a477cf9840e92f2cde9a7189e67b42c57532749bf90aea6ec10facd4db"
|
2703
|
+
dependencies = [
|
2704
|
+
"byteorder",
|
2705
|
+
"rmp",
|
2706
|
+
"serde",
|
2707
|
+
]
|
2708
|
+
|
2567
2709
|
[[package]]
|
2568
2710
|
name = "rustc-demangle"
|
2569
2711
|
version = "0.1.24"
|
@@ -2578,9 +2720,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
2578
2720
|
|
2579
2721
|
[[package]]
|
2580
2722
|
name = "rustc-hash"
|
2581
|
-
version = "2.1.
|
2723
|
+
version = "2.1.1"
|
2582
2724
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2583
|
-
checksum = "
|
2725
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
2584
2726
|
|
2585
2727
|
[[package]]
|
2586
2728
|
name = "rustix"
|
@@ -2591,15 +2733,28 @@ dependencies = [
|
|
2591
2733
|
"bitflags",
|
2592
2734
|
"errno",
|
2593
2735
|
"libc",
|
2594
|
-
"linux-raw-sys",
|
2736
|
+
"linux-raw-sys 0.4.15",
|
2737
|
+
"windows-sys 0.59.0",
|
2738
|
+
]
|
2739
|
+
|
2740
|
+
[[package]]
|
2741
|
+
name = "rustix"
|
2742
|
+
version = "1.0.7"
|
2743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2744
|
+
checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
|
2745
|
+
dependencies = [
|
2746
|
+
"bitflags",
|
2747
|
+
"errno",
|
2748
|
+
"libc",
|
2749
|
+
"linux-raw-sys 0.9.4",
|
2595
2750
|
"windows-sys 0.59.0",
|
2596
2751
|
]
|
2597
2752
|
|
2598
2753
|
[[package]]
|
2599
2754
|
name = "rustls"
|
2600
|
-
version = "0.23.
|
2755
|
+
version = "0.23.26"
|
2601
2756
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2602
|
-
checksum = "
|
2757
|
+
checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
|
2603
2758
|
dependencies = [
|
2604
2759
|
"once_cell",
|
2605
2760
|
"ring",
|
@@ -2641,9 +2796,9 @@ dependencies = [
|
|
2641
2796
|
|
2642
2797
|
[[package]]
|
2643
2798
|
name = "rustls-webpki"
|
2644
|
-
version = "0.
|
2799
|
+
version = "0.103.1"
|
2645
2800
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2646
|
-
checksum = "
|
2801
|
+
checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
|
2647
2802
|
dependencies = [
|
2648
2803
|
"ring",
|
2649
2804
|
"rustls-pki-types",
|
@@ -2652,15 +2807,15 @@ dependencies = [
|
|
2652
2807
|
|
2653
2808
|
[[package]]
|
2654
2809
|
name = "rustversion"
|
2655
|
-
version = "1.0.
|
2810
|
+
version = "1.0.20"
|
2656
2811
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2657
|
-
checksum = "
|
2812
|
+
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
2658
2813
|
|
2659
2814
|
[[package]]
|
2660
2815
|
name = "ryu"
|
2661
|
-
version = "1.0.
|
2816
|
+
version = "1.0.20"
|
2662
2817
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2663
|
-
checksum = "
|
2818
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
2664
2819
|
|
2665
2820
|
[[package]]
|
2666
2821
|
name = "same-file"
|
@@ -2711,24 +2866,24 @@ dependencies = [
|
|
2711
2866
|
|
2712
2867
|
[[package]]
|
2713
2868
|
name = "seq-macro"
|
2714
|
-
version = "0.3.
|
2869
|
+
version = "0.3.6"
|
2715
2870
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2716
|
-
checksum = "
|
2871
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
2717
2872
|
|
2718
2873
|
[[package]]
|
2719
2874
|
name = "serde"
|
2720
|
-
version = "1.0.
|
2875
|
+
version = "1.0.219"
|
2721
2876
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2722
|
-
checksum = "
|
2877
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
2723
2878
|
dependencies = [
|
2724
2879
|
"serde_derive",
|
2725
2880
|
]
|
2726
2881
|
|
2727
2882
|
[[package]]
|
2728
2883
|
name = "serde_derive"
|
2729
|
-
version = "1.0.
|
2884
|
+
version = "1.0.219"
|
2730
2885
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2731
|
-
checksum = "
|
2886
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
2732
2887
|
dependencies = [
|
2733
2888
|
"proc-macro2",
|
2734
2889
|
"quote",
|
@@ -2737,9 +2892,9 @@ dependencies = [
|
|
2737
2892
|
|
2738
2893
|
[[package]]
|
2739
2894
|
name = "serde_json"
|
2740
|
-
version = "1.0.
|
2895
|
+
version = "1.0.140"
|
2741
2896
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2742
|
-
checksum = "
|
2897
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
2743
2898
|
dependencies = [
|
2744
2899
|
"indexmap",
|
2745
2900
|
"itoa",
|
@@ -2772,6 +2927,25 @@ version = "1.3.0"
|
|
2772
2927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2773
2928
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
2774
2929
|
|
2930
|
+
[[package]]
|
2931
|
+
name = "signal-hook"
|
2932
|
+
version = "0.3.17"
|
2933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2934
|
+
checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
|
2935
|
+
dependencies = [
|
2936
|
+
"libc",
|
2937
|
+
"signal-hook-registry",
|
2938
|
+
]
|
2939
|
+
|
2940
|
+
[[package]]
|
2941
|
+
name = "signal-hook-registry"
|
2942
|
+
version = "1.4.5"
|
2943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2944
|
+
checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
|
2945
|
+
dependencies = [
|
2946
|
+
"libc",
|
2947
|
+
]
|
2948
|
+
|
2775
2949
|
[[package]]
|
2776
2950
|
name = "simd-json"
|
2777
2951
|
version = "0.14.3"
|
@@ -2779,7 +2953,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2779
2953
|
checksum = "aa2bcf6c6e164e81bc7a5d49fc6988b3d515d9e8c07457d7b74ffb9324b9cd40"
|
2780
2954
|
dependencies = [
|
2781
2955
|
"ahash",
|
2782
|
-
"getrandom",
|
2956
|
+
"getrandom 0.2.16",
|
2783
2957
|
"halfbrown",
|
2784
2958
|
"once_cell",
|
2785
2959
|
"ref-cast",
|
@@ -2801,6 +2975,15 @@ version = "1.0.1"
|
|
2801
2975
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2802
2976
|
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
2803
2977
|
|
2978
|
+
[[package]]
|
2979
|
+
name = "skiplist"
|
2980
|
+
version = "0.5.1"
|
2981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2982
|
+
checksum = "0eec25f46463fcdc5e02f388c2780b1b58e01be81a8378e62ec60931beccc3f6"
|
2983
|
+
dependencies = [
|
2984
|
+
"rand 0.8.5",
|
2985
|
+
]
|
2986
|
+
|
2804
2987
|
[[package]]
|
2805
2988
|
name = "slab"
|
2806
2989
|
version = "0.4.9"
|
@@ -2821,30 +3004,9 @@ dependencies = [
|
|
2821
3004
|
|
2822
3005
|
[[package]]
|
2823
3006
|
name = "smallvec"
|
2824
|
-
version = "1.
|
2825
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2826
|
-
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
2827
|
-
|
2828
|
-
[[package]]
|
2829
|
-
name = "snafu"
|
2830
|
-
version = "0.8.5"
|
3007
|
+
version = "1.15.0"
|
2831
3008
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2832
|
-
checksum = "
|
2833
|
-
dependencies = [
|
2834
|
-
"snafu-derive",
|
2835
|
-
]
|
2836
|
-
|
2837
|
-
[[package]]
|
2838
|
-
name = "snafu-derive"
|
2839
|
-
version = "0.8.5"
|
2840
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2841
|
-
checksum = "03c3c6b7927ffe7ecaa769ee0e3994da3b8cafc8f444578982c83ecb161af917"
|
2842
|
-
dependencies = [
|
2843
|
-
"heck",
|
2844
|
-
"proc-macro2",
|
2845
|
-
"quote",
|
2846
|
-
"syn",
|
2847
|
-
]
|
3009
|
+
checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
2848
3010
|
|
2849
3011
|
[[package]]
|
2850
3012
|
name = "snap"
|
@@ -2854,20 +3016,14 @@ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
|
2854
3016
|
|
2855
3017
|
[[package]]
|
2856
3018
|
name = "socket2"
|
2857
|
-
version = "0.5.
|
3019
|
+
version = "0.5.9"
|
2858
3020
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2859
|
-
checksum = "
|
3021
|
+
checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
|
2860
3022
|
dependencies = [
|
2861
3023
|
"libc",
|
2862
3024
|
"windows-sys 0.52.0",
|
2863
3025
|
]
|
2864
3026
|
|
2865
|
-
[[package]]
|
2866
|
-
name = "spin"
|
2867
|
-
version = "0.9.8"
|
2868
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2869
|
-
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
2870
|
-
|
2871
3027
|
[[package]]
|
2872
3028
|
name = "sqlparser"
|
2873
3029
|
version = "0.53.0"
|
@@ -2885,9 +3041,9 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
2885
3041
|
|
2886
3042
|
[[package]]
|
2887
3043
|
name = "stacker"
|
2888
|
-
version = "0.1.
|
3044
|
+
version = "0.1.21"
|
2889
3045
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2890
|
-
checksum = "
|
3046
|
+
checksum = "cddb07e32ddb770749da91081d8d0ac3a16f1a569a18b20348cd371f5dead06b"
|
2891
3047
|
dependencies = [
|
2892
3048
|
"cc",
|
2893
3049
|
"cfg-if",
|
@@ -2923,12 +3079,6 @@ version = "0.2.4"
|
|
2923
3079
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2924
3080
|
checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
|
2925
3081
|
|
2926
|
-
[[package]]
|
2927
|
-
name = "strum"
|
2928
|
-
version = "0.26.3"
|
2929
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2930
|
-
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
2931
|
-
|
2932
3082
|
[[package]]
|
2933
3083
|
name = "strum_macros"
|
2934
3084
|
version = "0.26.4"
|
@@ -2950,9 +3100,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2950
3100
|
|
2951
3101
|
[[package]]
|
2952
3102
|
name = "syn"
|
2953
|
-
version = "2.0.
|
3103
|
+
version = "2.0.101"
|
2954
3104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2955
|
-
checksum = "
|
3105
|
+
checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
|
2956
3106
|
dependencies = [
|
2957
3107
|
"proc-macro2",
|
2958
3108
|
"quote",
|
@@ -2970,9 +3120,9 @@ dependencies = [
|
|
2970
3120
|
|
2971
3121
|
[[package]]
|
2972
3122
|
name = "synstructure"
|
2973
|
-
version = "0.13.
|
3123
|
+
version = "0.13.2"
|
2974
3124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2975
|
-
checksum = "
|
3125
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
2976
3126
|
dependencies = [
|
2977
3127
|
"proc-macro2",
|
2978
3128
|
"quote",
|
@@ -2994,18 +3144,18 @@ dependencies = [
|
|
2994
3144
|
|
2995
3145
|
[[package]]
|
2996
3146
|
name = "thiserror"
|
2997
|
-
version = "2.0.
|
3147
|
+
version = "2.0.12"
|
2998
3148
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2999
|
-
checksum = "
|
3149
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
3000
3150
|
dependencies = [
|
3001
3151
|
"thiserror-impl",
|
3002
3152
|
]
|
3003
3153
|
|
3004
3154
|
[[package]]
|
3005
3155
|
name = "thiserror-impl"
|
3006
|
-
version = "2.0.
|
3156
|
+
version = "2.0.12"
|
3007
3157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3008
|
-
checksum = "
|
3158
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
3009
3159
|
dependencies = [
|
3010
3160
|
"proc-macro2",
|
3011
3161
|
"quote",
|
@@ -3024,9 +3174,9 @@ dependencies = [
|
|
3024
3174
|
|
3025
3175
|
[[package]]
|
3026
3176
|
name = "tinyvec"
|
3027
|
-
version = "1.
|
3177
|
+
version = "1.9.0"
|
3028
3178
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3029
|
-
checksum = "
|
3179
|
+
checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
|
3030
3180
|
dependencies = [
|
3031
3181
|
"tinyvec_macros",
|
3032
3182
|
]
|
@@ -3039,9 +3189,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
3039
3189
|
|
3040
3190
|
[[package]]
|
3041
3191
|
name = "tokio"
|
3042
|
-
version = "1.
|
3192
|
+
version = "1.44.2"
|
3043
3193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3044
|
-
checksum = "
|
3194
|
+
checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
|
3045
3195
|
dependencies = [
|
3046
3196
|
"backtrace",
|
3047
3197
|
"bytes",
|
@@ -3066,9 +3216,9 @@ dependencies = [
|
|
3066
3216
|
|
3067
3217
|
[[package]]
|
3068
3218
|
name = "tokio-rustls"
|
3069
|
-
version = "0.26.
|
3219
|
+
version = "0.26.2"
|
3070
3220
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3071
|
-
checksum = "
|
3221
|
+
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
|
3072
3222
|
dependencies = [
|
3073
3223
|
"rustls",
|
3074
3224
|
"tokio",
|
@@ -3076,9 +3226,9 @@ dependencies = [
|
|
3076
3226
|
|
3077
3227
|
[[package]]
|
3078
3228
|
name = "tokio-util"
|
3079
|
-
version = "0.7.
|
3229
|
+
version = "0.7.15"
|
3080
3230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3081
|
-
checksum = "
|
3231
|
+
checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
|
3082
3232
|
dependencies = [
|
3083
3233
|
"bytes",
|
3084
3234
|
"futures-core",
|
@@ -3153,15 +3303,15 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
3153
3303
|
|
3154
3304
|
[[package]]
|
3155
3305
|
name = "typenum"
|
3156
|
-
version = "1.
|
3306
|
+
version = "1.18.0"
|
3157
3307
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3158
|
-
checksum = "
|
3308
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
3159
3309
|
|
3160
3310
|
[[package]]
|
3161
3311
|
name = "unicode-ident"
|
3162
|
-
version = "1.0.
|
3312
|
+
version = "1.0.18"
|
3163
3313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3164
|
-
checksum = "
|
3314
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
3165
3315
|
|
3166
3316
|
[[package]]
|
3167
3317
|
name = "unicode-normalization"
|
@@ -3224,11 +3374,11 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3224
3374
|
|
3225
3375
|
[[package]]
|
3226
3376
|
name = "uuid"
|
3227
|
-
version = "1.
|
3377
|
+
version = "1.16.0"
|
3228
3378
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3229
|
-
checksum = "
|
3379
|
+
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
|
3230
3380
|
dependencies = [
|
3231
|
-
"getrandom",
|
3381
|
+
"getrandom 0.3.2",
|
3232
3382
|
]
|
3233
3383
|
|
3234
3384
|
[[package]]
|
@@ -3274,6 +3424,15 @@ version = "0.11.0+wasi-snapshot-preview1"
|
|
3274
3424
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3275
3425
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
3276
3426
|
|
3427
|
+
[[package]]
|
3428
|
+
name = "wasi"
|
3429
|
+
version = "0.14.2+wasi-0.2.4"
|
3430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3431
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
3432
|
+
dependencies = [
|
3433
|
+
"wit-bindgen-rt",
|
3434
|
+
]
|
3435
|
+
|
3277
3436
|
[[package]]
|
3278
3437
|
name = "wasm-bindgen"
|
3279
3438
|
version = "0.2.100"
|
@@ -3416,28 +3575,32 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3416
3575
|
checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
|
3417
3576
|
dependencies = [
|
3418
3577
|
"windows-core 0.57.0",
|
3419
|
-
"windows-targets",
|
3578
|
+
"windows-targets 0.52.6",
|
3420
3579
|
]
|
3421
3580
|
|
3422
3581
|
[[package]]
|
3423
3582
|
name = "windows-core"
|
3424
|
-
version = "0.
|
3583
|
+
version = "0.57.0"
|
3425
3584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3426
|
-
checksum = "
|
3585
|
+
checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
|
3427
3586
|
dependencies = [
|
3428
|
-
"windows-
|
3587
|
+
"windows-implement 0.57.0",
|
3588
|
+
"windows-interface 0.57.0",
|
3589
|
+
"windows-result 0.1.2",
|
3590
|
+
"windows-targets 0.52.6",
|
3429
3591
|
]
|
3430
3592
|
|
3431
3593
|
[[package]]
|
3432
3594
|
name = "windows-core"
|
3433
|
-
version = "0.
|
3595
|
+
version = "0.61.0"
|
3434
3596
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3435
|
-
checksum = "
|
3597
|
+
checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
|
3436
3598
|
dependencies = [
|
3437
|
-
"windows-implement",
|
3438
|
-
"windows-interface",
|
3439
|
-
"windows-
|
3440
|
-
"windows-
|
3599
|
+
"windows-implement 0.60.0",
|
3600
|
+
"windows-interface 0.59.1",
|
3601
|
+
"windows-link",
|
3602
|
+
"windows-result 0.3.2",
|
3603
|
+
"windows-strings 0.4.0",
|
3441
3604
|
]
|
3442
3605
|
|
3443
3606
|
[[package]]
|
@@ -3451,6 +3614,17 @@ dependencies = [
|
|
3451
3614
|
"syn",
|
3452
3615
|
]
|
3453
3616
|
|
3617
|
+
[[package]]
|
3618
|
+
name = "windows-implement"
|
3619
|
+
version = "0.60.0"
|
3620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3621
|
+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
3622
|
+
dependencies = [
|
3623
|
+
"proc-macro2",
|
3624
|
+
"quote",
|
3625
|
+
"syn",
|
3626
|
+
]
|
3627
|
+
|
3454
3628
|
[[package]]
|
3455
3629
|
name = "windows-interface"
|
3456
3630
|
version = "0.57.0"
|
@@ -3462,15 +3636,32 @@ dependencies = [
|
|
3462
3636
|
"syn",
|
3463
3637
|
]
|
3464
3638
|
|
3639
|
+
[[package]]
|
3640
|
+
name = "windows-interface"
|
3641
|
+
version = "0.59.1"
|
3642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3643
|
+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
3644
|
+
dependencies = [
|
3645
|
+
"proc-macro2",
|
3646
|
+
"quote",
|
3647
|
+
"syn",
|
3648
|
+
]
|
3649
|
+
|
3650
|
+
[[package]]
|
3651
|
+
name = "windows-link"
|
3652
|
+
version = "0.1.1"
|
3653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3654
|
+
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
3655
|
+
|
3465
3656
|
[[package]]
|
3466
3657
|
name = "windows-registry"
|
3467
|
-
version = "0.
|
3658
|
+
version = "0.4.0"
|
3468
3659
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3469
|
-
checksum = "
|
3660
|
+
checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
|
3470
3661
|
dependencies = [
|
3471
|
-
"windows-result 0.2
|
3472
|
-
"windows-strings",
|
3473
|
-
"windows-targets",
|
3662
|
+
"windows-result 0.3.2",
|
3663
|
+
"windows-strings 0.3.1",
|
3664
|
+
"windows-targets 0.53.0",
|
3474
3665
|
]
|
3475
3666
|
|
3476
3667
|
[[package]]
|
@@ -3479,26 +3670,34 @@ version = "0.1.2"
|
|
3479
3670
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3480
3671
|
checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
|
3481
3672
|
dependencies = [
|
3482
|
-
"windows-targets",
|
3673
|
+
"windows-targets 0.52.6",
|
3483
3674
|
]
|
3484
3675
|
|
3485
3676
|
[[package]]
|
3486
3677
|
name = "windows-result"
|
3487
|
-
version = "0.2
|
3678
|
+
version = "0.3.2"
|
3488
3679
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3489
|
-
checksum = "
|
3680
|
+
checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
|
3490
3681
|
dependencies = [
|
3491
|
-
"windows-
|
3682
|
+
"windows-link",
|
3492
3683
|
]
|
3493
3684
|
|
3494
3685
|
[[package]]
|
3495
3686
|
name = "windows-strings"
|
3496
|
-
version = "0.1
|
3687
|
+
version = "0.3.1"
|
3497
3688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3498
|
-
checksum = "
|
3689
|
+
checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
|
3499
3690
|
dependencies = [
|
3500
|
-
"windows-
|
3501
|
-
|
3691
|
+
"windows-link",
|
3692
|
+
]
|
3693
|
+
|
3694
|
+
[[package]]
|
3695
|
+
name = "windows-strings"
|
3696
|
+
version = "0.4.0"
|
3697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3698
|
+
checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
|
3699
|
+
dependencies = [
|
3700
|
+
"windows-link",
|
3502
3701
|
]
|
3503
3702
|
|
3504
3703
|
[[package]]
|
@@ -3507,7 +3706,7 @@ version = "0.52.0"
|
|
3507
3706
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3508
3707
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
3509
3708
|
dependencies = [
|
3510
|
-
"windows-targets",
|
3709
|
+
"windows-targets 0.52.6",
|
3511
3710
|
]
|
3512
3711
|
|
3513
3712
|
[[package]]
|
@@ -3516,7 +3715,7 @@ version = "0.59.0"
|
|
3516
3715
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3517
3716
|
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
3518
3717
|
dependencies = [
|
3519
|
-
"windows-targets",
|
3718
|
+
"windows-targets 0.52.6",
|
3520
3719
|
]
|
3521
3720
|
|
3522
3721
|
[[package]]
|
@@ -3525,14 +3724,30 @@ version = "0.52.6"
|
|
3525
3724
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3526
3725
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
3527
3726
|
dependencies = [
|
3528
|
-
"windows_aarch64_gnullvm",
|
3529
|
-
"windows_aarch64_msvc",
|
3530
|
-
"windows_i686_gnu",
|
3531
|
-
"windows_i686_gnullvm",
|
3532
|
-
"windows_i686_msvc",
|
3533
|
-
"windows_x86_64_gnu",
|
3534
|
-
"windows_x86_64_gnullvm",
|
3535
|
-
"windows_x86_64_msvc",
|
3727
|
+
"windows_aarch64_gnullvm 0.52.6",
|
3728
|
+
"windows_aarch64_msvc 0.52.6",
|
3729
|
+
"windows_i686_gnu 0.52.6",
|
3730
|
+
"windows_i686_gnullvm 0.52.6",
|
3731
|
+
"windows_i686_msvc 0.52.6",
|
3732
|
+
"windows_x86_64_gnu 0.52.6",
|
3733
|
+
"windows_x86_64_gnullvm 0.52.6",
|
3734
|
+
"windows_x86_64_msvc 0.52.6",
|
3735
|
+
]
|
3736
|
+
|
3737
|
+
[[package]]
|
3738
|
+
name = "windows-targets"
|
3739
|
+
version = "0.53.0"
|
3740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3741
|
+
checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
|
3742
|
+
dependencies = [
|
3743
|
+
"windows_aarch64_gnullvm 0.53.0",
|
3744
|
+
"windows_aarch64_msvc 0.53.0",
|
3745
|
+
"windows_i686_gnu 0.53.0",
|
3746
|
+
"windows_i686_gnullvm 0.53.0",
|
3747
|
+
"windows_i686_msvc 0.53.0",
|
3748
|
+
"windows_x86_64_gnu 0.53.0",
|
3749
|
+
"windows_x86_64_gnullvm 0.53.0",
|
3750
|
+
"windows_x86_64_msvc 0.53.0",
|
3536
3751
|
]
|
3537
3752
|
|
3538
3753
|
[[package]]
|
@@ -3541,48 +3756,105 @@ version = "0.52.6"
|
|
3541
3756
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3542
3757
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
3543
3758
|
|
3759
|
+
[[package]]
|
3760
|
+
name = "windows_aarch64_gnullvm"
|
3761
|
+
version = "0.53.0"
|
3762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3763
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
3764
|
+
|
3544
3765
|
[[package]]
|
3545
3766
|
name = "windows_aarch64_msvc"
|
3546
3767
|
version = "0.52.6"
|
3547
3768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3548
3769
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
3549
3770
|
|
3771
|
+
[[package]]
|
3772
|
+
name = "windows_aarch64_msvc"
|
3773
|
+
version = "0.53.0"
|
3774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3775
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
3776
|
+
|
3550
3777
|
[[package]]
|
3551
3778
|
name = "windows_i686_gnu"
|
3552
3779
|
version = "0.52.6"
|
3553
3780
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3554
3781
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
3555
3782
|
|
3783
|
+
[[package]]
|
3784
|
+
name = "windows_i686_gnu"
|
3785
|
+
version = "0.53.0"
|
3786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3787
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
3788
|
+
|
3556
3789
|
[[package]]
|
3557
3790
|
name = "windows_i686_gnullvm"
|
3558
3791
|
version = "0.52.6"
|
3559
3792
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3560
3793
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
3561
3794
|
|
3795
|
+
[[package]]
|
3796
|
+
name = "windows_i686_gnullvm"
|
3797
|
+
version = "0.53.0"
|
3798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3799
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
3800
|
+
|
3562
3801
|
[[package]]
|
3563
3802
|
name = "windows_i686_msvc"
|
3564
3803
|
version = "0.52.6"
|
3565
3804
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3566
3805
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
3567
3806
|
|
3807
|
+
[[package]]
|
3808
|
+
name = "windows_i686_msvc"
|
3809
|
+
version = "0.53.0"
|
3810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3811
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
3812
|
+
|
3568
3813
|
[[package]]
|
3569
3814
|
name = "windows_x86_64_gnu"
|
3570
3815
|
version = "0.52.6"
|
3571
3816
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3572
3817
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
3573
3818
|
|
3819
|
+
[[package]]
|
3820
|
+
name = "windows_x86_64_gnu"
|
3821
|
+
version = "0.53.0"
|
3822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3823
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
3824
|
+
|
3574
3825
|
[[package]]
|
3575
3826
|
name = "windows_x86_64_gnullvm"
|
3576
3827
|
version = "0.52.6"
|
3577
3828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3578
3829
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
3579
3830
|
|
3831
|
+
[[package]]
|
3832
|
+
name = "windows_x86_64_gnullvm"
|
3833
|
+
version = "0.53.0"
|
3834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3835
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
3836
|
+
|
3580
3837
|
[[package]]
|
3581
3838
|
name = "windows_x86_64_msvc"
|
3582
3839
|
version = "0.52.6"
|
3583
3840
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3584
3841
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
3585
3842
|
|
3843
|
+
[[package]]
|
3844
|
+
name = "windows_x86_64_msvc"
|
3845
|
+
version = "0.53.0"
|
3846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3847
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
3848
|
+
|
3849
|
+
[[package]]
|
3850
|
+
name = "wit-bindgen-rt"
|
3851
|
+
version = "0.39.0"
|
3852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3853
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
3854
|
+
dependencies = [
|
3855
|
+
"bitflags",
|
3856
|
+
]
|
3857
|
+
|
3586
3858
|
[[package]]
|
3587
3859
|
name = "write16"
|
3588
3860
|
version = "1.0.0"
|
@@ -3631,8 +3903,16 @@ version = "0.7.35"
|
|
3631
3903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3632
3904
|
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
3633
3905
|
dependencies = [
|
3634
|
-
"
|
3635
|
-
|
3906
|
+
"zerocopy-derive 0.7.35",
|
3907
|
+
]
|
3908
|
+
|
3909
|
+
[[package]]
|
3910
|
+
name = "zerocopy"
|
3911
|
+
version = "0.8.25"
|
3912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3913
|
+
checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
|
3914
|
+
dependencies = [
|
3915
|
+
"zerocopy-derive 0.8.25",
|
3636
3916
|
]
|
3637
3917
|
|
3638
3918
|
[[package]]
|
@@ -3646,20 +3926,31 @@ dependencies = [
|
|
3646
3926
|
"syn",
|
3647
3927
|
]
|
3648
3928
|
|
3929
|
+
[[package]]
|
3930
|
+
name = "zerocopy-derive"
|
3931
|
+
version = "0.8.25"
|
3932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3933
|
+
checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
|
3934
|
+
dependencies = [
|
3935
|
+
"proc-macro2",
|
3936
|
+
"quote",
|
3937
|
+
"syn",
|
3938
|
+
]
|
3939
|
+
|
3649
3940
|
[[package]]
|
3650
3941
|
name = "zerofrom"
|
3651
|
-
version = "0.1.
|
3942
|
+
version = "0.1.6"
|
3652
3943
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3653
|
-
checksum = "
|
3944
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
3654
3945
|
dependencies = [
|
3655
3946
|
"zerofrom-derive",
|
3656
3947
|
]
|
3657
3948
|
|
3658
3949
|
[[package]]
|
3659
3950
|
name = "zerofrom-derive"
|
3660
|
-
version = "0.1.
|
3951
|
+
version = "0.1.6"
|
3661
3952
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3662
|
-
checksum = "
|
3953
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
3663
3954
|
dependencies = [
|
3664
3955
|
"proc-macro2",
|
3665
3956
|
"quote",
|
@@ -3697,33 +3988,33 @@ dependencies = [
|
|
3697
3988
|
|
3698
3989
|
[[package]]
|
3699
3990
|
name = "zlib-rs"
|
3700
|
-
version = "0.
|
3991
|
+
version = "0.5.0"
|
3701
3992
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3702
|
-
checksum = "
|
3993
|
+
checksum = "868b928d7949e09af2f6086dfc1e01936064cc7a819253bce650d4e2a2d63ba8"
|
3703
3994
|
|
3704
3995
|
[[package]]
|
3705
3996
|
name = "zstd"
|
3706
|
-
version = "0.13.
|
3997
|
+
version = "0.13.3"
|
3707
3998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3708
|
-
checksum = "
|
3999
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
3709
4000
|
dependencies = [
|
3710
4001
|
"zstd-safe",
|
3711
4002
|
]
|
3712
4003
|
|
3713
4004
|
[[package]]
|
3714
4005
|
name = "zstd-safe"
|
3715
|
-
version = "7.2.
|
4006
|
+
version = "7.2.4"
|
3716
4007
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3717
|
-
checksum = "
|
4008
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
3718
4009
|
dependencies = [
|
3719
4010
|
"zstd-sys",
|
3720
4011
|
]
|
3721
4012
|
|
3722
4013
|
[[package]]
|
3723
4014
|
name = "zstd-sys"
|
3724
|
-
version = "2.0.
|
4015
|
+
version = "2.0.15+zstd.1.5.7"
|
3725
4016
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3726
|
-
checksum = "
|
4017
|
+
checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
|
3727
4018
|
dependencies = [
|
3728
4019
|
"cc",
|
3729
4020
|
"pkg-config",
|