build: Manual seccomp bump

Seccomp needs to be bumped in the main tree and fuzz at the same time.

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
dependabot[bot]
2021-05-26 07:20:45 +00:00
committed by Sebastien Boeuf
parent dd92715ed2
commit 6c245f6cf1
6 changed files with 17 additions and 9 deletions

16
fuzz/Cargo.lock generated
View File

@@ -150,7 +150,7 @@ dependencies = [
"libc",
"log",
"option_parser",
"seccomp",
"seccomp 0.1.0 (git+https://github.com/firecracker-microvm/firecracker?tag=v0.24.3)",
"serde_json",
"signal-hook",
"thiserror",
@@ -168,7 +168,7 @@ dependencies = [
"libc",
"libfuzzer-sys",
"qcow",
"seccomp",
"seccomp 0.1.0 (git+https://github.com/firecracker-microvm/firecracker?tag=v0.24.4)",
"virtio-devices",
"vm-memory",
"vm-virtio",
@@ -458,6 +458,14 @@ dependencies = [
"libc",
]
[[package]]
name = "seccomp"
version = "0.1.0"
source = "git+https://github.com/firecracker-microvm/firecracker?tag=v0.24.4#8f44986a0e956a77f2b2324c12f73bec16130c82"
dependencies = [
"libc",
]
[[package]]
name = "serde"
version = "1.0.126"
@@ -670,7 +678,7 @@ dependencies = [
"net_util",
"pci",
"rate_limiter",
"seccomp",
"seccomp 0.1.0 (git+https://github.com/firecracker-microvm/firecracker?tag=v0.24.3)",
"serde",
"serde_derive",
"serde_json",
@@ -775,7 +783,7 @@ dependencies = [
"option_parser",
"pci",
"qcow",
"seccomp",
"seccomp 0.1.0 (git+https://github.com/firecracker-microvm/firecracker?tag=v0.24.3)",
"serde",
"serde_derive",
"serde_json",

View File

@@ -13,7 +13,7 @@ block_util = { path = "../block_util" }
libc = "0.2.95"
libfuzzer-sys = "0.4.1"
qcow = { path = "../qcow" }
seccomp = { git = "https://github.com/firecracker-microvm/firecracker", tag = "v0.24.3" }
seccomp = { git = "https://github.com/firecracker-microvm/firecracker", tag = "v0.24.4" }
virtio-devices = { path = "../virtio-devices" }
vmm-sys-util = "0.8.0"
vm-virtio = { path = "../vm-virtio" }