From 0807afdd93d9180d97d08b2413df37e7341a11b0 Mon Sep 17 00:00:00 2001 From: hiirrxnn Date: Mon, 8 Jan 2024 23:40:29 +0530 Subject: [PATCH 01/13] Homepage added to Cargo.toml --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index c36dfc4e4..a34d7a9b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -59,3 +59,7 @@ typed-builder = "^0.18" url = "2" urlencoding = "2" uuid = "1.6.1" + +[package] +# ... +homepage = "https://iceberg.apache.org" From 398715303509e5d87733e161c8cf68e699f2a4d7 Mon Sep 17 00:00:00 2001 From: hiirrxnn Date: Tue, 9 Jan 2024 05:28:46 +0530 Subject: [PATCH 02/13] Homepage added to all cargo.toml files in crates --- crates/catalog/hms/Cargo.toml | 6 +++++- crates/catalog/rest/Cargo.toml | 4 ++++ crates/iceberg/Cargo.toml | 4 ++++ crates/test_utils/Cargo.toml | 4 ++++ 4 files changed, 17 insertions(+), 1 deletion(-) diff --git a/crates/catalog/hms/Cargo.toml b/crates/catalog/hms/Cargo.toml index 61c03fddf..9a00b234a 100644 --- a/crates/catalog/hms/Cargo.toml +++ b/crates/catalog/hms/Cargo.toml @@ -22,7 +22,7 @@ edition = "2021" categories = ["database"] description = "Apache Iceberg Hive Metastore Catalog Support" -repository = "https://github.com/apache/iceberg-rust" +repository = "https://github.com/apache/iceberg-rust" license = "Apache-2.0" keywords = ["iceberg", "hive", "catalog"] @@ -37,3 +37,7 @@ iceberg = { workspace = true } # crate, built from the thrift upstream with only version bumped. thrift = { package = "tent-thrift", version = "0.18.1" } typed-builder = { workspace = true } + +[package] + # ... + homepage = "https://iceberg.apache.org" \ No newline at end of file diff --git a/crates/catalog/rest/Cargo.toml b/crates/catalog/rest/Cargo.toml index 883f55c02..a5f14b5cd 100644 --- a/crates/catalog/rest/Cargo.toml +++ b/crates/catalog/rest/Cargo.toml @@ -45,3 +45,7 @@ iceberg_test_utils = { path = "../../test_utils", features = ["tests"] } mockito = { workspace = true } port_scanner = { workspace = true } tokio = { workspace = true } + +[package] + # ... + homepage = "https://iceberg.apache.org" diff --git a/crates/iceberg/Cargo.toml b/crates/iceberg/Cargo.toml index b4867bbe4..e3a164e41 100644 --- a/crates/iceberg/Cargo.toml +++ b/crates/iceberg/Cargo.toml @@ -63,3 +63,7 @@ uuid = { workspace = true } pretty_assertions = { workspace = true } tempfile = { workspace = true } tokio = { workspace = true } + +[package] + # ... + homepage = "https://iceberg.apache.org" \ No newline at end of file diff --git a/crates/test_utils/Cargo.toml b/crates/test_utils/Cargo.toml index 91210c50f..ee7078acf 100644 --- a/crates/test_utils/Cargo.toml +++ b/crates/test_utils/Cargo.toml @@ -26,3 +26,7 @@ log = "0.4.20" [features] tests = [] + +[package] + # ... + homepage = "https://iceberg.apache.org" \ No newline at end of file From 520ba35074240455eadda5ae59a84a4e264a8a26 Mon Sep 17 00:00:00 2001 From: hiirrxnn Date: Tue, 9 Jan 2024 05:32:13 +0530 Subject: [PATCH 03/13] Homepage added to all cargo.toml files --- crates/catalog/hms/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/catalog/hms/Cargo.toml b/crates/catalog/hms/Cargo.toml index 9a00b234a..2cf6382a5 100644 --- a/crates/catalog/hms/Cargo.toml +++ b/crates/catalog/hms/Cargo.toml @@ -22,7 +22,7 @@ edition = "2021" categories = ["database"] description = "Apache Iceberg Hive Metastore Catalog Support" -repository = "https://github.com/apache/iceberg-rust" +repository = "https://github.com/apache/iceberg-rust" license = "Apache-2.0" keywords = ["iceberg", "hive", "catalog"] From b3e118e5cf3c9e174c84620beb001216b370ebdb Mon Sep 17 00:00:00 2001 From: hiirrxnn Date: Tue, 9 Jan 2024 05:34:42 +0530 Subject: [PATCH 04/13] edited links --- crates/catalog/hms/Cargo.toml | 3 ++- crates/iceberg/Cargo.toml | 3 ++- crates/test_utils/Cargo.toml | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/crates/catalog/hms/Cargo.toml b/crates/catalog/hms/Cargo.toml index 2cf6382a5..d8e3188c3 100644 --- a/crates/catalog/hms/Cargo.toml +++ b/crates/catalog/hms/Cargo.toml @@ -40,4 +40,5 @@ typed-builder = { workspace = true } [package] # ... - homepage = "https://iceberg.apache.org" \ No newline at end of file + homepage = "https://iceberg.apache.org" + \ No newline at end of file diff --git a/crates/iceberg/Cargo.toml b/crates/iceberg/Cargo.toml index e3a164e41..6919a1c42 100644 --- a/crates/iceberg/Cargo.toml +++ b/crates/iceberg/Cargo.toml @@ -66,4 +66,5 @@ tokio = { workspace = true } [package] # ... - homepage = "https://iceberg.apache.org" \ No newline at end of file + homepage = "https://iceberg.apache.org" + \ No newline at end of file diff --git a/crates/test_utils/Cargo.toml b/crates/test_utils/Cargo.toml index ee7078acf..a55bcc0bb 100644 --- a/crates/test_utils/Cargo.toml +++ b/crates/test_utils/Cargo.toml @@ -29,4 +29,5 @@ tests = [] [package] # ... - homepage = "https://iceberg.apache.org" \ No newline at end of file + homepage = "https://iceberg.apache.org" + \ No newline at end of file From 3295fe71e07123a470187669b37987cf0e85cd54 Mon Sep 17 00:00:00 2001 From: hiirrxnn Date: Tue, 9 Jan 2024 05:37:03 +0530 Subject: [PATCH 05/13] . --- crates/catalog/hms/Cargo.toml | 3 +-- crates/iceberg/Cargo.toml | 3 +-- crates/test_utils/Cargo.toml | 3 +-- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/crates/catalog/hms/Cargo.toml b/crates/catalog/hms/Cargo.toml index d8e3188c3..fa79fc234 100644 --- a/crates/catalog/hms/Cargo.toml +++ b/crates/catalog/hms/Cargo.toml @@ -40,5 +40,4 @@ typed-builder = { workspace = true } [package] # ... - homepage = "https://iceberg.apache.org" - \ No newline at end of file + homepage = "https://iceberg.apache.org" \ No newline at end of file diff --git a/crates/iceberg/Cargo.toml b/crates/iceberg/Cargo.toml index 6919a1c42..9d2bcf1fb 100644 --- a/crates/iceberg/Cargo.toml +++ b/crates/iceberg/Cargo.toml @@ -66,5 +66,4 @@ tokio = { workspace = true } [package] # ... - homepage = "https://iceberg.apache.org" - \ No newline at end of file + homepage = "https://iceberg.apache.org" \ No newline at end of file diff --git a/crates/test_utils/Cargo.toml b/crates/test_utils/Cargo.toml index a55bcc0bb..9cae577ff 100644 --- a/crates/test_utils/Cargo.toml +++ b/crates/test_utils/Cargo.toml @@ -29,5 +29,4 @@ tests = [] [package] # ... - homepage = "https://iceberg.apache.org" - \ No newline at end of file + homepage = "https://iceberg.apache.org" \ No newline at end of file From 59b56739a318364740f2e23d22342dce769afb80 Mon Sep 17 00:00:00 2001 From: hiirrxnn Date: Tue, 9 Jan 2024 08:21:12 +0530 Subject: [PATCH 06/13] added homepage to cargo.toml or workspace , then in each packagra set homepage = {workspace=true} --- Cargo.toml | 6 +++--- crates/catalog/hms/Cargo.toml | 7 ++----- crates/catalog/rest/Cargo.toml | 4 +--- crates/iceberg/Cargo.toml | 5 +---- crates/test_utils/Cargo.toml | 5 +---- 5 files changed, 8 insertions(+), 19 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a34d7a9b8..154aa948c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,6 +19,9 @@ resolver = "2" members = ["crates/catalog/*", "crates/iceberg", "crates/test_utils"] +[workspace.package] +homepage = {url = "https://rust.iceberg.apache.org/"} + [workspace.dependencies] anyhow = "1.0.72" apache-avro = "0.16" @@ -60,6 +63,3 @@ url = "2" urlencoding = "2" uuid = "1.6.1" -[package] -# ... -homepage = "https://iceberg.apache.org" diff --git a/crates/catalog/hms/Cargo.toml b/crates/catalog/hms/Cargo.toml index fa79fc234..af82f5f6c 100644 --- a/crates/catalog/hms/Cargo.toml +++ b/crates/catalog/hms/Cargo.toml @@ -19,6 +19,7 @@ name = "iceberg-catalog-hms" version = "0.1.0" edition = "2021" +homepage = {workspace = true} categories = ["database"] description = "Apache Iceberg Hive Metastore Catalog Support" @@ -36,8 +37,4 @@ iceberg = { workspace = true } # issue. And [tent-thrift](https://github.com/tent-rs/thrift) is a fork of the thrift # crate, built from the thrift upstream with only version bumped. thrift = { package = "tent-thrift", version = "0.18.1" } -typed-builder = { workspace = true } - -[package] - # ... - homepage = "https://iceberg.apache.org" \ No newline at end of file +typed-builder = { workspace = true } \ No newline at end of file diff --git a/crates/catalog/rest/Cargo.toml b/crates/catalog/rest/Cargo.toml index a5f14b5cd..75061ff95 100644 --- a/crates/catalog/rest/Cargo.toml +++ b/crates/catalog/rest/Cargo.toml @@ -19,6 +19,7 @@ name = "iceberg-catalog-rest" version = "0.1.0" edition = "2021" +homepage = {workspace = true} categories = ["database"] description = "Apache Iceberg Rust REST API" @@ -46,6 +47,3 @@ mockito = { workspace = true } port_scanner = { workspace = true } tokio = { workspace = true } -[package] - # ... - homepage = "https://iceberg.apache.org" diff --git a/crates/iceberg/Cargo.toml b/crates/iceberg/Cargo.toml index 9d2bcf1fb..5489ae5af 100644 --- a/crates/iceberg/Cargo.toml +++ b/crates/iceberg/Cargo.toml @@ -19,6 +19,7 @@ name = "iceberg" version = "0.1.0" edition = "2021" +homepage = {workspace = true} categories = ["database"] description = "Apache Iceberg Rust implementation" @@ -63,7 +64,3 @@ uuid = { workspace = true } pretty_assertions = { workspace = true } tempfile = { workspace = true } tokio = { workspace = true } - -[package] - # ... - homepage = "https://iceberg.apache.org" \ No newline at end of file diff --git a/crates/test_utils/Cargo.toml b/crates/test_utils/Cargo.toml index 9cae577ff..5b4a5a377 100644 --- a/crates/test_utils/Cargo.toml +++ b/crates/test_utils/Cargo.toml @@ -19,6 +19,7 @@ name = "iceberg_test_utils" version = "0.1.0" edition = "2021" +homepage = {workspace = true} [dependencies] env_logger = { workspace = true } @@ -26,7 +27,3 @@ log = "0.4.20" [features] tests = [] - -[package] - # ... - homepage = "https://iceberg.apache.org" \ No newline at end of file From 0c3843c8f0f1c75d8536309f2752eec59c571b21 Mon Sep 17 00:00:00 2001 From: hiirrxnn Date: Tue, 9 Jan 2024 18:23:44 +0530 Subject: [PATCH 07/13] modified version , edition , license and repository --- Cargo.toml | 6 ++++++ crates/catalog/hms/Cargo.toml | 10 +++++----- crates/catalog/rest/Cargo.toml | 10 +++++----- crates/iceberg/Cargo.toml | 10 +++++----- crates/test_utils/Cargo.toml | 9 ++++++--- 5 files changed, 27 insertions(+), 18 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 154aa948c..c139e5097 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,8 +20,14 @@ resolver = "2" members = ["crates/catalog/*", "crates/iceberg", "crates/test_utils"] [workspace.package] +name = "iceberg-catalog-rest" +version = "0.1.0" +edition = "2021" homepage = {url = "https://rust.iceberg.apache.org/"} +repository = { url = "https://github.com/apache/iceberg-rust" } +license = "Apache-2.0" + [workspace.dependencies] anyhow = "1.0.72" apache-avro = "0.16" diff --git a/crates/catalog/hms/Cargo.toml b/crates/catalog/hms/Cargo.toml index af82f5f6c..74c15bfce 100644 --- a/crates/catalog/hms/Cargo.toml +++ b/crates/catalog/hms/Cargo.toml @@ -16,15 +16,15 @@ # under the License. [package] -name = "iceberg-catalog-hms" -version = "0.1.0" -edition = "2021" +name = "iceberg-catalog-rest" +version = {workspace = true} +edition = {workspace = true} homepage = {workspace = true} categories = ["database"] description = "Apache Iceberg Hive Metastore Catalog Support" -repository = "https://github.com/apache/iceberg-rust" -license = "Apache-2.0" +repository = {workspace = true} +license = {workspace = true} keywords = ["iceberg", "hive", "catalog"] [dependencies] diff --git a/crates/catalog/rest/Cargo.toml b/crates/catalog/rest/Cargo.toml index 75061ff95..3c115c661 100644 --- a/crates/catalog/rest/Cargo.toml +++ b/crates/catalog/rest/Cargo.toml @@ -16,15 +16,15 @@ # under the License. [package] -name = "iceberg-catalog-rest" -version = "0.1.0" -edition = "2021" +name = "iceberg-catalog-rest" +version = {workspace = true} +edition = {workspace = true} homepage = {workspace = true} categories = ["database"] description = "Apache Iceberg Rust REST API" -repository = "https://github.com/apache/iceberg-rust" -license = "Apache-2.0" +repository = {workspace = true} +license = {workspace = true} keywords = ["iceberg", "rest", "catalog"] [dependencies] diff --git a/crates/iceberg/Cargo.toml b/crates/iceberg/Cargo.toml index 5489ae5af..52d30a141 100644 --- a/crates/iceberg/Cargo.toml +++ b/crates/iceberg/Cargo.toml @@ -16,15 +16,15 @@ # under the License. [package] -name = "iceberg" -version = "0.1.0" -edition = "2021" +name = "iceberg-catalog-rest" +version = {workspace = true} +edition = {workspace = true} homepage = {workspace = true} categories = ["database"] description = "Apache Iceberg Rust implementation" -repository = "https://github.com/apache/iceberg-rust" -license = "Apache-2.0" +repository = {workspace = true} +license = {workspace = true} keywords = ["iceberg"] [dependencies] diff --git a/crates/test_utils/Cargo.toml b/crates/test_utils/Cargo.toml index 5b4a5a377..cdf4d00cf 100644 --- a/crates/test_utils/Cargo.toml +++ b/crates/test_utils/Cargo.toml @@ -16,11 +16,14 @@ # under the License. [package] -name = "iceberg_test_utils" -version = "0.1.0" -edition = "2021" +name = "iceberg-catalog-rest" +version = {workspace = true} +edition = {workspace = true} homepage = {workspace = true} +repository = {workspace = true} +license = {workspace = true} + [dependencies] env_logger = { workspace = true } log = "0.4.20" From 079cda5abb4f2c585de0d6dbdd99f79de1c4bb15 Mon Sep 17 00:00:00 2001 From: hiirrxnn Date: Tue, 9 Jan 2024 18:29:08 +0530 Subject: [PATCH 08/13] edited files --- crates/catalog/hms/Cargo.toml | 2 +- crates/iceberg/Cargo.toml | 2 +- crates/test_utils/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/catalog/hms/Cargo.toml b/crates/catalog/hms/Cargo.toml index 74c15bfce..8a83238ff 100644 --- a/crates/catalog/hms/Cargo.toml +++ b/crates/catalog/hms/Cargo.toml @@ -16,7 +16,7 @@ # under the License. [package] -name = "iceberg-catalog-rest" +name = "iceberg-catalog-hms" version = {workspace = true} edition = {workspace = true} homepage = {workspace = true} diff --git a/crates/iceberg/Cargo.toml b/crates/iceberg/Cargo.toml index 52d30a141..085ac1e28 100644 --- a/crates/iceberg/Cargo.toml +++ b/crates/iceberg/Cargo.toml @@ -16,7 +16,7 @@ # under the License. [package] -name = "iceberg-catalog-rest" +name = "iceberg" version = {workspace = true} edition = {workspace = true} homepage = {workspace = true} diff --git a/crates/test_utils/Cargo.toml b/crates/test_utils/Cargo.toml index cdf4d00cf..223b7d915 100644 --- a/crates/test_utils/Cargo.toml +++ b/crates/test_utils/Cargo.toml @@ -16,7 +16,7 @@ # under the License. [package] -name = "iceberg-catalog-rest" +name = "iceberg_test_utils" version = {workspace = true} edition = {workspace = true} homepage = {workspace = true} From 92313063096633ba664ae348e0431c5f3ba4983f Mon Sep 17 00:00:00 2001 From: hiirrxnn Date: Tue, 9 Jan 2024 18:31:29 +0530 Subject: [PATCH 09/13] fixed typos --- Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c139e5097..2c0700fab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,6 @@ resolver = "2" members = ["crates/catalog/*", "crates/iceberg", "crates/test_utils"] [workspace.package] -name = "iceberg-catalog-rest" version = "0.1.0" edition = "2021" homepage = {url = "https://rust.iceberg.apache.org/"} From 48b017930d41292ea01b219dae98e3c96172ab3f Mon Sep 17 00:00:00 2001 From: hiirrxnn Date: Tue, 9 Jan 2024 18:34:12 +0530 Subject: [PATCH 10/13] fixed errors --- crates/test_utils/Cargo.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/crates/test_utils/Cargo.toml b/crates/test_utils/Cargo.toml index 223b7d915..3cae7fa35 100644 --- a/crates/test_utils/Cargo.toml +++ b/crates/test_utils/Cargo.toml @@ -21,9 +21,6 @@ version = {workspace = true} edition = {workspace = true} homepage = {workspace = true} -repository = {workspace = true} -license = {workspace = true} - [dependencies] env_logger = { workspace = true } log = "0.4.20" From b9a74c568ca71656292ba31433862110c6b92232 Mon Sep 17 00:00:00 2001 From: hiirrxnn Date: Tue, 9 Jan 2024 22:43:07 +0530 Subject: [PATCH 11/13] url fixed --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2c0700fab..a9886b03a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,9 +22,9 @@ members = ["crates/catalog/*", "crates/iceberg", "crates/test_utils"] [workspace.package] version = "0.1.0" edition = "2021" -homepage = {url = "https://rust.iceberg.apache.org/"} +homepage = "https://rust.iceberg.apache.org/" -repository = { url = "https://github.com/apache/iceberg-rust" } +repository = "https://github.com/apache/iceberg-rust" license = "Apache-2.0" [workspace.dependencies] From 777addab185c9d2be7bc66200d438461be1fb9c6 Mon Sep 17 00:00:00 2001 From: hiirrxnn Date: Wed, 10 Jan 2024 07:09:07 +0530 Subject: [PATCH 12/13] added repo and license to last file --- crates/test_utils/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/test_utils/Cargo.toml b/crates/test_utils/Cargo.toml index 3cae7fa35..223b7d915 100644 --- a/crates/test_utils/Cargo.toml +++ b/crates/test_utils/Cargo.toml @@ -21,6 +21,9 @@ version = {workspace = true} edition = {workspace = true} homepage = {workspace = true} +repository = {workspace = true} +license = {workspace = true} + [dependencies] env_logger = { workspace = true } log = "0.4.20" From 865dc0c919630b26963ccab52cf92cd89ec2494d Mon Sep 17 00:00:00 2001 From: hiirrxnn Date: Fri, 12 Jan 2024 22:03:18 +0530 Subject: [PATCH 13/13] cargo sort -w fixed --- crates/catalog/hms/Cargo.toml | 12 ++++++------ crates/catalog/rest/Cargo.toml | 10 +++++----- crates/iceberg/Cargo.toml | 10 +++++----- crates/test_utils/Cargo.toml | 10 +++++----- 4 files changed, 21 insertions(+), 21 deletions(-) diff --git a/crates/catalog/hms/Cargo.toml b/crates/catalog/hms/Cargo.toml index 8a83238ff..b35dd5aeb 100644 --- a/crates/catalog/hms/Cargo.toml +++ b/crates/catalog/hms/Cargo.toml @@ -17,14 +17,14 @@ [package] name = "iceberg-catalog-hms" -version = {workspace = true} -edition = {workspace = true} -homepage = {workspace = true} +version = { workspace = true } +edition = { workspace = true } +homepage = { workspace = true } categories = ["database"] description = "Apache Iceberg Hive Metastore Catalog Support" -repository = {workspace = true} -license = {workspace = true} +repository = { workspace = true } +license = { workspace = true } keywords = ["iceberg", "hive", "catalog"] [dependencies] @@ -37,4 +37,4 @@ iceberg = { workspace = true } # issue. And [tent-thrift](https://github.com/tent-rs/thrift) is a fork of the thrift # crate, built from the thrift upstream with only version bumped. thrift = { package = "tent-thrift", version = "0.18.1" } -typed-builder = { workspace = true } \ No newline at end of file +typed-builder = { workspace = true } diff --git a/crates/catalog/rest/Cargo.toml b/crates/catalog/rest/Cargo.toml index 3c115c661..31017de06 100644 --- a/crates/catalog/rest/Cargo.toml +++ b/crates/catalog/rest/Cargo.toml @@ -17,14 +17,14 @@ [package] name = "iceberg-catalog-rest" -version = {workspace = true} -edition = {workspace = true} -homepage = {workspace = true} +version = { workspace = true } +edition = { workspace = true } +homepage = { workspace = true } categories = ["database"] description = "Apache Iceberg Rust REST API" -repository = {workspace = true} -license = {workspace = true} +repository = { workspace = true } +license = { workspace = true } keywords = ["iceberg", "rest", "catalog"] [dependencies] diff --git a/crates/iceberg/Cargo.toml b/crates/iceberg/Cargo.toml index 085ac1e28..1f3e3557b 100644 --- a/crates/iceberg/Cargo.toml +++ b/crates/iceberg/Cargo.toml @@ -17,14 +17,14 @@ [package] name = "iceberg" -version = {workspace = true} -edition = {workspace = true} -homepage = {workspace = true} +version = { workspace = true } +edition = { workspace = true } +homepage = { workspace = true } categories = ["database"] description = "Apache Iceberg Rust implementation" -repository = {workspace = true} -license = {workspace = true} +repository = { workspace = true } +license = { workspace = true } keywords = ["iceberg"] [dependencies] diff --git a/crates/test_utils/Cargo.toml b/crates/test_utils/Cargo.toml index 223b7d915..420c9ca71 100644 --- a/crates/test_utils/Cargo.toml +++ b/crates/test_utils/Cargo.toml @@ -17,12 +17,12 @@ [package] name = "iceberg_test_utils" -version = {workspace = true} -edition = {workspace = true} -homepage = {workspace = true} +version = { workspace = true } +edition = { workspace = true } +homepage = { workspace = true } -repository = {workspace = true} -license = {workspace = true} +repository = { workspace = true } +license = { workspace = true } [dependencies] env_logger = { workspace = true }