This is an automated email from the ASF dual-hosted git repository.

fokko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-rust.git


The following commit(s) were added to refs/heads/main by this push:
     new 5c23124  Fix: add required rust version in cargo.toml (#193)
5c23124 is described below

commit 5c23124dd0137c244ee80f1ff8f8f7d6517785df
Author: Dinesh Phuyel <[email protected]>
AuthorDate: Mon Feb 19 15:14:57 2024 +0545

    Fix: add required rust version in cargo.toml (#193)
    
    * Fix: add required rust version in cargo.toml
    
    * added rust-version to workspace=true in package
---
 Cargo.toml                     | 1 +
 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 +
 6 files changed, 6 insertions(+)

diff --git a/Cargo.toml b/Cargo.toml
index 010cc2b..8301d1f 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"
diff --git a/crates/catalog/hms/Cargo.toml b/crates/catalog/hms/Cargo.toml
index e03733b..f44125c 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 b0a8be6..7cb5fb9 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 64516ca..2fb3060 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 433c7bb..6af68a1 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 9d396a6..d4f6e16 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 }

Reply via email to