Skip to content

Commit dbaf5fb

Browse files
hiirrxnnshaeqahmed
authored andcommitted
apache#154 : Add homepage to Cargo.toml (apache#160)
1 parent d33e36e commit dbaf5fb

File tree

5 files changed

+34
-16
lines changed

5 files changed

+34
-16
lines changed

Cargo.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,14 @@
1919
resolver = "2"
2020
members = ["crates/catalog/*", "crates/iceberg", "crates/test_utils"]
2121

22+
[workspace.package]
23+
version = "0.1.0"
24+
edition = "2021"
25+
homepage = "https://rust.iceberg.apache.org/"
26+
27+
repository = "https://github.com/apache/iceberg-rust"
28+
license = "Apache-2.0"
29+
2230
[workspace.dependencies]
2331
anyhow = "1.0.72"
2432
apache-avro = "0.16"
@@ -59,4 +67,6 @@ typed-builder = "^0.18"
5967
url = "2"
6068
urlencoding = "2"
6169
uuid = "1.6.1"
70+
6271
tera = "1"
72+

crates/catalog/hms/Cargo.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,14 @@
1717

1818
[package]
1919
name = "iceberg-catalog-hms"
20-
version = "0.1.0"
21-
edition = "2021"
20+
version = { workspace = true }
21+
edition = { workspace = true }
22+
homepage = { workspace = true }
2223

2324
categories = ["database"]
2425
description = "Apache Iceberg Hive Metastore Catalog Support"
25-
repository = "https://github.com/apache/iceberg-rust"
26-
license = "Apache-2.0"
26+
repository = { workspace = true }
27+
license = { workspace = true }
2728
keywords = ["iceberg", "hive", "catalog"]
2829

2930
[dependencies]

crates/catalog/rest/Cargo.toml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,15 @@
1616
# under the License.
1717

1818
[package]
19-
name = "iceberg-catalog-rest"
20-
version = "0.1.0"
21-
edition = "2021"
19+
name = "iceberg-catalog-rest"
20+
version = { workspace = true }
21+
edition = { workspace = true }
22+
homepage = { workspace = true }
2223

2324
categories = ["database"]
2425
description = "Apache Iceberg Rust REST API"
25-
repository = "https://github.com/apache/iceberg-rust"
26-
license = "Apache-2.0"
26+
repository = { workspace = true }
27+
license = { workspace = true }
2728
keywords = ["iceberg", "rest", "catalog"]
2829

2930
[dependencies]
@@ -45,3 +46,4 @@ iceberg_test_utils = { path = "../../test_utils", features = ["tests"] }
4546
mockito = { workspace = true }
4647
port_scanner = { workspace = true }
4748
tokio = { workspace = true }
49+

crates/iceberg/Cargo.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,15 @@
1616
# under the License.
1717

1818
[package]
19-
name = "iceberg"
20-
version = "0.1.0"
21-
edition = "2021"
19+
name = "iceberg"
20+
version = { workspace = true }
21+
edition = { workspace = true }
22+
homepage = { workspace = true }
2223

2324
categories = ["database"]
2425
description = "Apache Iceberg Rust implementation"
25-
repository = "https://github.com/apache/iceberg-rust"
26-
license = "Apache-2.0"
26+
repository = { workspace = true }
27+
license = { workspace = true }
2728
keywords = ["iceberg"]
2829

2930
[dependencies]

crates/test_utils/Cargo.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,12 @@
1717

1818
[package]
1919
name = "iceberg_test_utils"
20-
version = "0.1.0"
21-
edition = "2021"
20+
version = { workspace = true }
21+
edition = { workspace = true }
22+
homepage = { workspace = true }
23+
24+
repository = { workspace = true }
25+
license = { workspace = true }
2226

2327
[dependencies]
2428
env_logger = { workspace = true }

0 commit comments

Comments
 (0)