1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

uucore: Move parser to a feature

This will eventually be needed as we'll want parse_time to
call into num_parser, which was previously contained in format
feature.
This commit is contained in:
Nicolas Boichat 2025-04-04 13:41:15 +02:00
parent a937aa5117
commit 6243dd5494
63 changed files with 90 additions and 79 deletions

View file

@ -1,7 +1,7 @@
#![no_main]
use libfuzzer_sys::fuzz_target;
use uucore::parse_glob;
use uucore::parser::parse_glob;
fuzz_target!(|data: &[u8]| {
if let Ok(s) = std::str::from_utf8(data) {