From 3a562db39dff86582b541e2caec17ca65c2c1da7 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 11 Jan 2024 15:07:42 +1100 Subject: [PATCH] docs: Remove pinning from hashes readme We do not need to pin with the current MSRV, remove the stale mention of it from the `hashes` readme file. --- hashes/README.md | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/hashes/README.md b/hashes/README.md index a6143d70..4ce91fa9 100644 --- a/hashes/README.md +++ b/hashes/README.md @@ -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.