Merge pull request #7760 from Qelxiros/7670-tail-hex-formatting

tail hex parsing, remove fundu dependency
This commit is contained in:
Jeremy Smart 2025-04-23 12:34:00 -04:00 committed by GitHub
parent 0125bbc2b4
commit 044b33d8cb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 125 additions and 91 deletions

View file

@ -5,6 +5,7 @@ use uucore::parser::parse_time;
fuzz_target!(|data: &[u8]| {
if let Ok(s) = std::str::from_utf8(data) {
_ = parse_time::from_str(s);
_ = parse_time::from_str(s, true);
_ = parse_time::from_str(s, false);
}
});