polars-df 0.12.0-x86_64-darwin → 0.13.0-x86_64-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 +6 -0
- data/Cargo.lock +248 -269
- data/LICENSE-THIRD-PARTY.txt +886 -813
- data/lib/polars/3.1/polars.bundle +0 -0
- data/lib/polars/3.2/polars.bundle +0 -0
- data/lib/polars/3.3/polars.bundle +0 -0
- data/lib/polars/io/ipc.rb +32 -4
- data/lib/polars/io/parquet.rb +10 -4
- data/lib/polars/lazy_frame.rb +5 -1
- data/lib/polars/series.rb +3 -2
- data/lib/polars/string_expr.rb +9 -9
- data/lib/polars/version.rb +1 -1
- metadata +2 -2
data/Cargo.lock
CHANGED
@@ -115,18 +115,18 @@ checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
|
|
115
115
|
dependencies = [
|
116
116
|
"proc-macro2",
|
117
117
|
"quote",
|
118
|
-
"syn 2.0.
|
118
|
+
"syn 2.0.74",
|
119
119
|
]
|
120
120
|
|
121
121
|
[[package]]
|
122
122
|
name = "async-trait"
|
123
|
-
version = "0.1.
|
123
|
+
version = "0.1.81"
|
124
124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
125
|
-
checksum = "
|
125
|
+
checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107"
|
126
126
|
dependencies = [
|
127
127
|
"proc-macro2",
|
128
128
|
"quote",
|
129
|
-
"syn 2.0.
|
129
|
+
"syn 2.0.74",
|
130
130
|
]
|
131
131
|
|
132
132
|
[[package]]
|
@@ -202,23 +202,23 @@ dependencies = [
|
|
202
202
|
"regex",
|
203
203
|
"rustc-hash",
|
204
204
|
"shlex",
|
205
|
-
"syn 2.0.
|
205
|
+
"syn 2.0.74",
|
206
206
|
]
|
207
207
|
|
208
208
|
[[package]]
|
209
209
|
name = "bitflags"
|
210
|
-
version = "2.
|
210
|
+
version = "2.6.0"
|
211
211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
212
|
-
checksum = "
|
212
|
+
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
213
213
|
dependencies = [
|
214
214
|
"serde",
|
215
215
|
]
|
216
216
|
|
217
217
|
[[package]]
|
218
218
|
name = "brotli"
|
219
|
-
version = "
|
219
|
+
version = "6.0.0"
|
220
220
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
221
|
-
checksum = "
|
221
|
+
checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b"
|
222
222
|
dependencies = [
|
223
223
|
"alloc-no-stdlib",
|
224
224
|
"alloc-stdlib",
|
@@ -243,9 +243,9 @@ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
|
243
243
|
|
244
244
|
[[package]]
|
245
245
|
name = "bytemuck"
|
246
|
-
version = "1.16.
|
246
|
+
version = "1.16.3"
|
247
247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
248
|
-
checksum = "
|
248
|
+
checksum = "102087e286b4677862ea56cf8fc58bb2cdfa8725c40ffb80fe3a008eb7f2fc83"
|
249
249
|
dependencies = [
|
250
250
|
"bytemuck_derive",
|
251
251
|
]
|
@@ -258,24 +258,30 @@ checksum = "1ee891b04274a59bd38b412188e24b849617b2e45a0fd8d057deb63e7403761b"
|
|
258
258
|
dependencies = [
|
259
259
|
"proc-macro2",
|
260
260
|
"quote",
|
261
|
-
"syn 2.0.
|
261
|
+
"syn 2.0.74",
|
262
262
|
]
|
263
263
|
|
264
|
+
[[package]]
|
265
|
+
name = "byteorder"
|
266
|
+
version = "1.5.0"
|
267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
268
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
269
|
+
|
264
270
|
[[package]]
|
265
271
|
name = "bytes"
|
266
|
-
version = "1.
|
272
|
+
version = "1.7.1"
|
267
273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
268
|
-
checksum = "
|
274
|
+
checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50"
|
269
275
|
|
270
276
|
[[package]]
|
271
277
|
name = "cc"
|
272
|
-
version = "1.
|
278
|
+
version = "1.1.11"
|
273
279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
274
|
-
checksum = "
|
280
|
+
checksum = "5fb8dd288a69fc53a1996d7ecfbf4a20d59065bff137ce7e56bbd620de191189"
|
275
281
|
dependencies = [
|
276
282
|
"jobserver",
|
277
283
|
"libc",
|
278
|
-
"
|
284
|
+
"shlex",
|
279
285
|
]
|
280
286
|
|
281
287
|
[[package]]
|
@@ -305,7 +311,7 @@ dependencies = [
|
|
305
311
|
"num-traits",
|
306
312
|
"serde",
|
307
313
|
"wasm-bindgen",
|
308
|
-
"windows-targets
|
314
|
+
"windows-targets",
|
309
315
|
]
|
310
316
|
|
311
317
|
[[package]]
|
@@ -355,9 +361,9 @@ dependencies = [
|
|
355
361
|
|
356
362
|
[[package]]
|
357
363
|
name = "core-foundation-sys"
|
358
|
-
version = "0.8.
|
364
|
+
version = "0.8.7"
|
359
365
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
360
|
-
checksum = "
|
366
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
361
367
|
|
362
368
|
[[package]]
|
363
369
|
name = "crc"
|
@@ -456,9 +462,9 @@ checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
|
|
456
462
|
|
457
463
|
[[package]]
|
458
464
|
name = "either"
|
459
|
-
version = "1.
|
465
|
+
version = "1.13.0"
|
460
466
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
461
|
-
checksum = "
|
467
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
462
468
|
dependencies = [
|
463
469
|
"serde",
|
464
470
|
]
|
@@ -472,7 +478,7 @@ dependencies = [
|
|
472
478
|
"once_cell",
|
473
479
|
"proc-macro2",
|
474
480
|
"quote",
|
475
|
-
"syn 2.0.
|
481
|
+
"syn 2.0.74",
|
476
482
|
]
|
477
483
|
|
478
484
|
[[package]]
|
@@ -501,9 +507,9 @@ checksum = "95765f67b4b18863968b4a1bd5bb576f732b29a4a28c7cd84c09fa3e2875f33c"
|
|
501
507
|
|
502
508
|
[[package]]
|
503
509
|
name = "flate2"
|
504
|
-
version = "1.0.
|
510
|
+
version = "1.0.31"
|
505
511
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
506
|
-
checksum = "
|
512
|
+
checksum = "7f211bbe8e69bbd0cfdea405084f128ae8b4aaa6b0b522fc8f2b009084797920"
|
507
513
|
dependencies = [
|
508
514
|
"crc32fast",
|
509
515
|
"miniz_oxide",
|
@@ -518,12 +524,6 @@ dependencies = [
|
|
518
524
|
"num-traits",
|
519
525
|
]
|
520
526
|
|
521
|
-
[[package]]
|
522
|
-
name = "foreign_vec"
|
523
|
-
version = "0.1.0"
|
524
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
525
|
-
checksum = "ee1b05cbd864bcaecbd3455d6d967862d446e4ebfc3c2e5e5b9841e53cba6673"
|
526
|
-
|
527
527
|
[[package]]
|
528
528
|
name = "futures"
|
529
529
|
version = "0.3.30"
|
@@ -580,7 +580,7 @@ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
|
580
580
|
dependencies = [
|
581
581
|
"proc-macro2",
|
582
582
|
"quote",
|
583
|
-
"syn 2.0.
|
583
|
+
"syn 2.0.74",
|
584
584
|
]
|
585
585
|
|
586
586
|
[[package]]
|
@@ -684,7 +684,7 @@ version = "0.5.9"
|
|
684
684
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
685
685
|
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
|
686
686
|
dependencies = [
|
687
|
-
"windows-sys
|
687
|
+
"windows-sys",
|
688
688
|
]
|
689
689
|
|
690
690
|
[[package]]
|
@@ -698,7 +698,7 @@ dependencies = [
|
|
698
698
|
"iana-time-zone-haiku",
|
699
699
|
"js-sys",
|
700
700
|
"wasm-bindgen",
|
701
|
-
"windows-core",
|
701
|
+
"windows-core 0.52.0",
|
702
702
|
]
|
703
703
|
|
704
704
|
[[package]]
|
@@ -712,9 +712,9 @@ dependencies = [
|
|
712
712
|
|
713
713
|
[[package]]
|
714
714
|
name = "indexmap"
|
715
|
-
version = "2.
|
715
|
+
version = "2.4.0"
|
716
716
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
717
|
-
checksum = "
|
717
|
+
checksum = "93ead53efc7ea8ed3cfb0c79fc8023fbb782a5432b52830b6518941cebe6505c"
|
718
718
|
dependencies = [
|
719
719
|
"equivalent",
|
720
720
|
"hashbrown",
|
@@ -764,18 +764,18 @@ dependencies = [
|
|
764
764
|
|
765
765
|
[[package]]
|
766
766
|
name = "jobserver"
|
767
|
-
version = "0.1.
|
767
|
+
version = "0.1.32"
|
768
768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
769
|
-
checksum = "
|
769
|
+
checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
|
770
770
|
dependencies = [
|
771
771
|
"libc",
|
772
772
|
]
|
773
773
|
|
774
774
|
[[package]]
|
775
775
|
name = "js-sys"
|
776
|
-
version = "0.3.
|
776
|
+
version = "0.3.70"
|
777
777
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
778
|
-
checksum = "
|
778
|
+
checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a"
|
779
779
|
dependencies = [
|
780
780
|
"wasm-bindgen",
|
781
781
|
]
|
@@ -895,12 +895,12 @@ dependencies = [
|
|
895
895
|
|
896
896
|
[[package]]
|
897
897
|
name = "libloading"
|
898
|
-
version = "0.8.
|
898
|
+
version = "0.8.5"
|
899
899
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
900
|
-
checksum = "
|
900
|
+
checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4"
|
901
901
|
dependencies = [
|
902
902
|
"cfg-if",
|
903
|
-
"windows-targets
|
903
|
+
"windows-targets",
|
904
904
|
]
|
905
905
|
|
906
906
|
[[package]]
|
@@ -911,9 +911,9 @@ checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
|
|
911
911
|
|
912
912
|
[[package]]
|
913
913
|
name = "libmimalloc-sys"
|
914
|
-
version = "0.1.
|
914
|
+
version = "0.1.39"
|
915
915
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
916
|
-
checksum = "
|
916
|
+
checksum = "23aa6811d3bd4deb8a84dde645f943476d13b248d818edcf8ce0b2f37f036b44"
|
917
917
|
dependencies = [
|
918
918
|
"cc",
|
919
919
|
"libc",
|
@@ -931,15 +931,15 @@ dependencies = [
|
|
931
931
|
|
932
932
|
[[package]]
|
933
933
|
name = "log"
|
934
|
-
version = "0.4.
|
934
|
+
version = "0.4.22"
|
935
935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
936
|
-
checksum = "
|
936
|
+
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
937
937
|
|
938
938
|
[[package]]
|
939
939
|
name = "lz4"
|
940
|
-
version = "1.
|
940
|
+
version = "1.26.0"
|
941
941
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
942
|
-
checksum = "
|
942
|
+
checksum = "958b4caa893816eea05507c20cfe47574a43d9a697138a7872990bba8a0ece68"
|
943
943
|
dependencies = [
|
944
944
|
"libc",
|
945
945
|
"lz4-sys",
|
@@ -947,9 +947,9 @@ dependencies = [
|
|
947
947
|
|
948
948
|
[[package]]
|
949
949
|
name = "lz4-sys"
|
950
|
-
version = "1.
|
950
|
+
version = "1.10.0"
|
951
951
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
952
|
-
checksum = "
|
952
|
+
checksum = "109de74d5d2353660401699a4174a4ff23fcc649caf553df71933c7fb45ad868"
|
953
953
|
dependencies = [
|
954
954
|
"cc",
|
955
955
|
"libc",
|
@@ -975,7 +975,7 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
|
975
975
|
dependencies = [
|
976
976
|
"proc-macro2",
|
977
977
|
"quote",
|
978
|
-
"syn 2.0.
|
978
|
+
"syn 2.0.74",
|
979
979
|
]
|
980
980
|
|
981
981
|
[[package]]
|
@@ -995,9 +995,9 @@ dependencies = [
|
|
995
995
|
|
996
996
|
[[package]]
|
997
997
|
name = "mimalloc"
|
998
|
-
version = "0.1.
|
998
|
+
version = "0.1.43"
|
999
999
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1000
|
-
checksum = "
|
1000
|
+
checksum = "68914350ae34959d83f732418d51e2427a794055d0b9529f48259ac07af65633"
|
1001
1001
|
dependencies = [
|
1002
1002
|
"libmimalloc-sys",
|
1003
1003
|
]
|
@@ -1019,13 +1019,14 @@ dependencies = [
|
|
1019
1019
|
|
1020
1020
|
[[package]]
|
1021
1021
|
name = "mio"
|
1022
|
-
version = "0.
|
1022
|
+
version = "1.0.2"
|
1023
1023
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1024
|
-
checksum = "
|
1024
|
+
checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
|
1025
1025
|
dependencies = [
|
1026
|
+
"hermit-abi",
|
1026
1027
|
"libc",
|
1027
1028
|
"wasi",
|
1028
|
-
"windows-sys
|
1029
|
+
"windows-sys",
|
1029
1030
|
]
|
1030
1031
|
|
1031
1032
|
[[package]]
|
@@ -1088,21 +1089,11 @@ dependencies = [
|
|
1088
1089
|
"libm",
|
1089
1090
|
]
|
1090
1091
|
|
1091
|
-
[[package]]
|
1092
|
-
name = "num_cpus"
|
1093
|
-
version = "1.16.0"
|
1094
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1095
|
-
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
1096
|
-
dependencies = [
|
1097
|
-
"hermit-abi",
|
1098
|
-
"libc",
|
1099
|
-
]
|
1100
|
-
|
1101
1092
|
[[package]]
|
1102
1093
|
name = "object"
|
1103
|
-
version = "0.36.
|
1094
|
+
version = "0.36.3"
|
1104
1095
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1105
|
-
checksum = "
|
1096
|
+
checksum = "27b64972346851a39438c60b341ebc01bba47464ae329e55cf343eb93964efd9"
|
1106
1097
|
dependencies = [
|
1107
1098
|
"memchr",
|
1108
1099
|
]
|
@@ -1133,7 +1124,7 @@ dependencies = [
|
|
1133
1124
|
"libc",
|
1134
1125
|
"redox_syscall",
|
1135
1126
|
"smallvec",
|
1136
|
-
"windows-targets
|
1127
|
+
"windows-targets",
|
1137
1128
|
]
|
1138
1129
|
|
1139
1130
|
[[package]]
|
@@ -1228,7 +1219,7 @@ dependencies = [
|
|
1228
1219
|
|
1229
1220
|
[[package]]
|
1230
1221
|
name = "polars"
|
1231
|
-
version = "0.
|
1222
|
+
version = "0.13.0"
|
1232
1223
|
dependencies = [
|
1233
1224
|
"ahash",
|
1234
1225
|
"chrono",
|
@@ -1236,7 +1227,7 @@ dependencies = [
|
|
1236
1227
|
"jemallocator",
|
1237
1228
|
"magnus",
|
1238
1229
|
"mimalloc",
|
1239
|
-
"polars 0.
|
1230
|
+
"polars 0.42.0",
|
1240
1231
|
"polars-core",
|
1241
1232
|
"polars-parquet",
|
1242
1233
|
"polars-utils",
|
@@ -1246,9 +1237,9 @@ dependencies = [
|
|
1246
1237
|
|
1247
1238
|
[[package]]
|
1248
1239
|
name = "polars"
|
1249
|
-
version = "0.
|
1240
|
+
version = "0.42.0"
|
1250
1241
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1251
|
-
checksum = "
|
1242
|
+
checksum = "ad002eb9c541b4f7e0c7c759cefe884a0350e15d241231ac4be31c5568c15070"
|
1252
1243
|
dependencies = [
|
1253
1244
|
"getrandom",
|
1254
1245
|
"polars-arrow",
|
@@ -1267,9 +1258,9 @@ dependencies = [
|
|
1267
1258
|
|
1268
1259
|
[[package]]
|
1269
1260
|
name = "polars-arrow"
|
1270
|
-
version = "0.
|
1261
|
+
version = "0.42.0"
|
1271
1262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1272
|
-
checksum = "
|
1263
|
+
checksum = "32d19c6db79cb6a3c55af3b5a3976276edaab64cbf7f69b392617c2af30d7742"
|
1273
1264
|
dependencies = [
|
1274
1265
|
"ahash",
|
1275
1266
|
"atoi",
|
@@ -1282,7 +1273,6 @@ dependencies = [
|
|
1282
1273
|
"either",
|
1283
1274
|
"ethnum",
|
1284
1275
|
"fast-float",
|
1285
|
-
"foreign_vec",
|
1286
1276
|
"futures",
|
1287
1277
|
"getrandom",
|
1288
1278
|
"hashbrown",
|
@@ -1291,6 +1281,7 @@ dependencies = [
|
|
1291
1281
|
"lz4",
|
1292
1282
|
"multiversion",
|
1293
1283
|
"num-traits",
|
1284
|
+
"parking_lot",
|
1294
1285
|
"polars-arrow-format",
|
1295
1286
|
"polars-error",
|
1296
1287
|
"polars-utils",
|
@@ -1315,9 +1306,9 @@ dependencies = [
|
|
1315
1306
|
|
1316
1307
|
[[package]]
|
1317
1308
|
name = "polars-compute"
|
1318
|
-
version = "0.
|
1309
|
+
version = "0.42.0"
|
1319
1310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1320
|
-
checksum = "
|
1311
|
+
checksum = "30194a5ff325f61d6fcb62dc215c9210f308fc4fc85a493ef777dbcd938cba24"
|
1321
1312
|
dependencies = [
|
1322
1313
|
"bytemuck",
|
1323
1314
|
"either",
|
@@ -1331,9 +1322,9 @@ dependencies = [
|
|
1331
1322
|
|
1332
1323
|
[[package]]
|
1333
1324
|
name = "polars-core"
|
1334
|
-
version = "0.
|
1325
|
+
version = "0.42.0"
|
1335
1326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1336
|
-
checksum = "
|
1327
|
+
checksum = "2ba2a3b736d55b92a12889672d0197dc25ad321ab23eba4168a3b6316a6b6349"
|
1337
1328
|
dependencies = [
|
1338
1329
|
"ahash",
|
1339
1330
|
"bitflags",
|
@@ -1365,9 +1356,9 @@ dependencies = [
|
|
1365
1356
|
|
1366
1357
|
[[package]]
|
1367
1358
|
name = "polars-error"
|
1368
|
-
version = "0.
|
1359
|
+
version = "0.42.0"
|
1369
1360
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1370
|
-
checksum = "
|
1361
|
+
checksum = "07101d1803ca2046cdb3a8adb1523ddcc879229860f0ac56a853034269dec1e1"
|
1371
1362
|
dependencies = [
|
1372
1363
|
"avro-schema",
|
1373
1364
|
"polars-arrow-format",
|
@@ -1378,9 +1369,9 @@ dependencies = [
|
|
1378
1369
|
|
1379
1370
|
[[package]]
|
1380
1371
|
name = "polars-expr"
|
1381
|
-
version = "0.
|
1372
|
+
version = "0.42.0"
|
1382
1373
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1383
|
-
checksum = "
|
1374
|
+
checksum = "dd5c69634ddbb0f44186cd1c42d166963fc756f9cc994438e941bc2703ddbbab"
|
1384
1375
|
dependencies = [
|
1385
1376
|
"ahash",
|
1386
1377
|
"bitflags",
|
@@ -1398,9 +1389,9 @@ dependencies = [
|
|
1398
1389
|
|
1399
1390
|
[[package]]
|
1400
1391
|
name = "polars-io"
|
1401
|
-
version = "0.
|
1392
|
+
version = "0.42.0"
|
1402
1393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1403
|
-
checksum = "
|
1394
|
+
checksum = "a48ddf416ae185336c3d7880d2e05b7e55686e3e0da1014e5e7325eff9c7d722"
|
1404
1395
|
dependencies = [
|
1405
1396
|
"ahash",
|
1406
1397
|
"async-trait",
|
@@ -1410,6 +1401,7 @@ dependencies = [
|
|
1410
1401
|
"chrono-tz",
|
1411
1402
|
"fast-float",
|
1412
1403
|
"futures",
|
1404
|
+
"glob",
|
1413
1405
|
"home",
|
1414
1406
|
"itoa",
|
1415
1407
|
"memchr",
|
@@ -1438,9 +1430,9 @@ dependencies = [
|
|
1438
1430
|
|
1439
1431
|
[[package]]
|
1440
1432
|
name = "polars-json"
|
1441
|
-
version = "0.
|
1433
|
+
version = "0.42.0"
|
1442
1434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1443
|
-
checksum = "
|
1435
|
+
checksum = "f0a43388585a922524e8bbaa1ed1391c9c4b0768a644585609afa9a2fd5fc702"
|
1444
1436
|
dependencies = [
|
1445
1437
|
"ahash",
|
1446
1438
|
"chrono",
|
@@ -1460,13 +1452,12 @@ dependencies = [
|
|
1460
1452
|
|
1461
1453
|
[[package]]
|
1462
1454
|
name = "polars-lazy"
|
1463
|
-
version = "0.
|
1455
|
+
version = "0.42.0"
|
1464
1456
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1465
|
-
checksum = "
|
1457
|
+
checksum = "a514a85df9e7d501c71c96f094861d0608b05a3f533447b1c0ea9cf714162fcb"
|
1466
1458
|
dependencies = [
|
1467
1459
|
"ahash",
|
1468
1460
|
"bitflags",
|
1469
|
-
"glob",
|
1470
1461
|
"memchr",
|
1471
1462
|
"once_cell",
|
1472
1463
|
"polars-arrow",
|
@@ -1487,10 +1478,11 @@ dependencies = [
|
|
1487
1478
|
|
1488
1479
|
[[package]]
|
1489
1480
|
name = "polars-mem-engine"
|
1490
|
-
version = "0.
|
1481
|
+
version = "0.42.0"
|
1491
1482
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1492
|
-
checksum = "
|
1483
|
+
checksum = "2d057df81b17b4f0ea0e4424ee34f755e6b9ccfba432ecb2fe57dc4da6da2713"
|
1493
1484
|
dependencies = [
|
1485
|
+
"memmap2",
|
1494
1486
|
"polars-arrow",
|
1495
1487
|
"polars-core",
|
1496
1488
|
"polars-error",
|
@@ -1506,9 +1498,9 @@ dependencies = [
|
|
1506
1498
|
|
1507
1499
|
[[package]]
|
1508
1500
|
name = "polars-ops"
|
1509
|
-
version = "0.
|
1501
|
+
version = "0.42.0"
|
1510
1502
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1511
|
-
checksum = "
|
1503
|
+
checksum = "01ba44233249b7937491b5d2bdbf14e4ad534c0a65d06548c3bc418fc3e60791"
|
1512
1504
|
dependencies = [
|
1513
1505
|
"ahash",
|
1514
1506
|
"aho-corasick",
|
@@ -1543,14 +1535,15 @@ dependencies = [
|
|
1543
1535
|
|
1544
1536
|
[[package]]
|
1545
1537
|
name = "polars-parquet"
|
1546
|
-
version = "0.
|
1538
|
+
version = "0.42.0"
|
1547
1539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1548
|
-
checksum = "
|
1540
|
+
checksum = "bb2993265079ffa07dd16277189444424f8d787b00b01c6f6e001f58bab543ce"
|
1549
1541
|
dependencies = [
|
1550
1542
|
"ahash",
|
1551
1543
|
"async-stream",
|
1552
1544
|
"base64",
|
1553
1545
|
"brotli",
|
1546
|
+
"bytemuck",
|
1554
1547
|
"ethnum",
|
1555
1548
|
"flate2",
|
1556
1549
|
"futures",
|
@@ -1570,9 +1563,9 @@ dependencies = [
|
|
1570
1563
|
|
1571
1564
|
[[package]]
|
1572
1565
|
name = "polars-pipe"
|
1573
|
-
version = "0.
|
1566
|
+
version = "0.42.0"
|
1574
1567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1575
|
-
checksum = "
|
1568
|
+
checksum = "0ccba94c4fa9fded0f41730f7649574c72d6d938a840731c7e4eea4e7ed5cecf"
|
1576
1569
|
dependencies = [
|
1577
1570
|
"crossbeam-channel",
|
1578
1571
|
"crossbeam-queue",
|
@@ -1596,15 +1589,18 @@ dependencies = [
|
|
1596
1589
|
|
1597
1590
|
[[package]]
|
1598
1591
|
name = "polars-plan"
|
1599
|
-
version = "0.
|
1592
|
+
version = "0.42.0"
|
1600
1593
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1601
|
-
checksum = "
|
1594
|
+
checksum = "5d6b29cc53d6c086c09b11050b01c25c28f6a91339036ba1fb1250fcf0d89e74"
|
1602
1595
|
dependencies = [
|
1603
1596
|
"ahash",
|
1597
|
+
"bitflags",
|
1604
1598
|
"bytemuck",
|
1599
|
+
"chrono",
|
1605
1600
|
"chrono-tz",
|
1606
1601
|
"either",
|
1607
1602
|
"hashbrown",
|
1603
|
+
"memmap2",
|
1608
1604
|
"once_cell",
|
1609
1605
|
"percent-encoding",
|
1610
1606
|
"polars-arrow",
|
@@ -1626,9 +1622,9 @@ dependencies = [
|
|
1626
1622
|
|
1627
1623
|
[[package]]
|
1628
1624
|
name = "polars-row"
|
1629
|
-
version = "0.
|
1625
|
+
version = "0.42.0"
|
1630
1626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1631
|
-
checksum = "
|
1627
|
+
checksum = "6e11f43f48466c4b1caa6dc61c381dc10c2d67b87fcb74bc996e21c4f7b0a311"
|
1632
1628
|
dependencies = [
|
1633
1629
|
"bytemuck",
|
1634
1630
|
"polars-arrow",
|
@@ -1638,9 +1634,9 @@ dependencies = [
|
|
1638
1634
|
|
1639
1635
|
[[package]]
|
1640
1636
|
name = "polars-sql"
|
1641
|
-
version = "0.
|
1637
|
+
version = "0.42.0"
|
1642
1638
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1643
|
-
checksum = "
|
1639
|
+
checksum = "6e9338806e7254618eb819cc632c34b75b71d462222a913f9c1035ed81911ddc"
|
1644
1640
|
dependencies = [
|
1645
1641
|
"hex",
|
1646
1642
|
"once_cell",
|
@@ -1659,9 +1655,9 @@ dependencies = [
|
|
1659
1655
|
|
1660
1656
|
[[package]]
|
1661
1657
|
name = "polars-time"
|
1662
|
-
version = "0.
|
1658
|
+
version = "0.42.0"
|
1663
1659
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1664
|
-
checksum = "
|
1660
|
+
checksum = "30a601ab9a62e733b8b560b37642321cb1933faa194864739f6a59d6dfc4d686"
|
1665
1661
|
dependencies = [
|
1666
1662
|
"atoi",
|
1667
1663
|
"bytemuck",
|
@@ -1681,14 +1677,16 @@ dependencies = [
|
|
1681
1677
|
|
1682
1678
|
[[package]]
|
1683
1679
|
name = "polars-utils"
|
1684
|
-
version = "0.
|
1680
|
+
version = "0.42.0"
|
1685
1681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1686
|
-
checksum = "
|
1682
|
+
checksum = "19dd73207bd15efb0ae5c9c3ece3227927ed6a16ad63578acec342378e6bdcb4"
|
1687
1683
|
dependencies = [
|
1688
1684
|
"ahash",
|
1689
1685
|
"bytemuck",
|
1686
|
+
"bytes",
|
1690
1687
|
"hashbrown",
|
1691
1688
|
"indexmap",
|
1689
|
+
"memmap2",
|
1692
1690
|
"num-traits",
|
1693
1691
|
"once_cell",
|
1694
1692
|
"polars-error",
|
@@ -1702,9 +1700,12 @@ dependencies = [
|
|
1702
1700
|
|
1703
1701
|
[[package]]
|
1704
1702
|
name = "ppv-lite86"
|
1705
|
-
version = "0.2.
|
1703
|
+
version = "0.2.20"
|
1706
1704
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1707
|
-
checksum = "
|
1705
|
+
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
|
1706
|
+
dependencies = [
|
1707
|
+
"zerocopy",
|
1708
|
+
]
|
1708
1709
|
|
1709
1710
|
[[package]]
|
1710
1711
|
name = "proc-macro2"
|
@@ -1775,9 +1776,9 @@ dependencies = [
|
|
1775
1776
|
|
1776
1777
|
[[package]]
|
1777
1778
|
name = "raw-cpuid"
|
1778
|
-
version = "11.0
|
1779
|
+
version = "11.1.0"
|
1779
1780
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1780
|
-
checksum = "
|
1781
|
+
checksum = "cb9ee317cfe3fbd54b36a511efc1edd42e216903c9cd575e686dd68a2ba90d8d"
|
1781
1782
|
dependencies = [
|
1782
1783
|
"bitflags",
|
1783
1784
|
]
|
@@ -1804,18 +1805,18 @@ dependencies = [
|
|
1804
1805
|
|
1805
1806
|
[[package]]
|
1806
1807
|
name = "rb-sys"
|
1807
|
-
version = "0.9.
|
1808
|
+
version = "0.9.101"
|
1808
1809
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1809
|
-
checksum = "
|
1810
|
+
checksum = "1ba2704ccfa7875c91792c57a9aa7c3caac524d3036c122e36eeddad6f6e7c6f"
|
1810
1811
|
dependencies = [
|
1811
1812
|
"rb-sys-build",
|
1812
1813
|
]
|
1813
1814
|
|
1814
1815
|
[[package]]
|
1815
1816
|
name = "rb-sys-build"
|
1816
|
-
version = "0.9.
|
1817
|
+
version = "0.9.101"
|
1817
1818
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1818
|
-
checksum = "
|
1819
|
+
checksum = "c73585ec80c217b7a81257ca9bb89b191b5e452ec4b9106dc4c2e4e96a822242"
|
1819
1820
|
dependencies = [
|
1820
1821
|
"bindgen",
|
1821
1822
|
"lazy_static",
|
@@ -1823,7 +1824,7 @@ dependencies = [
|
|
1823
1824
|
"quote",
|
1824
1825
|
"regex",
|
1825
1826
|
"shell-words",
|
1826
|
-
"syn 2.0.
|
1827
|
+
"syn 2.0.74",
|
1827
1828
|
]
|
1828
1829
|
|
1829
1830
|
[[package]]
|
@@ -1849,14 +1850,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1849
1850
|
checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
|
1850
1851
|
dependencies = [
|
1851
1852
|
"quote",
|
1852
|
-
"syn 2.0.
|
1853
|
+
"syn 2.0.74",
|
1853
1854
|
]
|
1854
1855
|
|
1855
1856
|
[[package]]
|
1856
1857
|
name = "redox_syscall"
|
1857
|
-
version = "0.5.
|
1858
|
+
version = "0.5.3"
|
1858
1859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1859
|
-
checksum = "
|
1860
|
+
checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
|
1860
1861
|
dependencies = [
|
1861
1862
|
"bitflags",
|
1862
1863
|
]
|
@@ -1878,14 +1879,14 @@ checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6"
|
|
1878
1879
|
dependencies = [
|
1879
1880
|
"proc-macro2",
|
1880
1881
|
"quote",
|
1881
|
-
"syn 2.0.
|
1882
|
+
"syn 2.0.74",
|
1882
1883
|
]
|
1883
1884
|
|
1884
1885
|
[[package]]
|
1885
1886
|
name = "regex"
|
1886
|
-
version = "1.10.
|
1887
|
+
version = "1.10.6"
|
1887
1888
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1888
|
-
checksum = "
|
1889
|
+
checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619"
|
1889
1890
|
dependencies = [
|
1890
1891
|
"aho-corasick",
|
1891
1892
|
"memchr",
|
@@ -1954,32 +1955,33 @@ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
|
1954
1955
|
|
1955
1956
|
[[package]]
|
1956
1957
|
name = "serde"
|
1957
|
-
version = "1.0.
|
1958
|
+
version = "1.0.207"
|
1958
1959
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1959
|
-
checksum = "
|
1960
|
+
checksum = "5665e14a49a4ea1b91029ba7d3bca9f299e1f7cfa194388ccc20f14743e784f2"
|
1960
1961
|
dependencies = [
|
1961
1962
|
"serde_derive",
|
1962
1963
|
]
|
1963
1964
|
|
1964
1965
|
[[package]]
|
1965
1966
|
name = "serde_derive"
|
1966
|
-
version = "1.0.
|
1967
|
+
version = "1.0.207"
|
1967
1968
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1968
|
-
checksum = "
|
1969
|
+
checksum = "6aea2634c86b0e8ef2cfdc0c340baede54ec27b1e46febd7f80dffb2aa44a00e"
|
1969
1970
|
dependencies = [
|
1970
1971
|
"proc-macro2",
|
1971
1972
|
"quote",
|
1972
|
-
"syn 2.0.
|
1973
|
+
"syn 2.0.74",
|
1973
1974
|
]
|
1974
1975
|
|
1975
1976
|
[[package]]
|
1976
1977
|
name = "serde_json"
|
1977
|
-
version = "1.0.
|
1978
|
+
version = "1.0.124"
|
1978
1979
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1979
|
-
checksum = "
|
1980
|
+
checksum = "66ad62847a56b3dba58cc891acd13884b9c61138d330c0d7b6181713d4fce38d"
|
1980
1981
|
dependencies = [
|
1981
1982
|
"indexmap",
|
1982
1983
|
"itoa",
|
1984
|
+
"memchr",
|
1983
1985
|
"ryu",
|
1984
1986
|
"serde",
|
1985
1987
|
]
|
@@ -2066,14 +2068,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2066
2068
|
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
|
2067
2069
|
dependencies = [
|
2068
2070
|
"libc",
|
2069
|
-
"windows-sys
|
2071
|
+
"windows-sys",
|
2070
2072
|
]
|
2071
2073
|
|
2072
2074
|
[[package]]
|
2073
2075
|
name = "sqlparser"
|
2074
|
-
version = "0.
|
2076
|
+
version = "0.49.0"
|
2075
2077
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2076
|
-
checksum = "
|
2078
|
+
checksum = "a4a404d0e14905361b918cb8afdb73605e25c1d5029312bd9785142dcb3aa49e"
|
2077
2079
|
dependencies = [
|
2078
2080
|
"log",
|
2079
2081
|
]
|
@@ -2120,9 +2122,9 @@ checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
|
|
2120
2122
|
|
2121
2123
|
[[package]]
|
2122
2124
|
name = "strum"
|
2123
|
-
version = "0.26.
|
2125
|
+
version = "0.26.3"
|
2124
2126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2125
|
-
checksum = "
|
2127
|
+
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
2126
2128
|
|
2127
2129
|
[[package]]
|
2128
2130
|
name = "strum_macros"
|
@@ -2134,7 +2136,7 @@ dependencies = [
|
|
2134
2136
|
"proc-macro2",
|
2135
2137
|
"quote",
|
2136
2138
|
"rustversion",
|
2137
|
-
"syn 2.0.
|
2139
|
+
"syn 2.0.74",
|
2138
2140
|
]
|
2139
2141
|
|
2140
2142
|
[[package]]
|
@@ -2150,9 +2152,9 @@ dependencies = [
|
|
2150
2152
|
|
2151
2153
|
[[package]]
|
2152
2154
|
name = "syn"
|
2153
|
-
version = "2.0.
|
2155
|
+
version = "2.0.74"
|
2154
2156
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2155
|
-
checksum = "
|
2157
|
+
checksum = "1fceb41e3d546d0bd83421d3409b1460cc7444cd389341a4c880fe7a042cb3d7"
|
2156
2158
|
dependencies = [
|
2157
2159
|
"proc-macro2",
|
2158
2160
|
"quote",
|
@@ -2161,15 +2163,14 @@ dependencies = [
|
|
2161
2163
|
|
2162
2164
|
[[package]]
|
2163
2165
|
name = "sysinfo"
|
2164
|
-
version = "0.
|
2166
|
+
version = "0.31.2"
|
2165
2167
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2166
|
-
checksum = "
|
2168
|
+
checksum = "d4115055da5f572fff541dd0c4e61b0262977f453cc9fe04be83aba25a89bdab"
|
2167
2169
|
dependencies = [
|
2168
|
-
"cfg-if",
|
2169
2170
|
"core-foundation-sys",
|
2170
2171
|
"libc",
|
2172
|
+
"memchr",
|
2171
2173
|
"ntapi",
|
2172
|
-
"once_cell",
|
2173
2174
|
"windows",
|
2174
2175
|
]
|
2175
2176
|
|
@@ -2181,38 +2182,37 @@ checksum = "c1bbb9f3c5c463a01705937a24fdabc5047929ac764b2d5b9cf681c1f5041ed5"
|
|
2181
2182
|
|
2182
2183
|
[[package]]
|
2183
2184
|
name = "thiserror"
|
2184
|
-
version = "1.0.
|
2185
|
+
version = "1.0.63"
|
2185
2186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2186
|
-
checksum = "
|
2187
|
+
checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
|
2187
2188
|
dependencies = [
|
2188
2189
|
"thiserror-impl",
|
2189
2190
|
]
|
2190
2191
|
|
2191
2192
|
[[package]]
|
2192
2193
|
name = "thiserror-impl"
|
2193
|
-
version = "1.0.
|
2194
|
+
version = "1.0.63"
|
2194
2195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2195
|
-
checksum = "
|
2196
|
+
checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
|
2196
2197
|
dependencies = [
|
2197
2198
|
"proc-macro2",
|
2198
2199
|
"quote",
|
2199
|
-
"syn 2.0.
|
2200
|
+
"syn 2.0.74",
|
2200
2201
|
]
|
2201
2202
|
|
2202
2203
|
[[package]]
|
2203
2204
|
name = "tokio"
|
2204
|
-
version = "1.
|
2205
|
+
version = "1.39.2"
|
2205
2206
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2206
|
-
checksum = "
|
2207
|
+
checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1"
|
2207
2208
|
dependencies = [
|
2208
2209
|
"backtrace",
|
2209
2210
|
"bytes",
|
2210
2211
|
"libc",
|
2211
2212
|
"mio",
|
2212
|
-
"num_cpus",
|
2213
2213
|
"pin-project-lite",
|
2214
2214
|
"socket2",
|
2215
|
-
"windows-sys
|
2215
|
+
"windows-sys",
|
2216
2216
|
]
|
2217
2217
|
|
2218
2218
|
[[package]]
|
@@ -2257,9 +2257,9 @@ checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d"
|
|
2257
2257
|
|
2258
2258
|
[[package]]
|
2259
2259
|
name = "uuid"
|
2260
|
-
version = "1.
|
2260
|
+
version = "1.10.0"
|
2261
2261
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2262
|
-
checksum = "
|
2262
|
+
checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
|
2263
2263
|
dependencies = [
|
2264
2264
|
"getrandom",
|
2265
2265
|
]
|
@@ -2278,9 +2278,9 @@ dependencies = [
|
|
2278
2278
|
|
2279
2279
|
[[package]]
|
2280
2280
|
name = "version_check"
|
2281
|
-
version = "0.9.
|
2281
|
+
version = "0.9.5"
|
2282
2282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2283
|
-
checksum = "
|
2283
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
2284
2284
|
|
2285
2285
|
[[package]]
|
2286
2286
|
name = "wasi"
|
@@ -2290,34 +2290,35 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
2290
2290
|
|
2291
2291
|
[[package]]
|
2292
2292
|
name = "wasm-bindgen"
|
2293
|
-
version = "0.2.
|
2293
|
+
version = "0.2.93"
|
2294
2294
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2295
|
-
checksum = "
|
2295
|
+
checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5"
|
2296
2296
|
dependencies = [
|
2297
2297
|
"cfg-if",
|
2298
|
+
"once_cell",
|
2298
2299
|
"wasm-bindgen-macro",
|
2299
2300
|
]
|
2300
2301
|
|
2301
2302
|
[[package]]
|
2302
2303
|
name = "wasm-bindgen-backend"
|
2303
|
-
version = "0.2.
|
2304
|
+
version = "0.2.93"
|
2304
2305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2305
|
-
checksum = "
|
2306
|
+
checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b"
|
2306
2307
|
dependencies = [
|
2307
2308
|
"bumpalo",
|
2308
2309
|
"log",
|
2309
2310
|
"once_cell",
|
2310
2311
|
"proc-macro2",
|
2311
2312
|
"quote",
|
2312
|
-
"syn 2.0.
|
2313
|
+
"syn 2.0.74",
|
2313
2314
|
"wasm-bindgen-shared",
|
2314
2315
|
]
|
2315
2316
|
|
2316
2317
|
[[package]]
|
2317
2318
|
name = "wasm-bindgen-macro"
|
2318
|
-
version = "0.2.
|
2319
|
+
version = "0.2.93"
|
2319
2320
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2320
|
-
checksum = "
|
2321
|
+
checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf"
|
2321
2322
|
dependencies = [
|
2322
2323
|
"quote",
|
2323
2324
|
"wasm-bindgen-macro-support",
|
@@ -2325,22 +2326,22 @@ dependencies = [
|
|
2325
2326
|
|
2326
2327
|
[[package]]
|
2327
2328
|
name = "wasm-bindgen-macro-support"
|
2328
|
-
version = "0.2.
|
2329
|
+
version = "0.2.93"
|
2329
2330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2330
|
-
checksum = "
|
2331
|
+
checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836"
|
2331
2332
|
dependencies = [
|
2332
2333
|
"proc-macro2",
|
2333
2334
|
"quote",
|
2334
|
-
"syn 2.0.
|
2335
|
+
"syn 2.0.74",
|
2335
2336
|
"wasm-bindgen-backend",
|
2336
2337
|
"wasm-bindgen-shared",
|
2337
2338
|
]
|
2338
2339
|
|
2339
2340
|
[[package]]
|
2340
2341
|
name = "wasm-bindgen-shared"
|
2341
|
-
version = "0.2.
|
2342
|
+
version = "0.2.93"
|
2342
2343
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2343
|
-
checksum = "
|
2344
|
+
checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484"
|
2344
2345
|
|
2345
2346
|
[[package]]
|
2346
2347
|
name = "winapi"
|
@@ -2366,12 +2367,12 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2366
2367
|
|
2367
2368
|
[[package]]
|
2368
2369
|
name = "windows"
|
2369
|
-
version = "0.
|
2370
|
+
version = "0.57.0"
|
2370
2371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2371
|
-
checksum = "
|
2372
|
+
checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
|
2372
2373
|
dependencies = [
|
2373
|
-
"windows-core",
|
2374
|
-
"windows-targets
|
2374
|
+
"windows-core 0.57.0",
|
2375
|
+
"windows-targets",
|
2375
2376
|
]
|
2376
2377
|
|
2377
2378
|
[[package]]
|
@@ -2380,197 +2381,175 @@ version = "0.52.0"
|
|
2380
2381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2381
2382
|
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
2382
2383
|
dependencies = [
|
2383
|
-
"windows-targets
|
2384
|
+
"windows-targets",
|
2384
2385
|
]
|
2385
2386
|
|
2386
2387
|
[[package]]
|
2387
|
-
name = "windows-
|
2388
|
-
version = "0.
|
2388
|
+
name = "windows-core"
|
2389
|
+
version = "0.57.0"
|
2389
2390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2390
|
-
checksum = "
|
2391
|
+
checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
|
2391
2392
|
dependencies = [
|
2392
|
-
"windows-
|
2393
|
+
"windows-implement",
|
2394
|
+
"windows-interface",
|
2395
|
+
"windows-result",
|
2396
|
+
"windows-targets",
|
2393
2397
|
]
|
2394
2398
|
|
2395
2399
|
[[package]]
|
2396
|
-
name = "windows-
|
2397
|
-
version = "0.
|
2400
|
+
name = "windows-implement"
|
2401
|
+
version = "0.57.0"
|
2398
2402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2399
|
-
checksum = "
|
2403
|
+
checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
|
2400
2404
|
dependencies = [
|
2401
|
-
"
|
2405
|
+
"proc-macro2",
|
2406
|
+
"quote",
|
2407
|
+
"syn 2.0.74",
|
2402
2408
|
]
|
2403
2409
|
|
2404
2410
|
[[package]]
|
2405
|
-
name = "windows-
|
2406
|
-
version = "0.
|
2411
|
+
name = "windows-interface"
|
2412
|
+
version = "0.57.0"
|
2407
2413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2408
|
-
checksum = "
|
2414
|
+
checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
|
2409
2415
|
dependencies = [
|
2410
|
-
"
|
2411
|
-
"
|
2412
|
-
"
|
2413
|
-
"windows_i686_msvc 0.48.5",
|
2414
|
-
"windows_x86_64_gnu 0.48.5",
|
2415
|
-
"windows_x86_64_gnullvm 0.48.5",
|
2416
|
-
"windows_x86_64_msvc 0.48.5",
|
2416
|
+
"proc-macro2",
|
2417
|
+
"quote",
|
2418
|
+
"syn 2.0.74",
|
2417
2419
|
]
|
2418
2420
|
|
2419
2421
|
[[package]]
|
2420
|
-
name = "windows-
|
2421
|
-
version = "0.
|
2422
|
+
name = "windows-result"
|
2423
|
+
version = "0.1.2"
|
2422
2424
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2423
|
-
checksum = "
|
2425
|
+
checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
|
2424
2426
|
dependencies = [
|
2425
|
-
"
|
2426
|
-
"windows_aarch64_msvc 0.52.5",
|
2427
|
-
"windows_i686_gnu 0.52.5",
|
2428
|
-
"windows_i686_gnullvm",
|
2429
|
-
"windows_i686_msvc 0.52.5",
|
2430
|
-
"windows_x86_64_gnu 0.52.5",
|
2431
|
-
"windows_x86_64_gnullvm 0.52.5",
|
2432
|
-
"windows_x86_64_msvc 0.52.5",
|
2427
|
+
"windows-targets",
|
2433
2428
|
]
|
2434
2429
|
|
2435
2430
|
[[package]]
|
2436
|
-
name = "
|
2437
|
-
version = "0.
|
2431
|
+
name = "windows-sys"
|
2432
|
+
version = "0.52.0"
|
2438
2433
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2439
|
-
checksum = "
|
2434
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
2435
|
+
dependencies = [
|
2436
|
+
"windows-targets",
|
2437
|
+
]
|
2440
2438
|
|
2441
2439
|
[[package]]
|
2442
|
-
name = "
|
2443
|
-
version = "0.52.
|
2440
|
+
name = "windows-targets"
|
2441
|
+
version = "0.52.6"
|
2444
2442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2445
|
-
checksum = "
|
2443
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
2444
|
+
dependencies = [
|
2445
|
+
"windows_aarch64_gnullvm",
|
2446
|
+
"windows_aarch64_msvc",
|
2447
|
+
"windows_i686_gnu",
|
2448
|
+
"windows_i686_gnullvm",
|
2449
|
+
"windows_i686_msvc",
|
2450
|
+
"windows_x86_64_gnu",
|
2451
|
+
"windows_x86_64_gnullvm",
|
2452
|
+
"windows_x86_64_msvc",
|
2453
|
+
]
|
2446
2454
|
|
2447
2455
|
[[package]]
|
2448
|
-
name = "
|
2449
|
-
version = "0.
|
2456
|
+
name = "windows_aarch64_gnullvm"
|
2457
|
+
version = "0.52.6"
|
2450
2458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2451
|
-
checksum = "
|
2459
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
2452
2460
|
|
2453
2461
|
[[package]]
|
2454
2462
|
name = "windows_aarch64_msvc"
|
2455
|
-
version = "0.52.
|
2456
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2457
|
-
checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
|
2458
|
-
|
2459
|
-
[[package]]
|
2460
|
-
name = "windows_i686_gnu"
|
2461
|
-
version = "0.48.5"
|
2463
|
+
version = "0.52.6"
|
2462
2464
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2463
|
-
checksum = "
|
2465
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
2464
2466
|
|
2465
2467
|
[[package]]
|
2466
2468
|
name = "windows_i686_gnu"
|
2467
|
-
version = "0.52.
|
2469
|
+
version = "0.52.6"
|
2468
2470
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2469
|
-
checksum = "
|
2471
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
2470
2472
|
|
2471
2473
|
[[package]]
|
2472
2474
|
name = "windows_i686_gnullvm"
|
2473
|
-
version = "0.52.
|
2475
|
+
version = "0.52.6"
|
2474
2476
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2475
|
-
checksum = "
|
2477
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
2476
2478
|
|
2477
2479
|
[[package]]
|
2478
2480
|
name = "windows_i686_msvc"
|
2479
|
-
version = "0.
|
2480
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2481
|
-
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
2482
|
-
|
2483
|
-
[[package]]
|
2484
|
-
name = "windows_i686_msvc"
|
2485
|
-
version = "0.52.5"
|
2486
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2487
|
-
checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
|
2488
|
-
|
2489
|
-
[[package]]
|
2490
|
-
name = "windows_x86_64_gnu"
|
2491
|
-
version = "0.48.5"
|
2481
|
+
version = "0.52.6"
|
2492
2482
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2493
|
-
checksum = "
|
2483
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
2494
2484
|
|
2495
2485
|
[[package]]
|
2496
2486
|
name = "windows_x86_64_gnu"
|
2497
|
-
version = "0.52.
|
2487
|
+
version = "0.52.6"
|
2498
2488
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2499
|
-
checksum = "
|
2489
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
2500
2490
|
|
2501
2491
|
[[package]]
|
2502
2492
|
name = "windows_x86_64_gnullvm"
|
2503
|
-
version = "0.
|
2504
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2505
|
-
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
2506
|
-
|
2507
|
-
[[package]]
|
2508
|
-
name = "windows_x86_64_gnullvm"
|
2509
|
-
version = "0.52.5"
|
2510
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2511
|
-
checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
|
2512
|
-
|
2513
|
-
[[package]]
|
2514
|
-
name = "windows_x86_64_msvc"
|
2515
|
-
version = "0.48.5"
|
2493
|
+
version = "0.52.6"
|
2516
2494
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2517
|
-
checksum = "
|
2495
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
2518
2496
|
|
2519
2497
|
[[package]]
|
2520
2498
|
name = "windows_x86_64_msvc"
|
2521
|
-
version = "0.52.
|
2499
|
+
version = "0.52.6"
|
2522
2500
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2523
|
-
checksum = "
|
2501
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
2524
2502
|
|
2525
2503
|
[[package]]
|
2526
2504
|
name = "xxhash-rust"
|
2527
|
-
version = "0.8.
|
2505
|
+
version = "0.8.12"
|
2528
2506
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2529
|
-
checksum = "
|
2507
|
+
checksum = "6a5cbf750400958819fb6178eaa83bee5cd9c29a26a40cc241df8c70fdd46984"
|
2530
2508
|
|
2531
2509
|
[[package]]
|
2532
2510
|
name = "zerocopy"
|
2533
|
-
version = "0.7.
|
2511
|
+
version = "0.7.35"
|
2534
2512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2535
|
-
checksum = "
|
2513
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
2536
2514
|
dependencies = [
|
2515
|
+
"byteorder",
|
2537
2516
|
"zerocopy-derive",
|
2538
2517
|
]
|
2539
2518
|
|
2540
2519
|
[[package]]
|
2541
2520
|
name = "zerocopy-derive"
|
2542
|
-
version = "0.7.
|
2521
|
+
version = "0.7.35"
|
2543
2522
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2544
|
-
checksum = "
|
2523
|
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
2545
2524
|
dependencies = [
|
2546
2525
|
"proc-macro2",
|
2547
2526
|
"quote",
|
2548
|
-
"syn 2.0.
|
2527
|
+
"syn 2.0.74",
|
2549
2528
|
]
|
2550
2529
|
|
2551
2530
|
[[package]]
|
2552
2531
|
name = "zstd"
|
2553
|
-
version = "0.13.
|
2532
|
+
version = "0.13.2"
|
2554
2533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2555
|
-
checksum = "
|
2534
|
+
checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
|
2556
2535
|
dependencies = [
|
2557
2536
|
"zstd-safe",
|
2558
2537
|
]
|
2559
2538
|
|
2560
2539
|
[[package]]
|
2561
2540
|
name = "zstd-safe"
|
2562
|
-
version = "7.1
|
2541
|
+
version = "7.2.1"
|
2563
2542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2564
|
-
checksum = "
|
2543
|
+
checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
|
2565
2544
|
dependencies = [
|
2566
2545
|
"zstd-sys",
|
2567
2546
|
]
|
2568
2547
|
|
2569
2548
|
[[package]]
|
2570
2549
|
name = "zstd-sys"
|
2571
|
-
version = "2.0.
|
2550
|
+
version = "2.0.13+zstd.1.5.6"
|
2572
2551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2573
|
-
checksum = "
|
2552
|
+
checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
|
2574
2553
|
dependencies = [
|
2575
2554
|
"cc",
|
2576
2555
|
"pkg-config",
|