From 4db8fa0b7e644140e6e852c37567a39cc649c980 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Mon, 5 Feb 2024 20:24:52 -0800 Subject: [PATCH] chore: update all the package metadata for publication to crates.io --- Cargo.toml | 12 ++++++++++++ crates/aws/Cargo.toml | 10 +++++++++- crates/azure/Cargo.toml | 10 +++++++++- crates/catalog-glue/Cargo.toml | 10 +++++++++- crates/core/Cargo.toml | 19 +++++++++---------- crates/deltalake/Cargo.toml | 19 +++++++++---------- crates/gcp/Cargo.toml | 10 +++++++++- crates/sql/Cargo.toml | 10 +++++++++- 8 files changed, 75 insertions(+), 25 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index cfcb4eaf3c..a6819cde0b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,6 +7,18 @@ members = [ exclude = ["proofs"] resolver = "2" +[workspace.package] +authors = ["Qingping Hou "] +rust-version = "1.72" +keywords = ["deltalake", "delta", "datalake"] +readme = "README.md" +edition = "2021" +description = "Native Delta Lake implementation in Rust" +homepage = "https://github.com/delta-io/delta.rs" +license = "Apache-2.0" +documentation = "https://docs.rs/deltalake" +repository = "https://github.com/delta-io/delta.rs" + [profile.release-with-debug] inherits = "release" debug = true diff --git a/crates/aws/Cargo.toml b/crates/aws/Cargo.toml index b18729e262..a6606bd1fa 100644 --- a/crates/aws/Cargo.toml +++ b/crates/aws/Cargo.toml @@ -1,7 +1,15 @@ [package] name = "deltalake-aws" version = "0.1.0" -edition = "2021" +authors.workspace = true +keywords.workspace = true +readme.workspace = true +edition.workspace = true +homepage.workspace = true +description.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true [dependencies] deltalake-core = { version = "0.17.0", path = "../core" } diff --git a/crates/azure/Cargo.toml b/crates/azure/Cargo.toml index 7ed67f74c9..2e4b0ed9e5 100644 --- a/crates/azure/Cargo.toml +++ b/crates/azure/Cargo.toml @@ -1,7 +1,15 @@ [package] name = "deltalake-azure" version = "0.1.0" -edition = "2021" +authors.workspace = true +keywords.workspace = true +readme.workspace = true +edition.workspace = true +homepage.workspace = true +description.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true [dependencies] deltalake-core = { version = "0.17.0", path = "../core" } diff --git a/crates/catalog-glue/Cargo.toml b/crates/catalog-glue/Cargo.toml index a535cb8984..427323c3e0 100644 --- a/crates/catalog-glue/Cargo.toml +++ b/crates/catalog-glue/Cargo.toml @@ -1,7 +1,15 @@ [package] name = "deltalake-catalog-glue" version = "0.1.0" -edition = "2021" +authors.workspace = true +keywords.workspace = true +readme.workspace = true +edition.workspace = true +homepage.workspace = true +description.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true [dependencies] async-trait = { workspace = true } diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 4bd58a492c..896a29beed 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,16 +1,15 @@ [package] name = "deltalake-core" version = "0.17.0" -rust-version = "1.64" -authors = ["Qingping Hou "] -homepage = "https://github.com/delta-io/delta.rs" -license = "Apache-2.0" -keywords = ["deltalake", "delta", "datalake"] -description = "Native Delta Lake implementation in Rust" -documentation = "https://docs.rs/deltalake" -repository = "https://github.com/delta-io/delta.rs" -readme = "README.md" -edition = "2021" +authors.workspace = true +keywords.workspace = true +readme.workspace = true +edition.workspace = true +homepage.workspace = true +description.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true [package.metadata.docs.rs] # We cannot use all_features because TLS features are mutually exclusive. diff --git a/crates/deltalake/Cargo.toml b/crates/deltalake/Cargo.toml index 605957f5a0..5384df9680 100644 --- a/crates/deltalake/Cargo.toml +++ b/crates/deltalake/Cargo.toml @@ -1,16 +1,15 @@ [package] name = "deltalake" version = "0.17.0" -rust-version = "1.64" -authors = ["Qingping Hou "] -homepage = "https://github.com/delta-io/delta.rs" -license = "Apache-2.0" -keywords = ["deltalake", "delta", "datalake"] -description = "Native Delta Lake implementation in Rust" -documentation = "https://docs.rs/deltalake" -repository = "https://github.com/delta-io/delta.rs" -readme = "../README.md" -edition = "2021" +authors.workspace = true +keywords.workspace = true +readme.workspace = true +edition.workspace = true +homepage.workspace = true +description.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true [dependencies] deltalake-core = { path = "../core" } diff --git a/crates/gcp/Cargo.toml b/crates/gcp/Cargo.toml index c76bc917e4..186f508ace 100644 --- a/crates/gcp/Cargo.toml +++ b/crates/gcp/Cargo.toml @@ -1,7 +1,15 @@ [package] name = "deltalake-gcp" version = "0.1.0" -edition = "2021" +authors.workspace = true +keywords.workspace = true +readme.workspace = true +edition.workspace = true +homepage.workspace = true +description.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true [dependencies] deltalake-core = { version = "0.17.0", path = "../core" } diff --git a/crates/sql/Cargo.toml b/crates/sql/Cargo.toml index f6fb345a18..14457117b7 100644 --- a/crates/sql/Cargo.toml +++ b/crates/sql/Cargo.toml @@ -1,7 +1,15 @@ [package] name = "deltalake-sql" version = "0.1.0" -edition = "2021" +authors.workspace = true +keywords.workspace = true +readme.workspace = true +edition.workspace = true +homepage.workspace = true +description.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html