#![no_main] use libfuzzer_sys::fuzz_target; fuzz_target!(|data: &[u8]| { usbip_rs::fuzz_harness::run_fuzz_handle_client(data); });