mirror of
https://github.com/str4d/rage.git
synced 2025-04-03 19:07:42 +03:00
age-core: Use str::from_utf8_unchecked
in read::arbitrary_string
The input bytes were already restricted to ASCII characters with values 33 to 126; an arbitrary sequence of these will always be valid UTF-8.
This commit is contained in:
parent
e608cf32b4
commit
7467e7b447
2 changed files with 3 additions and 3 deletions
|
@ -120,8 +120,9 @@ pub mod read {
|
|||
/// ... an arbitrary string is a sequence of ASCII characters with values 33 to 126.
|
||||
/// ```
|
||||
pub fn arbitrary_string(input: &[u8]) -> IResult<&[u8], &str> {
|
||||
map(take_while1(|c| c >= 33 && c <= 126), |bytes| {
|
||||
std::str::from_utf8(bytes).expect("ASCII is valid UTF-8")
|
||||
map(take_while1(|c| (33..=126).contains(&c)), |bytes| {
|
||||
// Safety: ASCII bytes are valid UTF-8
|
||||
unsafe { std::str::from_utf8_unchecked(bytes) }
|
||||
})(input)
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
#![forbid(unsafe_code)]
|
||||
// Catch documentation errors caused by code changes.
|
||||
#![deny(broken_intra_doc_links)]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue