From 3f4d184cb804be5a3087558f6e6e0a5f7df16bec Mon Sep 17 00:00:00 2001 From: link2xt Date: Sun, 31 Mar 2024 17:42:41 +0000 Subject: [PATCH] Add `documentation` and `repository` metadata to Cargo.toml This makes it easier to find the source repository for crates published on crates.io page. --- src/index/japanese/Cargo.toml | 2 ++ src/index/korean/Cargo.toml | 2 ++ src/index/simpchinese/Cargo.toml | 2 ++ src/index/singlebyte/Cargo.toml | 2 ++ src/index/tests/Cargo.toml | 2 ++ src/index/tradchinese/Cargo.toml | 2 ++ 6 files changed, 12 insertions(+) diff --git a/src/index/japanese/Cargo.toml b/src/index/japanese/Cargo.toml index ee4d3db5..390a9b33 100644 --- a/src/index/japanese/Cargo.toml +++ b/src/index/japanese/Cargo.toml @@ -5,6 +5,8 @@ authors = ["Kang Seonghoon "] description = "Index tables for Japanese character encodings" homepage = "https://github.com/lifthrasiir/rust-encoding" +documentation = "https://lifthrasiir.github.io/rust-encoding/" +repository = "https://github.com/lifthrasiir/rust-encoding" readme = "../../../README.md" license = "CC0-1.0" diff --git a/src/index/korean/Cargo.toml b/src/index/korean/Cargo.toml index ac6fc21f..29898245 100644 --- a/src/index/korean/Cargo.toml +++ b/src/index/korean/Cargo.toml @@ -5,6 +5,8 @@ authors = ["Kang Seonghoon "] description = "Index tables for Korean character encodings" homepage = "https://github.com/lifthrasiir/rust-encoding" +documentation = "https://lifthrasiir.github.io/rust-encoding/" +repository = "https://github.com/lifthrasiir/rust-encoding" readme = "../../../README.md" license = "CC0-1.0" diff --git a/src/index/simpchinese/Cargo.toml b/src/index/simpchinese/Cargo.toml index afbbedeb..ec9dd67b 100644 --- a/src/index/simpchinese/Cargo.toml +++ b/src/index/simpchinese/Cargo.toml @@ -5,6 +5,8 @@ authors = ["Kang Seonghoon "] description = "Index tables for simplified Chinese character encodings" homepage = "https://github.com/lifthrasiir/rust-encoding" +documentation = "https://lifthrasiir.github.io/rust-encoding/" +repository = "https://github.com/lifthrasiir/rust-encoding" readme = "../../../README.md" license = "CC0-1.0" diff --git a/src/index/singlebyte/Cargo.toml b/src/index/singlebyte/Cargo.toml index 48ef6314..8c406c48 100644 --- a/src/index/singlebyte/Cargo.toml +++ b/src/index/singlebyte/Cargo.toml @@ -5,6 +5,8 @@ authors = ["Kang Seonghoon "] description = "Index tables for various single-byte character encodings" homepage = "https://github.com/lifthrasiir/rust-encoding" +documentation = "https://lifthrasiir.github.io/rust-encoding/" +repository = "https://github.com/lifthrasiir/rust-encoding" readme = "../../../README.md" license = "CC0-1.0" diff --git a/src/index/tests/Cargo.toml b/src/index/tests/Cargo.toml index 024f4fb7..0e79e591 100644 --- a/src/index/tests/Cargo.toml +++ b/src/index/tests/Cargo.toml @@ -5,6 +5,8 @@ authors = ["Kang Seonghoon "] description = "Helper macros used to test index tables for character encodings" homepage = "https://github.com/lifthrasiir/rust-encoding" +documentation = "https://lifthrasiir.github.io/rust-encoding/" +repository = "https://github.com/lifthrasiir/rust-encoding" readme = "../../../README.md" license = "CC0-1.0" diff --git a/src/index/tradchinese/Cargo.toml b/src/index/tradchinese/Cargo.toml index f2b05fcf..e2369a2b 100644 --- a/src/index/tradchinese/Cargo.toml +++ b/src/index/tradchinese/Cargo.toml @@ -5,6 +5,8 @@ authors = ["Kang Seonghoon "] description = "Index tables for traditional Chinese character encodings" homepage = "https://github.com/lifthrasiir/rust-encoding" +documentation = "https://lifthrasiir.github.io/rust-encoding/" +repository = "https://github.com/lifthrasiir/rust-encoding" readme = "../../../README.md" license = "CC0-1.0"