automatic cargo CI changes

This commit is contained in:
cscherrNT 2024-01-24 15:14:45 +00:00 committed by github-actions[bot]
parent 0a37691e05
commit 81b54c66f2
1 changed files with 3 additions and 1 deletions

View File

@ -8,5 +8,7 @@ pub fn decode(buf: &[u8]) -> Result<String, Utf8Error> {
Ok(match std::str::from_utf8(buf) { Ok(match std::str::from_utf8(buf) {
Ok(s) => s.to_string(), Ok(s) => s.to_string(),
Err(err) => return Err(err.into()), Err(err) => return Err(err.into()),
}.trim_matches(char::from(0)).to_string()) }
.trim_matches(char::from(0))
.to_string())
} }