diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 1228a211a..ff57021dd 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -13,7 +13,7 @@ block_util = { path = "../block_util" } libc = "0.2.99" libfuzzer-sys = "0.4.2" qcow = { path = "../qcow" } -seccomp = { git = "https://github.com/firecracker-microvm/firecracker", tag = "v0.24.5" } +seccompiler = { git = "https://github.com/rust-vmm/seccompiler"} virtio-devices = { path = "../virtio-devices" } vmm-sys-util = "0.8.0" vm-virtio = { path = "../vm-virtio" } diff --git a/fuzz/fuzz_targets/block.rs b/fuzz/fuzz_targets/block.rs index a2fdc070d..69ca731b5 100644 --- a/fuzz/fuzz_targets/block.rs +++ b/fuzz/fuzz_targets/block.rs @@ -6,7 +6,7 @@ use block_util::{async_io::DiskFile, raw_sync::RawFileDiskSync}; use libfuzzer_sys::fuzz_target; -use seccomp::SeccompAction; +use seccompiler::SeccompAction; use std::ffi; use std::fs::File; use std::io::{self, Cursor, Read, Seek, SeekFrom};