From c15f8dee29f10ac5df0000f171dfd6984fc06999 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Fri, 3 Feb 2023 09:26:22 +1100 Subject: [PATCH] Improve manifest package section Improve all manifest package sections by doing: - Order the list of options uniformly - Remove unnecessary homepage option (currently same as repo) - Add categories section --- bitcoin/Cargo.toml | 6 +++--- hashes/Cargo.toml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitcoin/Cargo.toml b/bitcoin/Cargo.toml index 5ef9d0e3..87d4b78d 100644 --- a/bitcoin/Cargo.toml +++ b/bitcoin/Cargo.toml @@ -3,14 +3,14 @@ name = "bitcoin" version = "0.29.0" authors = ["Andrew Poelstra "] license = "CC0-1.0" -homepage = "https://github.com/rust-bitcoin/rust-bitcoin/" repository = "https://github.com/rust-bitcoin/rust-bitcoin/" documentation = "https://docs.rs/bitcoin/" -description = "General purpose library for using and interoperating with Bitcoin and other cryptocurrencies." +description = "General purpose library for using and interoperating with Bitcoin." +categories = ["cryptography::cryptocurrencies"] keywords = [ "crypto", "bitcoin" ] readme = "README.md" -exclude = ["tests", "contrib"] edition = "2018" +exclude = ["tests", "contrib"] # Please don't forget to add relevant features to docs.rs below [features] diff --git a/hashes/Cargo.toml b/hashes/Cargo.toml index aef9ce6d..3822218c 100644 --- a/hashes/Cargo.toml +++ b/hashes/Cargo.toml @@ -3,10 +3,10 @@ name = "bitcoin_hashes" version = "0.11.0" authors = ["Andrew Poelstra "] license = "CC0-1.0" -description = "Hash functions used by rust-bitcoin which support rustc 1.41.1" -homepage = "https://github.com/rust-bitcoin/bitcoin_hashes/" repository = "https://github.com/rust-bitcoin/bitcoin_hashes/" documentation = "https://docs.rs/bitcoin_hashes/" +description = "Hash functions used by the rust-bitcoin eccosystem" +categories = ["algorithms"] keywords = [ "crypto", "bitcoin", "hash", "digest" ] readme = "README.md" edition = "2018"