From bd75a368235b5575f8f7e12d800a7b08ffbfbe28 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Mon, 20 Apr 2026 09:17:37 +1000 Subject: [PATCH 1/4] site: Set miniscript params.social to 2 I don't actually know what this does but the change looks like its needed and the site builds still ... --- site/config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/config.toml b/site/config.toml index 2c5704f..c4a65ac 100644 --- a/site/config.toml +++ b/site/config.toml @@ -33,6 +33,6 @@ name = "bitcoin" url = "https://github.com/rust-bitcoin/rust-bitcoin" [[params.social]] -key = 1 +key = 2 name = "miniscript" url = "https://github.com/rust-bitcoin/rust-miniscript" From 134f9da09c0b18879496acaea86f7859a68df459 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Mon, 20 Apr 2026 09:18:38 +1000 Subject: [PATCH 2/4] site: Link to forge for secp256k1 Link to the new Forgejo instance for secp. --- site/config.toml | 2 +- site/content/about.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/site/config.toml b/site/config.toml index c4a65ac..f17de16 100644 --- a/site/config.toml +++ b/site/config.toml @@ -25,7 +25,7 @@ footerHTML = 'License CC-01 , Built with Date: Mon, 20 Apr 2026 09:22:09 +1000 Subject: [PATCH 3/4] site: Replace old RPC link with new `corepc` is the org favoured Core RPC repository now. Link to it instead of the old `rust-bitcoincore-rpc` (sorry Steven). --- site/content/about.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/content/about.md b/site/content/about.md index 01e20f3..1766012 100644 --- a/site/content/about.md +++ b/site/content/about.md @@ -15,8 +15,8 @@ primitives. It is designed for Rust programs built to work with the Bitcoin netw The rust-bitcoin organization includes a number of repositories containing various Rust crates that you may find useful when writing Rust code that interacts with the Bitcoin network. -- [rust-bitcoincore-rpc](https://github.com/rust-bitcoin/rust-bitcoincore-rpc): A client library for - the Bitcoin Core JSON-RPC API. +- [corepc](https://github.com/rust-bitcoin/corepc): A set of crates for interacting with the Bitcoin + Core JSON-RPC API. - [rust-miniscript](https://github.com/rust-bitcoin/rust-miniscript): Miniscript is an alternative to Bitcoin Script. It can be efficiently and simply encoded as Script to ensure that it works on From 76921c89e3a38b4a58945622b1b12c90c7c8e4e9 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Mon, 20 Apr 2026 09:27:33 +1000 Subject: [PATCH 4/4] site: Use underscore in bitcoin_hashes For historical reasons `bitcoin_hashes` uses an underscore. Do so here too so as to not confuse folk. --- site/content/about.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/about.md b/site/content/about.md index 1766012..5b8c48d 100644 --- a/site/content/about.md +++ b/site/content/about.md @@ -25,7 +25,7 @@ you may find useful when writing Rust code that interacts with the Bitcoin netwo - [rust-bitcoin](https://github.com/rust-bitcoin/rust-bitcoin): Your one-stop-shop for interacting with the Bitcoin network in Rust. -- [bitcoin-hashes](https://github.com/rust-bitcoin/rust-bitcoin/tree/master/hashes): A simple, +- [bitcoin_hashes](https://github.com/rust-bitcoin/rust-bitcoin/tree/master/hashes): A simple, no-dependency library which implements the hash functions needed by Bitcoin. - [rust-secp256k1](https://git.rust-bitcoin.org/rust-bitcoin/rust-secp256k1): Rust bindings for Pieter