From 5c23124dd0137c244ee80f1ff8f8f7d6517785df Mon Sep 17 00:00:00 2001 From: Dinesh Phuyel <86118075+dp-0@users.noreply.github.com> Date: Mon, 19 Feb 2024 15:14:57 +0545 Subject: [PATCH] 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 010cc2b39..8301d1f29 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 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 }