Merge rust-bitcoin/rust-bitcoin#2330: docs: Remove pinning from hashes readme

3a562db39d docs: Remove pinning from hashes readme (Tobin C. Harding)

Pull request description:

  We do not need to pin with the current MSRV, remove the stale mention of it from the `hashes` readme file.

ACKs for top commit:
  apoelstra:
    ACK 3a562db39d will merge with one-ACK carveout

Tree-SHA512: a3f2017ab40e28d1e047ec5466e4b101dfc13280226c71ec5b36d46f54bed359eccbce16d811cee100fb134f3091f7c986c7b2afa3adaa15942bee9e08e730f1
This commit is contained in:
Andrew Poelstra 2024-01-12 15:06:55 +00:00
commit 1ddd1b959f
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
1 changed files with 0 additions and 12 deletions

View File

@ -11,18 +11,6 @@ since these are needed to display hashes anway.
This library should always compile with any combination of features on **Rust 1.56.1**.
To build with the MSRV you will need to pin `serde` (if you have either the `serde` or the
`schemars` feature enabled)
```
# serde 1.0.157 uses syn 2.0 which requires edition 2021
cargo update -p serde --precise 1.0.156
```
before building. (And if your code is a library, your downstream users will need to run these
commands, and so on.)
## Contributions
Contributions are welcome, including additional hash function implementations.