iceberg 0.11.0 → 0.11.2
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 +9 -0
- data/Cargo.lock +364 -665
- data/ext/iceberg/Cargo.toml +10 -9
- data/ext/iceberg/src/catalog.rs +80 -20
- data/ext/iceberg/src/error.rs +7 -1
- data/ext/iceberg/src/lib.rs +1 -0
- data/ext/iceberg/src/ruby.rs +51 -0
- data/ext/iceberg/src/scan.rs +12 -9
- data/ext/iceberg/src/table.rs +140 -96
- data/lib/iceberg/version.rb +1 -1
- metadata +3 -2
data/Cargo.lock
CHANGED
|
@@ -8,17 +8,6 @@ version = "2.0.1"
|
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
9
|
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
10
|
|
|
11
|
-
[[package]]
|
|
12
|
-
name = "ahash"
|
|
13
|
-
version = "0.7.8"
|
|
14
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
-
checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
|
|
16
|
-
dependencies = [
|
|
17
|
-
"getrandom 0.2.16",
|
|
18
|
-
"once_cell",
|
|
19
|
-
"version_check",
|
|
20
|
-
]
|
|
21
|
-
|
|
22
11
|
[[package]]
|
|
23
12
|
name = "ahash"
|
|
24
13
|
version = "0.8.12"
|
|
@@ -91,7 +80,7 @@ dependencies = [
|
|
|
91
80
|
"miniz_oxide",
|
|
92
81
|
"num-bigint",
|
|
93
82
|
"quad-rand",
|
|
94
|
-
"rand 0.9.
|
|
83
|
+
"rand 0.9.4",
|
|
95
84
|
"regex-lite",
|
|
96
85
|
"serde",
|
|
97
86
|
"serde_bytes",
|
|
@@ -162,7 +151,7 @@ version = "57.2.0"
|
|
|
162
151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
163
152
|
checksum = "65ca404ea6191e06bf30956394173337fa9c35f445bd447fe6c21ab944e1a23c"
|
|
164
153
|
dependencies = [
|
|
165
|
-
"ahash
|
|
154
|
+
"ahash",
|
|
166
155
|
"arrow-buffer",
|
|
167
156
|
"arrow-data",
|
|
168
157
|
"arrow-schema",
|
|
@@ -320,7 +309,7 @@ version = "57.2.0"
|
|
|
320
309
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
310
|
checksum = "c96d8a1c180b44ecf2e66c9a2f2bbcb8b1b6f14e165ce46ac8bde211a363411b"
|
|
322
311
|
dependencies = [
|
|
323
|
-
"ahash
|
|
312
|
+
"ahash",
|
|
324
313
|
"arrow-array",
|
|
325
314
|
"arrow-buffer",
|
|
326
315
|
"arrow-data",
|
|
@@ -353,19 +342,14 @@ checksum = "b0f477b951e452a0b6b4a10b53ccd569042d1d01729b519e02074a9c0958a063"
|
|
|
353
342
|
|
|
354
343
|
[[package]]
|
|
355
344
|
name = "async-compression"
|
|
356
|
-
version = "0.4.
|
|
345
|
+
version = "0.4.41"
|
|
357
346
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
-
checksum = "
|
|
347
|
+
checksum = "d0f9ee0f6e02ffd7ad5816e9464499fba7b3effd01123b515c41d1697c43dad1"
|
|
359
348
|
dependencies = [
|
|
360
|
-
"
|
|
361
|
-
"
|
|
362
|
-
"futures-core",
|
|
363
|
-
"memchr",
|
|
349
|
+
"compression-codecs",
|
|
350
|
+
"compression-core",
|
|
364
351
|
"pin-project-lite",
|
|
365
352
|
"tokio",
|
|
366
|
-
"xz2",
|
|
367
|
-
"zstd",
|
|
368
|
-
"zstd-safe",
|
|
369
353
|
]
|
|
370
354
|
|
|
371
355
|
[[package]]
|
|
@@ -387,7 +371,7 @@ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
|
387
371
|
dependencies = [
|
|
388
372
|
"proc-macro2",
|
|
389
373
|
"quote",
|
|
390
|
-
"syn
|
|
374
|
+
"syn",
|
|
391
375
|
]
|
|
392
376
|
|
|
393
377
|
[[package]]
|
|
@@ -455,9 +439,9 @@ dependencies = [
|
|
|
455
439
|
|
|
456
440
|
[[package]]
|
|
457
441
|
name = "aws-lc-rs"
|
|
458
|
-
version = "1.
|
|
442
|
+
version = "1.16.2"
|
|
459
443
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
-
checksum = "
|
|
444
|
+
checksum = "a054912289d18629dc78375ba2c3726a3afe3ff71b4edba9dedfca0e3446d1fc"
|
|
461
445
|
dependencies = [
|
|
462
446
|
"aws-lc-sys",
|
|
463
447
|
"zeroize",
|
|
@@ -465,11 +449,10 @@ dependencies = [
|
|
|
465
449
|
|
|
466
450
|
[[package]]
|
|
467
451
|
name = "aws-lc-sys"
|
|
468
|
-
version = "0.
|
|
452
|
+
version = "0.39.0"
|
|
469
453
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
-
checksum = "
|
|
454
|
+
checksum = "1fa7e52a4c5c547c741610a2c6f123f3881e409b714cd27e6798ef020c514f0a"
|
|
471
455
|
dependencies = [
|
|
472
|
-
"bindgen",
|
|
473
456
|
"cc",
|
|
474
457
|
"cmake",
|
|
475
458
|
"dunce",
|
|
@@ -678,23 +661,17 @@ dependencies = [
|
|
|
678
661
|
"aws-smithy-async",
|
|
679
662
|
"aws-smithy-runtime-api",
|
|
680
663
|
"aws-smithy-types",
|
|
681
|
-
"h2
|
|
682
|
-
"h2 0.4.12",
|
|
683
|
-
"http 0.2.12",
|
|
664
|
+
"h2",
|
|
684
665
|
"http 1.3.1",
|
|
685
|
-
"
|
|
686
|
-
"hyper
|
|
687
|
-
"hyper 1.7.0",
|
|
688
|
-
"hyper-rustls 0.24.2",
|
|
689
|
-
"hyper-rustls 0.27.7",
|
|
666
|
+
"hyper",
|
|
667
|
+
"hyper-rustls",
|
|
690
668
|
"hyper-util",
|
|
691
669
|
"pin-project-lite",
|
|
692
|
-
"rustls
|
|
693
|
-
"rustls 0.23.31",
|
|
670
|
+
"rustls",
|
|
694
671
|
"rustls-native-certs",
|
|
695
672
|
"rustls-pki-types",
|
|
696
673
|
"tokio",
|
|
697
|
-
"tokio-rustls
|
|
674
|
+
"tokio-rustls",
|
|
698
675
|
"tower",
|
|
699
676
|
"tracing",
|
|
700
677
|
]
|
|
@@ -882,15 +859,12 @@ dependencies = [
|
|
|
882
859
|
"itertools 0.12.1",
|
|
883
860
|
"lazy_static",
|
|
884
861
|
"lazycell",
|
|
885
|
-
"log",
|
|
886
|
-
"prettyplease",
|
|
887
862
|
"proc-macro2",
|
|
888
863
|
"quote",
|
|
889
864
|
"regex",
|
|
890
865
|
"rustc-hash 1.1.0",
|
|
891
866
|
"shlex",
|
|
892
|
-
"syn
|
|
893
|
-
"which",
|
|
867
|
+
"syn",
|
|
894
868
|
]
|
|
895
869
|
|
|
896
870
|
[[package]]
|
|
@@ -902,18 +876,6 @@ dependencies = [
|
|
|
902
876
|
"serde",
|
|
903
877
|
]
|
|
904
878
|
|
|
905
|
-
[[package]]
|
|
906
|
-
name = "bitvec"
|
|
907
|
-
version = "1.0.1"
|
|
908
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
909
|
-
checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
|
|
910
|
-
dependencies = [
|
|
911
|
-
"funty",
|
|
912
|
-
"radium",
|
|
913
|
-
"tap",
|
|
914
|
-
"wyz",
|
|
915
|
-
]
|
|
916
|
-
|
|
917
879
|
[[package]]
|
|
918
880
|
name = "blake2"
|
|
919
881
|
version = "0.10.6"
|
|
@@ -945,6 +907,16 @@ dependencies = [
|
|
|
945
907
|
"generic-array",
|
|
946
908
|
]
|
|
947
909
|
|
|
910
|
+
[[package]]
|
|
911
|
+
name = "bnum"
|
|
912
|
+
version = "0.12.1"
|
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
+
checksum = "f781dba93de3a5ef6dc5b17c9958b208f6f3f021623b360fb605ea51ce443f10"
|
|
915
|
+
dependencies = [
|
|
916
|
+
"serde",
|
|
917
|
+
"serde-big-array",
|
|
918
|
+
]
|
|
919
|
+
|
|
948
920
|
[[package]]
|
|
949
921
|
name = "bon"
|
|
950
922
|
version = "3.8.1"
|
|
@@ -967,30 +939,7 @@ dependencies = [
|
|
|
967
939
|
"proc-macro2",
|
|
968
940
|
"quote",
|
|
969
941
|
"rustversion",
|
|
970
|
-
"syn
|
|
971
|
-
]
|
|
972
|
-
|
|
973
|
-
[[package]]
|
|
974
|
-
name = "borsh"
|
|
975
|
-
version = "1.5.7"
|
|
976
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
-
checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce"
|
|
978
|
-
dependencies = [
|
|
979
|
-
"borsh-derive",
|
|
980
|
-
"cfg_aliases",
|
|
981
|
-
]
|
|
982
|
-
|
|
983
|
-
[[package]]
|
|
984
|
-
name = "borsh-derive"
|
|
985
|
-
version = "1.5.7"
|
|
986
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
-
checksum = "fdd1d3c0c2f5833f22386f252fe8ed005c7f59fdcddeef025c01b4c3b9fd9ac3"
|
|
988
|
-
dependencies = [
|
|
989
|
-
"once_cell",
|
|
990
|
-
"proc-macro-crate",
|
|
991
|
-
"proc-macro2",
|
|
992
|
-
"quote",
|
|
993
|
-
"syn 2.0.114",
|
|
942
|
+
"syn",
|
|
994
943
|
]
|
|
995
944
|
|
|
996
945
|
[[package]]
|
|
@@ -1020,28 +969,6 @@ version = "3.19.0"
|
|
|
1020
969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1021
970
|
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
1022
971
|
|
|
1023
|
-
[[package]]
|
|
1024
|
-
name = "bytecheck"
|
|
1025
|
-
version = "0.6.12"
|
|
1026
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
-
checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
|
|
1028
|
-
dependencies = [
|
|
1029
|
-
"bytecheck_derive",
|
|
1030
|
-
"ptr_meta",
|
|
1031
|
-
"simdutf8",
|
|
1032
|
-
]
|
|
1033
|
-
|
|
1034
|
-
[[package]]
|
|
1035
|
-
name = "bytecheck_derive"
|
|
1036
|
-
version = "0.6.12"
|
|
1037
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1038
|
-
checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
|
|
1039
|
-
dependencies = [
|
|
1040
|
-
"proc-macro2",
|
|
1041
|
-
"quote",
|
|
1042
|
-
"syn 1.0.109",
|
|
1043
|
-
]
|
|
1044
|
-
|
|
1045
972
|
[[package]]
|
|
1046
973
|
name = "bytemuck"
|
|
1047
974
|
version = "1.23.2"
|
|
@@ -1056,9 +983,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
1056
983
|
|
|
1057
984
|
[[package]]
|
|
1058
985
|
name = "bytes"
|
|
1059
|
-
version = "1.
|
|
986
|
+
version = "1.11.1"
|
|
1060
987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1061
|
-
checksum = "
|
|
988
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
1062
989
|
|
|
1063
990
|
[[package]]
|
|
1064
991
|
name = "bytes-utils"
|
|
@@ -1070,15 +997,6 @@ dependencies = [
|
|
|
1070
997
|
"either",
|
|
1071
998
|
]
|
|
1072
999
|
|
|
1073
|
-
[[package]]
|
|
1074
|
-
name = "bzip2"
|
|
1075
|
-
version = "0.5.2"
|
|
1076
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
-
checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47"
|
|
1078
|
-
dependencies = [
|
|
1079
|
-
"bzip2-sys",
|
|
1080
|
-
]
|
|
1081
|
-
|
|
1082
1000
|
[[package]]
|
|
1083
1001
|
name = "bzip2"
|
|
1084
1002
|
version = "0.6.1"
|
|
@@ -1088,16 +1006,6 @@ dependencies = [
|
|
|
1088
1006
|
"libbz2-rs-sys",
|
|
1089
1007
|
]
|
|
1090
1008
|
|
|
1091
|
-
[[package]]
|
|
1092
|
-
name = "bzip2-sys"
|
|
1093
|
-
version = "0.1.13+1.0.8"
|
|
1094
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
-
checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
|
|
1096
|
-
dependencies = [
|
|
1097
|
-
"cc",
|
|
1098
|
-
"pkg-config",
|
|
1099
|
-
]
|
|
1100
|
-
|
|
1101
1009
|
[[package]]
|
|
1102
1010
|
name = "cc"
|
|
1103
1011
|
version = "1.2.34"
|
|
@@ -1184,6 +1092,27 @@ dependencies = [
|
|
|
1184
1092
|
"unicode-width",
|
|
1185
1093
|
]
|
|
1186
1094
|
|
|
1095
|
+
[[package]]
|
|
1096
|
+
name = "compression-codecs"
|
|
1097
|
+
version = "0.4.37"
|
|
1098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
+
checksum = "eb7b51a7d9c967fc26773061ba86150f19c50c0d65c887cb1fbe295fd16619b7"
|
|
1100
|
+
dependencies = [
|
|
1101
|
+
"bzip2",
|
|
1102
|
+
"compression-core",
|
|
1103
|
+
"flate2",
|
|
1104
|
+
"liblzma",
|
|
1105
|
+
"memchr",
|
|
1106
|
+
"zstd",
|
|
1107
|
+
"zstd-safe",
|
|
1108
|
+
]
|
|
1109
|
+
|
|
1110
|
+
[[package]]
|
|
1111
|
+
name = "compression-core"
|
|
1112
|
+
version = "0.4.31"
|
|
1113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1114
|
+
checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d"
|
|
1115
|
+
|
|
1187
1116
|
[[package]]
|
|
1188
1117
|
name = "concurrent-queue"
|
|
1189
1118
|
version = "2.5.0"
|
|
@@ -1384,7 +1313,7 @@ dependencies = [
|
|
|
1384
1313
|
"proc-macro2",
|
|
1385
1314
|
"quote",
|
|
1386
1315
|
"strsim",
|
|
1387
|
-
"syn
|
|
1316
|
+
"syn",
|
|
1388
1317
|
]
|
|
1389
1318
|
|
|
1390
1319
|
[[package]]
|
|
@@ -1398,7 +1327,7 @@ dependencies = [
|
|
|
1398
1327
|
"proc-macro2",
|
|
1399
1328
|
"quote",
|
|
1400
1329
|
"strsim",
|
|
1401
|
-
"syn
|
|
1330
|
+
"syn",
|
|
1402
1331
|
]
|
|
1403
1332
|
|
|
1404
1333
|
[[package]]
|
|
@@ -1409,7 +1338,7 @@ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
|
1409
1338
|
dependencies = [
|
|
1410
1339
|
"darling_core 0.20.11",
|
|
1411
1340
|
"quote",
|
|
1412
|
-
"syn
|
|
1341
|
+
"syn",
|
|
1413
1342
|
]
|
|
1414
1343
|
|
|
1415
1344
|
[[package]]
|
|
@@ -1420,7 +1349,7 @@ checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
|
|
|
1420
1349
|
dependencies = [
|
|
1421
1350
|
"darling_core 0.21.3",
|
|
1422
1351
|
"quote",
|
|
1423
|
-
"syn
|
|
1352
|
+
"syn",
|
|
1424
1353
|
]
|
|
1425
1354
|
|
|
1426
1355
|
[[package]]
|
|
@@ -1439,15 +1368,15 @@ dependencies = [
|
|
|
1439
1368
|
|
|
1440
1369
|
[[package]]
|
|
1441
1370
|
name = "datafusion"
|
|
1442
|
-
version = "
|
|
1371
|
+
version = "52.3.0"
|
|
1443
1372
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
-
checksum = "
|
|
1373
|
+
checksum = "ea28305c211e3541c9cfcf06a23d0d8c7c824b4502ed1fdf0a6ff4ad24ee531c"
|
|
1445
1374
|
dependencies = [
|
|
1446
1375
|
"arrow",
|
|
1447
1376
|
"arrow-schema",
|
|
1448
1377
|
"async-trait",
|
|
1449
1378
|
"bytes",
|
|
1450
|
-
"bzip2
|
|
1379
|
+
"bzip2",
|
|
1451
1380
|
"chrono",
|
|
1452
1381
|
"datafusion-catalog",
|
|
1453
1382
|
"datafusion-catalog-listing",
|
|
@@ -1477,27 +1406,26 @@ dependencies = [
|
|
|
1477
1406
|
"flate2",
|
|
1478
1407
|
"futures",
|
|
1479
1408
|
"itertools 0.14.0",
|
|
1409
|
+
"liblzma",
|
|
1480
1410
|
"log",
|
|
1481
1411
|
"object_store",
|
|
1482
1412
|
"parking_lot",
|
|
1483
1413
|
"parquet",
|
|
1484
|
-
"rand 0.9.
|
|
1414
|
+
"rand 0.9.4",
|
|
1485
1415
|
"regex",
|
|
1486
|
-
"rstest",
|
|
1487
1416
|
"sqlparser",
|
|
1488
1417
|
"tempfile",
|
|
1489
1418
|
"tokio",
|
|
1490
1419
|
"url",
|
|
1491
1420
|
"uuid",
|
|
1492
|
-
"xz2",
|
|
1493
1421
|
"zstd",
|
|
1494
1422
|
]
|
|
1495
1423
|
|
|
1496
1424
|
[[package]]
|
|
1497
1425
|
name = "datafusion-catalog"
|
|
1498
|
-
version = "
|
|
1426
|
+
version = "52.3.0"
|
|
1499
1427
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1500
|
-
checksum = "
|
|
1428
|
+
checksum = "78ab99b6df5f60a6ddbc515e4c05caee1192d395cf3cb67ce5d1c17e3c9b9b74"
|
|
1501
1429
|
dependencies = [
|
|
1502
1430
|
"arrow",
|
|
1503
1431
|
"async-trait",
|
|
@@ -1520,9 +1448,9 @@ dependencies = [
|
|
|
1520
1448
|
|
|
1521
1449
|
[[package]]
|
|
1522
1450
|
name = "datafusion-catalog-listing"
|
|
1523
|
-
version = "
|
|
1451
|
+
version = "52.3.0"
|
|
1524
1452
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1525
|
-
checksum = "
|
|
1453
|
+
checksum = "77ae3d14912c0d779ada98d30dc60f3244f3c26c2446b87394629ea5c076a31c"
|
|
1526
1454
|
dependencies = [
|
|
1527
1455
|
"arrow",
|
|
1528
1456
|
"async-trait",
|
|
@@ -1539,21 +1467,20 @@ dependencies = [
|
|
|
1539
1467
|
"itertools 0.14.0",
|
|
1540
1468
|
"log",
|
|
1541
1469
|
"object_store",
|
|
1542
|
-
"tokio",
|
|
1543
1470
|
]
|
|
1544
1471
|
|
|
1545
1472
|
[[package]]
|
|
1546
1473
|
name = "datafusion-common"
|
|
1547
|
-
version = "
|
|
1474
|
+
version = "52.3.0"
|
|
1548
1475
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1549
|
-
checksum = "
|
|
1476
|
+
checksum = "ea2df29b9592a5d55b8238eaf67d2f21963d5a08cd1a8b7670134405206caabd"
|
|
1550
1477
|
dependencies = [
|
|
1551
|
-
"ahash
|
|
1478
|
+
"ahash",
|
|
1552
1479
|
"arrow",
|
|
1553
1480
|
"arrow-ipc",
|
|
1554
1481
|
"chrono",
|
|
1555
1482
|
"half",
|
|
1556
|
-
"hashbrown 0.
|
|
1483
|
+
"hashbrown 0.16.1",
|
|
1557
1484
|
"indexmap 2.13.0",
|
|
1558
1485
|
"libc",
|
|
1559
1486
|
"log",
|
|
@@ -1568,9 +1495,9 @@ dependencies = [
|
|
|
1568
1495
|
|
|
1569
1496
|
[[package]]
|
|
1570
1497
|
name = "datafusion-common-runtime"
|
|
1571
|
-
version = "
|
|
1498
|
+
version = "52.3.0"
|
|
1572
1499
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1573
|
-
checksum = "
|
|
1500
|
+
checksum = "42639baa0049d5fffd7e283504b9b5e7b9b2e7a2dea476eed60ab0d40d999b85"
|
|
1574
1501
|
dependencies = [
|
|
1575
1502
|
"futures",
|
|
1576
1503
|
"log",
|
|
@@ -1579,15 +1506,15 @@ dependencies = [
|
|
|
1579
1506
|
|
|
1580
1507
|
[[package]]
|
|
1581
1508
|
name = "datafusion-datasource"
|
|
1582
|
-
version = "
|
|
1509
|
+
version = "52.3.0"
|
|
1583
1510
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1584
|
-
checksum = "
|
|
1511
|
+
checksum = "25951b617bb22a9619e1520450590cb2004bfcad10bcb396b961f4a1a10dcec5"
|
|
1585
1512
|
dependencies = [
|
|
1586
1513
|
"arrow",
|
|
1587
1514
|
"async-compression",
|
|
1588
1515
|
"async-trait",
|
|
1589
1516
|
"bytes",
|
|
1590
|
-
"bzip2
|
|
1517
|
+
"bzip2",
|
|
1591
1518
|
"chrono",
|
|
1592
1519
|
"datafusion-common",
|
|
1593
1520
|
"datafusion-common-runtime",
|
|
@@ -1602,21 +1529,21 @@ dependencies = [
|
|
|
1602
1529
|
"futures",
|
|
1603
1530
|
"glob",
|
|
1604
1531
|
"itertools 0.14.0",
|
|
1532
|
+
"liblzma",
|
|
1605
1533
|
"log",
|
|
1606
1534
|
"object_store",
|
|
1607
|
-
"rand 0.9.
|
|
1535
|
+
"rand 0.9.4",
|
|
1608
1536
|
"tokio",
|
|
1609
1537
|
"tokio-util",
|
|
1610
1538
|
"url",
|
|
1611
|
-
"xz2",
|
|
1612
1539
|
"zstd",
|
|
1613
1540
|
]
|
|
1614
1541
|
|
|
1615
1542
|
[[package]]
|
|
1616
1543
|
name = "datafusion-datasource-arrow"
|
|
1617
|
-
version = "
|
|
1544
|
+
version = "52.3.0"
|
|
1618
1545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1619
|
-
checksum = "
|
|
1546
|
+
checksum = "dc0b28226960ba99c50d78ac6f736ebe09eb5cb3bb9bb58194266278000ca41f"
|
|
1620
1547
|
dependencies = [
|
|
1621
1548
|
"arrow",
|
|
1622
1549
|
"arrow-ipc",
|
|
@@ -1638,9 +1565,9 @@ dependencies = [
|
|
|
1638
1565
|
|
|
1639
1566
|
[[package]]
|
|
1640
1567
|
name = "datafusion-datasource-csv"
|
|
1641
|
-
version = "
|
|
1568
|
+
version = "52.3.0"
|
|
1642
1569
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1643
|
-
checksum = "
|
|
1570
|
+
checksum = "f538b57b052a678b1ce860181c65d3ace5a8486312dc50b41c01dd585a773a51"
|
|
1644
1571
|
dependencies = [
|
|
1645
1572
|
"arrow",
|
|
1646
1573
|
"async-trait",
|
|
@@ -1661,9 +1588,9 @@ dependencies = [
|
|
|
1661
1588
|
|
|
1662
1589
|
[[package]]
|
|
1663
1590
|
name = "datafusion-datasource-json"
|
|
1664
|
-
version = "
|
|
1591
|
+
version = "52.3.0"
|
|
1665
1592
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1666
|
-
checksum = "
|
|
1593
|
+
checksum = "89fbc1d32b1b03c9734e27c0c5f041232b68621c8455f22769838634750a196c"
|
|
1667
1594
|
dependencies = [
|
|
1668
1595
|
"arrow",
|
|
1669
1596
|
"async-trait",
|
|
@@ -1683,9 +1610,9 @@ dependencies = [
|
|
|
1683
1610
|
|
|
1684
1611
|
[[package]]
|
|
1685
1612
|
name = "datafusion-datasource-parquet"
|
|
1686
|
-
version = "
|
|
1613
|
+
version = "52.3.0"
|
|
1687
1614
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1688
|
-
checksum = "
|
|
1615
|
+
checksum = "203271d31fe5613a5943181db70ec98162121d1de94a9a300d5e5f19f9500a32"
|
|
1689
1616
|
dependencies = [
|
|
1690
1617
|
"arrow",
|
|
1691
1618
|
"async-trait",
|
|
@@ -1713,18 +1640,19 @@ dependencies = [
|
|
|
1713
1640
|
|
|
1714
1641
|
[[package]]
|
|
1715
1642
|
name = "datafusion-doc"
|
|
1716
|
-
version = "
|
|
1643
|
+
version = "52.3.0"
|
|
1717
1644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1718
|
-
checksum = "
|
|
1645
|
+
checksum = "5b6450dc702b3d39e8ced54c3356abb453bd2f3cea86d90d555a4b92f7a38462"
|
|
1719
1646
|
|
|
1720
1647
|
[[package]]
|
|
1721
1648
|
name = "datafusion-execution"
|
|
1722
|
-
version = "
|
|
1649
|
+
version = "52.3.0"
|
|
1723
1650
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1724
|
-
checksum = "
|
|
1651
|
+
checksum = "e66a02fa601de49da5181dbdcf904a18b16a184db2b31f5e5534552ea2d5e660"
|
|
1725
1652
|
dependencies = [
|
|
1726
1653
|
"arrow",
|
|
1727
1654
|
"async-trait",
|
|
1655
|
+
"chrono",
|
|
1728
1656
|
"dashmap",
|
|
1729
1657
|
"datafusion-common",
|
|
1730
1658
|
"datafusion-expr",
|
|
@@ -1732,16 +1660,16 @@ dependencies = [
|
|
|
1732
1660
|
"log",
|
|
1733
1661
|
"object_store",
|
|
1734
1662
|
"parking_lot",
|
|
1735
|
-
"rand 0.9.
|
|
1663
|
+
"rand 0.9.4",
|
|
1736
1664
|
"tempfile",
|
|
1737
1665
|
"url",
|
|
1738
1666
|
]
|
|
1739
1667
|
|
|
1740
1668
|
[[package]]
|
|
1741
1669
|
name = "datafusion-expr"
|
|
1742
|
-
version = "
|
|
1670
|
+
version = "52.3.0"
|
|
1743
1671
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1744
|
-
checksum = "
|
|
1672
|
+
checksum = "cdf59a9b308a1a07dc2eb2f85e6366bc0226dc390b40f3aa0a72d79f1cfe2465"
|
|
1745
1673
|
dependencies = [
|
|
1746
1674
|
"arrow",
|
|
1747
1675
|
"async-trait",
|
|
@@ -1762,9 +1690,9 @@ dependencies = [
|
|
|
1762
1690
|
|
|
1763
1691
|
[[package]]
|
|
1764
1692
|
name = "datafusion-expr-common"
|
|
1765
|
-
version = "
|
|
1693
|
+
version = "52.3.0"
|
|
1766
1694
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1767
|
-
checksum = "
|
|
1695
|
+
checksum = "bd99eac4c6538c708638db43e7a3bd88e0e57955ddb722d420fb9a6d38dfc28f"
|
|
1768
1696
|
dependencies = [
|
|
1769
1697
|
"arrow",
|
|
1770
1698
|
"datafusion-common",
|
|
@@ -1775,9 +1703,9 @@ dependencies = [
|
|
|
1775
1703
|
|
|
1776
1704
|
[[package]]
|
|
1777
1705
|
name = "datafusion-functions"
|
|
1778
|
-
version = "
|
|
1706
|
+
version = "52.3.0"
|
|
1779
1707
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1780
|
-
checksum = "
|
|
1708
|
+
checksum = "11aa2c492ac046397b36d57c62a72982aad306495bbcbcdbcabd424d4a2fe245"
|
|
1781
1709
|
dependencies = [
|
|
1782
1710
|
"arrow",
|
|
1783
1711
|
"arrow-buffer",
|
|
@@ -1785,6 +1713,7 @@ dependencies = [
|
|
|
1785
1713
|
"blake2",
|
|
1786
1714
|
"blake3",
|
|
1787
1715
|
"chrono",
|
|
1716
|
+
"chrono-tz",
|
|
1788
1717
|
"datafusion-common",
|
|
1789
1718
|
"datafusion-doc",
|
|
1790
1719
|
"datafusion-execution",
|
|
@@ -1796,7 +1725,7 @@ dependencies = [
|
|
|
1796
1725
|
"log",
|
|
1797
1726
|
"md-5",
|
|
1798
1727
|
"num-traits",
|
|
1799
|
-
"rand 0.9.
|
|
1728
|
+
"rand 0.9.4",
|
|
1800
1729
|
"regex",
|
|
1801
1730
|
"sha2",
|
|
1802
1731
|
"unicode-segmentation",
|
|
@@ -1805,11 +1734,11 @@ dependencies = [
|
|
|
1805
1734
|
|
|
1806
1735
|
[[package]]
|
|
1807
1736
|
name = "datafusion-functions-aggregate"
|
|
1808
|
-
version = "
|
|
1737
|
+
version = "52.3.0"
|
|
1809
1738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1810
|
-
checksum = "
|
|
1739
|
+
checksum = "325a00081898945d48d6194d9ca26120e523c993be3bb7c084061a5a2a72e787"
|
|
1811
1740
|
dependencies = [
|
|
1812
|
-
"ahash
|
|
1741
|
+
"ahash",
|
|
1813
1742
|
"arrow",
|
|
1814
1743
|
"datafusion-common",
|
|
1815
1744
|
"datafusion-doc",
|
|
@@ -1826,11 +1755,11 @@ dependencies = [
|
|
|
1826
1755
|
|
|
1827
1756
|
[[package]]
|
|
1828
1757
|
name = "datafusion-functions-aggregate-common"
|
|
1829
|
-
version = "
|
|
1758
|
+
version = "52.3.0"
|
|
1830
1759
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1831
|
-
checksum = "
|
|
1760
|
+
checksum = "809bbcb1e0dbec5d0ce30d493d135aea7564f1ba4550395f7f94321223df2dae"
|
|
1832
1761
|
dependencies = [
|
|
1833
|
-
"ahash
|
|
1762
|
+
"ahash",
|
|
1834
1763
|
"arrow",
|
|
1835
1764
|
"datafusion-common",
|
|
1836
1765
|
"datafusion-expr-common",
|
|
@@ -1839,9 +1768,9 @@ dependencies = [
|
|
|
1839
1768
|
|
|
1840
1769
|
[[package]]
|
|
1841
1770
|
name = "datafusion-functions-nested"
|
|
1842
|
-
version = "
|
|
1771
|
+
version = "52.3.0"
|
|
1843
1772
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1844
|
-
checksum = "
|
|
1773
|
+
checksum = "29ebaa5d7024ef45973e0a7db1e9aeaa647936496f4d4061c0448f23d77d6320"
|
|
1845
1774
|
dependencies = [
|
|
1846
1775
|
"arrow",
|
|
1847
1776
|
"arrow-ord",
|
|
@@ -1862,9 +1791,9 @@ dependencies = [
|
|
|
1862
1791
|
|
|
1863
1792
|
[[package]]
|
|
1864
1793
|
name = "datafusion-functions-table"
|
|
1865
|
-
version = "
|
|
1794
|
+
version = "52.3.0"
|
|
1866
1795
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1867
|
-
checksum = "
|
|
1796
|
+
checksum = "60eab6f39df9ee49a2c7fa38eddc01fa0086ee31b29c7d19f38e72f479609752"
|
|
1868
1797
|
dependencies = [
|
|
1869
1798
|
"arrow",
|
|
1870
1799
|
"async-trait",
|
|
@@ -1878,9 +1807,9 @@ dependencies = [
|
|
|
1878
1807
|
|
|
1879
1808
|
[[package]]
|
|
1880
1809
|
name = "datafusion-functions-window"
|
|
1881
|
-
version = "
|
|
1810
|
+
version = "52.3.0"
|
|
1882
1811
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1883
|
-
checksum = "
|
|
1812
|
+
checksum = "e00b2c15e342a90e65a846199c9e49293dd09fe1bcd63d8be2544604892f7eb8"
|
|
1884
1813
|
dependencies = [
|
|
1885
1814
|
"arrow",
|
|
1886
1815
|
"datafusion-common",
|
|
@@ -1896,9 +1825,9 @@ dependencies = [
|
|
|
1896
1825
|
|
|
1897
1826
|
[[package]]
|
|
1898
1827
|
name = "datafusion-functions-window-common"
|
|
1899
|
-
version = "
|
|
1828
|
+
version = "52.3.0"
|
|
1900
1829
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1901
|
-
checksum = "
|
|
1830
|
+
checksum = "493e2e1d1f4753dfc139a5213f1b5d0b97eea46a82d9bda3c7908aa96981b74b"
|
|
1902
1831
|
dependencies = [
|
|
1903
1832
|
"datafusion-common",
|
|
1904
1833
|
"datafusion-physical-expr-common",
|
|
@@ -1906,20 +1835,20 @@ dependencies = [
|
|
|
1906
1835
|
|
|
1907
1836
|
[[package]]
|
|
1908
1837
|
name = "datafusion-macros"
|
|
1909
|
-
version = "
|
|
1838
|
+
version = "52.3.0"
|
|
1910
1839
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1911
|
-
checksum = "
|
|
1840
|
+
checksum = "ba01c55ade8278a791b429f7bf5cb1de64de587a342d084b18245edfae7096e2"
|
|
1912
1841
|
dependencies = [
|
|
1913
1842
|
"datafusion-doc",
|
|
1914
1843
|
"quote",
|
|
1915
|
-
"syn
|
|
1844
|
+
"syn",
|
|
1916
1845
|
]
|
|
1917
1846
|
|
|
1918
1847
|
[[package]]
|
|
1919
1848
|
name = "datafusion-optimizer"
|
|
1920
|
-
version = "
|
|
1849
|
+
version = "52.3.0"
|
|
1921
1850
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1922
|
-
checksum = "
|
|
1851
|
+
checksum = "a80c6dfbba6a2163a9507f6353ac78c69d8deb26232c9e419160e58ff7c3e047"
|
|
1923
1852
|
dependencies = [
|
|
1924
1853
|
"arrow",
|
|
1925
1854
|
"chrono",
|
|
@@ -1937,11 +1866,11 @@ dependencies = [
|
|
|
1937
1866
|
|
|
1938
1867
|
[[package]]
|
|
1939
1868
|
name = "datafusion-physical-expr"
|
|
1940
|
-
version = "
|
|
1869
|
+
version = "52.3.0"
|
|
1941
1870
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1942
|
-
checksum = "
|
|
1871
|
+
checksum = "5d3a86264bb9163e7360b6622e789bc7fcbb43672e78a8493f0bc369a41a57c6"
|
|
1943
1872
|
dependencies = [
|
|
1944
|
-
"ahash
|
|
1873
|
+
"ahash",
|
|
1945
1874
|
"arrow",
|
|
1946
1875
|
"datafusion-common",
|
|
1947
1876
|
"datafusion-expr",
|
|
@@ -1949,19 +1878,21 @@ dependencies = [
|
|
|
1949
1878
|
"datafusion-functions-aggregate-common",
|
|
1950
1879
|
"datafusion-physical-expr-common",
|
|
1951
1880
|
"half",
|
|
1952
|
-
"hashbrown 0.
|
|
1881
|
+
"hashbrown 0.16.1",
|
|
1953
1882
|
"indexmap 2.13.0",
|
|
1954
1883
|
"itertools 0.14.0",
|
|
1955
1884
|
"parking_lot",
|
|
1956
1885
|
"paste",
|
|
1957
1886
|
"petgraph",
|
|
1887
|
+
"recursive",
|
|
1888
|
+
"tokio",
|
|
1958
1889
|
]
|
|
1959
1890
|
|
|
1960
1891
|
[[package]]
|
|
1961
1892
|
name = "datafusion-physical-expr-adapter"
|
|
1962
|
-
version = "
|
|
1893
|
+
version = "52.3.0"
|
|
1963
1894
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1964
|
-
checksum = "
|
|
1895
|
+
checksum = "3f5e00e524ac33500be6c5eeac940bd3f6b984ba9b7df0cd5f6c34a8a2cc4d6b"
|
|
1965
1896
|
dependencies = [
|
|
1966
1897
|
"arrow",
|
|
1967
1898
|
"datafusion-common",
|
|
@@ -1974,23 +1905,26 @@ dependencies = [
|
|
|
1974
1905
|
|
|
1975
1906
|
[[package]]
|
|
1976
1907
|
name = "datafusion-physical-expr-common"
|
|
1977
|
-
version = "
|
|
1908
|
+
version = "52.3.0"
|
|
1978
1909
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1979
|
-
checksum = "
|
|
1910
|
+
checksum = "2ae769ea5d688b4e74e9be5cad6f9d9f295b540825355868a3ab942380dd97ce"
|
|
1980
1911
|
dependencies = [
|
|
1981
|
-
"ahash
|
|
1912
|
+
"ahash",
|
|
1982
1913
|
"arrow",
|
|
1914
|
+
"chrono",
|
|
1983
1915
|
"datafusion-common",
|
|
1984
1916
|
"datafusion-expr-common",
|
|
1985
|
-
"hashbrown 0.
|
|
1917
|
+
"hashbrown 0.16.1",
|
|
1918
|
+
"indexmap 2.13.0",
|
|
1986
1919
|
"itertools 0.14.0",
|
|
1920
|
+
"parking_lot",
|
|
1987
1921
|
]
|
|
1988
1922
|
|
|
1989
1923
|
[[package]]
|
|
1990
1924
|
name = "datafusion-physical-optimizer"
|
|
1991
|
-
version = "
|
|
1925
|
+
version = "52.3.0"
|
|
1992
1926
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1993
|
-
checksum = "
|
|
1927
|
+
checksum = "f3588753ab2b47b0e43cd823fe5e7944df6734dabd6dafb72e2cc1c2a22f1944"
|
|
1994
1928
|
dependencies = [
|
|
1995
1929
|
"arrow",
|
|
1996
1930
|
"datafusion-common",
|
|
@@ -2007,27 +1941,27 @@ dependencies = [
|
|
|
2007
1941
|
|
|
2008
1942
|
[[package]]
|
|
2009
1943
|
name = "datafusion-physical-plan"
|
|
2010
|
-
version = "
|
|
1944
|
+
version = "52.3.0"
|
|
2011
1945
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2012
|
-
checksum = "
|
|
1946
|
+
checksum = "79949cbb109c2a45c527bfe0d956b9f2916807c05d4d2e66f3fd0af827ac2b61"
|
|
2013
1947
|
dependencies = [
|
|
2014
|
-
"ahash
|
|
1948
|
+
"ahash",
|
|
2015
1949
|
"arrow",
|
|
2016
1950
|
"arrow-ord",
|
|
2017
1951
|
"arrow-schema",
|
|
2018
1952
|
"async-trait",
|
|
2019
|
-
"chrono",
|
|
2020
1953
|
"datafusion-common",
|
|
2021
1954
|
"datafusion-common-runtime",
|
|
2022
1955
|
"datafusion-execution",
|
|
2023
1956
|
"datafusion-expr",
|
|
1957
|
+
"datafusion-functions",
|
|
2024
1958
|
"datafusion-functions-aggregate-common",
|
|
2025
1959
|
"datafusion-functions-window-common",
|
|
2026
1960
|
"datafusion-physical-expr",
|
|
2027
1961
|
"datafusion-physical-expr-common",
|
|
2028
1962
|
"futures",
|
|
2029
1963
|
"half",
|
|
2030
|
-
"hashbrown 0.
|
|
1964
|
+
"hashbrown 0.16.1",
|
|
2031
1965
|
"indexmap 2.13.0",
|
|
2032
1966
|
"itertools 0.14.0",
|
|
2033
1967
|
"log",
|
|
@@ -2038,9 +1972,9 @@ dependencies = [
|
|
|
2038
1972
|
|
|
2039
1973
|
[[package]]
|
|
2040
1974
|
name = "datafusion-pruning"
|
|
2041
|
-
version = "
|
|
1975
|
+
version = "52.3.0"
|
|
2042
1976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2043
|
-
checksum = "
|
|
1977
|
+
checksum = "6434e2ee8a39d04b95fed688ff34dc251af6e4a0c2e1714716b6e3846690d589"
|
|
2044
1978
|
dependencies = [
|
|
2045
1979
|
"arrow",
|
|
2046
1980
|
"datafusion-common",
|
|
@@ -2055,9 +1989,9 @@ dependencies = [
|
|
|
2055
1989
|
|
|
2056
1990
|
[[package]]
|
|
2057
1991
|
name = "datafusion-session"
|
|
2058
|
-
version = "
|
|
1992
|
+
version = "52.3.0"
|
|
2059
1993
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2060
|
-
checksum = "
|
|
1994
|
+
checksum = "c91efb8302b4877d499c37e9a71886b90236ab27d9cc42fd51112febf341abd6"
|
|
2061
1995
|
dependencies = [
|
|
2062
1996
|
"async-trait",
|
|
2063
1997
|
"datafusion-common",
|
|
@@ -2069,9 +2003,9 @@ dependencies = [
|
|
|
2069
2003
|
|
|
2070
2004
|
[[package]]
|
|
2071
2005
|
name = "datafusion-sql"
|
|
2072
|
-
version = "
|
|
2006
|
+
version = "52.3.0"
|
|
2073
2007
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2074
|
-
checksum = "
|
|
2008
|
+
checksum = "3f01eef7bcf4d00e87305b55f1b75792384e130fe0258bac02cd48378ae5ff87"
|
|
2075
2009
|
dependencies = [
|
|
2076
2010
|
"arrow",
|
|
2077
2011
|
"bigdecimal",
|
|
@@ -2098,12 +2032,12 @@ dependencies = [
|
|
|
2098
2032
|
|
|
2099
2033
|
[[package]]
|
|
2100
2034
|
name = "deranged"
|
|
2101
|
-
version = "0.
|
|
2035
|
+
version = "0.5.6"
|
|
2102
2036
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2103
|
-
checksum = "
|
|
2037
|
+
checksum = "cc3dc5ad92c2e2d1c193bbbbdf2ea477cb81331de4f3103f267ca18368b988c4"
|
|
2104
2038
|
dependencies = [
|
|
2105
2039
|
"powerfmt",
|
|
2106
|
-
"
|
|
2040
|
+
"serde_core",
|
|
2107
2041
|
]
|
|
2108
2042
|
|
|
2109
2043
|
[[package]]
|
|
@@ -2124,7 +2058,7 @@ dependencies = [
|
|
|
2124
2058
|
"darling 0.20.11",
|
|
2125
2059
|
"proc-macro2",
|
|
2126
2060
|
"quote",
|
|
2127
|
-
"syn
|
|
2061
|
+
"syn",
|
|
2128
2062
|
]
|
|
2129
2063
|
|
|
2130
2064
|
[[package]]
|
|
@@ -2134,7 +2068,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2134
2068
|
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
|
2135
2069
|
dependencies = [
|
|
2136
2070
|
"derive_builder_core",
|
|
2137
|
-
"syn
|
|
2071
|
+
"syn",
|
|
2138
2072
|
]
|
|
2139
2073
|
|
|
2140
2074
|
[[package]]
|
|
@@ -2157,7 +2091,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
|
2157
2091
|
dependencies = [
|
|
2158
2092
|
"proc-macro2",
|
|
2159
2093
|
"quote",
|
|
2160
|
-
"syn
|
|
2094
|
+
"syn",
|
|
2161
2095
|
]
|
|
2162
2096
|
|
|
2163
2097
|
[[package]]
|
|
@@ -2208,6 +2142,17 @@ version = "1.0.2"
|
|
|
2208
2142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2209
2143
|
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
2210
2144
|
|
|
2145
|
+
[[package]]
|
|
2146
|
+
name = "erased-serde"
|
|
2147
|
+
version = "0.4.10"
|
|
2148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2149
|
+
checksum = "d2add8a07dd6a8d93ff627029c51de145e12686fbc36ecb298ac22e74cf02dec"
|
|
2150
|
+
dependencies = [
|
|
2151
|
+
"serde",
|
|
2152
|
+
"serde_core",
|
|
2153
|
+
"typeid",
|
|
2154
|
+
]
|
|
2155
|
+
|
|
2211
2156
|
[[package]]
|
|
2212
2157
|
name = "errno"
|
|
2213
2158
|
version = "0.3.13"
|
|
@@ -2260,6 +2205,18 @@ dependencies = [
|
|
|
2260
2205
|
"once_cell",
|
|
2261
2206
|
]
|
|
2262
2207
|
|
|
2208
|
+
[[package]]
|
|
2209
|
+
name = "fastnum"
|
|
2210
|
+
version = "0.7.4"
|
|
2211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2212
|
+
checksum = "4089ab2dfd45d8ddc92febb5ca80644389d5ebb954f40231274a3f18341762e2"
|
|
2213
|
+
dependencies = [
|
|
2214
|
+
"bnum",
|
|
2215
|
+
"num-integer",
|
|
2216
|
+
"num-traits",
|
|
2217
|
+
"serde",
|
|
2218
|
+
]
|
|
2219
|
+
|
|
2263
2220
|
[[package]]
|
|
2264
2221
|
name = "fastrand"
|
|
2265
2222
|
version = "2.3.0"
|
|
@@ -2316,6 +2273,12 @@ version = "0.1.5"
|
|
|
2316
2273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2317
2274
|
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
2318
2275
|
|
|
2276
|
+
[[package]]
|
|
2277
|
+
name = "foldhash"
|
|
2278
|
+
version = "0.2.0"
|
|
2279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2280
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
2281
|
+
|
|
2319
2282
|
[[package]]
|
|
2320
2283
|
name = "form_urlencoded"
|
|
2321
2284
|
version = "1.2.2"
|
|
@@ -2331,12 +2294,6 @@ version = "1.3.0"
|
|
|
2331
2294
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2332
2295
|
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
2333
2296
|
|
|
2334
|
-
[[package]]
|
|
2335
|
-
name = "funty"
|
|
2336
|
-
version = "2.0.0"
|
|
2337
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2338
|
-
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
2339
|
-
|
|
2340
2297
|
[[package]]
|
|
2341
2298
|
name = "futures"
|
|
2342
2299
|
version = "0.3.31"
|
|
@@ -2404,7 +2361,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
|
2404
2361
|
dependencies = [
|
|
2405
2362
|
"proc-macro2",
|
|
2406
2363
|
"quote",
|
|
2407
|
-
"syn
|
|
2364
|
+
"syn",
|
|
2408
2365
|
]
|
|
2409
2366
|
|
|
2410
2367
|
[[package]]
|
|
@@ -2419,12 +2376,6 @@ version = "0.3.31"
|
|
|
2419
2376
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2420
2377
|
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
2421
2378
|
|
|
2422
|
-
[[package]]
|
|
2423
|
-
name = "futures-timer"
|
|
2424
|
-
version = "3.0.3"
|
|
2425
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2426
|
-
checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
|
|
2427
|
-
|
|
2428
2379
|
[[package]]
|
|
2429
2380
|
name = "futures-util"
|
|
2430
2381
|
version = "0.3.31"
|
|
@@ -2512,25 +2463,6 @@ dependencies = [
|
|
|
2512
2463
|
"wasm-bindgen",
|
|
2513
2464
|
]
|
|
2514
2465
|
|
|
2515
|
-
[[package]]
|
|
2516
|
-
name = "h2"
|
|
2517
|
-
version = "0.3.27"
|
|
2518
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2519
|
-
checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
|
|
2520
|
-
dependencies = [
|
|
2521
|
-
"bytes",
|
|
2522
|
-
"fnv",
|
|
2523
|
-
"futures-core",
|
|
2524
|
-
"futures-sink",
|
|
2525
|
-
"futures-util",
|
|
2526
|
-
"http 0.2.12",
|
|
2527
|
-
"indexmap 2.13.0",
|
|
2528
|
-
"slab",
|
|
2529
|
-
"tokio",
|
|
2530
|
-
"tokio-util",
|
|
2531
|
-
"tracing",
|
|
2532
|
-
]
|
|
2533
|
-
|
|
2534
2466
|
[[package]]
|
|
2535
2467
|
name = "h2"
|
|
2536
2468
|
version = "0.4.12"
|
|
@@ -2567,19 +2499,12 @@ name = "hashbrown"
|
|
|
2567
2499
|
version = "0.12.3"
|
|
2568
2500
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2569
2501
|
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
2570
|
-
dependencies = [
|
|
2571
|
-
"ahash 0.7.8",
|
|
2572
|
-
]
|
|
2573
2502
|
|
|
2574
2503
|
[[package]]
|
|
2575
2504
|
name = "hashbrown"
|
|
2576
2505
|
version = "0.14.5"
|
|
2577
2506
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2578
2507
|
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
2579
|
-
dependencies = [
|
|
2580
|
-
"ahash 0.8.12",
|
|
2581
|
-
"allocator-api2",
|
|
2582
|
-
]
|
|
2583
2508
|
|
|
2584
2509
|
[[package]]
|
|
2585
2510
|
name = "hashbrown"
|
|
@@ -2589,7 +2514,7 @@ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
|
2589
2514
|
dependencies = [
|
|
2590
2515
|
"allocator-api2",
|
|
2591
2516
|
"equivalent",
|
|
2592
|
-
"foldhash",
|
|
2517
|
+
"foldhash 0.1.5",
|
|
2593
2518
|
]
|
|
2594
2519
|
|
|
2595
2520
|
[[package]]
|
|
@@ -2597,6 +2522,11 @@ name = "hashbrown"
|
|
|
2597
2522
|
version = "0.16.1"
|
|
2598
2523
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2599
2524
|
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
2525
|
+
dependencies = [
|
|
2526
|
+
"allocator-api2",
|
|
2527
|
+
"equivalent",
|
|
2528
|
+
"foldhash 0.2.0",
|
|
2529
|
+
]
|
|
2600
2530
|
|
|
2601
2531
|
[[package]]
|
|
2602
2532
|
name = "hashlink"
|
|
@@ -2708,42 +2638,12 @@ version = "1.10.1"
|
|
|
2708
2638
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2709
2639
|
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
2710
2640
|
|
|
2711
|
-
[[package]]
|
|
2712
|
-
name = "httpdate"
|
|
2713
|
-
version = "1.0.3"
|
|
2714
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2715
|
-
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
2716
|
-
|
|
2717
2641
|
[[package]]
|
|
2718
2642
|
name = "humantime"
|
|
2719
2643
|
version = "2.2.0"
|
|
2720
2644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2721
2645
|
checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
|
|
2722
2646
|
|
|
2723
|
-
[[package]]
|
|
2724
|
-
name = "hyper"
|
|
2725
|
-
version = "0.14.32"
|
|
2726
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2727
|
-
checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
|
|
2728
|
-
dependencies = [
|
|
2729
|
-
"bytes",
|
|
2730
|
-
"futures-channel",
|
|
2731
|
-
"futures-core",
|
|
2732
|
-
"futures-util",
|
|
2733
|
-
"h2 0.3.27",
|
|
2734
|
-
"http 0.2.12",
|
|
2735
|
-
"http-body 0.4.6",
|
|
2736
|
-
"httparse",
|
|
2737
|
-
"httpdate",
|
|
2738
|
-
"itoa",
|
|
2739
|
-
"pin-project-lite",
|
|
2740
|
-
"socket2 0.5.10",
|
|
2741
|
-
"tokio",
|
|
2742
|
-
"tower-service",
|
|
2743
|
-
"tracing",
|
|
2744
|
-
"want",
|
|
2745
|
-
]
|
|
2746
|
-
|
|
2747
2647
|
[[package]]
|
|
2748
2648
|
name = "hyper"
|
|
2749
2649
|
version = "1.7.0"
|
|
@@ -2754,7 +2654,7 @@ dependencies = [
|
|
|
2754
2654
|
"bytes",
|
|
2755
2655
|
"futures-channel",
|
|
2756
2656
|
"futures-core",
|
|
2757
|
-
"h2
|
|
2657
|
+
"h2",
|
|
2758
2658
|
"http 1.3.1",
|
|
2759
2659
|
"http-body 1.0.1",
|
|
2760
2660
|
"httparse",
|
|
@@ -2766,21 +2666,6 @@ dependencies = [
|
|
|
2766
2666
|
"want",
|
|
2767
2667
|
]
|
|
2768
2668
|
|
|
2769
|
-
[[package]]
|
|
2770
|
-
name = "hyper-rustls"
|
|
2771
|
-
version = "0.24.2"
|
|
2772
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2773
|
-
checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
|
|
2774
|
-
dependencies = [
|
|
2775
|
-
"futures-util",
|
|
2776
|
-
"http 0.2.12",
|
|
2777
|
-
"hyper 0.14.32",
|
|
2778
|
-
"log",
|
|
2779
|
-
"rustls 0.21.12",
|
|
2780
|
-
"tokio",
|
|
2781
|
-
"tokio-rustls 0.24.1",
|
|
2782
|
-
]
|
|
2783
|
-
|
|
2784
2669
|
[[package]]
|
|
2785
2670
|
name = "hyper-rustls"
|
|
2786
2671
|
version = "0.27.7"
|
|
@@ -2788,13 +2673,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2788
2673
|
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
2789
2674
|
dependencies = [
|
|
2790
2675
|
"http 1.3.1",
|
|
2791
|
-
"hyper
|
|
2676
|
+
"hyper",
|
|
2792
2677
|
"hyper-util",
|
|
2793
|
-
"rustls
|
|
2678
|
+
"rustls",
|
|
2794
2679
|
"rustls-native-certs",
|
|
2795
2680
|
"rustls-pki-types",
|
|
2796
2681
|
"tokio",
|
|
2797
|
-
"tokio-rustls
|
|
2682
|
+
"tokio-rustls",
|
|
2798
2683
|
"tower-service",
|
|
2799
2684
|
"webpki-roots",
|
|
2800
2685
|
]
|
|
@@ -2812,7 +2697,7 @@ dependencies = [
|
|
|
2812
2697
|
"futures-util",
|
|
2813
2698
|
"http 1.3.1",
|
|
2814
2699
|
"http-body 1.0.1",
|
|
2815
|
-
"hyper
|
|
2700
|
+
"hyper",
|
|
2816
2701
|
"ipnet",
|
|
2817
2702
|
"libc",
|
|
2818
2703
|
"percent-encoding",
|
|
@@ -2849,9 +2734,9 @@ dependencies = [
|
|
|
2849
2734
|
|
|
2850
2735
|
[[package]]
|
|
2851
2736
|
name = "iceberg"
|
|
2852
|
-
version = "0.
|
|
2737
|
+
version = "0.9.1"
|
|
2853
2738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2854
|
-
checksum = "
|
|
2739
|
+
checksum = "4d9c3fc1f55c84ff64645c0d2ee35159f5574d33f729fc0860783bc247c8b8c5"
|
|
2855
2740
|
dependencies = [
|
|
2856
2741
|
"anyhow",
|
|
2857
2742
|
"apache-avro",
|
|
@@ -2873,22 +2758,19 @@ dependencies = [
|
|
|
2873
2758
|
"chrono",
|
|
2874
2759
|
"derive_builder",
|
|
2875
2760
|
"expect-test",
|
|
2761
|
+
"fastnum",
|
|
2876
2762
|
"flate2",
|
|
2877
2763
|
"fnv",
|
|
2878
2764
|
"futures",
|
|
2879
2765
|
"itertools 0.13.0",
|
|
2880
2766
|
"moka",
|
|
2881
2767
|
"murmur3",
|
|
2882
|
-
"num-bigint",
|
|
2883
2768
|
"once_cell",
|
|
2884
|
-
"opendal",
|
|
2885
2769
|
"ordered-float 4.6.0",
|
|
2886
2770
|
"parquet",
|
|
2887
|
-
"rand 0.
|
|
2888
|
-
"reqsign",
|
|
2771
|
+
"rand 0.9.4",
|
|
2889
2772
|
"reqwest",
|
|
2890
2773
|
"roaring",
|
|
2891
|
-
"rust_decimal",
|
|
2892
2774
|
"serde",
|
|
2893
2775
|
"serde_bytes",
|
|
2894
2776
|
"serde_derive",
|
|
@@ -2898,6 +2780,7 @@ dependencies = [
|
|
|
2898
2780
|
"strum",
|
|
2899
2781
|
"tokio",
|
|
2900
2782
|
"typed-builder",
|
|
2783
|
+
"typetag",
|
|
2901
2784
|
"url",
|
|
2902
2785
|
"uuid",
|
|
2903
2786
|
"zstd",
|
|
@@ -2905,15 +2788,16 @@ dependencies = [
|
|
|
2905
2788
|
|
|
2906
2789
|
[[package]]
|
|
2907
2790
|
name = "iceberg-catalog-glue"
|
|
2908
|
-
version = "0.
|
|
2791
|
+
version = "0.9.1"
|
|
2909
2792
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2910
|
-
checksum = "
|
|
2793
|
+
checksum = "5c510ae5f666202151bd24728a2cb569af04694d04e67788ba5ec00770314301"
|
|
2911
2794
|
dependencies = [
|
|
2912
2795
|
"anyhow",
|
|
2913
2796
|
"async-trait",
|
|
2914
2797
|
"aws-config",
|
|
2915
2798
|
"aws-sdk-glue",
|
|
2916
2799
|
"iceberg",
|
|
2800
|
+
"iceberg-storage-opendal",
|
|
2917
2801
|
"serde_json",
|
|
2918
2802
|
"tokio",
|
|
2919
2803
|
"tracing",
|
|
@@ -2921,9 +2805,9 @@ dependencies = [
|
|
|
2921
2805
|
|
|
2922
2806
|
[[package]]
|
|
2923
2807
|
name = "iceberg-catalog-rest"
|
|
2924
|
-
version = "0.
|
|
2808
|
+
version = "0.9.1"
|
|
2925
2809
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2926
|
-
checksum = "
|
|
2810
|
+
checksum = "a49dfef578060c3a2a3f619522dcb25382a7ce85336dcb500495d4b8d72ae714"
|
|
2927
2811
|
dependencies = [
|
|
2928
2812
|
"async-trait",
|
|
2929
2813
|
"chrono",
|
|
@@ -2942,22 +2826,23 @@ dependencies = [
|
|
|
2942
2826
|
|
|
2943
2827
|
[[package]]
|
|
2944
2828
|
name = "iceberg-catalog-s3tables"
|
|
2945
|
-
version = "0.
|
|
2829
|
+
version = "0.9.1"
|
|
2946
2830
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2947
|
-
checksum = "
|
|
2831
|
+
checksum = "0a34cb1d57a5943f66f533f422867569f949ac48fd3ef378462f45ba799dec59"
|
|
2948
2832
|
dependencies = [
|
|
2949
2833
|
"anyhow",
|
|
2950
2834
|
"async-trait",
|
|
2951
2835
|
"aws-config",
|
|
2952
2836
|
"aws-sdk-s3tables",
|
|
2953
2837
|
"iceberg",
|
|
2838
|
+
"iceberg-storage-opendal",
|
|
2954
2839
|
]
|
|
2955
2840
|
|
|
2956
2841
|
[[package]]
|
|
2957
2842
|
name = "iceberg-catalog-sql"
|
|
2958
|
-
version = "0.
|
|
2843
|
+
version = "0.9.1"
|
|
2959
2844
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2960
|
-
checksum = "
|
|
2845
|
+
checksum = "67e465814f1833981de0af9267bb2c714e1d6b7e28b2a04bd306cae2b202c090"
|
|
2961
2846
|
dependencies = [
|
|
2962
2847
|
"async-trait",
|
|
2963
2848
|
"iceberg",
|
|
@@ -2967,12 +2852,13 @@ dependencies = [
|
|
|
2967
2852
|
|
|
2968
2853
|
[[package]]
|
|
2969
2854
|
name = "iceberg-datafusion"
|
|
2970
|
-
version = "0.
|
|
2855
|
+
version = "0.9.1"
|
|
2971
2856
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2972
|
-
checksum = "
|
|
2857
|
+
checksum = "15f668954750597310308ba6ce3a6d3a6874196e64a8a3197e3d1c5017977ba6"
|
|
2973
2858
|
dependencies = [
|
|
2974
2859
|
"anyhow",
|
|
2975
2860
|
"async-trait",
|
|
2861
|
+
"dashmap",
|
|
2976
2862
|
"datafusion",
|
|
2977
2863
|
"futures",
|
|
2978
2864
|
"iceberg",
|
|
@@ -2983,7 +2869,7 @@ dependencies = [
|
|
|
2983
2869
|
|
|
2984
2870
|
[[package]]
|
|
2985
2871
|
name = "iceberg-ruby"
|
|
2986
|
-
version = "0.11.
|
|
2872
|
+
version = "0.11.2"
|
|
2987
2873
|
dependencies = [
|
|
2988
2874
|
"arrow-array",
|
|
2989
2875
|
"arrow-schema",
|
|
@@ -2997,11 +2883,31 @@ dependencies = [
|
|
|
2997
2883
|
"iceberg-datafusion",
|
|
2998
2884
|
"magnus",
|
|
2999
2885
|
"parquet",
|
|
2886
|
+
"rb-sys",
|
|
3000
2887
|
"sqlx",
|
|
3001
2888
|
"tokio",
|
|
3002
2889
|
"uuid",
|
|
3003
2890
|
]
|
|
3004
2891
|
|
|
2892
|
+
[[package]]
|
|
2893
|
+
name = "iceberg-storage-opendal"
|
|
2894
|
+
version = "0.9.1"
|
|
2895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2896
|
+
checksum = "30acae4698949eea6cfbd3e64ddf1c3ec39e6b7191acb0b0da2dcd1a25dfa842"
|
|
2897
|
+
dependencies = [
|
|
2898
|
+
"anyhow",
|
|
2899
|
+
"async-trait",
|
|
2900
|
+
"bytes",
|
|
2901
|
+
"cfg-if",
|
|
2902
|
+
"iceberg",
|
|
2903
|
+
"opendal",
|
|
2904
|
+
"reqsign",
|
|
2905
|
+
"reqwest",
|
|
2906
|
+
"serde",
|
|
2907
|
+
"typetag",
|
|
2908
|
+
"url",
|
|
2909
|
+
]
|
|
2910
|
+
|
|
3005
2911
|
[[package]]
|
|
3006
2912
|
name = "icu_collections"
|
|
3007
2913
|
version = "2.0.0"
|
|
@@ -3144,6 +3050,15 @@ version = "3.0.4"
|
|
|
3144
3050
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3145
3051
|
checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
|
|
3146
3052
|
|
|
3053
|
+
[[package]]
|
|
3054
|
+
name = "inventory"
|
|
3055
|
+
version = "0.3.22"
|
|
3056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3057
|
+
checksum = "009ae045c87e7082cb72dab0ccd01ae075dd00141ddc108f43a0ea150a9e7227"
|
|
3058
|
+
dependencies = [
|
|
3059
|
+
"rustversion",
|
|
3060
|
+
]
|
|
3061
|
+
|
|
3147
3062
|
[[package]]
|
|
3148
3063
|
name = "ipnet"
|
|
3149
3064
|
version = "2.11.0"
|
|
@@ -3216,7 +3131,7 @@ checksum = "e0c84ee7f197eca9a86c6fd6cb771e55eb991632f15f2bc3ca6ec838929e6e78"
|
|
|
3216
3131
|
dependencies = [
|
|
3217
3132
|
"proc-macro2",
|
|
3218
3133
|
"quote",
|
|
3219
|
-
"syn
|
|
3134
|
+
"syn",
|
|
3220
3135
|
]
|
|
3221
3136
|
|
|
3222
3137
|
[[package]]
|
|
@@ -3352,7 +3267,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3352
3267
|
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
|
3353
3268
|
dependencies = [
|
|
3354
3269
|
"cfg-if",
|
|
3355
|
-
"windows-targets 0.
|
|
3270
|
+
"windows-targets 0.48.5",
|
|
3271
|
+
]
|
|
3272
|
+
|
|
3273
|
+
[[package]]
|
|
3274
|
+
name = "liblzma"
|
|
3275
|
+
version = "0.4.6"
|
|
3276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3277
|
+
checksum = "b6033b77c21d1f56deeae8014eb9fbe7bdf1765185a6c508b5ca82eeaed7f899"
|
|
3278
|
+
dependencies = [
|
|
3279
|
+
"liblzma-sys",
|
|
3280
|
+
]
|
|
3281
|
+
|
|
3282
|
+
[[package]]
|
|
3283
|
+
name = "liblzma-sys"
|
|
3284
|
+
version = "0.4.5"
|
|
3285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3286
|
+
checksum = "9f2db66f3268487b5033077f266da6777d057949b8f93c8ad82e441df25e6186"
|
|
3287
|
+
dependencies = [
|
|
3288
|
+
"cc",
|
|
3289
|
+
"libc",
|
|
3290
|
+
"pkg-config",
|
|
3356
3291
|
]
|
|
3357
3292
|
|
|
3358
3293
|
[[package]]
|
|
@@ -3383,12 +3318,6 @@ dependencies = [
|
|
|
3383
3318
|
"vcpkg",
|
|
3384
3319
|
]
|
|
3385
3320
|
|
|
3386
|
-
[[package]]
|
|
3387
|
-
name = "linux-raw-sys"
|
|
3388
|
-
version = "0.4.15"
|
|
3389
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3390
|
-
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
3391
|
-
|
|
3392
3321
|
[[package]]
|
|
3393
3322
|
name = "linux-raw-sys"
|
|
3394
3323
|
version = "0.9.4"
|
|
@@ -3438,24 +3367,13 @@ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
|
3438
3367
|
|
|
3439
3368
|
[[package]]
|
|
3440
3369
|
name = "lz4_flex"
|
|
3441
|
-
version = "0.12.
|
|
3370
|
+
version = "0.12.1"
|
|
3442
3371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3443
|
-
checksum = "
|
|
3372
|
+
checksum = "98c23545df7ecf1b16c303910a69b079e8e251d60f7dd2cc9b4177f2afaf1746"
|
|
3444
3373
|
dependencies = [
|
|
3445
3374
|
"twox-hash",
|
|
3446
3375
|
]
|
|
3447
3376
|
|
|
3448
|
-
[[package]]
|
|
3449
|
-
name = "lzma-sys"
|
|
3450
|
-
version = "0.1.20"
|
|
3451
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3452
|
-
checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
|
|
3453
|
-
dependencies = [
|
|
3454
|
-
"cc",
|
|
3455
|
-
"libc",
|
|
3456
|
-
"pkg-config",
|
|
3457
|
-
]
|
|
3458
|
-
|
|
3459
3377
|
[[package]]
|
|
3460
3378
|
name = "magnus"
|
|
3461
3379
|
version = "0.8.2"
|
|
@@ -3476,7 +3394,7 @@ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
|
3476
3394
|
dependencies = [
|
|
3477
3395
|
"proc-macro2",
|
|
3478
3396
|
"quote",
|
|
3479
|
-
"syn
|
|
3397
|
+
"syn",
|
|
3480
3398
|
]
|
|
3481
3399
|
|
|
3482
3400
|
[[package]]
|
|
@@ -3601,7 +3519,7 @@ dependencies = [
|
|
|
3601
3519
|
"num-integer",
|
|
3602
3520
|
"num-iter",
|
|
3603
3521
|
"num-traits",
|
|
3604
|
-
"rand 0.8.
|
|
3522
|
+
"rand 0.8.6",
|
|
3605
3523
|
"smallvec",
|
|
3606
3524
|
"zeroize",
|
|
3607
3525
|
]
|
|
@@ -3617,9 +3535,9 @@ dependencies = [
|
|
|
3617
3535
|
|
|
3618
3536
|
[[package]]
|
|
3619
3537
|
name = "num-conv"
|
|
3620
|
-
version = "0.
|
|
3538
|
+
version = "0.2.0"
|
|
3621
3539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3622
|
-
checksum = "
|
|
3540
|
+
checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
|
|
3623
3541
|
|
|
3624
3542
|
[[package]]
|
|
3625
3543
|
name = "num-integer"
|
|
@@ -3785,7 +3703,7 @@ version = "57.2.0"
|
|
|
3785
3703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3786
3704
|
checksum = "5f6a2926a30477c0b95fea6c28c3072712b139337a242c2cc64817bdc20a8854"
|
|
3787
3705
|
dependencies = [
|
|
3788
|
-
"ahash
|
|
3706
|
+
"ahash",
|
|
3789
3707
|
"arrow-array",
|
|
3790
3708
|
"arrow-buffer",
|
|
3791
3709
|
"arrow-cast",
|
|
@@ -3952,16 +3870,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3952
3870
|
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
3953
3871
|
dependencies = [
|
|
3954
3872
|
"proc-macro2",
|
|
3955
|
-
"syn
|
|
3956
|
-
]
|
|
3957
|
-
|
|
3958
|
-
[[package]]
|
|
3959
|
-
name = "proc-macro-crate"
|
|
3960
|
-
version = "3.3.0"
|
|
3961
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3962
|
-
checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
|
|
3963
|
-
dependencies = [
|
|
3964
|
-
"toml_edit",
|
|
3873
|
+
"syn",
|
|
3965
3874
|
]
|
|
3966
3875
|
|
|
3967
3876
|
[[package]]
|
|
@@ -3982,26 +3891,6 @@ dependencies = [
|
|
|
3982
3891
|
"cc",
|
|
3983
3892
|
]
|
|
3984
3893
|
|
|
3985
|
-
[[package]]
|
|
3986
|
-
name = "ptr_meta"
|
|
3987
|
-
version = "0.1.4"
|
|
3988
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3989
|
-
checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
|
|
3990
|
-
dependencies = [
|
|
3991
|
-
"ptr_meta_derive",
|
|
3992
|
-
]
|
|
3993
|
-
|
|
3994
|
-
[[package]]
|
|
3995
|
-
name = "ptr_meta_derive"
|
|
3996
|
-
version = "0.1.4"
|
|
3997
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3998
|
-
checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
|
|
3999
|
-
dependencies = [
|
|
4000
|
-
"proc-macro2",
|
|
4001
|
-
"quote",
|
|
4002
|
-
"syn 1.0.109",
|
|
4003
|
-
]
|
|
4004
|
-
|
|
4005
3894
|
[[package]]
|
|
4006
3895
|
name = "quad-rand"
|
|
4007
3896
|
version = "0.2.3"
|
|
@@ -4040,7 +3929,7 @@ dependencies = [
|
|
|
4040
3929
|
"quinn-proto",
|
|
4041
3930
|
"quinn-udp",
|
|
4042
3931
|
"rustc-hash 2.1.1",
|
|
4043
|
-
"rustls
|
|
3932
|
+
"rustls",
|
|
4044
3933
|
"socket2 0.5.10",
|
|
4045
3934
|
"thiserror 2.0.18",
|
|
4046
3935
|
"tokio",
|
|
@@ -4050,17 +3939,17 @@ dependencies = [
|
|
|
4050
3939
|
|
|
4051
3940
|
[[package]]
|
|
4052
3941
|
name = "quinn-proto"
|
|
4053
|
-
version = "0.11.
|
|
3942
|
+
version = "0.11.14"
|
|
4054
3943
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4055
|
-
checksum = "
|
|
3944
|
+
checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
|
|
4056
3945
|
dependencies = [
|
|
4057
3946
|
"bytes",
|
|
4058
3947
|
"getrandom 0.3.3",
|
|
4059
3948
|
"lru-slab",
|
|
4060
|
-
"rand 0.9.
|
|
3949
|
+
"rand 0.9.4",
|
|
4061
3950
|
"ring",
|
|
4062
3951
|
"rustc-hash 2.1.1",
|
|
4063
|
-
"rustls
|
|
3952
|
+
"rustls",
|
|
4064
3953
|
"rustls-pki-types",
|
|
4065
3954
|
"slab",
|
|
4066
3955
|
"thiserror 2.0.18",
|
|
@@ -4098,17 +3987,11 @@ version = "5.3.0"
|
|
|
4098
3987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4099
3988
|
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
4100
3989
|
|
|
4101
|
-
[[package]]
|
|
4102
|
-
name = "radium"
|
|
4103
|
-
version = "0.7.0"
|
|
4104
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4105
|
-
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
|
4106
|
-
|
|
4107
3990
|
[[package]]
|
|
4108
3991
|
name = "rand"
|
|
4109
|
-
version = "0.8.
|
|
3992
|
+
version = "0.8.6"
|
|
4110
3993
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4111
|
-
checksum = "
|
|
3994
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
4112
3995
|
dependencies = [
|
|
4113
3996
|
"libc",
|
|
4114
3997
|
"rand_chacha 0.3.1",
|
|
@@ -4117,9 +4000,9 @@ dependencies = [
|
|
|
4117
4000
|
|
|
4118
4001
|
[[package]]
|
|
4119
4002
|
name = "rand"
|
|
4120
|
-
version = "0.9.
|
|
4003
|
+
version = "0.9.4"
|
|
4121
4004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4122
|
-
checksum = "
|
|
4005
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
4123
4006
|
dependencies = [
|
|
4124
4007
|
"rand_chacha 0.9.0",
|
|
4125
4008
|
"rand_core 0.9.3",
|
|
@@ -4184,7 +4067,7 @@ dependencies = [
|
|
|
4184
4067
|
"quote",
|
|
4185
4068
|
"regex",
|
|
4186
4069
|
"shell-words",
|
|
4187
|
-
"syn
|
|
4070
|
+
"syn",
|
|
4188
4071
|
]
|
|
4189
4072
|
|
|
4190
4073
|
[[package]]
|
|
@@ -4210,7 +4093,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4210
4093
|
checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
|
|
4211
4094
|
dependencies = [
|
|
4212
4095
|
"quote",
|
|
4213
|
-
"syn
|
|
4096
|
+
"syn",
|
|
4214
4097
|
]
|
|
4215
4098
|
|
|
4216
4099
|
[[package]]
|
|
@@ -4239,7 +4122,7 @@ checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
|
|
|
4239
4122
|
dependencies = [
|
|
4240
4123
|
"proc-macro2",
|
|
4241
4124
|
"quote",
|
|
4242
|
-
"syn
|
|
4125
|
+
"syn",
|
|
4243
4126
|
]
|
|
4244
4127
|
|
|
4245
4128
|
[[package]]
|
|
@@ -4277,21 +4160,6 @@ version = "0.8.6"
|
|
|
4277
4160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4278
4161
|
checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001"
|
|
4279
4162
|
|
|
4280
|
-
[[package]]
|
|
4281
|
-
name = "relative-path"
|
|
4282
|
-
version = "1.9.3"
|
|
4283
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4284
|
-
checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
|
|
4285
|
-
|
|
4286
|
-
[[package]]
|
|
4287
|
-
name = "rend"
|
|
4288
|
-
version = "0.4.2"
|
|
4289
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4290
|
-
checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
|
|
4291
|
-
dependencies = [
|
|
4292
|
-
"bytecheck",
|
|
4293
|
-
]
|
|
4294
|
-
|
|
4295
4163
|
[[package]]
|
|
4296
4164
|
name = "reqsign"
|
|
4297
4165
|
version = "0.16.5"
|
|
@@ -4311,7 +4179,7 @@ dependencies = [
|
|
|
4311
4179
|
"log",
|
|
4312
4180
|
"percent-encoding",
|
|
4313
4181
|
"quick-xml 0.37.5",
|
|
4314
|
-
"rand 0.8.
|
|
4182
|
+
"rand 0.8.6",
|
|
4315
4183
|
"reqwest",
|
|
4316
4184
|
"rust-ini",
|
|
4317
4185
|
"serde",
|
|
@@ -4334,22 +4202,22 @@ dependencies = [
|
|
|
4334
4202
|
"http 1.3.1",
|
|
4335
4203
|
"http-body 1.0.1",
|
|
4336
4204
|
"http-body-util",
|
|
4337
|
-
"hyper
|
|
4338
|
-
"hyper-rustls
|
|
4205
|
+
"hyper",
|
|
4206
|
+
"hyper-rustls",
|
|
4339
4207
|
"hyper-util",
|
|
4340
4208
|
"js-sys",
|
|
4341
4209
|
"log",
|
|
4342
4210
|
"percent-encoding",
|
|
4343
4211
|
"pin-project-lite",
|
|
4344
4212
|
"quinn",
|
|
4345
|
-
"rustls
|
|
4213
|
+
"rustls",
|
|
4346
4214
|
"rustls-pki-types",
|
|
4347
4215
|
"serde",
|
|
4348
4216
|
"serde_json",
|
|
4349
4217
|
"serde_urlencoded",
|
|
4350
4218
|
"sync_wrapper",
|
|
4351
4219
|
"tokio",
|
|
4352
|
-
"tokio-rustls
|
|
4220
|
+
"tokio-rustls",
|
|
4353
4221
|
"tokio-util",
|
|
4354
4222
|
"tower",
|
|
4355
4223
|
"tower-http",
|
|
@@ -4376,35 +4244,6 @@ dependencies = [
|
|
|
4376
4244
|
"windows-sys 0.52.0",
|
|
4377
4245
|
]
|
|
4378
4246
|
|
|
4379
|
-
[[package]]
|
|
4380
|
-
name = "rkyv"
|
|
4381
|
-
version = "0.7.46"
|
|
4382
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4383
|
-
checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1"
|
|
4384
|
-
dependencies = [
|
|
4385
|
-
"bitvec",
|
|
4386
|
-
"bytecheck",
|
|
4387
|
-
"bytes",
|
|
4388
|
-
"hashbrown 0.12.3",
|
|
4389
|
-
"ptr_meta",
|
|
4390
|
-
"rend",
|
|
4391
|
-
"rkyv_derive",
|
|
4392
|
-
"seahash",
|
|
4393
|
-
"tinyvec",
|
|
4394
|
-
"uuid",
|
|
4395
|
-
]
|
|
4396
|
-
|
|
4397
|
-
[[package]]
|
|
4398
|
-
name = "rkyv_derive"
|
|
4399
|
-
version = "0.7.46"
|
|
4400
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4401
|
-
checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5"
|
|
4402
|
-
dependencies = [
|
|
4403
|
-
"proc-macro2",
|
|
4404
|
-
"quote",
|
|
4405
|
-
"syn 1.0.109",
|
|
4406
|
-
]
|
|
4407
|
-
|
|
4408
4247
|
[[package]]
|
|
4409
4248
|
name = "roaring"
|
|
4410
4249
|
version = "0.11.2"
|
|
@@ -4435,35 +4274,6 @@ dependencies = [
|
|
|
4435
4274
|
"zeroize",
|
|
4436
4275
|
]
|
|
4437
4276
|
|
|
4438
|
-
[[package]]
|
|
4439
|
-
name = "rstest"
|
|
4440
|
-
version = "0.26.1"
|
|
4441
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4442
|
-
checksum = "f5a3193c063baaa2a95a33f03035c8a72b83d97a54916055ba22d35ed3839d49"
|
|
4443
|
-
dependencies = [
|
|
4444
|
-
"futures-timer",
|
|
4445
|
-
"futures-util",
|
|
4446
|
-
"rstest_macros",
|
|
4447
|
-
]
|
|
4448
|
-
|
|
4449
|
-
[[package]]
|
|
4450
|
-
name = "rstest_macros"
|
|
4451
|
-
version = "0.26.1"
|
|
4452
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4453
|
-
checksum = "9c845311f0ff7951c5506121a9ad75aec44d083c31583b2ea5a30bcb0b0abba0"
|
|
4454
|
-
dependencies = [
|
|
4455
|
-
"cfg-if",
|
|
4456
|
-
"glob",
|
|
4457
|
-
"proc-macro-crate",
|
|
4458
|
-
"proc-macro2",
|
|
4459
|
-
"quote",
|
|
4460
|
-
"regex",
|
|
4461
|
-
"relative-path",
|
|
4462
|
-
"rustc_version",
|
|
4463
|
-
"syn 2.0.114",
|
|
4464
|
-
"unicode-ident",
|
|
4465
|
-
]
|
|
4466
|
-
|
|
4467
4277
|
[[package]]
|
|
4468
4278
|
name = "rust-ini"
|
|
4469
4279
|
version = "0.21.1"
|
|
@@ -4475,22 +4285,6 @@ dependencies = [
|
|
|
4475
4285
|
"trim-in-place",
|
|
4476
4286
|
]
|
|
4477
4287
|
|
|
4478
|
-
[[package]]
|
|
4479
|
-
name = "rust_decimal"
|
|
4480
|
-
version = "1.40.0"
|
|
4481
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4482
|
-
checksum = "61f703d19852dbf87cbc513643fa81428361eb6940f1ac14fd58155d295a3eb0"
|
|
4483
|
-
dependencies = [
|
|
4484
|
-
"arrayvec",
|
|
4485
|
-
"borsh",
|
|
4486
|
-
"bytes",
|
|
4487
|
-
"num-traits",
|
|
4488
|
-
"rand 0.8.5",
|
|
4489
|
-
"rkyv",
|
|
4490
|
-
"serde",
|
|
4491
|
-
"serde_json",
|
|
4492
|
-
]
|
|
4493
|
-
|
|
4494
4288
|
[[package]]
|
|
4495
4289
|
name = "rustc-hash"
|
|
4496
4290
|
version = "1.1.0"
|
|
@@ -4512,19 +4306,6 @@ dependencies = [
|
|
|
4512
4306
|
"semver",
|
|
4513
4307
|
]
|
|
4514
4308
|
|
|
4515
|
-
[[package]]
|
|
4516
|
-
name = "rustix"
|
|
4517
|
-
version = "0.38.44"
|
|
4518
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4519
|
-
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
4520
|
-
dependencies = [
|
|
4521
|
-
"bitflags",
|
|
4522
|
-
"errno",
|
|
4523
|
-
"libc",
|
|
4524
|
-
"linux-raw-sys 0.4.15",
|
|
4525
|
-
"windows-sys 0.59.0",
|
|
4526
|
-
]
|
|
4527
|
-
|
|
4528
4309
|
[[package]]
|
|
4529
4310
|
name = "rustix"
|
|
4530
4311
|
version = "1.0.8"
|
|
@@ -4534,22 +4315,10 @@ dependencies = [
|
|
|
4534
4315
|
"bitflags",
|
|
4535
4316
|
"errno",
|
|
4536
4317
|
"libc",
|
|
4537
|
-
"linux-raw-sys
|
|
4318
|
+
"linux-raw-sys",
|
|
4538
4319
|
"windows-sys 0.59.0",
|
|
4539
4320
|
]
|
|
4540
4321
|
|
|
4541
|
-
[[package]]
|
|
4542
|
-
name = "rustls"
|
|
4543
|
-
version = "0.21.12"
|
|
4544
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4545
|
-
checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
|
|
4546
|
-
dependencies = [
|
|
4547
|
-
"log",
|
|
4548
|
-
"ring",
|
|
4549
|
-
"rustls-webpki 0.101.7",
|
|
4550
|
-
"sct",
|
|
4551
|
-
]
|
|
4552
|
-
|
|
4553
4322
|
[[package]]
|
|
4554
4323
|
name = "rustls"
|
|
4555
4324
|
version = "0.23.31"
|
|
@@ -4560,7 +4329,7 @@ dependencies = [
|
|
|
4560
4329
|
"once_cell",
|
|
4561
4330
|
"ring",
|
|
4562
4331
|
"rustls-pki-types",
|
|
4563
|
-
"rustls-webpki
|
|
4332
|
+
"rustls-webpki",
|
|
4564
4333
|
"subtle",
|
|
4565
4334
|
"zeroize",
|
|
4566
4335
|
]
|
|
@@ -4589,19 +4358,9 @@ dependencies = [
|
|
|
4589
4358
|
|
|
4590
4359
|
[[package]]
|
|
4591
4360
|
name = "rustls-webpki"
|
|
4592
|
-
version = "0.
|
|
4361
|
+
version = "0.103.13"
|
|
4593
4362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4594
|
-
checksum = "
|
|
4595
|
-
dependencies = [
|
|
4596
|
-
"ring",
|
|
4597
|
-
"untrusted",
|
|
4598
|
-
]
|
|
4599
|
-
|
|
4600
|
-
[[package]]
|
|
4601
|
-
name = "rustls-webpki"
|
|
4602
|
-
version = "0.103.4"
|
|
4603
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4604
|
-
checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
|
|
4363
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
4605
4364
|
dependencies = [
|
|
4606
4365
|
"aws-lc-rs",
|
|
4607
4366
|
"ring",
|
|
@@ -4675,22 +4434,6 @@ version = "1.2.0"
|
|
|
4675
4434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4676
4435
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
4677
4436
|
|
|
4678
|
-
[[package]]
|
|
4679
|
-
name = "sct"
|
|
4680
|
-
version = "0.7.1"
|
|
4681
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4682
|
-
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
|
|
4683
|
-
dependencies = [
|
|
4684
|
-
"ring",
|
|
4685
|
-
"untrusted",
|
|
4686
|
-
]
|
|
4687
|
-
|
|
4688
|
-
[[package]]
|
|
4689
|
-
name = "seahash"
|
|
4690
|
-
version = "4.1.0"
|
|
4691
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4692
|
-
checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
|
|
4693
|
-
|
|
4694
4437
|
[[package]]
|
|
4695
4438
|
name = "security-framework"
|
|
4696
4439
|
version = "3.3.0"
|
|
@@ -4736,6 +4479,15 @@ dependencies = [
|
|
|
4736
4479
|
"serde_derive",
|
|
4737
4480
|
]
|
|
4738
4481
|
|
|
4482
|
+
[[package]]
|
|
4483
|
+
name = "serde-big-array"
|
|
4484
|
+
version = "0.5.1"
|
|
4485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4486
|
+
checksum = "11fc7cc2c76d73e0f27ee52abbd64eec84d46f370c88371120433196934e4b7f"
|
|
4487
|
+
dependencies = [
|
|
4488
|
+
"serde",
|
|
4489
|
+
]
|
|
4490
|
+
|
|
4739
4491
|
[[package]]
|
|
4740
4492
|
name = "serde_bytes"
|
|
4741
4493
|
version = "0.11.19"
|
|
@@ -4763,7 +4515,7 @@ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
|
4763
4515
|
dependencies = [
|
|
4764
4516
|
"proc-macro2",
|
|
4765
4517
|
"quote",
|
|
4766
|
-
"syn
|
|
4518
|
+
"syn",
|
|
4767
4519
|
]
|
|
4768
4520
|
|
|
4769
4521
|
[[package]]
|
|
@@ -4787,7 +4539,7 @@ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
|
|
|
4787
4539
|
dependencies = [
|
|
4788
4540
|
"proc-macro2",
|
|
4789
4541
|
"quote",
|
|
4790
|
-
"syn
|
|
4542
|
+
"syn",
|
|
4791
4543
|
]
|
|
4792
4544
|
|
|
4793
4545
|
[[package]]
|
|
@@ -4831,7 +4583,7 @@ dependencies = [
|
|
|
4831
4583
|
"darling 0.20.11",
|
|
4832
4584
|
"proc-macro2",
|
|
4833
4585
|
"quote",
|
|
4834
|
-
"syn
|
|
4586
|
+
"syn",
|
|
4835
4587
|
]
|
|
4836
4588
|
|
|
4837
4589
|
[[package]]
|
|
@@ -4993,7 +4745,7 @@ checksum = "da5fc6819faabb412da764b99d3b713bb55083c11e7e0c00144d386cd6a1939c"
|
|
|
4993
4745
|
dependencies = [
|
|
4994
4746
|
"proc-macro2",
|
|
4995
4747
|
"quote",
|
|
4996
|
-
"syn
|
|
4748
|
+
"syn",
|
|
4997
4749
|
]
|
|
4998
4750
|
|
|
4999
4751
|
[[package]]
|
|
@@ -5053,7 +4805,7 @@ dependencies = [
|
|
|
5053
4805
|
"quote",
|
|
5054
4806
|
"sqlx-core",
|
|
5055
4807
|
"sqlx-macros-core",
|
|
5056
|
-
"syn
|
|
4808
|
+
"syn",
|
|
5057
4809
|
]
|
|
5058
4810
|
|
|
5059
4811
|
[[package]]
|
|
@@ -5075,7 +4827,7 @@ dependencies = [
|
|
|
5075
4827
|
"sqlx-core",
|
|
5076
4828
|
"sqlx-postgres",
|
|
5077
4829
|
"sqlx-sqlite",
|
|
5078
|
-
"syn
|
|
4830
|
+
"syn",
|
|
5079
4831
|
"tokio",
|
|
5080
4832
|
"url",
|
|
5081
4833
|
]
|
|
@@ -5109,7 +4861,7 @@ dependencies = [
|
|
|
5109
4861
|
"memchr",
|
|
5110
4862
|
"once_cell",
|
|
5111
4863
|
"percent-encoding",
|
|
5112
|
-
"rand 0.8.
|
|
4864
|
+
"rand 0.8.6",
|
|
5113
4865
|
"rsa",
|
|
5114
4866
|
"sha1",
|
|
5115
4867
|
"sha2",
|
|
@@ -5146,7 +4898,7 @@ dependencies = [
|
|
|
5146
4898
|
"md-5",
|
|
5147
4899
|
"memchr",
|
|
5148
4900
|
"once_cell",
|
|
5149
|
-
"rand 0.8.
|
|
4901
|
+
"rand 0.8.6",
|
|
5150
4902
|
"serde",
|
|
5151
4903
|
"serde_json",
|
|
5152
4904
|
"sha2",
|
|
@@ -5242,7 +4994,7 @@ dependencies = [
|
|
|
5242
4994
|
"heck",
|
|
5243
4995
|
"proc-macro2",
|
|
5244
4996
|
"quote",
|
|
5245
|
-
"syn
|
|
4997
|
+
"syn",
|
|
5246
4998
|
]
|
|
5247
4999
|
|
|
5248
5000
|
[[package]]
|
|
@@ -5251,17 +5003,6 @@ version = "2.6.1"
|
|
|
5251
5003
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5252
5004
|
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
5253
5005
|
|
|
5254
|
-
[[package]]
|
|
5255
|
-
name = "syn"
|
|
5256
|
-
version = "1.0.109"
|
|
5257
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5258
|
-
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
5259
|
-
dependencies = [
|
|
5260
|
-
"proc-macro2",
|
|
5261
|
-
"quote",
|
|
5262
|
-
"unicode-ident",
|
|
5263
|
-
]
|
|
5264
|
-
|
|
5265
5006
|
[[package]]
|
|
5266
5007
|
name = "syn"
|
|
5267
5008
|
version = "2.0.114"
|
|
@@ -5290,7 +5031,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
|
5290
5031
|
dependencies = [
|
|
5291
5032
|
"proc-macro2",
|
|
5292
5033
|
"quote",
|
|
5293
|
-
"syn
|
|
5034
|
+
"syn",
|
|
5294
5035
|
]
|
|
5295
5036
|
|
|
5296
5037
|
[[package]]
|
|
@@ -5299,12 +5040,6 @@ version = "0.2.0"
|
|
|
5299
5040
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5300
5041
|
checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
|
|
5301
5042
|
|
|
5302
|
-
[[package]]
|
|
5303
|
-
name = "tap"
|
|
5304
|
-
version = "1.0.1"
|
|
5305
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5306
|
-
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
5307
|
-
|
|
5308
5043
|
[[package]]
|
|
5309
5044
|
name = "tempfile"
|
|
5310
5045
|
version = "3.21.0"
|
|
@@ -5314,7 +5049,7 @@ dependencies = [
|
|
|
5314
5049
|
"fastrand",
|
|
5315
5050
|
"getrandom 0.3.3",
|
|
5316
5051
|
"once_cell",
|
|
5317
|
-
"rustix
|
|
5052
|
+
"rustix",
|
|
5318
5053
|
"windows-sys 0.59.0",
|
|
5319
5054
|
]
|
|
5320
5055
|
|
|
@@ -5344,7 +5079,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
5344
5079
|
dependencies = [
|
|
5345
5080
|
"proc-macro2",
|
|
5346
5081
|
"quote",
|
|
5347
|
-
"syn
|
|
5082
|
+
"syn",
|
|
5348
5083
|
]
|
|
5349
5084
|
|
|
5350
5085
|
[[package]]
|
|
@@ -5355,7 +5090,7 @@ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
|
5355
5090
|
dependencies = [
|
|
5356
5091
|
"proc-macro2",
|
|
5357
5092
|
"quote",
|
|
5358
|
-
"syn
|
|
5093
|
+
"syn",
|
|
5359
5094
|
]
|
|
5360
5095
|
|
|
5361
5096
|
[[package]]
|
|
@@ -5380,30 +5115,30 @@ dependencies = [
|
|
|
5380
5115
|
|
|
5381
5116
|
[[package]]
|
|
5382
5117
|
name = "time"
|
|
5383
|
-
version = "0.3.
|
|
5118
|
+
version = "0.3.47"
|
|
5384
5119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5385
|
-
checksum = "
|
|
5120
|
+
checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
|
|
5386
5121
|
dependencies = [
|
|
5387
5122
|
"deranged",
|
|
5388
5123
|
"itoa",
|
|
5389
5124
|
"num-conv",
|
|
5390
5125
|
"powerfmt",
|
|
5391
|
-
"
|
|
5126
|
+
"serde_core",
|
|
5392
5127
|
"time-core",
|
|
5393
5128
|
"time-macros",
|
|
5394
5129
|
]
|
|
5395
5130
|
|
|
5396
5131
|
[[package]]
|
|
5397
5132
|
name = "time-core"
|
|
5398
|
-
version = "0.1.
|
|
5133
|
+
version = "0.1.8"
|
|
5399
5134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5400
|
-
checksum = "
|
|
5135
|
+
checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
|
|
5401
5136
|
|
|
5402
5137
|
[[package]]
|
|
5403
5138
|
name = "time-macros"
|
|
5404
|
-
version = "0.2.
|
|
5139
|
+
version = "0.2.27"
|
|
5405
5140
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5406
|
-
checksum = "
|
|
5141
|
+
checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
|
|
5407
5142
|
dependencies = [
|
|
5408
5143
|
"num-conv",
|
|
5409
5144
|
"time-core",
|
|
@@ -5467,17 +5202,7 @@ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
|
5467
5202
|
dependencies = [
|
|
5468
5203
|
"proc-macro2",
|
|
5469
5204
|
"quote",
|
|
5470
|
-
"syn
|
|
5471
|
-
]
|
|
5472
|
-
|
|
5473
|
-
[[package]]
|
|
5474
|
-
name = "tokio-rustls"
|
|
5475
|
-
version = "0.24.1"
|
|
5476
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5477
|
-
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
|
|
5478
|
-
dependencies = [
|
|
5479
|
-
"rustls 0.21.12",
|
|
5480
|
-
"tokio",
|
|
5205
|
+
"syn",
|
|
5481
5206
|
]
|
|
5482
5207
|
|
|
5483
5208
|
[[package]]
|
|
@@ -5486,7 +5211,7 @@ version = "0.26.2"
|
|
|
5486
5211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5487
5212
|
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
|
|
5488
5213
|
dependencies = [
|
|
5489
|
-
"rustls
|
|
5214
|
+
"rustls",
|
|
5490
5215
|
"tokio",
|
|
5491
5216
|
]
|
|
5492
5217
|
|
|
@@ -5503,9 +5228,9 @@ dependencies = [
|
|
|
5503
5228
|
|
|
5504
5229
|
[[package]]
|
|
5505
5230
|
name = "tokio-util"
|
|
5506
|
-
version = "0.7.
|
|
5231
|
+
version = "0.7.18"
|
|
5507
5232
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5508
|
-
checksum = "
|
|
5233
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
5509
5234
|
dependencies = [
|
|
5510
5235
|
"bytes",
|
|
5511
5236
|
"futures-core",
|
|
@@ -5514,23 +5239,6 @@ dependencies = [
|
|
|
5514
5239
|
"tokio",
|
|
5515
5240
|
]
|
|
5516
5241
|
|
|
5517
|
-
[[package]]
|
|
5518
|
-
name = "toml_datetime"
|
|
5519
|
-
version = "0.6.11"
|
|
5520
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5521
|
-
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
5522
|
-
|
|
5523
|
-
[[package]]
|
|
5524
|
-
name = "toml_edit"
|
|
5525
|
-
version = "0.22.27"
|
|
5526
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5527
|
-
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
5528
|
-
dependencies = [
|
|
5529
|
-
"indexmap 2.13.0",
|
|
5530
|
-
"toml_datetime",
|
|
5531
|
-
"winnow",
|
|
5532
|
-
]
|
|
5533
|
-
|
|
5534
5242
|
[[package]]
|
|
5535
5243
|
name = "tower"
|
|
5536
5244
|
version = "0.5.2"
|
|
@@ -5596,7 +5304,7 @@ checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
|
|
|
5596
5304
|
dependencies = [
|
|
5597
5305
|
"proc-macro2",
|
|
5598
5306
|
"quote",
|
|
5599
|
-
"syn
|
|
5307
|
+
"syn",
|
|
5600
5308
|
]
|
|
5601
5309
|
|
|
5602
5310
|
[[package]]
|
|
@@ -5673,15 +5381,45 @@ checksum = "3c36781cc0e46a83726d9879608e4cf6c2505237e263a8eb8c24502989cfdb28"
|
|
|
5673
5381
|
dependencies = [
|
|
5674
5382
|
"proc-macro2",
|
|
5675
5383
|
"quote",
|
|
5676
|
-
"syn
|
|
5384
|
+
"syn",
|
|
5677
5385
|
]
|
|
5678
5386
|
|
|
5387
|
+
[[package]]
|
|
5388
|
+
name = "typeid"
|
|
5389
|
+
version = "1.0.3"
|
|
5390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5391
|
+
checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
|
|
5392
|
+
|
|
5679
5393
|
[[package]]
|
|
5680
5394
|
name = "typenum"
|
|
5681
5395
|
version = "1.18.0"
|
|
5682
5396
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5683
5397
|
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
|
5684
5398
|
|
|
5399
|
+
[[package]]
|
|
5400
|
+
name = "typetag"
|
|
5401
|
+
version = "0.2.21"
|
|
5402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5403
|
+
checksum = "be2212c8a9b9bcfca32024de14998494cf9a5dfa59ea1b829de98bac374b86bf"
|
|
5404
|
+
dependencies = [
|
|
5405
|
+
"erased-serde",
|
|
5406
|
+
"inventory",
|
|
5407
|
+
"once_cell",
|
|
5408
|
+
"serde",
|
|
5409
|
+
"typetag-impl",
|
|
5410
|
+
]
|
|
5411
|
+
|
|
5412
|
+
[[package]]
|
|
5413
|
+
name = "typetag-impl"
|
|
5414
|
+
version = "0.2.21"
|
|
5415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5416
|
+
checksum = "27a7a9b72ba121f6f1f6c3632b85604cac41aedb5ddc70accbebb6cac83de846"
|
|
5417
|
+
dependencies = [
|
|
5418
|
+
"proc-macro2",
|
|
5419
|
+
"quote",
|
|
5420
|
+
"syn",
|
|
5421
|
+
]
|
|
5422
|
+
|
|
5685
5423
|
[[package]]
|
|
5686
5424
|
name = "unicode-bidi"
|
|
5687
5425
|
version = "0.3.18"
|
|
@@ -5849,7 +5587,7 @@ dependencies = [
|
|
|
5849
5587
|
"log",
|
|
5850
5588
|
"proc-macro2",
|
|
5851
5589
|
"quote",
|
|
5852
|
-
"syn
|
|
5590
|
+
"syn",
|
|
5853
5591
|
"wasm-bindgen-shared",
|
|
5854
5592
|
]
|
|
5855
5593
|
|
|
@@ -5884,7 +5622,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
|
5884
5622
|
dependencies = [
|
|
5885
5623
|
"proc-macro2",
|
|
5886
5624
|
"quote",
|
|
5887
|
-
"syn
|
|
5625
|
+
"syn",
|
|
5888
5626
|
"wasm-bindgen-backend",
|
|
5889
5627
|
"wasm-bindgen-shared",
|
|
5890
5628
|
]
|
|
@@ -5940,18 +5678,6 @@ dependencies = [
|
|
|
5940
5678
|
"rustls-pki-types",
|
|
5941
5679
|
]
|
|
5942
5680
|
|
|
5943
|
-
[[package]]
|
|
5944
|
-
name = "which"
|
|
5945
|
-
version = "4.4.2"
|
|
5946
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5947
|
-
checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
|
|
5948
|
-
dependencies = [
|
|
5949
|
-
"either",
|
|
5950
|
-
"home",
|
|
5951
|
-
"once_cell",
|
|
5952
|
-
"rustix 0.38.44",
|
|
5953
|
-
]
|
|
5954
|
-
|
|
5955
5681
|
[[package]]
|
|
5956
5682
|
name = "whoami"
|
|
5957
5683
|
version = "1.6.1"
|
|
@@ -6025,7 +5751,7 @@ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
|
|
6025
5751
|
dependencies = [
|
|
6026
5752
|
"proc-macro2",
|
|
6027
5753
|
"quote",
|
|
6028
|
-
"syn
|
|
5754
|
+
"syn",
|
|
6029
5755
|
]
|
|
6030
5756
|
|
|
6031
5757
|
[[package]]
|
|
@@ -6036,7 +5762,7 @@ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
|
|
6036
5762
|
dependencies = [
|
|
6037
5763
|
"proc-macro2",
|
|
6038
5764
|
"quote",
|
|
6039
|
-
"syn
|
|
5765
|
+
"syn",
|
|
6040
5766
|
]
|
|
6041
5767
|
|
|
6042
5768
|
[[package]]
|
|
@@ -6245,15 +5971,6 @@ version = "0.52.6"
|
|
|
6245
5971
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6246
5972
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
6247
5973
|
|
|
6248
|
-
[[package]]
|
|
6249
|
-
name = "winnow"
|
|
6250
|
-
version = "0.7.13"
|
|
6251
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6252
|
-
checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
|
|
6253
|
-
dependencies = [
|
|
6254
|
-
"memchr",
|
|
6255
|
-
]
|
|
6256
|
-
|
|
6257
5974
|
[[package]]
|
|
6258
5975
|
name = "wit-bindgen-rt"
|
|
6259
5976
|
version = "0.39.0"
|
|
@@ -6269,30 +5986,12 @@ version = "0.6.1"
|
|
|
6269
5986
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6270
5987
|
checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
|
|
6271
5988
|
|
|
6272
|
-
[[package]]
|
|
6273
|
-
name = "wyz"
|
|
6274
|
-
version = "0.5.1"
|
|
6275
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6276
|
-
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
|
|
6277
|
-
dependencies = [
|
|
6278
|
-
"tap",
|
|
6279
|
-
]
|
|
6280
|
-
|
|
6281
5989
|
[[package]]
|
|
6282
5990
|
name = "xmlparser"
|
|
6283
5991
|
version = "0.13.6"
|
|
6284
5992
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6285
5993
|
checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4"
|
|
6286
5994
|
|
|
6287
|
-
[[package]]
|
|
6288
|
-
name = "xz2"
|
|
6289
|
-
version = "0.1.7"
|
|
6290
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6291
|
-
checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
|
|
6292
|
-
dependencies = [
|
|
6293
|
-
"lzma-sys",
|
|
6294
|
-
]
|
|
6295
|
-
|
|
6296
5995
|
[[package]]
|
|
6297
5996
|
name = "yoke"
|
|
6298
5997
|
version = "0.8.0"
|
|
@@ -6313,7 +6012,7 @@ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
|
|
|
6313
6012
|
dependencies = [
|
|
6314
6013
|
"proc-macro2",
|
|
6315
6014
|
"quote",
|
|
6316
|
-
"syn
|
|
6015
|
+
"syn",
|
|
6317
6016
|
"synstructure",
|
|
6318
6017
|
]
|
|
6319
6018
|
|
|
@@ -6334,7 +6033,7 @@ checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
|
|
|
6334
6033
|
dependencies = [
|
|
6335
6034
|
"proc-macro2",
|
|
6336
6035
|
"quote",
|
|
6337
|
-
"syn
|
|
6036
|
+
"syn",
|
|
6338
6037
|
]
|
|
6339
6038
|
|
|
6340
6039
|
[[package]]
|
|
@@ -6354,7 +6053,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
|
6354
6053
|
dependencies = [
|
|
6355
6054
|
"proc-macro2",
|
|
6356
6055
|
"quote",
|
|
6357
|
-
"syn
|
|
6056
|
+
"syn",
|
|
6358
6057
|
"synstructure",
|
|
6359
6058
|
]
|
|
6360
6059
|
|
|
@@ -6394,7 +6093,7 @@ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
|
|
|
6394
6093
|
dependencies = [
|
|
6395
6094
|
"proc-macro2",
|
|
6396
6095
|
"quote",
|
|
6397
|
-
"syn
|
|
6096
|
+
"syn",
|
|
6398
6097
|
]
|
|
6399
6098
|
|
|
6400
6099
|
[[package]]
|