fuzz: Move to the seccompiler crate

Signed-off-by: Bo Chen <chen.bo@intel.com>
This commit is contained in:
Bo Chen 2021-08-16 20:40:34 -07:00 committed by Sebastien Boeuf
parent 08ac3405f5
commit 2d2463ce04
2 changed files with 2 additions and 2 deletions

View File

@ -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" }

View File

@ -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};