consensus_encoding: add conventinal manifest metadata
What changed, and why it matters
This commit only adds two standard metadata fields (homepage and documentation URLs) to a Rust package manifest file. It does not change any executable code, cryptographic logic, or network behavior. There is no security relevance.
No action required. This is a benign metadata-only change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff adds homepage and documentation keys to consensus_encoding/Cargo.toml for the bitcoin-consensus-encoding crate. This is a documentation/metadata-only change following the Rust API guidelines (C-METADATA). No source code, dependencies, features, or build configuration were modified.
Changed components
consensus_encoding/Cargo.tomlInspect captured patch +2 / −0
diff --git a/consensus_encoding/Cargo.toml b/consensus_encoding/Cargo.toml
index 4c43b081..ec3487d9 100644
--- a/consensus_encoding/Cargo.toml
+++ b/consensus_encoding/Cargo.toml
@@ -3,6 +3,8 @@ name = "bitcoin-consensus-encoding"
version = "1.0.0-rc.3"
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>", "Nick Johnson <nick@yonson.dev>", "Tobin C. Harding <me@tobin.cc>"]
license = "CC0-1.0"
+homepage = "https://rust-bitcoin.org/"
+documentation = "https://docs.rs/bitcoin-consensus-encoding/"
repository = "https://github.com/rust-bitcoin/rust-bitcoin/"
description = "Consensus encoding and decoding"
categories = ["cryptography::cryptocurrencies"]
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.