diff --git a/Cargo.lock b/Cargo.lock index df055c686..ac4b48daf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -511,9 +511,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "libc" -version = "0.2.70" +version = "0.2.71" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3baa92041a6fec78c687fa0cc2b3fae8884f743d672cf551bed1d6dac6988d0f" +checksum = "9457b06509d27052635f90d6466700c65095fdf75409b3fbdd903e988b886f49" [[package]] name = "libssh2-sys" diff --git a/Cargo.toml b/Cargo.toml index 728577d33..18b947624 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ clap = { version = "2.33.1", features=["wrap_help"] } epoll = ">=4.0.1" futures = { version = "0.3.5", features = ["thread-pool"] } lazy_static = "1.4.0" -libc = "0.2.70" +libc = "0.2.71" log = { version = "0.4.8", features = ["std"] } seccomp = { git = "https://github.com/firecracker-microvm/firecracker", tag = "v0.21.1" } serde_json = ">=1.0.9" diff --git a/arch/Cargo.toml b/arch/Cargo.toml index 987e900e1..9d2b5ebdd 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -11,7 +11,7 @@ acpi = ["acpi_tables"] byteorder = "1.3.4" kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch" } kvm-ioctls = { git = "https://github.com/cloud-hypervisor/kvm-ioctls", branch = "ch" } -libc = "0.2.70" +libc = "0.2.71" vm-memory = { version = "0.2.0", features = ["backend-mmap"] } acpi_tables = { path = "../acpi_tables", optional = true } diff --git a/devices/Cargo.toml b/devices/Cargo.toml index 3182b5083..bccd0699d 100644 --- a/devices/Cargo.toml +++ b/devices/Cargo.toml @@ -8,7 +8,7 @@ anyhow = "1.0" bitflags = ">=1.2.1" byteorder = "1.3.4" epoll = ">=4.0.1" -libc = "0.2.70" +libc = "0.2.71" log = "0.4.8" serde = {version = ">=1.0.27", features = ["rc"] } serde_derive = ">=1.0.27" diff --git a/net_util/Cargo.toml b/net_util/Cargo.toml index fa3c09226..081211630 100644 --- a/net_util/Cargo.toml +++ b/net_util/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" authors = ["The Chromium OS Authors"] [dependencies] -libc = "0.2.70" +libc = "0.2.71" rand = "0.7.3" serde = "1.0.110" vmm-sys-util = ">=0.3.1" diff --git a/pci/Cargo.toml b/pci/Cargo.toml index 2566cab9e..4379131bb 100644 --- a/pci/Cargo.toml +++ b/pci/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" anyhow = "1.0" byteorder = "1.3.4" devices = { path = "../devices" } -libc = "0.2.70" +libc = "0.2.71" log = "0.4.8" serde = {version = ">=1.0.27", features = ["rc"] } serde_derive = ">=1.0.27" diff --git a/qcow/Cargo.toml b/qcow/Cargo.toml index 2b9bf6cec..7e79b6a0b 100644 --- a/qcow/Cargo.toml +++ b/qcow/Cargo.toml @@ -10,7 +10,7 @@ path = "src/qcow.rs" [dependencies] byteorder = "1.3.4" -libc = "0.2.70" +libc = "0.2.71" log = "0.4.8" remain = "0.2.1" vmm-sys-util = ">=0.3.1" diff --git a/vfio/Cargo.toml b/vfio/Cargo.toml index b10e6cb8e..c04455a4c 100644 --- a/vfio/Cargo.toml +++ b/vfio/Cargo.toml @@ -9,7 +9,7 @@ byteorder = "1.3.4" devices = { path = "../devices" } kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch" } kvm-ioctls = { git = "https://github.com/cloud-hypervisor/kvm-ioctls", branch = "ch" } -libc = "0.2.70" +libc = "0.2.71" log = "0.4.8" pci = { path = "../pci" } vm-allocator = { path = "../vm-allocator" } diff --git a/vhost_user_backend/Cargo.toml b/vhost_user_backend/Cargo.toml index 52fd4bb48..019944d3a 100644 --- a/vhost_user_backend/Cargo.toml +++ b/vhost_user_backend/Cargo.toml @@ -11,7 +11,7 @@ mmio_support = ["vm-virtio/mmio_support"] [dependencies] epoll = ">=4.0.1" -libc = "0.2.70" +libc = "0.2.71" log = "0.4.8" virtio-bindings = "0.1.0" vm-memory = "0.2.0" diff --git a/vhost_user_block/Cargo.toml b/vhost_user_block/Cargo.toml index 39f5f83c7..9f63bcb18 100644 --- a/vhost_user_block/Cargo.toml +++ b/vhost_user_block/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] bitflags = "1.1.0" epoll = ">=4.0.1" -libc = "0.2.70" +libc = "0.2.71" log = "0.4.8" qcow = { path = "../qcow" } vhost_user_backend = { path = "../vhost_user_backend" } diff --git a/vhost_user_fs/Cargo.toml b/vhost_user_fs/Cargo.toml index dc9b51e80..70a7d13e1 100644 --- a/vhost_user_fs/Cargo.toml +++ b/vhost_user_fs/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] bitflags = "1.1.0" -libc = "0.2.70" +libc = "0.2.71" log = "0.4.8" # Match the version in vmm seccomp = { git = "https://github.com/firecracker-microvm/firecracker", tag = "v0.21.1" } diff --git a/vhost_user_net/Cargo.toml b/vhost_user_net/Cargo.toml index 697806eb2..8e8aee883 100644 --- a/vhost_user_net/Cargo.toml +++ b/vhost_user_net/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] bitflags = "1.1.0" epoll = ">=4.0.1" -libc = "0.2.70" +libc = "0.2.71" log = "0.4.8" net_util = { path = "../net_util" } vhost_user_backend = { path = "../vhost_user_backend" } diff --git a/vm-allocator/Cargo.toml b/vm-allocator/Cargo.toml index 908dbff58..8ef7e2315 100644 --- a/vm-allocator/Cargo.toml +++ b/vm-allocator/Cargo.toml @@ -5,5 +5,5 @@ authors = ["The Chromium OS Authors"] edition = "2018" [dependencies] -libc = "0.2.70" +libc = "0.2.71" vm-memory = "0.2.0" diff --git a/vm-virtio/Cargo.toml b/vm-virtio/Cargo.toml index 42d7f9d21..3d7f896b8 100644 --- a/vm-virtio/Cargo.toml +++ b/vm-virtio/Cargo.toml @@ -15,7 +15,7 @@ arc-swap = ">=0.4.4" byteorder = "1.3.4" devices = { path = "../devices" } epoll = ">=4.0.1" -libc = "0.2.70" +libc = "0.2.71" log = "0.4.8" net_gen = { path = "../net_gen" } net_util = { path = "../net_util" } diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 473a4bb5b..209556a47 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -23,7 +23,7 @@ epoll = ">=4.0.1" kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch", features = ["with-serde", "fam-wrappers"] } kvm-ioctls = { git = "https://github.com/cloud-hypervisor/kvm-ioctls", branch = "ch" } lazy_static = "1.4.0" -libc = "0.2.70" +libc = "0.2.71" log = "0.4.8" micro_http = { git = "https://github.com/firecracker-microvm/micro-http", branch = "master" } net_util = { path = "../net_util" }