From fa7c7bd01f0b46fbb27634dfa9ec7fdad71b1cb5 Mon Sep 17 00:00:00 2001 From: Tom Schuster Date: Tue, 21 Oct 2025 20:09:59 +0200 Subject: [PATCH] Recommend Rust std alternative to unic-char-range --- crates/unic-char-range/RUSTSEC-2025-0075.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crates/unic-char-range/RUSTSEC-2025-0075.md b/crates/unic-char-range/RUSTSEC-2025-0075.md index 162935af..bbbbf5bf 100644 --- a/crates/unic-char-range/RUSTSEC-2025-0075.md +++ b/crates/unic-char-range/RUSTSEC-2025-0075.md @@ -14,3 +14,7 @@ unaffected = [] # `unic-char-range` is unmaintained All Unicode crates that are part of https://github.com/open-i18n/rust-unic are unmaintained. + +## Recommended alternatives + +- Since version [1.45.0](https://releases.rs/docs/1.45.0/#libraries) Rust [supports](https://github.com/rust-lang/rust/pull/72413/) using `char` with `ops::{Range, RangeFrom, RangeFull, RangeInclusive, RangeTo}` to iterate over a range of codepoints.