From 9c4faad9637cf8b12cee8f8c5ad7fe3b4aef40cd Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Wed, 7 Jun 2023 16:44:36 -0700 Subject: [PATCH] Inherit `package.homepage` from the workspace --- Cargo.toml | 1 + crates/serde_spanned/Cargo.toml | 2 +- crates/serde_toml/Cargo.toml | 2 +- crates/toml/Cargo.toml | 2 +- crates/toml_datetime/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3a5d06bc..e2dcc109 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,7 @@ members = ["crates/*"] resolver = "2" [workspace.package] +homepage = "https://github.com/toml-rs/toml" repository = "https://github.com/toml-rs/toml" license = "MIT OR Apache-2.0" edition = "2021" diff --git a/crates/serde_spanned/Cargo.toml b/crates/serde_spanned/Cargo.toml index 82f4fb06..61d735de 100644 --- a/crates/serde_spanned/Cargo.toml +++ b/crates/serde_spanned/Cargo.toml @@ -5,7 +5,7 @@ keywords = ["serde", "span"] categories = ["encoding", "parser-implementations", "parsing", "config"] description = "Serde-compatible spanned Value" repository.workspace = true -homepage = "https://github.com/toml-rs/toml" +homepage.workspace = true license.workspace = true edition.workspace = true rust-version.workspace = true diff --git a/crates/serde_toml/Cargo.toml b/crates/serde_toml/Cargo.toml index a35739c6..f423a112 100644 --- a/crates/serde_toml/Cargo.toml +++ b/crates/serde_toml/Cargo.toml @@ -5,7 +5,7 @@ keywords = ["encoding", "toml"] categories = ["encoding", "parser-implementations", "parsing", "config"] description = "See instead `toml`" repository.workspace = true -homepage = "https://github.com/toml-rs/toml" +homepage.workspace = true license.workspace = true edition.workspace = true rust-version.workspace = true diff --git a/crates/toml/Cargo.toml b/crates/toml/Cargo.toml index a89772a6..279d2bd6 100644 --- a/crates/toml/Cargo.toml +++ b/crates/toml/Cargo.toml @@ -10,7 +10,7 @@ facilitate deserializing and serializing Rust structures. """ authors = ["Alex Crichton "] repository.workspace = true -homepage = "https://github.com/toml-rs/toml" +homepage.workspace = true license.workspace = true edition.workspace = true rust-version.workspace = true diff --git a/crates/toml_datetime/Cargo.toml b/crates/toml_datetime/Cargo.toml index 2cb1eaf5..767d01d4 100644 --- a/crates/toml_datetime/Cargo.toml +++ b/crates/toml_datetime/Cargo.toml @@ -6,7 +6,7 @@ categories = ["encoding", "parser-implementations", "parsing", "config"] description = "A TOML-compatible datetime type" authors = ["Alex Crichton "] repository.workspace = true -homepage = "https://github.com/toml-rs/toml" +homepage.workspace = true license.workspace = true edition.workspace = true rust-version.workspace = true