From 0a58abc5b3cef3958789874a3eb5c458fdba390a Mon Sep 17 00:00:00 2001 From: Dinesh Phuyel <86118075+dp-0@users.noreply.github.com> Date: Wed, 7 Feb 2024 19:26:00 +0545 Subject: [PATCH 1/2] Fix: add required rust version in cargo.toml --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index bfa72e5b8..000861ac7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,6 +26,7 @@ homepage = "https://rust.iceberg.apache.org/" repository = "https://github.com/apache/iceberg-rust" license = "Apache-2.0" +rust-version = "1.75.0" [workspace.dependencies] anyhow = "1.0.72" From 817bf93fdbcc86960a14f29550a93e580f6ed4c1 Mon Sep 17 00:00:00 2001 From: Dinesh Phuyel <86118075+dp-0@users.noreply.github.com> Date: Thu, 8 Feb 2024 12:54:50 +0545 Subject: [PATCH 2/2] added rust-version to workspace=true in package --- crates/catalog/hms/Cargo.toml | 1 + crates/catalog/rest/Cargo.toml | 1 + crates/examples/Cargo.toml | 1 + crates/iceberg/Cargo.toml | 1 + crates/test_utils/Cargo.toml | 1 + 5 files changed, 5 insertions(+) diff --git a/crates/catalog/hms/Cargo.toml b/crates/catalog/hms/Cargo.toml index e03733b74..f44125c5a 100644 --- a/crates/catalog/hms/Cargo.toml +++ b/crates/catalog/hms/Cargo.toml @@ -20,6 +20,7 @@ name = "iceberg-catalog-hms" version = { workspace = true } edition = { workspace = true } homepage = { workspace = true } +rust-version = { workspace = true } categories = ["database"] description = "Apache Iceberg Hive Metastore Catalog Support" diff --git a/crates/catalog/rest/Cargo.toml b/crates/catalog/rest/Cargo.toml index b0a8be67b..7cb5fb954 100644 --- a/crates/catalog/rest/Cargo.toml +++ b/crates/catalog/rest/Cargo.toml @@ -20,6 +20,7 @@ name = "iceberg-catalog-rest" version = { workspace = true } edition = { workspace = true } homepage = { workspace = true } +rust-version = { workspace = true } categories = ["database"] description = "Apache Iceberg Rust REST API" diff --git a/crates/examples/Cargo.toml b/crates/examples/Cargo.toml index 64516ca29..2fb3060c1 100644 --- a/crates/examples/Cargo.toml +++ b/crates/examples/Cargo.toml @@ -22,6 +22,7 @@ edition = { workspace = true } homepage = { workspace = true } repository = { workspace = true } license = { workspace = true } +rust-version = { workspace = true } [dependencies] iceberg = { workspace = true } diff --git a/crates/iceberg/Cargo.toml b/crates/iceberg/Cargo.toml index 433c7bb9f..6af68a106 100644 --- a/crates/iceberg/Cargo.toml +++ b/crates/iceberg/Cargo.toml @@ -20,6 +20,7 @@ name = "iceberg" version = { workspace = true } edition = { workspace = true } homepage = { workspace = true } +rust-version = { workspace = true } categories = ["database"] description = "Apache Iceberg Rust implementation" diff --git a/crates/test_utils/Cargo.toml b/crates/test_utils/Cargo.toml index 9d396a624..d4f6e1696 100644 --- a/crates/test_utils/Cargo.toml +++ b/crates/test_utils/Cargo.toml @@ -20,6 +20,7 @@ name = "iceberg_test_utils" version = { workspace = true } edition = { workspace = true } homepage = { workspace = true } +rust-version = { workspace = true } repository = { workspace = true } license = { workspace = true }