iceberg 0.10.2 → 0.10.3
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 +5 -0
- data/Cargo.lock +188 -332
- data/README.md +3 -5
- data/ext/iceberg/Cargo.toml +8 -8
- data/ext/iceberg/src/catalog.rs +27 -23
- data/ext/iceberg/src/table.rs +1 -0
- data/lib/iceberg/table.rb +22 -13
- data/lib/iceberg/table_scan.rb +18 -0
- data/lib/iceberg/version.rb +1 -1
- data/lib/iceberg.rb +1 -0
- metadata +2 -1
data/Cargo.lock
CHANGED
|
@@ -17,12 +17,6 @@ version = "2.0.1"
|
|
|
17
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
18
|
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
19
19
|
|
|
20
|
-
[[package]]
|
|
21
|
-
name = "adler32"
|
|
22
|
-
version = "1.2.0"
|
|
23
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
-
checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
|
|
25
|
-
|
|
26
20
|
[[package]]
|
|
27
21
|
name = "ahash"
|
|
28
22
|
version = "0.7.8"
|
|
@@ -101,26 +95,27 @@ checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100"
|
|
|
101
95
|
|
|
102
96
|
[[package]]
|
|
103
97
|
name = "apache-avro"
|
|
104
|
-
version = "0.
|
|
98
|
+
version = "0.20.0"
|
|
105
99
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
-
checksum = "
|
|
100
|
+
checksum = "3a033b4ced7c585199fb78ef50fca7fe2f444369ec48080c5fd072efa1a03cc7"
|
|
107
101
|
dependencies = [
|
|
108
102
|
"bigdecimal",
|
|
103
|
+
"bon",
|
|
109
104
|
"digest",
|
|
110
|
-
"libflate",
|
|
111
105
|
"log",
|
|
106
|
+
"miniz_oxide",
|
|
112
107
|
"num-bigint",
|
|
113
108
|
"quad-rand",
|
|
114
|
-
"rand 0.
|
|
109
|
+
"rand 0.9.2",
|
|
115
110
|
"regex-lite",
|
|
116
111
|
"serde",
|
|
117
112
|
"serde_bytes",
|
|
118
113
|
"serde_json",
|
|
119
|
-
"strum
|
|
120
|
-
"strum_macros
|
|
121
|
-
"thiserror
|
|
122
|
-
"typed-builder 0.19.1",
|
|
114
|
+
"strum",
|
|
115
|
+
"strum_macros",
|
|
116
|
+
"thiserror 2.0.16",
|
|
123
117
|
"uuid",
|
|
118
|
+
"zstd",
|
|
124
119
|
]
|
|
125
120
|
|
|
126
121
|
[[package]]
|
|
@@ -321,6 +316,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
321
316
|
checksum = "af7686986a3bf2254c9fb130c623cdcb2f8e1f15763e7c71c310f0834da3d292"
|
|
322
317
|
dependencies = [
|
|
323
318
|
"bitflags",
|
|
319
|
+
"serde",
|
|
320
|
+
"serde_json",
|
|
324
321
|
]
|
|
325
322
|
|
|
326
323
|
[[package]]
|
|
@@ -351,7 +348,7 @@ dependencies = [
|
|
|
351
348
|
"memchr",
|
|
352
349
|
"num",
|
|
353
350
|
"regex",
|
|
354
|
-
"regex-syntax
|
|
351
|
+
"regex-syntax",
|
|
355
352
|
]
|
|
356
353
|
|
|
357
354
|
[[package]]
|
|
@@ -948,6 +945,31 @@ dependencies = [
|
|
|
948
945
|
"generic-array",
|
|
949
946
|
]
|
|
950
947
|
|
|
948
|
+
[[package]]
|
|
949
|
+
name = "bon"
|
|
950
|
+
version = "3.8.1"
|
|
951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
952
|
+
checksum = "ebeb9aaf9329dff6ceb65c689ca3db33dbf15f324909c60e4e5eef5701ce31b1"
|
|
953
|
+
dependencies = [
|
|
954
|
+
"bon-macros",
|
|
955
|
+
"rustversion",
|
|
956
|
+
]
|
|
957
|
+
|
|
958
|
+
[[package]]
|
|
959
|
+
name = "bon-macros"
|
|
960
|
+
version = "3.8.1"
|
|
961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
962
|
+
checksum = "77e9d642a7e3a318e37c2c9427b5a6a48aa1ad55dcd986f3034ab2239045a645"
|
|
963
|
+
dependencies = [
|
|
964
|
+
"darling 0.21.3",
|
|
965
|
+
"ident_case",
|
|
966
|
+
"prettyplease",
|
|
967
|
+
"proc-macro2",
|
|
968
|
+
"quote",
|
|
969
|
+
"rustversion",
|
|
970
|
+
"syn 2.0.106",
|
|
971
|
+
]
|
|
972
|
+
|
|
951
973
|
[[package]]
|
|
952
974
|
name = "borsh"
|
|
953
975
|
version = "1.5.7"
|
|
@@ -1221,15 +1243,6 @@ version = "0.8.7"
|
|
|
1221
1243
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
1244
|
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
1223
1245
|
|
|
1224
|
-
[[package]]
|
|
1225
|
-
name = "core2"
|
|
1226
|
-
version = "0.4.0"
|
|
1227
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1228
|
-
checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
|
|
1229
|
-
dependencies = [
|
|
1230
|
-
"memchr",
|
|
1231
|
-
]
|
|
1232
|
-
|
|
1233
1246
|
[[package]]
|
|
1234
1247
|
name = "cpufeatures"
|
|
1235
1248
|
version = "0.2.17"
|
|
@@ -1348,8 +1361,18 @@ version = "0.20.11"
|
|
|
1348
1361
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1349
1362
|
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
1350
1363
|
dependencies = [
|
|
1351
|
-
"darling_core",
|
|
1352
|
-
"darling_macro",
|
|
1364
|
+
"darling_core 0.20.11",
|
|
1365
|
+
"darling_macro 0.20.11",
|
|
1366
|
+
]
|
|
1367
|
+
|
|
1368
|
+
[[package]]
|
|
1369
|
+
name = "darling"
|
|
1370
|
+
version = "0.21.3"
|
|
1371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1372
|
+
checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
|
|
1373
|
+
dependencies = [
|
|
1374
|
+
"darling_core 0.21.3",
|
|
1375
|
+
"darling_macro 0.21.3",
|
|
1353
1376
|
]
|
|
1354
1377
|
|
|
1355
1378
|
[[package]]
|
|
@@ -1366,22 +1389,41 @@ dependencies = [
|
|
|
1366
1389
|
"syn 2.0.106",
|
|
1367
1390
|
]
|
|
1368
1391
|
|
|
1392
|
+
[[package]]
|
|
1393
|
+
name = "darling_core"
|
|
1394
|
+
version = "0.21.3"
|
|
1395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1396
|
+
checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
|
|
1397
|
+
dependencies = [
|
|
1398
|
+
"fnv",
|
|
1399
|
+
"ident_case",
|
|
1400
|
+
"proc-macro2",
|
|
1401
|
+
"quote",
|
|
1402
|
+
"strsim",
|
|
1403
|
+
"syn 2.0.106",
|
|
1404
|
+
]
|
|
1405
|
+
|
|
1369
1406
|
[[package]]
|
|
1370
1407
|
name = "darling_macro"
|
|
1371
1408
|
version = "0.20.11"
|
|
1372
1409
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1373
1410
|
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
1374
1411
|
dependencies = [
|
|
1375
|
-
"darling_core",
|
|
1412
|
+
"darling_core 0.20.11",
|
|
1376
1413
|
"quote",
|
|
1377
1414
|
"syn 2.0.106",
|
|
1378
1415
|
]
|
|
1379
1416
|
|
|
1380
1417
|
[[package]]
|
|
1381
|
-
name = "
|
|
1382
|
-
version = "0.3
|
|
1418
|
+
name = "darling_macro"
|
|
1419
|
+
version = "0.21.3"
|
|
1383
1420
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1384
|
-
checksum = "
|
|
1421
|
+
checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
|
|
1422
|
+
dependencies = [
|
|
1423
|
+
"darling_core 0.21.3",
|
|
1424
|
+
"quote",
|
|
1425
|
+
"syn 2.0.106",
|
|
1426
|
+
]
|
|
1385
1427
|
|
|
1386
1428
|
[[package]]
|
|
1387
1429
|
name = "dashmap"
|
|
@@ -1399,9 +1441,9 @@ dependencies = [
|
|
|
1399
1441
|
|
|
1400
1442
|
[[package]]
|
|
1401
1443
|
name = "datafusion"
|
|
1402
|
-
version = "
|
|
1444
|
+
version = "48.0.1"
|
|
1403
1445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1404
|
-
checksum = "
|
|
1446
|
+
checksum = "8a11e19a7ccc5bb979c95c1dceef663eab39c9061b3bbf8d1937faf0f03bf41f"
|
|
1405
1447
|
dependencies = [
|
|
1406
1448
|
"arrow",
|
|
1407
1449
|
"arrow-ipc",
|
|
@@ -1426,7 +1468,6 @@ dependencies = [
|
|
|
1426
1468
|
"datafusion-functions-nested",
|
|
1427
1469
|
"datafusion-functions-table",
|
|
1428
1470
|
"datafusion-functions-window",
|
|
1429
|
-
"datafusion-macros",
|
|
1430
1471
|
"datafusion-optimizer",
|
|
1431
1472
|
"datafusion-physical-expr",
|
|
1432
1473
|
"datafusion-physical-expr-common",
|
|
@@ -1441,7 +1482,7 @@ dependencies = [
|
|
|
1441
1482
|
"object_store",
|
|
1442
1483
|
"parking_lot",
|
|
1443
1484
|
"parquet",
|
|
1444
|
-
"rand 0.
|
|
1485
|
+
"rand 0.9.2",
|
|
1445
1486
|
"regex",
|
|
1446
1487
|
"sqlparser",
|
|
1447
1488
|
"tempfile",
|
|
@@ -1454,9 +1495,9 @@ dependencies = [
|
|
|
1454
1495
|
|
|
1455
1496
|
[[package]]
|
|
1456
1497
|
name = "datafusion-catalog"
|
|
1457
|
-
version = "
|
|
1498
|
+
version = "48.0.1"
|
|
1458
1499
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1459
|
-
checksum = "
|
|
1500
|
+
checksum = "94985e67cab97b1099db2a7af11f31a45008b282aba921c1e1d35327c212ec18"
|
|
1460
1501
|
dependencies = [
|
|
1461
1502
|
"arrow",
|
|
1462
1503
|
"async-trait",
|
|
@@ -1480,9 +1521,9 @@ dependencies = [
|
|
|
1480
1521
|
|
|
1481
1522
|
[[package]]
|
|
1482
1523
|
name = "datafusion-catalog-listing"
|
|
1483
|
-
version = "
|
|
1524
|
+
version = "48.0.1"
|
|
1484
1525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1485
|
-
checksum = "
|
|
1526
|
+
checksum = "e002df133bdb7b0b9b429d89a69aa77b35caeadee4498b2ce1c7c23a99516988"
|
|
1486
1527
|
dependencies = [
|
|
1487
1528
|
"arrow",
|
|
1488
1529
|
"async-trait",
|
|
@@ -1503,9 +1544,9 @@ dependencies = [
|
|
|
1503
1544
|
|
|
1504
1545
|
[[package]]
|
|
1505
1546
|
name = "datafusion-common"
|
|
1506
|
-
version = "
|
|
1547
|
+
version = "48.0.1"
|
|
1507
1548
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1508
|
-
checksum = "
|
|
1549
|
+
checksum = "e13242fc58fd753787b0a538e5ae77d356cb9d0656fa85a591a33c5f106267f6"
|
|
1509
1550
|
dependencies = [
|
|
1510
1551
|
"ahash 0.8.12",
|
|
1511
1552
|
"arrow",
|
|
@@ -1527,9 +1568,9 @@ dependencies = [
|
|
|
1527
1568
|
|
|
1528
1569
|
[[package]]
|
|
1529
1570
|
name = "datafusion-common-runtime"
|
|
1530
|
-
version = "
|
|
1571
|
+
version = "48.0.1"
|
|
1531
1572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1532
|
-
checksum = "
|
|
1573
|
+
checksum = "d2239f964e95c3a5d6b4a8cde07e646de8995c1396a7fd62c6e784f5341db499"
|
|
1533
1574
|
dependencies = [
|
|
1534
1575
|
"futures",
|
|
1535
1576
|
"log",
|
|
@@ -1538,9 +1579,9 @@ dependencies = [
|
|
|
1538
1579
|
|
|
1539
1580
|
[[package]]
|
|
1540
1581
|
name = "datafusion-datasource"
|
|
1541
|
-
version = "
|
|
1582
|
+
version = "48.0.1"
|
|
1542
1583
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1543
|
-
checksum = "
|
|
1584
|
+
checksum = "2cf792579bc8bf07d1b2f68c2d5382f8a63679cce8fbebfd4ba95742b6e08864"
|
|
1544
1585
|
dependencies = [
|
|
1545
1586
|
"arrow",
|
|
1546
1587
|
"async-compression",
|
|
@@ -1563,7 +1604,7 @@ dependencies = [
|
|
|
1563
1604
|
"log",
|
|
1564
1605
|
"object_store",
|
|
1565
1606
|
"parquet",
|
|
1566
|
-
"rand 0.
|
|
1607
|
+
"rand 0.9.2",
|
|
1567
1608
|
"tempfile",
|
|
1568
1609
|
"tokio",
|
|
1569
1610
|
"tokio-util",
|
|
@@ -1574,9 +1615,9 @@ dependencies = [
|
|
|
1574
1615
|
|
|
1575
1616
|
[[package]]
|
|
1576
1617
|
name = "datafusion-datasource-csv"
|
|
1577
|
-
version = "
|
|
1618
|
+
version = "48.0.1"
|
|
1578
1619
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1579
|
-
checksum = "
|
|
1620
|
+
checksum = "cfc114f9a1415174f3e8d2719c371fc72092ef2195a7955404cfe6b2ba29a706"
|
|
1580
1621
|
dependencies = [
|
|
1581
1622
|
"arrow",
|
|
1582
1623
|
"async-trait",
|
|
@@ -1599,9 +1640,9 @@ dependencies = [
|
|
|
1599
1640
|
|
|
1600
1641
|
[[package]]
|
|
1601
1642
|
name = "datafusion-datasource-json"
|
|
1602
|
-
version = "
|
|
1643
|
+
version = "48.0.1"
|
|
1603
1644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1604
|
-
checksum = "
|
|
1645
|
+
checksum = "d88dd5e215c420a52362b9988ecd4cefd71081b730663d4f7d886f706111fc75"
|
|
1605
1646
|
dependencies = [
|
|
1606
1647
|
"arrow",
|
|
1607
1648
|
"async-trait",
|
|
@@ -1624,9 +1665,9 @@ dependencies = [
|
|
|
1624
1665
|
|
|
1625
1666
|
[[package]]
|
|
1626
1667
|
name = "datafusion-datasource-parquet"
|
|
1627
|
-
version = "
|
|
1668
|
+
version = "48.0.1"
|
|
1628
1669
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1629
|
-
checksum = "
|
|
1670
|
+
checksum = "33692acdd1fbe75280d14f4676fe43f39e9cb36296df56575aa2cac9a819e4cf"
|
|
1630
1671
|
dependencies = [
|
|
1631
1672
|
"arrow",
|
|
1632
1673
|
"async-trait",
|
|
@@ -1649,21 +1690,21 @@ dependencies = [
|
|
|
1649
1690
|
"object_store",
|
|
1650
1691
|
"parking_lot",
|
|
1651
1692
|
"parquet",
|
|
1652
|
-
"rand 0.
|
|
1693
|
+
"rand 0.9.2",
|
|
1653
1694
|
"tokio",
|
|
1654
1695
|
]
|
|
1655
1696
|
|
|
1656
1697
|
[[package]]
|
|
1657
1698
|
name = "datafusion-doc"
|
|
1658
|
-
version = "
|
|
1699
|
+
version = "48.0.1"
|
|
1659
1700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1660
|
-
checksum = "
|
|
1701
|
+
checksum = "e0e7b648387b0c1937b83cb328533c06c923799e73a9e3750b762667f32662c0"
|
|
1661
1702
|
|
|
1662
1703
|
[[package]]
|
|
1663
1704
|
name = "datafusion-execution"
|
|
1664
|
-
version = "
|
|
1705
|
+
version = "48.0.1"
|
|
1665
1706
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1666
|
-
checksum = "
|
|
1707
|
+
checksum = "9609d83d52ff8315283c6dad3b97566e877d8f366fab4c3297742f33dcd636c7"
|
|
1667
1708
|
dependencies = [
|
|
1668
1709
|
"arrow",
|
|
1669
1710
|
"dashmap",
|
|
@@ -1673,16 +1714,16 @@ dependencies = [
|
|
|
1673
1714
|
"log",
|
|
1674
1715
|
"object_store",
|
|
1675
1716
|
"parking_lot",
|
|
1676
|
-
"rand 0.
|
|
1717
|
+
"rand 0.9.2",
|
|
1677
1718
|
"tempfile",
|
|
1678
1719
|
"url",
|
|
1679
1720
|
]
|
|
1680
1721
|
|
|
1681
1722
|
[[package]]
|
|
1682
1723
|
name = "datafusion-expr"
|
|
1683
|
-
version = "
|
|
1724
|
+
version = "48.0.1"
|
|
1684
1725
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1685
|
-
checksum = "
|
|
1726
|
+
checksum = "e75230cd67f650ef0399eb00f54d4a073698f2c0262948298e5299fc7324da63"
|
|
1686
1727
|
dependencies = [
|
|
1687
1728
|
"arrow",
|
|
1688
1729
|
"chrono",
|
|
@@ -1701,9 +1742,9 @@ dependencies = [
|
|
|
1701
1742
|
|
|
1702
1743
|
[[package]]
|
|
1703
1744
|
name = "datafusion-expr-common"
|
|
1704
|
-
version = "
|
|
1745
|
+
version = "48.0.1"
|
|
1705
1746
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1706
|
-
checksum = "
|
|
1747
|
+
checksum = "70fafb3a045ed6c49cfca0cd090f62cf871ca6326cc3355cb0aaf1260fa760b6"
|
|
1707
1748
|
dependencies = [
|
|
1708
1749
|
"arrow",
|
|
1709
1750
|
"datafusion-common",
|
|
@@ -1714,9 +1755,9 @@ dependencies = [
|
|
|
1714
1755
|
|
|
1715
1756
|
[[package]]
|
|
1716
1757
|
name = "datafusion-functions"
|
|
1717
|
-
version = "
|
|
1758
|
+
version = "48.0.1"
|
|
1718
1759
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
-
checksum = "
|
|
1760
|
+
checksum = "cdf9a9cf655265861a20453b1e58357147eab59bdc90ce7f2f68f1f35104d3bb"
|
|
1720
1761
|
dependencies = [
|
|
1721
1762
|
"arrow",
|
|
1722
1763
|
"arrow-buffer",
|
|
@@ -1734,7 +1775,7 @@ dependencies = [
|
|
|
1734
1775
|
"itertools 0.14.0",
|
|
1735
1776
|
"log",
|
|
1736
1777
|
"md-5",
|
|
1737
|
-
"rand 0.
|
|
1778
|
+
"rand 0.9.2",
|
|
1738
1779
|
"regex",
|
|
1739
1780
|
"sha2",
|
|
1740
1781
|
"unicode-segmentation",
|
|
@@ -1743,9 +1784,9 @@ dependencies = [
|
|
|
1743
1784
|
|
|
1744
1785
|
[[package]]
|
|
1745
1786
|
name = "datafusion-functions-aggregate"
|
|
1746
|
-
version = "
|
|
1787
|
+
version = "48.0.1"
|
|
1747
1788
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1748
|
-
checksum = "
|
|
1789
|
+
checksum = "7f07e49733d847be0a05235e17b884d326a2fd402c97a89fe8bcf0bfba310005"
|
|
1749
1790
|
dependencies = [
|
|
1750
1791
|
"ahash 0.8.12",
|
|
1751
1792
|
"arrow",
|
|
@@ -1764,9 +1805,9 @@ dependencies = [
|
|
|
1764
1805
|
|
|
1765
1806
|
[[package]]
|
|
1766
1807
|
name = "datafusion-functions-aggregate-common"
|
|
1767
|
-
version = "
|
|
1808
|
+
version = "48.0.1"
|
|
1768
1809
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1769
|
-
checksum = "
|
|
1810
|
+
checksum = "4512607e10d72b0b0a1dc08f42cb5bd5284cb8348b7fea49dc83409493e32b1b"
|
|
1770
1811
|
dependencies = [
|
|
1771
1812
|
"ahash 0.8.12",
|
|
1772
1813
|
"arrow",
|
|
@@ -1777,9 +1818,9 @@ dependencies = [
|
|
|
1777
1818
|
|
|
1778
1819
|
[[package]]
|
|
1779
1820
|
name = "datafusion-functions-nested"
|
|
1780
|
-
version = "
|
|
1821
|
+
version = "48.0.1"
|
|
1781
1822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1782
|
-
checksum = "
|
|
1823
|
+
checksum = "2ab331806e34f5545e5f03396e4d5068077395b1665795d8f88c14ec4f1e0b7a"
|
|
1783
1824
|
dependencies = [
|
|
1784
1825
|
"arrow",
|
|
1785
1826
|
"arrow-ord",
|
|
@@ -1798,9 +1839,9 @@ dependencies = [
|
|
|
1798
1839
|
|
|
1799
1840
|
[[package]]
|
|
1800
1841
|
name = "datafusion-functions-table"
|
|
1801
|
-
version = "
|
|
1842
|
+
version = "48.0.1"
|
|
1802
1843
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1803
|
-
checksum = "
|
|
1844
|
+
checksum = "d4ac2c0be983a06950ef077e34e0174aa0cb9e346f3aeae459823158037ade37"
|
|
1804
1845
|
dependencies = [
|
|
1805
1846
|
"arrow",
|
|
1806
1847
|
"async-trait",
|
|
@@ -1814,10 +1855,11 @@ dependencies = [
|
|
|
1814
1855
|
|
|
1815
1856
|
[[package]]
|
|
1816
1857
|
name = "datafusion-functions-window"
|
|
1817
|
-
version = "
|
|
1858
|
+
version = "48.0.1"
|
|
1818
1859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1819
|
-
checksum = "
|
|
1860
|
+
checksum = "36f3d92731de384c90906941d36dcadf6a86d4128409a9c5cd916662baed5f53"
|
|
1820
1861
|
dependencies = [
|
|
1862
|
+
"arrow",
|
|
1821
1863
|
"datafusion-common",
|
|
1822
1864
|
"datafusion-doc",
|
|
1823
1865
|
"datafusion-expr",
|
|
@@ -1831,9 +1873,9 @@ dependencies = [
|
|
|
1831
1873
|
|
|
1832
1874
|
[[package]]
|
|
1833
1875
|
name = "datafusion-functions-window-common"
|
|
1834
|
-
version = "
|
|
1876
|
+
version = "48.0.1"
|
|
1835
1877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1836
|
-
checksum = "
|
|
1878
|
+
checksum = "c679f8bf0971704ec8fd4249fcbb2eb49d6a12cc3e7a840ac047b4928d3541b5"
|
|
1837
1879
|
dependencies = [
|
|
1838
1880
|
"datafusion-common",
|
|
1839
1881
|
"datafusion-physical-expr-common",
|
|
@@ -1841,9 +1883,9 @@ dependencies = [
|
|
|
1841
1883
|
|
|
1842
1884
|
[[package]]
|
|
1843
1885
|
name = "datafusion-macros"
|
|
1844
|
-
version = "
|
|
1886
|
+
version = "48.0.1"
|
|
1845
1887
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1846
|
-
checksum = "
|
|
1888
|
+
checksum = "2821de7cb0362d12e75a5196b636a59ea3584ec1e1cc7dc6f5e34b9e8389d251"
|
|
1847
1889
|
dependencies = [
|
|
1848
1890
|
"datafusion-expr",
|
|
1849
1891
|
"quote",
|
|
@@ -1852,9 +1894,9 @@ dependencies = [
|
|
|
1852
1894
|
|
|
1853
1895
|
[[package]]
|
|
1854
1896
|
name = "datafusion-optimizer"
|
|
1855
|
-
version = "
|
|
1897
|
+
version = "48.0.1"
|
|
1856
1898
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1857
|
-
checksum = "
|
|
1899
|
+
checksum = "1594c7a97219ede334f25347ad8d57056621e7f4f35a0693c8da876e10dd6a53"
|
|
1858
1900
|
dependencies = [
|
|
1859
1901
|
"arrow",
|
|
1860
1902
|
"chrono",
|
|
@@ -1866,14 +1908,14 @@ dependencies = [
|
|
|
1866
1908
|
"log",
|
|
1867
1909
|
"recursive",
|
|
1868
1910
|
"regex",
|
|
1869
|
-
"regex-syntax
|
|
1911
|
+
"regex-syntax",
|
|
1870
1912
|
]
|
|
1871
1913
|
|
|
1872
1914
|
[[package]]
|
|
1873
1915
|
name = "datafusion-physical-expr"
|
|
1874
|
-
version = "
|
|
1916
|
+
version = "48.0.1"
|
|
1875
1917
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1876
|
-
checksum = "
|
|
1918
|
+
checksum = "dc6da0f2412088d23f6b01929dedd687b5aee63b19b674eb73d00c3eb3c883b7"
|
|
1877
1919
|
dependencies = [
|
|
1878
1920
|
"ahash 0.8.12",
|
|
1879
1921
|
"arrow",
|
|
@@ -1893,9 +1935,9 @@ dependencies = [
|
|
|
1893
1935
|
|
|
1894
1936
|
[[package]]
|
|
1895
1937
|
name = "datafusion-physical-expr-common"
|
|
1896
|
-
version = "
|
|
1938
|
+
version = "48.0.1"
|
|
1897
1939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1898
|
-
checksum = "
|
|
1940
|
+
checksum = "dcb0dbd9213078a593c3fe28783beaa625a4e6c6a6c797856ee2ba234311fb96"
|
|
1899
1941
|
dependencies = [
|
|
1900
1942
|
"ahash 0.8.12",
|
|
1901
1943
|
"arrow",
|
|
@@ -1907,9 +1949,9 @@ dependencies = [
|
|
|
1907
1949
|
|
|
1908
1950
|
[[package]]
|
|
1909
1951
|
name = "datafusion-physical-optimizer"
|
|
1910
|
-
version = "
|
|
1952
|
+
version = "48.0.1"
|
|
1911
1953
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1912
|
-
checksum = "
|
|
1954
|
+
checksum = "6d140854b2db3ef8ac611caad12bfb2e1e1de827077429322a6188f18fc0026a"
|
|
1913
1955
|
dependencies = [
|
|
1914
1956
|
"arrow",
|
|
1915
1957
|
"datafusion-common",
|
|
@@ -1926,9 +1968,9 @@ dependencies = [
|
|
|
1926
1968
|
|
|
1927
1969
|
[[package]]
|
|
1928
1970
|
name = "datafusion-physical-plan"
|
|
1929
|
-
version = "
|
|
1971
|
+
version = "48.0.1"
|
|
1930
1972
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1931
|
-
checksum = "
|
|
1973
|
+
checksum = "b46cbdf21a01206be76d467f325273b22c559c744a012ead5018dfe79597de08"
|
|
1932
1974
|
dependencies = [
|
|
1933
1975
|
"ahash 0.8.12",
|
|
1934
1976
|
"arrow",
|
|
@@ -1956,9 +1998,9 @@ dependencies = [
|
|
|
1956
1998
|
|
|
1957
1999
|
[[package]]
|
|
1958
2000
|
name = "datafusion-session"
|
|
1959
|
-
version = "
|
|
2001
|
+
version = "48.0.1"
|
|
1960
2002
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1961
|
-
checksum = "
|
|
2003
|
+
checksum = "3a72733766ddb5b41534910926e8da5836622316f6283307fd9fb7e19811a59c"
|
|
1962
2004
|
dependencies = [
|
|
1963
2005
|
"arrow",
|
|
1964
2006
|
"async-trait",
|
|
@@ -1980,9 +2022,9 @@ dependencies = [
|
|
|
1980
2022
|
|
|
1981
2023
|
[[package]]
|
|
1982
2024
|
name = "datafusion-sql"
|
|
1983
|
-
version = "
|
|
2025
|
+
version = "48.0.1"
|
|
1984
2026
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1985
|
-
checksum = "
|
|
2027
|
+
checksum = "c5162338cdec9cc7ea13a0e6015c361acad5ec1d88d83f7c86301f789473971f"
|
|
1986
2028
|
dependencies = [
|
|
1987
2029
|
"arrow",
|
|
1988
2030
|
"bigdecimal",
|
|
@@ -2031,7 +2073,7 @@ version = "0.20.2"
|
|
|
2031
2073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2032
2074
|
checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
|
|
2033
2075
|
dependencies = [
|
|
2034
|
-
"darling",
|
|
2076
|
+
"darling 0.20.11",
|
|
2035
2077
|
"proc-macro2",
|
|
2036
2078
|
"quote",
|
|
2037
2079
|
"syn 2.0.106",
|
|
@@ -2125,7 +2167,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2125
2167
|
checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
|
|
2126
2168
|
dependencies = [
|
|
2127
2169
|
"libc",
|
|
2128
|
-
"windows-sys 0.
|
|
2170
|
+
"windows-sys 0.59.0",
|
|
2129
2171
|
]
|
|
2130
2172
|
|
|
2131
2173
|
[[package]]
|
|
@@ -2759,9 +2801,9 @@ dependencies = [
|
|
|
2759
2801
|
|
|
2760
2802
|
[[package]]
|
|
2761
2803
|
name = "iceberg"
|
|
2762
|
-
version = "0.
|
|
2804
|
+
version = "0.7.0"
|
|
2763
2805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2764
|
-
checksum = "
|
|
2806
|
+
checksum = "178acbee1a29dc8cef5623ad5b68208a5b9503874b2d15fcbbcedcc8683ef490"
|
|
2765
2807
|
dependencies = [
|
|
2766
2808
|
"anyhow",
|
|
2767
2809
|
"apache-avro",
|
|
@@ -2794,6 +2836,7 @@ dependencies = [
|
|
|
2794
2836
|
"ordered-float 4.6.0",
|
|
2795
2837
|
"parquet",
|
|
2796
2838
|
"rand 0.8.5",
|
|
2839
|
+
"reqsign",
|
|
2797
2840
|
"reqwest",
|
|
2798
2841
|
"roaring",
|
|
2799
2842
|
"rust_decimal",
|
|
@@ -2803,10 +2846,10 @@ dependencies = [
|
|
|
2803
2846
|
"serde_json",
|
|
2804
2847
|
"serde_repr",
|
|
2805
2848
|
"serde_with",
|
|
2806
|
-
"strum
|
|
2849
|
+
"strum",
|
|
2807
2850
|
"thrift",
|
|
2808
2851
|
"tokio",
|
|
2809
|
-
"typed-builder
|
|
2852
|
+
"typed-builder",
|
|
2810
2853
|
"url",
|
|
2811
2854
|
"uuid",
|
|
2812
2855
|
"zstd",
|
|
@@ -2814,13 +2857,13 @@ dependencies = [
|
|
|
2814
2857
|
|
|
2815
2858
|
[[package]]
|
|
2816
2859
|
name = "iceberg"
|
|
2817
|
-
version = "0.10.
|
|
2860
|
+
version = "0.10.3"
|
|
2818
2861
|
dependencies = [
|
|
2819
2862
|
"arrow-array",
|
|
2820
2863
|
"arrow-schema",
|
|
2821
2864
|
"datafusion",
|
|
2822
2865
|
"futures",
|
|
2823
|
-
"iceberg 0.
|
|
2866
|
+
"iceberg 0.7.0",
|
|
2824
2867
|
"iceberg-catalog-glue",
|
|
2825
2868
|
"iceberg-catalog-rest",
|
|
2826
2869
|
"iceberg-catalog-sql",
|
|
@@ -2834,32 +2877,30 @@ dependencies = [
|
|
|
2834
2877
|
|
|
2835
2878
|
[[package]]
|
|
2836
2879
|
name = "iceberg-catalog-glue"
|
|
2837
|
-
version = "0.
|
|
2880
|
+
version = "0.7.0"
|
|
2838
2881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2839
|
-
checksum = "
|
|
2882
|
+
checksum = "295029229edd6a14f0fc4c46a53f538ea75a2de50c14b7fac9c6f092f2de1b44"
|
|
2840
2883
|
dependencies = [
|
|
2841
2884
|
"anyhow",
|
|
2842
2885
|
"async-trait",
|
|
2843
2886
|
"aws-config",
|
|
2844
2887
|
"aws-sdk-glue",
|
|
2845
|
-
"iceberg 0.
|
|
2888
|
+
"iceberg 0.7.0",
|
|
2846
2889
|
"serde_json",
|
|
2847
2890
|
"tokio",
|
|
2848
2891
|
"tracing",
|
|
2849
|
-
"typed-builder 0.20.1",
|
|
2850
|
-
"uuid",
|
|
2851
2892
|
]
|
|
2852
2893
|
|
|
2853
2894
|
[[package]]
|
|
2854
2895
|
name = "iceberg-catalog-rest"
|
|
2855
|
-
version = "0.
|
|
2896
|
+
version = "0.7.0"
|
|
2856
2897
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2857
|
-
checksum = "
|
|
2898
|
+
checksum = "c7aa0cb3c2a3e41c1fae671b7c6bfc09360271634b1790cce70bb1b674e735ef"
|
|
2858
2899
|
dependencies = [
|
|
2859
2900
|
"async-trait",
|
|
2860
2901
|
"chrono",
|
|
2861
2902
|
"http 1.3.1",
|
|
2862
|
-
"iceberg 0.
|
|
2903
|
+
"iceberg 0.7.0",
|
|
2863
2904
|
"itertools 0.13.0",
|
|
2864
2905
|
"reqwest",
|
|
2865
2906
|
"serde",
|
|
@@ -2867,36 +2908,36 @@ dependencies = [
|
|
|
2867
2908
|
"serde_json",
|
|
2868
2909
|
"tokio",
|
|
2869
2910
|
"tracing",
|
|
2870
|
-
"typed-builder
|
|
2911
|
+
"typed-builder",
|
|
2871
2912
|
"uuid",
|
|
2872
2913
|
]
|
|
2873
2914
|
|
|
2874
2915
|
[[package]]
|
|
2875
2916
|
name = "iceberg-catalog-sql"
|
|
2876
|
-
version = "0.
|
|
2917
|
+
version = "0.7.0"
|
|
2877
2918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2878
|
-
checksum = "
|
|
2919
|
+
checksum = "5f8f47258c59d5dd4415bd0c71d9f89049bd78500d60e17462190709deea9879"
|
|
2879
2920
|
dependencies = [
|
|
2880
2921
|
"async-trait",
|
|
2881
|
-
"iceberg 0.
|
|
2882
|
-
"serde_json",
|
|
2922
|
+
"iceberg 0.7.0",
|
|
2883
2923
|
"sqlx",
|
|
2884
|
-
"typed-builder
|
|
2885
|
-
"uuid",
|
|
2924
|
+
"typed-builder",
|
|
2886
2925
|
]
|
|
2887
2926
|
|
|
2888
2927
|
[[package]]
|
|
2889
2928
|
name = "iceberg-datafusion"
|
|
2890
|
-
version = "0.
|
|
2929
|
+
version = "0.7.0"
|
|
2891
2930
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2892
|
-
checksum = "
|
|
2931
|
+
checksum = "2550cb12b3bc1f6b3c0837e62e768797f5fb473760a92f43f94ba76c31f82537"
|
|
2893
2932
|
dependencies = [
|
|
2894
2933
|
"anyhow",
|
|
2895
2934
|
"async-trait",
|
|
2896
2935
|
"datafusion",
|
|
2897
2936
|
"futures",
|
|
2898
|
-
"iceberg 0.
|
|
2937
|
+
"iceberg 0.7.0",
|
|
2938
|
+
"parquet",
|
|
2899
2939
|
"tokio",
|
|
2940
|
+
"uuid",
|
|
2900
2941
|
]
|
|
2901
2942
|
|
|
2902
2943
|
[[package]]
|
|
@@ -3205,30 +3246,6 @@ version = "0.2.175"
|
|
|
3205
3246
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3206
3247
|
checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
|
|
3207
3248
|
|
|
3208
|
-
[[package]]
|
|
3209
|
-
name = "libflate"
|
|
3210
|
-
version = "2.1.0"
|
|
3211
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3212
|
-
checksum = "45d9dfdc14ea4ef0900c1cddbc8dcd553fbaacd8a4a282cf4018ae9dd04fb21e"
|
|
3213
|
-
dependencies = [
|
|
3214
|
-
"adler32",
|
|
3215
|
-
"core2",
|
|
3216
|
-
"crc32fast",
|
|
3217
|
-
"dary_heap",
|
|
3218
|
-
"libflate_lz77",
|
|
3219
|
-
]
|
|
3220
|
-
|
|
3221
|
-
[[package]]
|
|
3222
|
-
name = "libflate_lz77"
|
|
3223
|
-
version = "2.1.0"
|
|
3224
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3225
|
-
checksum = "e6e0d73b369f386f1c44abd9c570d5318f55ccde816ff4b562fa452e5182863d"
|
|
3226
|
-
dependencies = [
|
|
3227
|
-
"core2",
|
|
3228
|
-
"hashbrown 0.14.5",
|
|
3229
|
-
"rle-decode-fast",
|
|
3230
|
-
]
|
|
3231
|
-
|
|
3232
3249
|
[[package]]
|
|
3233
3250
|
name = "libloading"
|
|
3234
3251
|
version = "0.8.8"
|
|
@@ -3236,7 +3253,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3236
3253
|
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
|
3237
3254
|
dependencies = [
|
|
3238
3255
|
"cfg-if",
|
|
3239
|
-
"windows-targets 0.
|
|
3256
|
+
"windows-targets 0.52.6",
|
|
3240
3257
|
]
|
|
3241
3258
|
|
|
3242
3259
|
[[package]]
|
|
@@ -3351,9 +3368,9 @@ dependencies = [
|
|
|
3351
3368
|
|
|
3352
3369
|
[[package]]
|
|
3353
3370
|
name = "magnus"
|
|
3354
|
-
version = "0.8.
|
|
3371
|
+
version = "0.8.2"
|
|
3355
3372
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3356
|
-
checksum = "
|
|
3373
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
3357
3374
|
dependencies = [
|
|
3358
3375
|
"magnus-macros",
|
|
3359
3376
|
"rb-sys",
|
|
@@ -3374,11 +3391,11 @@ dependencies = [
|
|
|
3374
3391
|
|
|
3375
3392
|
[[package]]
|
|
3376
3393
|
name = "matchers"
|
|
3377
|
-
version = "0.
|
|
3394
|
+
version = "0.2.0"
|
|
3378
3395
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3379
|
-
checksum = "
|
|
3396
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
3380
3397
|
dependencies = [
|
|
3381
|
-
"regex-automata
|
|
3398
|
+
"regex-automata",
|
|
3382
3399
|
]
|
|
3383
3400
|
|
|
3384
3401
|
[[package]]
|
|
@@ -3463,12 +3480,11 @@ dependencies = [
|
|
|
3463
3480
|
|
|
3464
3481
|
[[package]]
|
|
3465
3482
|
name = "nu-ansi-term"
|
|
3466
|
-
version = "0.
|
|
3483
|
+
version = "0.50.3"
|
|
3467
3484
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3468
|
-
checksum = "
|
|
3485
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
3469
3486
|
dependencies = [
|
|
3470
|
-
"
|
|
3471
|
-
"winapi",
|
|
3487
|
+
"windows-sys 0.59.0",
|
|
3472
3488
|
]
|
|
3473
3489
|
|
|
3474
3490
|
[[package]]
|
|
@@ -3686,12 +3702,6 @@ version = "0.5.2"
|
|
|
3686
3702
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3687
3703
|
checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
|
|
3688
3704
|
|
|
3689
|
-
[[package]]
|
|
3690
|
-
name = "overload"
|
|
3691
|
-
version = "0.1.1"
|
|
3692
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3693
|
-
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
|
3694
|
-
|
|
3695
3705
|
[[package]]
|
|
3696
3706
|
name = "parking"
|
|
3697
3707
|
version = "2.2.1"
|
|
@@ -3780,12 +3790,14 @@ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
|
3780
3790
|
|
|
3781
3791
|
[[package]]
|
|
3782
3792
|
name = "petgraph"
|
|
3783
|
-
version = "0.
|
|
3793
|
+
version = "0.8.3"
|
|
3784
3794
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3785
|
-
checksum = "
|
|
3795
|
+
checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
|
|
3786
3796
|
dependencies = [
|
|
3787
3797
|
"fixedbitset",
|
|
3798
|
+
"hashbrown 0.15.5",
|
|
3788
3799
|
"indexmap 2.11.0",
|
|
3800
|
+
"serde",
|
|
3789
3801
|
]
|
|
3790
3802
|
|
|
3791
3803
|
[[package]]
|
|
@@ -4170,17 +4182,8 @@ checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912"
|
|
|
4170
4182
|
dependencies = [
|
|
4171
4183
|
"aho-corasick",
|
|
4172
4184
|
"memchr",
|
|
4173
|
-
"regex-automata
|
|
4174
|
-
"regex-syntax
|
|
4175
|
-
]
|
|
4176
|
-
|
|
4177
|
-
[[package]]
|
|
4178
|
-
name = "regex-automata"
|
|
4179
|
-
version = "0.1.10"
|
|
4180
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4181
|
-
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
|
|
4182
|
-
dependencies = [
|
|
4183
|
-
"regex-syntax 0.6.29",
|
|
4185
|
+
"regex-automata",
|
|
4186
|
+
"regex-syntax",
|
|
4184
4187
|
]
|
|
4185
4188
|
|
|
4186
4189
|
[[package]]
|
|
@@ -4191,7 +4194,7 @@ checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6"
|
|
|
4191
4194
|
dependencies = [
|
|
4192
4195
|
"aho-corasick",
|
|
4193
4196
|
"memchr",
|
|
4194
|
-
"regex-syntax
|
|
4197
|
+
"regex-syntax",
|
|
4195
4198
|
]
|
|
4196
4199
|
|
|
4197
4200
|
[[package]]
|
|
@@ -4200,12 +4203,6 @@ version = "0.1.7"
|
|
|
4200
4203
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4201
4204
|
checksum = "943f41321c63ef1c92fd763bfe054d2668f7f225a5c29f0105903dc2fc04ba30"
|
|
4202
4205
|
|
|
4203
|
-
[[package]]
|
|
4204
|
-
name = "regex-syntax"
|
|
4205
|
-
version = "0.6.29"
|
|
4206
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4207
|
-
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
4208
|
-
|
|
4209
4206
|
[[package]]
|
|
4210
4207
|
name = "regex-syntax"
|
|
4211
4208
|
version = "0.8.6"
|
|
@@ -4334,17 +4331,11 @@ dependencies = [
|
|
|
4334
4331
|
"syn 1.0.109",
|
|
4335
4332
|
]
|
|
4336
4333
|
|
|
4337
|
-
[[package]]
|
|
4338
|
-
name = "rle-decode-fast"
|
|
4339
|
-
version = "1.0.3"
|
|
4340
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4341
|
-
checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422"
|
|
4342
|
-
|
|
4343
4334
|
[[package]]
|
|
4344
4335
|
name = "roaring"
|
|
4345
|
-
version = "0.
|
|
4336
|
+
version = "0.11.2"
|
|
4346
4337
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4347
|
-
checksum = "
|
|
4338
|
+
checksum = "f08d6a905edb32d74a5d5737a0c9d7e950c312f3c46cb0ca0a2ca09ea11878a0"
|
|
4348
4339
|
dependencies = [
|
|
4349
4340
|
"bytemuck",
|
|
4350
4341
|
"byteorder",
|
|
@@ -4447,7 +4438,7 @@ dependencies = [
|
|
|
4447
4438
|
"errno",
|
|
4448
4439
|
"libc",
|
|
4449
4440
|
"linux-raw-sys 0.9.4",
|
|
4450
|
-
"windows-sys 0.
|
|
4441
|
+
"windows-sys 0.59.0",
|
|
4451
4442
|
]
|
|
4452
4443
|
|
|
4453
4444
|
[[package]]
|
|
@@ -4762,7 +4753,7 @@ version = "3.14.0"
|
|
|
4762
4753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4763
4754
|
checksum = "de90945e6565ce0d9a25098082ed4ee4002e047cb59892c318d66821e14bb30f"
|
|
4764
4755
|
dependencies = [
|
|
4765
|
-
"darling",
|
|
4756
|
+
"darling 0.20.11",
|
|
4766
4757
|
"proc-macro2",
|
|
4767
4758
|
"quote",
|
|
4768
4759
|
"syn 2.0.106",
|
|
@@ -5152,32 +5143,13 @@ version = "0.11.1"
|
|
|
5152
5143
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5153
5144
|
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
5154
5145
|
|
|
5155
|
-
[[package]]
|
|
5156
|
-
name = "strum"
|
|
5157
|
-
version = "0.26.3"
|
|
5158
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5159
|
-
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
|
5160
|
-
|
|
5161
5146
|
[[package]]
|
|
5162
5147
|
name = "strum"
|
|
5163
5148
|
version = "0.27.2"
|
|
5164
5149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5165
5150
|
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
|
|
5166
5151
|
dependencies = [
|
|
5167
|
-
"strum_macros
|
|
5168
|
-
]
|
|
5169
|
-
|
|
5170
|
-
[[package]]
|
|
5171
|
-
name = "strum_macros"
|
|
5172
|
-
version = "0.26.4"
|
|
5173
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5174
|
-
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
|
5175
|
-
dependencies = [
|
|
5176
|
-
"heck",
|
|
5177
|
-
"proc-macro2",
|
|
5178
|
-
"quote",
|
|
5179
|
-
"rustversion",
|
|
5180
|
-
"syn 2.0.106",
|
|
5152
|
+
"strum_macros",
|
|
5181
5153
|
]
|
|
5182
5154
|
|
|
5183
5155
|
[[package]]
|
|
@@ -5262,7 +5234,7 @@ dependencies = [
|
|
|
5262
5234
|
"getrandom 0.3.3",
|
|
5263
5235
|
"once_cell",
|
|
5264
5236
|
"rustix 1.0.8",
|
|
5265
|
-
"windows-sys 0.
|
|
5237
|
+
"windows-sys 0.59.0",
|
|
5266
5238
|
]
|
|
5267
5239
|
|
|
5268
5240
|
[[package]]
|
|
@@ -5583,14 +5555,14 @@ dependencies = [
|
|
|
5583
5555
|
|
|
5584
5556
|
[[package]]
|
|
5585
5557
|
name = "tracing-subscriber"
|
|
5586
|
-
version = "0.3.
|
|
5558
|
+
version = "0.3.20"
|
|
5587
5559
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5588
|
-
checksum = "
|
|
5560
|
+
checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5"
|
|
5589
5561
|
dependencies = [
|
|
5590
5562
|
"matchers",
|
|
5591
5563
|
"nu-ansi-term",
|
|
5592
5564
|
"once_cell",
|
|
5593
|
-
"regex",
|
|
5565
|
+
"regex-automata",
|
|
5594
5566
|
"sharded-slab",
|
|
5595
5567
|
"smallvec",
|
|
5596
5568
|
"thread_local",
|
|
@@ -5617,33 +5589,13 @@ version = "2.1.1"
|
|
|
5617
5589
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5618
5590
|
checksum = "8b907da542cbced5261bd3256de1b3a1bf340a3d37f93425a07362a1d687de56"
|
|
5619
5591
|
|
|
5620
|
-
[[package]]
|
|
5621
|
-
name = "typed-builder"
|
|
5622
|
-
version = "0.19.1"
|
|
5623
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5624
|
-
checksum = "a06fbd5b8de54c5f7c91f6fe4cebb949be2125d7758e630bb58b1d831dbce600"
|
|
5625
|
-
dependencies = [
|
|
5626
|
-
"typed-builder-macro 0.19.1",
|
|
5627
|
-
]
|
|
5628
|
-
|
|
5629
5592
|
[[package]]
|
|
5630
5593
|
name = "typed-builder"
|
|
5631
5594
|
version = "0.20.1"
|
|
5632
5595
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5633
5596
|
checksum = "cd9d30e3a08026c78f246b173243cf07b3696d274debd26680773b6773c2afc7"
|
|
5634
5597
|
dependencies = [
|
|
5635
|
-
"typed-builder-macro
|
|
5636
|
-
]
|
|
5637
|
-
|
|
5638
|
-
[[package]]
|
|
5639
|
-
name = "typed-builder-macro"
|
|
5640
|
-
version = "0.19.1"
|
|
5641
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5642
|
-
checksum = "f9534daa9fd3ed0bd911d462a37f172228077e7abf18c18a5f67199d959205f8"
|
|
5643
|
-
dependencies = [
|
|
5644
|
-
"proc-macro2",
|
|
5645
|
-
"quote",
|
|
5646
|
-
"syn 2.0.106",
|
|
5598
|
+
"typed-builder-macro",
|
|
5647
5599
|
]
|
|
5648
5600
|
|
|
5649
5601
|
[[package]]
|
|
@@ -5943,37 +5895,15 @@ dependencies = [
|
|
|
5943
5895
|
"wasite",
|
|
5944
5896
|
]
|
|
5945
5897
|
|
|
5946
|
-
[[package]]
|
|
5947
|
-
name = "winapi"
|
|
5948
|
-
version = "0.3.9"
|
|
5949
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5950
|
-
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
5951
|
-
dependencies = [
|
|
5952
|
-
"winapi-i686-pc-windows-gnu",
|
|
5953
|
-
"winapi-x86_64-pc-windows-gnu",
|
|
5954
|
-
]
|
|
5955
|
-
|
|
5956
|
-
[[package]]
|
|
5957
|
-
name = "winapi-i686-pc-windows-gnu"
|
|
5958
|
-
version = "0.4.0"
|
|
5959
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5960
|
-
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
5961
|
-
|
|
5962
5898
|
[[package]]
|
|
5963
5899
|
name = "winapi-util"
|
|
5964
5900
|
version = "0.1.10"
|
|
5965
5901
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5966
5902
|
checksum = "0978bf7171b3d90bac376700cb56d606feb40f251a475a5d6634613564460b22"
|
|
5967
5903
|
dependencies = [
|
|
5968
|
-
"windows-sys 0.
|
|
5904
|
+
"windows-sys 0.48.0",
|
|
5969
5905
|
]
|
|
5970
5906
|
|
|
5971
|
-
[[package]]
|
|
5972
|
-
name = "winapi-x86_64-pc-windows-gnu"
|
|
5973
|
-
version = "0.4.0"
|
|
5974
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5975
|
-
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
5976
|
-
|
|
5977
5907
|
[[package]]
|
|
5978
5908
|
name = "windows"
|
|
5979
5909
|
version = "0.61.3"
|
|
@@ -6103,15 +6033,6 @@ dependencies = [
|
|
|
6103
6033
|
"windows-targets 0.52.6",
|
|
6104
6034
|
]
|
|
6105
6035
|
|
|
6106
|
-
[[package]]
|
|
6107
|
-
name = "windows-sys"
|
|
6108
|
-
version = "0.60.2"
|
|
6109
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6110
|
-
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
6111
|
-
dependencies = [
|
|
6112
|
-
"windows-targets 0.53.3",
|
|
6113
|
-
]
|
|
6114
|
-
|
|
6115
6036
|
[[package]]
|
|
6116
6037
|
name = "windows-targets"
|
|
6117
6038
|
version = "0.48.5"
|
|
@@ -6136,30 +6057,13 @@ dependencies = [
|
|
|
6136
6057
|
"windows_aarch64_gnullvm 0.52.6",
|
|
6137
6058
|
"windows_aarch64_msvc 0.52.6",
|
|
6138
6059
|
"windows_i686_gnu 0.52.6",
|
|
6139
|
-
"windows_i686_gnullvm
|
|
6060
|
+
"windows_i686_gnullvm",
|
|
6140
6061
|
"windows_i686_msvc 0.52.6",
|
|
6141
6062
|
"windows_x86_64_gnu 0.52.6",
|
|
6142
6063
|
"windows_x86_64_gnullvm 0.52.6",
|
|
6143
6064
|
"windows_x86_64_msvc 0.52.6",
|
|
6144
6065
|
]
|
|
6145
6066
|
|
|
6146
|
-
[[package]]
|
|
6147
|
-
name = "windows-targets"
|
|
6148
|
-
version = "0.53.3"
|
|
6149
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6150
|
-
checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
|
|
6151
|
-
dependencies = [
|
|
6152
|
-
"windows-link",
|
|
6153
|
-
"windows_aarch64_gnullvm 0.53.0",
|
|
6154
|
-
"windows_aarch64_msvc 0.53.0",
|
|
6155
|
-
"windows_i686_gnu 0.53.0",
|
|
6156
|
-
"windows_i686_gnullvm 0.53.0",
|
|
6157
|
-
"windows_i686_msvc 0.53.0",
|
|
6158
|
-
"windows_x86_64_gnu 0.53.0",
|
|
6159
|
-
"windows_x86_64_gnullvm 0.53.0",
|
|
6160
|
-
"windows_x86_64_msvc 0.53.0",
|
|
6161
|
-
]
|
|
6162
|
-
|
|
6163
6067
|
[[package]]
|
|
6164
6068
|
name = "windows-threading"
|
|
6165
6069
|
version = "0.1.0"
|
|
@@ -6181,12 +6085,6 @@ version = "0.52.6"
|
|
|
6181
6085
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6182
6086
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
6183
6087
|
|
|
6184
|
-
[[package]]
|
|
6185
|
-
name = "windows_aarch64_gnullvm"
|
|
6186
|
-
version = "0.53.0"
|
|
6187
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6188
|
-
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
6189
|
-
|
|
6190
6088
|
[[package]]
|
|
6191
6089
|
name = "windows_aarch64_msvc"
|
|
6192
6090
|
version = "0.48.5"
|
|
@@ -6199,12 +6097,6 @@ version = "0.52.6"
|
|
|
6199
6097
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6200
6098
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
6201
6099
|
|
|
6202
|
-
[[package]]
|
|
6203
|
-
name = "windows_aarch64_msvc"
|
|
6204
|
-
version = "0.53.0"
|
|
6205
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6206
|
-
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
6207
|
-
|
|
6208
6100
|
[[package]]
|
|
6209
6101
|
name = "windows_i686_gnu"
|
|
6210
6102
|
version = "0.48.5"
|
|
@@ -6217,24 +6109,12 @@ version = "0.52.6"
|
|
|
6217
6109
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6218
6110
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
6219
6111
|
|
|
6220
|
-
[[package]]
|
|
6221
|
-
name = "windows_i686_gnu"
|
|
6222
|
-
version = "0.53.0"
|
|
6223
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6224
|
-
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
|
6225
|
-
|
|
6226
6112
|
[[package]]
|
|
6227
6113
|
name = "windows_i686_gnullvm"
|
|
6228
6114
|
version = "0.52.6"
|
|
6229
6115
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6230
6116
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
6231
6117
|
|
|
6232
|
-
[[package]]
|
|
6233
|
-
name = "windows_i686_gnullvm"
|
|
6234
|
-
version = "0.53.0"
|
|
6235
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6236
|
-
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
6237
|
-
|
|
6238
6118
|
[[package]]
|
|
6239
6119
|
name = "windows_i686_msvc"
|
|
6240
6120
|
version = "0.48.5"
|
|
@@ -6247,12 +6127,6 @@ version = "0.52.6"
|
|
|
6247
6127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6248
6128
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
6249
6129
|
|
|
6250
|
-
[[package]]
|
|
6251
|
-
name = "windows_i686_msvc"
|
|
6252
|
-
version = "0.53.0"
|
|
6253
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6254
|
-
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
6255
|
-
|
|
6256
6130
|
[[package]]
|
|
6257
6131
|
name = "windows_x86_64_gnu"
|
|
6258
6132
|
version = "0.48.5"
|
|
@@ -6265,12 +6139,6 @@ version = "0.52.6"
|
|
|
6265
6139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6266
6140
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
6267
6141
|
|
|
6268
|
-
[[package]]
|
|
6269
|
-
name = "windows_x86_64_gnu"
|
|
6270
|
-
version = "0.53.0"
|
|
6271
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6272
|
-
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
6273
|
-
|
|
6274
6142
|
[[package]]
|
|
6275
6143
|
name = "windows_x86_64_gnullvm"
|
|
6276
6144
|
version = "0.48.5"
|
|
@@ -6283,12 +6151,6 @@ version = "0.52.6"
|
|
|
6283
6151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6284
6152
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
6285
6153
|
|
|
6286
|
-
[[package]]
|
|
6287
|
-
name = "windows_x86_64_gnullvm"
|
|
6288
|
-
version = "0.53.0"
|
|
6289
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6290
|
-
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
6291
|
-
|
|
6292
6154
|
[[package]]
|
|
6293
6155
|
name = "windows_x86_64_msvc"
|
|
6294
6156
|
version = "0.48.5"
|
|
@@ -6301,12 +6163,6 @@ version = "0.52.6"
|
|
|
6301
6163
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6302
6164
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
6303
6165
|
|
|
6304
|
-
[[package]]
|
|
6305
|
-
name = "windows_x86_64_msvc"
|
|
6306
|
-
version = "0.53.0"
|
|
6307
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6308
|
-
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
6309
|
-
|
|
6310
6166
|
[[package]]
|
|
6311
6167
|
name = "winnow"
|
|
6312
6168
|
version = "0.7.13"
|