Skip to content

Commit

Permalink
#154 : Add homepage to Cargo.toml (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
hiirrxnn authored Jan 13, 2024
1 parent 5d1a02d commit 35f3481
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 16 deletions.
10 changes: 10 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@
resolver = "2"
members = ["crates/catalog/*", "crates/iceberg", "crates/test_utils"]

[workspace.package]
version = "0.1.0"
edition = "2021"
homepage = "https://rust.iceberg.apache.org/"

repository = "https://github.com/apache/iceberg-rust"
license = "Apache-2.0"

[workspace.dependencies]
anyhow = "1.0.72"
apache-avro = "0.16"
Expand Down Expand Up @@ -59,4 +67,6 @@ typed-builder = "^0.18"
url = "2"
urlencoding = "2"
uuid = "1.6.1"

tera = "1"

9 changes: 5 additions & 4 deletions crates/catalog/hms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,14 @@

[package]
name = "iceberg-catalog-hms"
version = "0.1.0"
edition = "2021"
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]
Expand Down
12 changes: 7 additions & 5 deletions crates/catalog/rest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +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]
Expand All @@ -45,3 +46,4 @@ iceberg_test_utils = { path = "../../test_utils", features = ["tests"] }
mockito = { workspace = true }
port_scanner = { workspace = true }
tokio = { workspace = true }

11 changes: 6 additions & 5 deletions crates/iceberg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,15 @@
# under the License.

[package]
name = "iceberg"
version = "0.1.0"
edition = "2021"
name = "iceberg"
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]
Expand Down
8 changes: 6 additions & 2 deletions crates/test_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,12 @@

[package]
name = "iceberg_test_utils"
version = "0.1.0"
edition = "2021"
version = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }

repository = { workspace = true }
license = { workspace = true }

[dependencies]
env_logger = { workspace = true }
Expand Down

0 comments on commit 35f3481

Please sign in to comment.