iceberg 0.11.1 → 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 +5 -0
- data/Cargo.lock +60 -206
- data/ext/iceberg/Cargo.toml +8 -7
- data/ext/iceberg/src/catalog.rs +64 -17
- 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 +139 -95
- data/lib/iceberg/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2db4882a74e8464f40236b32e867b65d0aa04e62873541d06ee7d9bcaf1cbf69
|
|
4
|
+
data.tar.gz: 20e2dde35a59095861701ec9103db69d42bd146c4cea70f6754c94c388c59387
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4a4e3b706e211631c7da22b9956dfd888e9f5457ac4a316aa4ba1d34866eb347bade386526d069832b79c734acbfda083290a79a6015e2a4e64ee5f1e1e1436e
|
|
7
|
+
data.tar.gz: 208ccd2599a2d591b18dbc9080cb0a3d2ed9b6bb56ec8c3d180ff86d258644523a421fdb1c8a624ef61a166b85be04f50f6faff3065c2874cf22b3bae6ee336d
|
data/CHANGELOG.md
CHANGED
data/Cargo.lock
CHANGED
|
@@ -80,7 +80,7 @@ dependencies = [
|
|
|
80
80
|
"miniz_oxide",
|
|
81
81
|
"num-bigint",
|
|
82
82
|
"quad-rand",
|
|
83
|
-
"rand 0.9.
|
|
83
|
+
"rand 0.9.4",
|
|
84
84
|
"regex-lite",
|
|
85
85
|
"serde",
|
|
86
86
|
"serde_bytes",
|
|
@@ -439,9 +439,9 @@ dependencies = [
|
|
|
439
439
|
|
|
440
440
|
[[package]]
|
|
441
441
|
name = "aws-lc-rs"
|
|
442
|
-
version = "1.
|
|
442
|
+
version = "1.16.2"
|
|
443
443
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
-
checksum = "
|
|
444
|
+
checksum = "a054912289d18629dc78375ba2c3726a3afe3ff71b4edba9dedfca0e3446d1fc"
|
|
445
445
|
dependencies = [
|
|
446
446
|
"aws-lc-sys",
|
|
447
447
|
"zeroize",
|
|
@@ -449,11 +449,10 @@ dependencies = [
|
|
|
449
449
|
|
|
450
450
|
[[package]]
|
|
451
451
|
name = "aws-lc-sys"
|
|
452
|
-
version = "0.
|
|
452
|
+
version = "0.39.0"
|
|
453
453
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
|
-
checksum = "
|
|
454
|
+
checksum = "1fa7e52a4c5c547c741610a2c6f123f3881e409b714cd27e6798ef020c514f0a"
|
|
455
455
|
dependencies = [
|
|
456
|
-
"bindgen",
|
|
457
456
|
"cc",
|
|
458
457
|
"cmake",
|
|
459
458
|
"dunce",
|
|
@@ -662,23 +661,17 @@ dependencies = [
|
|
|
662
661
|
"aws-smithy-async",
|
|
663
662
|
"aws-smithy-runtime-api",
|
|
664
663
|
"aws-smithy-types",
|
|
665
|
-
"h2
|
|
666
|
-
"h2 0.4.12",
|
|
667
|
-
"http 0.2.12",
|
|
664
|
+
"h2",
|
|
668
665
|
"http 1.3.1",
|
|
669
|
-
"
|
|
670
|
-
"hyper
|
|
671
|
-
"hyper 1.7.0",
|
|
672
|
-
"hyper-rustls 0.24.2",
|
|
673
|
-
"hyper-rustls 0.27.7",
|
|
666
|
+
"hyper",
|
|
667
|
+
"hyper-rustls",
|
|
674
668
|
"hyper-util",
|
|
675
669
|
"pin-project-lite",
|
|
676
|
-
"rustls
|
|
677
|
-
"rustls 0.23.31",
|
|
670
|
+
"rustls",
|
|
678
671
|
"rustls-native-certs",
|
|
679
672
|
"rustls-pki-types",
|
|
680
673
|
"tokio",
|
|
681
|
-
"tokio-rustls
|
|
674
|
+
"tokio-rustls",
|
|
682
675
|
"tower",
|
|
683
676
|
"tracing",
|
|
684
677
|
]
|
|
@@ -866,15 +859,12 @@ dependencies = [
|
|
|
866
859
|
"itertools 0.12.1",
|
|
867
860
|
"lazy_static",
|
|
868
861
|
"lazycell",
|
|
869
|
-
"log",
|
|
870
|
-
"prettyplease",
|
|
871
862
|
"proc-macro2",
|
|
872
863
|
"quote",
|
|
873
864
|
"regex",
|
|
874
865
|
"rustc-hash 1.1.0",
|
|
875
866
|
"shlex",
|
|
876
867
|
"syn",
|
|
877
|
-
"which",
|
|
878
868
|
]
|
|
879
869
|
|
|
880
870
|
[[package]]
|
|
@@ -1421,7 +1411,7 @@ dependencies = [
|
|
|
1421
1411
|
"object_store",
|
|
1422
1412
|
"parking_lot",
|
|
1423
1413
|
"parquet",
|
|
1424
|
-
"rand 0.9.
|
|
1414
|
+
"rand 0.9.4",
|
|
1425
1415
|
"regex",
|
|
1426
1416
|
"sqlparser",
|
|
1427
1417
|
"tempfile",
|
|
@@ -1542,7 +1532,7 @@ dependencies = [
|
|
|
1542
1532
|
"liblzma",
|
|
1543
1533
|
"log",
|
|
1544
1534
|
"object_store",
|
|
1545
|
-
"rand 0.9.
|
|
1535
|
+
"rand 0.9.4",
|
|
1546
1536
|
"tokio",
|
|
1547
1537
|
"tokio-util",
|
|
1548
1538
|
"url",
|
|
@@ -1670,7 +1660,7 @@ dependencies = [
|
|
|
1670
1660
|
"log",
|
|
1671
1661
|
"object_store",
|
|
1672
1662
|
"parking_lot",
|
|
1673
|
-
"rand 0.9.
|
|
1663
|
+
"rand 0.9.4",
|
|
1674
1664
|
"tempfile",
|
|
1675
1665
|
"url",
|
|
1676
1666
|
]
|
|
@@ -1735,7 +1725,7 @@ dependencies = [
|
|
|
1735
1725
|
"log",
|
|
1736
1726
|
"md-5",
|
|
1737
1727
|
"num-traits",
|
|
1738
|
-
"rand 0.9.
|
|
1728
|
+
"rand 0.9.4",
|
|
1739
1729
|
"regex",
|
|
1740
1730
|
"sha2",
|
|
1741
1731
|
"unicode-segmentation",
|
|
@@ -2473,25 +2463,6 @@ dependencies = [
|
|
|
2473
2463
|
"wasm-bindgen",
|
|
2474
2464
|
]
|
|
2475
2465
|
|
|
2476
|
-
[[package]]
|
|
2477
|
-
name = "h2"
|
|
2478
|
-
version = "0.3.27"
|
|
2479
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2480
|
-
checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
|
|
2481
|
-
dependencies = [
|
|
2482
|
-
"bytes",
|
|
2483
|
-
"fnv",
|
|
2484
|
-
"futures-core",
|
|
2485
|
-
"futures-sink",
|
|
2486
|
-
"futures-util",
|
|
2487
|
-
"http 0.2.12",
|
|
2488
|
-
"indexmap 2.13.0",
|
|
2489
|
-
"slab",
|
|
2490
|
-
"tokio",
|
|
2491
|
-
"tokio-util",
|
|
2492
|
-
"tracing",
|
|
2493
|
-
]
|
|
2494
|
-
|
|
2495
2466
|
[[package]]
|
|
2496
2467
|
name = "h2"
|
|
2497
2468
|
version = "0.4.12"
|
|
@@ -2667,42 +2638,12 @@ version = "1.10.1"
|
|
|
2667
2638
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2668
2639
|
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
2669
2640
|
|
|
2670
|
-
[[package]]
|
|
2671
|
-
name = "httpdate"
|
|
2672
|
-
version = "1.0.3"
|
|
2673
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2674
|
-
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
2675
|
-
|
|
2676
2641
|
[[package]]
|
|
2677
2642
|
name = "humantime"
|
|
2678
2643
|
version = "2.2.0"
|
|
2679
2644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2680
2645
|
checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
|
|
2681
2646
|
|
|
2682
|
-
[[package]]
|
|
2683
|
-
name = "hyper"
|
|
2684
|
-
version = "0.14.32"
|
|
2685
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2686
|
-
checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
|
|
2687
|
-
dependencies = [
|
|
2688
|
-
"bytes",
|
|
2689
|
-
"futures-channel",
|
|
2690
|
-
"futures-core",
|
|
2691
|
-
"futures-util",
|
|
2692
|
-
"h2 0.3.27",
|
|
2693
|
-
"http 0.2.12",
|
|
2694
|
-
"http-body 0.4.6",
|
|
2695
|
-
"httparse",
|
|
2696
|
-
"httpdate",
|
|
2697
|
-
"itoa",
|
|
2698
|
-
"pin-project-lite",
|
|
2699
|
-
"socket2 0.5.10",
|
|
2700
|
-
"tokio",
|
|
2701
|
-
"tower-service",
|
|
2702
|
-
"tracing",
|
|
2703
|
-
"want",
|
|
2704
|
-
]
|
|
2705
|
-
|
|
2706
2647
|
[[package]]
|
|
2707
2648
|
name = "hyper"
|
|
2708
2649
|
version = "1.7.0"
|
|
@@ -2713,7 +2654,7 @@ dependencies = [
|
|
|
2713
2654
|
"bytes",
|
|
2714
2655
|
"futures-channel",
|
|
2715
2656
|
"futures-core",
|
|
2716
|
-
"h2
|
|
2657
|
+
"h2",
|
|
2717
2658
|
"http 1.3.1",
|
|
2718
2659
|
"http-body 1.0.1",
|
|
2719
2660
|
"httparse",
|
|
@@ -2725,21 +2666,6 @@ dependencies = [
|
|
|
2725
2666
|
"want",
|
|
2726
2667
|
]
|
|
2727
2668
|
|
|
2728
|
-
[[package]]
|
|
2729
|
-
name = "hyper-rustls"
|
|
2730
|
-
version = "0.24.2"
|
|
2731
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2732
|
-
checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
|
|
2733
|
-
dependencies = [
|
|
2734
|
-
"futures-util",
|
|
2735
|
-
"http 0.2.12",
|
|
2736
|
-
"hyper 0.14.32",
|
|
2737
|
-
"log",
|
|
2738
|
-
"rustls 0.21.12",
|
|
2739
|
-
"tokio",
|
|
2740
|
-
"tokio-rustls 0.24.1",
|
|
2741
|
-
]
|
|
2742
|
-
|
|
2743
2669
|
[[package]]
|
|
2744
2670
|
name = "hyper-rustls"
|
|
2745
2671
|
version = "0.27.7"
|
|
@@ -2747,13 +2673,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2747
2673
|
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
2748
2674
|
dependencies = [
|
|
2749
2675
|
"http 1.3.1",
|
|
2750
|
-
"hyper
|
|
2676
|
+
"hyper",
|
|
2751
2677
|
"hyper-util",
|
|
2752
|
-
"rustls
|
|
2678
|
+
"rustls",
|
|
2753
2679
|
"rustls-native-certs",
|
|
2754
2680
|
"rustls-pki-types",
|
|
2755
2681
|
"tokio",
|
|
2756
|
-
"tokio-rustls
|
|
2682
|
+
"tokio-rustls",
|
|
2757
2683
|
"tower-service",
|
|
2758
2684
|
"webpki-roots",
|
|
2759
2685
|
]
|
|
@@ -2771,7 +2697,7 @@ dependencies = [
|
|
|
2771
2697
|
"futures-util",
|
|
2772
2698
|
"http 1.3.1",
|
|
2773
2699
|
"http-body 1.0.1",
|
|
2774
|
-
"hyper
|
|
2700
|
+
"hyper",
|
|
2775
2701
|
"ipnet",
|
|
2776
2702
|
"libc",
|
|
2777
2703
|
"percent-encoding",
|
|
@@ -2808,9 +2734,9 @@ dependencies = [
|
|
|
2808
2734
|
|
|
2809
2735
|
[[package]]
|
|
2810
2736
|
name = "iceberg"
|
|
2811
|
-
version = "0.9.
|
|
2737
|
+
version = "0.9.1"
|
|
2812
2738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2813
|
-
checksum = "
|
|
2739
|
+
checksum = "4d9c3fc1f55c84ff64645c0d2ee35159f5574d33f729fc0860783bc247c8b8c5"
|
|
2814
2740
|
dependencies = [
|
|
2815
2741
|
"anyhow",
|
|
2816
2742
|
"apache-avro",
|
|
@@ -2842,7 +2768,7 @@ dependencies = [
|
|
|
2842
2768
|
"once_cell",
|
|
2843
2769
|
"ordered-float 4.6.0",
|
|
2844
2770
|
"parquet",
|
|
2845
|
-
"rand 0.
|
|
2771
|
+
"rand 0.9.4",
|
|
2846
2772
|
"reqwest",
|
|
2847
2773
|
"roaring",
|
|
2848
2774
|
"serde",
|
|
@@ -2862,9 +2788,9 @@ dependencies = [
|
|
|
2862
2788
|
|
|
2863
2789
|
[[package]]
|
|
2864
2790
|
name = "iceberg-catalog-glue"
|
|
2865
|
-
version = "0.9.
|
|
2791
|
+
version = "0.9.1"
|
|
2866
2792
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2867
|
-
checksum = "
|
|
2793
|
+
checksum = "5c510ae5f666202151bd24728a2cb569af04694d04e67788ba5ec00770314301"
|
|
2868
2794
|
dependencies = [
|
|
2869
2795
|
"anyhow",
|
|
2870
2796
|
"async-trait",
|
|
@@ -2879,9 +2805,9 @@ dependencies = [
|
|
|
2879
2805
|
|
|
2880
2806
|
[[package]]
|
|
2881
2807
|
name = "iceberg-catalog-rest"
|
|
2882
|
-
version = "0.9.
|
|
2808
|
+
version = "0.9.1"
|
|
2883
2809
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2884
|
-
checksum = "
|
|
2810
|
+
checksum = "a49dfef578060c3a2a3f619522dcb25382a7ce85336dcb500495d4b8d72ae714"
|
|
2885
2811
|
dependencies = [
|
|
2886
2812
|
"async-trait",
|
|
2887
2813
|
"chrono",
|
|
@@ -2900,9 +2826,9 @@ dependencies = [
|
|
|
2900
2826
|
|
|
2901
2827
|
[[package]]
|
|
2902
2828
|
name = "iceberg-catalog-s3tables"
|
|
2903
|
-
version = "0.9.
|
|
2829
|
+
version = "0.9.1"
|
|
2904
2830
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2905
|
-
checksum = "
|
|
2831
|
+
checksum = "0a34cb1d57a5943f66f533f422867569f949ac48fd3ef378462f45ba799dec59"
|
|
2906
2832
|
dependencies = [
|
|
2907
2833
|
"anyhow",
|
|
2908
2834
|
"async-trait",
|
|
@@ -2914,9 +2840,9 @@ dependencies = [
|
|
|
2914
2840
|
|
|
2915
2841
|
[[package]]
|
|
2916
2842
|
name = "iceberg-catalog-sql"
|
|
2917
|
-
version = "0.9.
|
|
2843
|
+
version = "0.9.1"
|
|
2918
2844
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2919
|
-
checksum = "
|
|
2845
|
+
checksum = "67e465814f1833981de0af9267bb2c714e1d6b7e28b2a04bd306cae2b202c090"
|
|
2920
2846
|
dependencies = [
|
|
2921
2847
|
"async-trait",
|
|
2922
2848
|
"iceberg",
|
|
@@ -2926,9 +2852,9 @@ dependencies = [
|
|
|
2926
2852
|
|
|
2927
2853
|
[[package]]
|
|
2928
2854
|
name = "iceberg-datafusion"
|
|
2929
|
-
version = "0.9.
|
|
2855
|
+
version = "0.9.1"
|
|
2930
2856
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2931
|
-
checksum = "
|
|
2857
|
+
checksum = "15f668954750597310308ba6ce3a6d3a6874196e64a8a3197e3d1c5017977ba6"
|
|
2932
2858
|
dependencies = [
|
|
2933
2859
|
"anyhow",
|
|
2934
2860
|
"async-trait",
|
|
@@ -2943,7 +2869,7 @@ dependencies = [
|
|
|
2943
2869
|
|
|
2944
2870
|
[[package]]
|
|
2945
2871
|
name = "iceberg-ruby"
|
|
2946
|
-
version = "0.11.
|
|
2872
|
+
version = "0.11.2"
|
|
2947
2873
|
dependencies = [
|
|
2948
2874
|
"arrow-array",
|
|
2949
2875
|
"arrow-schema",
|
|
@@ -2957,6 +2883,7 @@ dependencies = [
|
|
|
2957
2883
|
"iceberg-datafusion",
|
|
2958
2884
|
"magnus",
|
|
2959
2885
|
"parquet",
|
|
2886
|
+
"rb-sys",
|
|
2960
2887
|
"sqlx",
|
|
2961
2888
|
"tokio",
|
|
2962
2889
|
"uuid",
|
|
@@ -2964,9 +2891,9 @@ dependencies = [
|
|
|
2964
2891
|
|
|
2965
2892
|
[[package]]
|
|
2966
2893
|
name = "iceberg-storage-opendal"
|
|
2967
|
-
version = "0.9.
|
|
2894
|
+
version = "0.9.1"
|
|
2968
2895
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2969
|
-
checksum = "
|
|
2896
|
+
checksum = "30acae4698949eea6cfbd3e64ddf1c3ec39e6b7191acb0b0da2dcd1a25dfa842"
|
|
2970
2897
|
dependencies = [
|
|
2971
2898
|
"anyhow",
|
|
2972
2899
|
"async-trait",
|
|
@@ -3340,7 +3267,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3340
3267
|
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
|
3341
3268
|
dependencies = [
|
|
3342
3269
|
"cfg-if",
|
|
3343
|
-
"windows-targets 0.
|
|
3270
|
+
"windows-targets 0.48.5",
|
|
3344
3271
|
]
|
|
3345
3272
|
|
|
3346
3273
|
[[package]]
|
|
@@ -3391,12 +3318,6 @@ dependencies = [
|
|
|
3391
3318
|
"vcpkg",
|
|
3392
3319
|
]
|
|
3393
3320
|
|
|
3394
|
-
[[package]]
|
|
3395
|
-
name = "linux-raw-sys"
|
|
3396
|
-
version = "0.4.15"
|
|
3397
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3398
|
-
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
3399
|
-
|
|
3400
3321
|
[[package]]
|
|
3401
3322
|
name = "linux-raw-sys"
|
|
3402
3323
|
version = "0.9.4"
|
|
@@ -3446,9 +3367,9 @@ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
|
3446
3367
|
|
|
3447
3368
|
[[package]]
|
|
3448
3369
|
name = "lz4_flex"
|
|
3449
|
-
version = "0.12.
|
|
3370
|
+
version = "0.12.1"
|
|
3450
3371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3451
|
-
checksum = "
|
|
3372
|
+
checksum = "98c23545df7ecf1b16c303910a69b079e8e251d60f7dd2cc9b4177f2afaf1746"
|
|
3452
3373
|
dependencies = [
|
|
3453
3374
|
"twox-hash",
|
|
3454
3375
|
]
|
|
@@ -3598,7 +3519,7 @@ dependencies = [
|
|
|
3598
3519
|
"num-integer",
|
|
3599
3520
|
"num-iter",
|
|
3600
3521
|
"num-traits",
|
|
3601
|
-
"rand 0.8.
|
|
3522
|
+
"rand 0.8.6",
|
|
3602
3523
|
"smallvec",
|
|
3603
3524
|
"zeroize",
|
|
3604
3525
|
]
|
|
@@ -4008,7 +3929,7 @@ dependencies = [
|
|
|
4008
3929
|
"quinn-proto",
|
|
4009
3930
|
"quinn-udp",
|
|
4010
3931
|
"rustc-hash 2.1.1",
|
|
4011
|
-
"rustls
|
|
3932
|
+
"rustls",
|
|
4012
3933
|
"socket2 0.5.10",
|
|
4013
3934
|
"thiserror 2.0.18",
|
|
4014
3935
|
"tokio",
|
|
@@ -4025,10 +3946,10 @@ dependencies = [
|
|
|
4025
3946
|
"bytes",
|
|
4026
3947
|
"getrandom 0.3.3",
|
|
4027
3948
|
"lru-slab",
|
|
4028
|
-
"rand 0.9.
|
|
3949
|
+
"rand 0.9.4",
|
|
4029
3950
|
"ring",
|
|
4030
3951
|
"rustc-hash 2.1.1",
|
|
4031
|
-
"rustls
|
|
3952
|
+
"rustls",
|
|
4032
3953
|
"rustls-pki-types",
|
|
4033
3954
|
"slab",
|
|
4034
3955
|
"thiserror 2.0.18",
|
|
@@ -4068,9 +3989,9 @@ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
|
4068
3989
|
|
|
4069
3990
|
[[package]]
|
|
4070
3991
|
name = "rand"
|
|
4071
|
-
version = "0.8.
|
|
3992
|
+
version = "0.8.6"
|
|
4072
3993
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4073
|
-
checksum = "
|
|
3994
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
4074
3995
|
dependencies = [
|
|
4075
3996
|
"libc",
|
|
4076
3997
|
"rand_chacha 0.3.1",
|
|
@@ -4079,9 +4000,9 @@ dependencies = [
|
|
|
4079
4000
|
|
|
4080
4001
|
[[package]]
|
|
4081
4002
|
name = "rand"
|
|
4082
|
-
version = "0.9.
|
|
4003
|
+
version = "0.9.4"
|
|
4083
4004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4084
|
-
checksum = "
|
|
4005
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
4085
4006
|
dependencies = [
|
|
4086
4007
|
"rand_chacha 0.9.0",
|
|
4087
4008
|
"rand_core 0.9.3",
|
|
@@ -4258,7 +4179,7 @@ dependencies = [
|
|
|
4258
4179
|
"log",
|
|
4259
4180
|
"percent-encoding",
|
|
4260
4181
|
"quick-xml 0.37.5",
|
|
4261
|
-
"rand 0.8.
|
|
4182
|
+
"rand 0.8.6",
|
|
4262
4183
|
"reqwest",
|
|
4263
4184
|
"rust-ini",
|
|
4264
4185
|
"serde",
|
|
@@ -4281,22 +4202,22 @@ dependencies = [
|
|
|
4281
4202
|
"http 1.3.1",
|
|
4282
4203
|
"http-body 1.0.1",
|
|
4283
4204
|
"http-body-util",
|
|
4284
|
-
"hyper
|
|
4285
|
-
"hyper-rustls
|
|
4205
|
+
"hyper",
|
|
4206
|
+
"hyper-rustls",
|
|
4286
4207
|
"hyper-util",
|
|
4287
4208
|
"js-sys",
|
|
4288
4209
|
"log",
|
|
4289
4210
|
"percent-encoding",
|
|
4290
4211
|
"pin-project-lite",
|
|
4291
4212
|
"quinn",
|
|
4292
|
-
"rustls
|
|
4213
|
+
"rustls",
|
|
4293
4214
|
"rustls-pki-types",
|
|
4294
4215
|
"serde",
|
|
4295
4216
|
"serde_json",
|
|
4296
4217
|
"serde_urlencoded",
|
|
4297
4218
|
"sync_wrapper",
|
|
4298
4219
|
"tokio",
|
|
4299
|
-
"tokio-rustls
|
|
4220
|
+
"tokio-rustls",
|
|
4300
4221
|
"tokio-util",
|
|
4301
4222
|
"tower",
|
|
4302
4223
|
"tower-http",
|
|
@@ -4385,19 +4306,6 @@ dependencies = [
|
|
|
4385
4306
|
"semver",
|
|
4386
4307
|
]
|
|
4387
4308
|
|
|
4388
|
-
[[package]]
|
|
4389
|
-
name = "rustix"
|
|
4390
|
-
version = "0.38.44"
|
|
4391
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4392
|
-
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
4393
|
-
dependencies = [
|
|
4394
|
-
"bitflags",
|
|
4395
|
-
"errno",
|
|
4396
|
-
"libc",
|
|
4397
|
-
"linux-raw-sys 0.4.15",
|
|
4398
|
-
"windows-sys 0.59.0",
|
|
4399
|
-
]
|
|
4400
|
-
|
|
4401
4309
|
[[package]]
|
|
4402
4310
|
name = "rustix"
|
|
4403
4311
|
version = "1.0.8"
|
|
@@ -4407,22 +4315,10 @@ dependencies = [
|
|
|
4407
4315
|
"bitflags",
|
|
4408
4316
|
"errno",
|
|
4409
4317
|
"libc",
|
|
4410
|
-
"linux-raw-sys
|
|
4318
|
+
"linux-raw-sys",
|
|
4411
4319
|
"windows-sys 0.59.0",
|
|
4412
4320
|
]
|
|
4413
4321
|
|
|
4414
|
-
[[package]]
|
|
4415
|
-
name = "rustls"
|
|
4416
|
-
version = "0.21.12"
|
|
4417
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4418
|
-
checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
|
|
4419
|
-
dependencies = [
|
|
4420
|
-
"log",
|
|
4421
|
-
"ring",
|
|
4422
|
-
"rustls-webpki 0.101.7",
|
|
4423
|
-
"sct",
|
|
4424
|
-
]
|
|
4425
|
-
|
|
4426
4322
|
[[package]]
|
|
4427
4323
|
name = "rustls"
|
|
4428
4324
|
version = "0.23.31"
|
|
@@ -4433,7 +4329,7 @@ dependencies = [
|
|
|
4433
4329
|
"once_cell",
|
|
4434
4330
|
"ring",
|
|
4435
4331
|
"rustls-pki-types",
|
|
4436
|
-
"rustls-webpki
|
|
4332
|
+
"rustls-webpki",
|
|
4437
4333
|
"subtle",
|
|
4438
4334
|
"zeroize",
|
|
4439
4335
|
]
|
|
@@ -4462,19 +4358,9 @@ dependencies = [
|
|
|
4462
4358
|
|
|
4463
4359
|
[[package]]
|
|
4464
4360
|
name = "rustls-webpki"
|
|
4465
|
-
version = "0.
|
|
4361
|
+
version = "0.103.13"
|
|
4466
4362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4467
|
-
checksum = "
|
|
4468
|
-
dependencies = [
|
|
4469
|
-
"ring",
|
|
4470
|
-
"untrusted",
|
|
4471
|
-
]
|
|
4472
|
-
|
|
4473
|
-
[[package]]
|
|
4474
|
-
name = "rustls-webpki"
|
|
4475
|
-
version = "0.103.4"
|
|
4476
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4477
|
-
checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
|
|
4363
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
4478
4364
|
dependencies = [
|
|
4479
4365
|
"aws-lc-rs",
|
|
4480
4366
|
"ring",
|
|
@@ -4548,16 +4434,6 @@ version = "1.2.0"
|
|
|
4548
4434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4549
4435
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
4550
4436
|
|
|
4551
|
-
[[package]]
|
|
4552
|
-
name = "sct"
|
|
4553
|
-
version = "0.7.1"
|
|
4554
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4555
|
-
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
|
|
4556
|
-
dependencies = [
|
|
4557
|
-
"ring",
|
|
4558
|
-
"untrusted",
|
|
4559
|
-
]
|
|
4560
|
-
|
|
4561
4437
|
[[package]]
|
|
4562
4438
|
name = "security-framework"
|
|
4563
4439
|
version = "3.3.0"
|
|
@@ -4985,7 +4861,7 @@ dependencies = [
|
|
|
4985
4861
|
"memchr",
|
|
4986
4862
|
"once_cell",
|
|
4987
4863
|
"percent-encoding",
|
|
4988
|
-
"rand 0.8.
|
|
4864
|
+
"rand 0.8.6",
|
|
4989
4865
|
"rsa",
|
|
4990
4866
|
"sha1",
|
|
4991
4867
|
"sha2",
|
|
@@ -5022,7 +4898,7 @@ dependencies = [
|
|
|
5022
4898
|
"md-5",
|
|
5023
4899
|
"memchr",
|
|
5024
4900
|
"once_cell",
|
|
5025
|
-
"rand 0.8.
|
|
4901
|
+
"rand 0.8.6",
|
|
5026
4902
|
"serde",
|
|
5027
4903
|
"serde_json",
|
|
5028
4904
|
"sha2",
|
|
@@ -5173,7 +5049,7 @@ dependencies = [
|
|
|
5173
5049
|
"fastrand",
|
|
5174
5050
|
"getrandom 0.3.3",
|
|
5175
5051
|
"once_cell",
|
|
5176
|
-
"rustix
|
|
5052
|
+
"rustix",
|
|
5177
5053
|
"windows-sys 0.59.0",
|
|
5178
5054
|
]
|
|
5179
5055
|
|
|
@@ -5329,23 +5205,13 @@ dependencies = [
|
|
|
5329
5205
|
"syn",
|
|
5330
5206
|
]
|
|
5331
5207
|
|
|
5332
|
-
[[package]]
|
|
5333
|
-
name = "tokio-rustls"
|
|
5334
|
-
version = "0.24.1"
|
|
5335
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5336
|
-
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
|
|
5337
|
-
dependencies = [
|
|
5338
|
-
"rustls 0.21.12",
|
|
5339
|
-
"tokio",
|
|
5340
|
-
]
|
|
5341
|
-
|
|
5342
5208
|
[[package]]
|
|
5343
5209
|
name = "tokio-rustls"
|
|
5344
5210
|
version = "0.26.2"
|
|
5345
5211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5346
5212
|
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
|
|
5347
5213
|
dependencies = [
|
|
5348
|
-
"rustls
|
|
5214
|
+
"rustls",
|
|
5349
5215
|
"tokio",
|
|
5350
5216
|
]
|
|
5351
5217
|
|
|
@@ -5812,18 +5678,6 @@ dependencies = [
|
|
|
5812
5678
|
"rustls-pki-types",
|
|
5813
5679
|
]
|
|
5814
5680
|
|
|
5815
|
-
[[package]]
|
|
5816
|
-
name = "which"
|
|
5817
|
-
version = "4.4.2"
|
|
5818
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5819
|
-
checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
|
|
5820
|
-
dependencies = [
|
|
5821
|
-
"either",
|
|
5822
|
-
"home",
|
|
5823
|
-
"once_cell",
|
|
5824
|
-
"rustix 0.38.44",
|
|
5825
|
-
]
|
|
5826
|
-
|
|
5827
5681
|
[[package]]
|
|
5828
5682
|
name = "whoami"
|
|
5829
5683
|
version = "1.6.1"
|
data/ext/iceberg/Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "iceberg-ruby"
|
|
3
|
-
version = "0.11.
|
|
3
|
+
version = "0.11.2"
|
|
4
4
|
license = "Apache-2.0"
|
|
5
5
|
authors = ["Andrew Kane <andrew@ankane.org>"]
|
|
6
6
|
edition = "2024"
|
|
@@ -16,14 +16,15 @@ arrow-array = { version = "57", features = ["ffi"] }
|
|
|
16
16
|
arrow-schema = "57"
|
|
17
17
|
datafusion = { version = "52", optional = true }
|
|
18
18
|
futures = "0.3"
|
|
19
|
-
iceberg = "0.9"
|
|
20
|
-
iceberg-catalog-glue = { version = "0.9", optional = true }
|
|
21
|
-
iceberg-catalog-rest = { version = "0.9", optional = true }
|
|
22
|
-
iceberg-catalog-s3tables = { version = "0.9", optional = true }
|
|
23
|
-
iceberg-catalog-sql = { version = "0.9", optional = true }
|
|
24
|
-
iceberg-datafusion = { version = "0.9", optional = true }
|
|
19
|
+
iceberg = "=0.9.1"
|
|
20
|
+
iceberg-catalog-glue = { version = "=0.9.1", optional = true }
|
|
21
|
+
iceberg-catalog-rest = { version = "=0.9.1", optional = true }
|
|
22
|
+
iceberg-catalog-s3tables = { version = "=0.9.1", optional = true }
|
|
23
|
+
iceberg-catalog-sql = { version = "=0.9.1", optional = true }
|
|
24
|
+
iceberg-datafusion = { version = "=0.9.1", optional = true }
|
|
25
25
|
magnus = "0.8"
|
|
26
26
|
parquet = "57"
|
|
27
|
+
rb-sys = "0.9"
|
|
27
28
|
sqlx = { version = "0.8", features = ["postgres", "runtime-tokio", "sqlite"], default-features = false, optional = true }
|
|
28
29
|
tokio = { version = "1", features = ["rt-multi-thread"] }
|
|
29
30
|
uuid = { version = "1", features = ["v4"] }
|