We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d5cb02 commit 634e05bCopy full SHA for 634e05b
Cargo.toml
@@ -2,6 +2,6 @@
2
3
members = [
4
"mqrstt",
5
- "fuzz",
+ # "fuzz",
6
"examples/tcp"
7
]
fuzz/fuzz_targets/fuzz_target_1.rs
@@ -1,7 +1,9 @@
1
#![no_main]
+#[cfg(target_os = "linux")]
use libfuzzer_sys::fuzz_target;
#[tokio::main(flavor = "current_thread")]
8
async fn test(mut data: &[u8]) {
9
let _ = mqrstt::packets::Packet::async_read(&mut data).await;
0 commit comments