build: bump libfuzzer-sys from 0.4.1 to 0.4.2 in /fuzz

Bumps [libfuzzer-sys](https://github.com/rust-fuzz/libfuzzer) from 0.4.1 to 0.4.2.
- [Release notes](https://github.com/rust-fuzz/libfuzzer/releases)
- [Changelog](https://github.com/rust-fuzz/libfuzzer/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-fuzz/libfuzzer/compare/0.4.1...0.4.2)

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2021-05-27 06:55:28 +00:00
parent 3ffd2cb9be
commit 56ec5ca260
2 changed files with 18 additions and 20 deletions

36
fuzz/Cargo.lock generated
View File

@ -52,9 +52,9 @@ dependencies = [
"linux-loader", "linux-loader",
"log", "log",
"serde", "serde",
"serde_derive",
"serde_json",
"thiserror", "thiserror",
"versionize",
"versionize_derive",
"vm-fdt", "vm-fdt",
"vm-memory", "vm-memory",
"vm-migration", "vm-migration",
@ -150,7 +150,7 @@ dependencies = [
"libc", "libc",
"log", "log",
"option_parser", "option_parser",
"seccomp 0.1.0 (git+https://github.com/firecracker-microvm/firecracker?tag=v0.24.3)", "seccomp",
"serde_json", "serde_json",
"signal-hook", "signal-hook",
"thiserror", "thiserror",
@ -168,7 +168,7 @@ dependencies = [
"libc", "libc",
"libfuzzer-sys", "libfuzzer-sys",
"qcow", "qcow",
"seccomp 0.1.0 (git+https://github.com/firecracker-microvm/firecracker?tag=v0.24.4)", "seccomp",
"virtio-devices", "virtio-devices",
"vm-memory", "vm-memory",
"vm-virtio", "vm-virtio",
@ -310,12 +310,13 @@ checksum = "789da6d93f1b866ffe175afc5322a4d76c038605a1c3319bb57b06967ca98a36"
[[package]] [[package]]
name = "libfuzzer-sys" name = "libfuzzer-sys"
version = "0.4.1" version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9dc6556604b8ad76486563d5a47fad989b643932fa006e76e23d948bef0f5b" checksum = "36a9a84a6e8b55dfefb04235e55edb2b9a2a18488fcae777a6bdaa6f06f1deb3"
dependencies = [ dependencies = [
"arbitrary", "arbitrary",
"cc", "cc",
"once_cell",
] ]
[[package]] [[package]]
@ -370,6 +371,12 @@ dependencies = [
"vmm-sys-util", "vmm-sys-util",
] ]
[[package]]
name = "once_cell"
version = "1.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af8b08b04175473088b46763e51ee54da5f9a164bc162f615b91bc179dbf15a3"
[[package]] [[package]]
name = "option_parser" name = "option_parser"
version = "0.1.0" version = "0.1.0"
@ -383,9 +390,8 @@ dependencies = [
"hypervisor", "hypervisor",
"libc", "libc",
"log", "log",
"serde", "versionize",
"serde_derive", "versionize_derive",
"serde_json",
"vfio-bindings", "vfio-bindings",
"vfio-ioctls", "vfio-ioctls",
"vm-allocator", "vm-allocator",
@ -450,14 +456,6 @@ version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
[[package]]
name = "seccomp"
version = "0.1.0"
source = "git+https://github.com/firecracker-microvm/firecracker?tag=v0.24.3#9f447fe65c1c549ef7b0abe863428fa33ffe5f79"
dependencies = [
"libc",
]
[[package]] [[package]]
name = "seccomp" name = "seccomp"
version = "0.1.0" version = "0.1.0"
@ -678,7 +676,7 @@ dependencies = [
"net_util", "net_util",
"pci", "pci",
"rate_limiter", "rate_limiter",
"seccomp 0.1.0 (git+https://github.com/firecracker-microvm/firecracker?tag=v0.24.3)", "seccomp",
"serde", "serde",
"serde_derive", "serde_derive",
"serde_json", "serde_json",
@ -783,7 +781,7 @@ dependencies = [
"option_parser", "option_parser",
"pci", "pci",
"qcow", "qcow",
"seccomp 0.1.0 (git+https://github.com/firecracker-microvm/firecracker?tag=v0.24.3)", "seccomp",
"serde", "serde",
"serde_derive", "serde_derive",
"serde_json", "serde_json",

View File

@ -11,7 +11,7 @@ cargo-fuzz = true
[dependencies] [dependencies]
block_util = { path = "../block_util" } block_util = { path = "../block_util" }
libc = "0.2.95" libc = "0.2.95"
libfuzzer-sys = "0.4.1" libfuzzer-sys = "0.4.2"
qcow = { path = "../qcow" } qcow = { path = "../qcow" }
seccomp = { git = "https://github.com/firecracker-microvm/firecracker", tag = "v0.24.4" } seccomp = { git = "https://github.com/firecracker-microvm/firecracker", tag = "v0.24.4" }
virtio-devices = { path = "../virtio-devices" } virtio-devices = { path = "../virtio-devices" }