diff --git a/Cargo.lock b/Cargo.lock index 6612f9ea1..bc5a8d92f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1176,9 +1176,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "libc" -version = "0.2.151" +version = "0.2.153" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4" +checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" [[package]] name = "libssh2-sys" diff --git a/Cargo.toml b/Cargo.toml index 761344d37..d87aa580c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ dhat = { version = "0.3.2", optional = true } epoll = "4.3.3" event_monitor = { path = "event_monitor" } hypervisor = { path = "hypervisor" } -libc = "0.2.147" +libc = "0.2.153" log = { version = "0.4.20", features = ["std"] } option_parser = { path = "option_parser" } seccompiler = "0.4.0" diff --git a/arch/Cargo.toml b/arch/Cargo.toml index 1dc386dd0..b8d1e7530 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -13,7 +13,7 @@ tdx = [] anyhow = "1.0.79" byteorder = "1.4.3" hypervisor = { path = "../hypervisor" } -libc = "0.2.147" +libc = "0.2.153" linux-loader = { version = "0.11.0", features = ["elf", "bzimage", "pe"] } log = "0.4.20" serde = { version = "1.0.193", features = ["rc", "derive"] } diff --git a/block/Cargo.toml b/block/Cargo.toml index 474d5cd21..5dcea1549 100644 --- a/block/Cargo.toml +++ b/block/Cargo.toml @@ -12,7 +12,7 @@ io_uring = ["dep:io-uring"] byteorder = "1.4.3" crc-any = "2.4.4" io-uring = { version = "0.6.2", optional = true } -libc = "0.2.147" +libc = "0.2.153" log = "0.4.20" remain = "0.2.11" smallvec = "1.11.0" diff --git a/devices/Cargo.toml b/devices/Cargo.toml index 27f6f3b3f..236075580 100644 --- a/devices/Cargo.toml +++ b/devices/Cargo.toml @@ -12,7 +12,7 @@ bitflags = "2.4.1" byteorder = "1.4.3" event_monitor = { path = "../event_monitor" } hypervisor = { path = "../hypervisor" } -libc = "0.2.147" +libc = "0.2.153" log = "0.4.20" pci = { path = "../pci" } thiserror = "1.0.52" diff --git a/event_monitor/Cargo.toml b/event_monitor/Cargo.toml index cd459e7c5..f30b9e245 100644 --- a/event_monitor/Cargo.toml +++ b/event_monitor/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] flume = "0.10.14" -libc = "0.2.147" +libc = "0.2.153" once_cell = "1.19.0" serde = { version = "1.0.193", features = ["rc", "derive"] } serde_json = "1.0.109" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index e5c4c3756..27a1dfafe 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -16,7 +16,7 @@ anyhow = "1.0.79" byteorder = "1.4.3" igvm_defs = { git = "https://github.com/microsoft/igvm", branch = "main", package = "igvm_defs", optional = true } igvm_parser = { git = "https://github.com/microsoft/igvm", branch = "main", package = "igvm", optional = true } -libc = "0.2.147" +libc = "0.2.153" log = "0.4.20" kvm-ioctls = { version = "0.16.0", optional = true } kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.7.0", features = ["with-serde", "fam-wrappers"], optional = true } diff --git a/net_util/Cargo.toml b/net_util/Cargo.toml index a4a3ace1f..d8007a80c 100644 --- a/net_util/Cargo.toml +++ b/net_util/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] epoll = "4.3.3" getrandom = "0.2.11" -libc = "0.2.147" +libc = "0.2.153" log = "0.4.20" net_gen = { path = "../net_gen" } rate_limiter = { path = "../rate_limiter" } diff --git a/pci/Cargo.toml b/pci/Cargo.toml index a5e5a166d..9e51438f7 100644 --- a/pci/Cargo.toml +++ b/pci/Cargo.toml @@ -18,7 +18,7 @@ vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", defau vfio_user = { git = "https://github.com/rust-vmm/vfio-user", branch = "main" } vmm-sys-util = "0.12.1" -libc = "0.2.147" +libc = "0.2.153" log = "0.4.20" serde = { version = "1.0.193", features = ["derive"] } thiserror = "1.0.52" diff --git a/rate_limiter/Cargo.toml b/rate_limiter/Cargo.toml index f55d8564c..f863c4eaf 100644 --- a/rate_limiter/Cargo.toml +++ b/rate_limiter/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] epoll = "4.3.3" -libc = "0.2.147" +libc = "0.2.153" log = "0.4.20" thiserror = "1.0.40" vmm-sys-util = "0.12.1" diff --git a/test_infra/Cargo.toml b/test_infra/Cargo.toml index 2009ab4c4..241362658 100644 --- a/test_infra/Cargo.toml +++ b/test_infra/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] dirs = "5.0.0" epoll = "4.3.3" -libc = "0.2.147" +libc = "0.2.153" once_cell = "1.19.0" serde = { version = "1.0.193", features = ["rc", "derive"] } serde_json = "1.0.109" diff --git a/tracer/Cargo.toml b/tracer/Cargo.toml index f633b3f9e..0395941aa 100644 --- a/tracer/Cargo.toml +++ b/tracer/Cargo.toml @@ -5,7 +5,7 @@ authors = ["The Cloud Hypervisor Authors"] edition = "2021" [dependencies] -libc = "0.2.147" +libc = "0.2.153" log = "0.4.20" once_cell = "1.19.0" serde = { version = "1.0.193", features = ["rc", "derive"] } diff --git a/vhost_user_block/Cargo.toml b/vhost_user_block/Cargo.toml index 82a9adc08..2b6db5dba 100644 --- a/vhost_user_block/Cargo.toml +++ b/vhost_user_block/Cargo.toml @@ -10,7 +10,7 @@ clap = { version = "4.4.7", features = ["wrap_help","cargo"] } block = { path = "../block" } env_logger = "0.10.1" epoll = "4.3.3" -libc = "0.2.147" +libc = "0.2.153" log = "0.4.20" option_parser = { path = "../option_parser" } vhost = { version = "0.10.0", features = ["vhost-user-backend"] } diff --git a/vhost_user_net/Cargo.toml b/vhost_user_net/Cargo.toml index d3a1bd9d4..7e7e274f5 100644 --- a/vhost_user_net/Cargo.toml +++ b/vhost_user_net/Cargo.toml @@ -9,7 +9,7 @@ build = "../build.rs" clap = { version = "4.4.7", features = ["wrap_help","cargo"] } env_logger = "0.10.1" epoll = "4.3.3" -libc = "0.2.147" +libc = "0.2.153" log = "0.4.20" net_util = { path = "../net_util" } option_parser = { path = "../option_parser" } diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index 1d0e50f39..263dc7543 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -14,7 +14,7 @@ block = { path = "../block" } byteorder = "1.4.3" epoll = "4.3.3" event_monitor = { path = "../event_monitor" } -libc = "0.2.147" +libc = "0.2.153" log = "0.4.20" net_gen = { path = "../net_gen" } net_util = { path = "../net_util" } diff --git a/vm-allocator/Cargo.toml b/vm-allocator/Cargo.toml index 27f18d7c2..66adb21b0 100644 --- a/vm-allocator/Cargo.toml +++ b/vm-allocator/Cargo.toml @@ -5,7 +5,7 @@ authors = ["The Chromium OS Authors"] edition = "2021" [dependencies] -libc = "0.2.147" +libc = "0.2.153" vm-memory = "0.14.0" [target.'cfg(target_arch = "aarch64")'.dependencies] diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 070fec410..b21a4612b 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -37,7 +37,7 @@ hex = { version = "0.4.3", optional = true } hypervisor = { path = "../hypervisor" } igvm_defs = { git = "https://github.com/microsoft/igvm", branch = "main", package = "igvm_defs", optional = true } igvm_parser = { git = "https://github.com/microsoft/igvm", branch = "main", package = "igvm", optional = true } -libc = "0.2.147" +libc = "0.2.153" linux-loader = { version = "0.11.0", features = ["elf", "bzimage", "pe"] } log = "0.4.20" micro_http = { git = "https://github.com/firecracker-microvm/micro-http", branch = "main" }