From 6f52b8131ba37dd7349e0c35c7413ab1f8837bb5 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 27 Jul 2022 11:52:55 +1000 Subject: [PATCH 1/2] Add rust-bitcoin devs to authors In preparation for attempting to stabilise this library add "the rust-bitcoin developers" to the authors. This is both for attribution and to accept responsibility if we do anything wrong. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d4f2391e1..c7c2b8949 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bech32" version = "0.9.1" -authors = ["Clark Moody"] +authors = ["Clark Moody", "The rust-bitcoin developers"] repository = "https://github.com/rust-bitcoin/rust-bech32" description = "Encodes and decodes the Bech32 format" readme = "README.md" From b8a448fc322bdabdd9a0deee3b9c0f319f9b1269 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 27 Jul 2022 11:53:59 +1000 Subject: [PATCH 2/2] Add documentation field to manifest Add a `documentation` field to the `package` section of the manifest pointing to `https://docs.rs/bech32`. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index c7c2b8949..36f8d65bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,7 @@ name = "bech32" version = "0.9.1" authors = ["Clark Moody", "The rust-bitcoin developers"] repository = "https://github.com/rust-bitcoin/rust-bech32" +documentation = "https://docs.rs/bech32/" description = "Encodes and decodes the Bech32 format" readme = "README.md" keywords = ["base32", "encoding", "bech32"]