From 7cc9a1c5090916fc3487d1ab6cee0821c561c650 Mon Sep 17 00:00:00 2001 From: clatim Date: Fri, 21 Oct 2022 18:44:59 +0100 Subject: [PATCH] Update instructions.append.md Using the latest version of [the unicode-segmentation crate](https://crates.io/crates/unicode-segmentation) causes the tests to fail when run on exercism. Updating the instructions to at least suggest a solution seems helpful. --- .../practice/reverse-string/.docs/instructions.append.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/exercises/practice/reverse-string/.docs/instructions.append.md b/exercises/practice/reverse-string/.docs/instructions.append.md index e13803cd4..ac7663f3d 100644 --- a/exercises/practice/reverse-string/.docs/instructions.append.md +++ b/exercises/practice/reverse-string/.docs/instructions.append.md @@ -12,3 +12,9 @@ $ cargo test --features grapheme You will need to use external libraries (a `crate` in rust lingo) for the bonus task. A good place to look for those is [crates.io](https://crates.io/), the official repository of crates. [Check the documentation](https://doc.rust-lang.org/cargo/guide/dependencies.html) for instructions on how to use external crates in your projects. + +--- +**NOTE** + +If the tests pass locally but not on Exercism then try using an older version of the crate +---