build: Bump libc from 0.2.155 to 0.2.158

Bumps [libc](https://github.com/rust-lang/libc) from 0.2.155 to 0.2.158.
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.158/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/libc/compare/0.2.155...0.2.158)

---
updated-dependencies:
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2024-09-05 23:17:26 +00:00 committed by cloud-hypervisor-bot
parent e508d2a3cd
commit 68468b8519
17 changed files with 18 additions and 18 deletions

4
Cargo.lock generated
View File

@ -1157,9 +1157,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
version = "0.2.155"
version = "0.2.158"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439"
[[package]]
name = "libredox"

View File

@ -36,7 +36,7 @@ dhat = { version = "0.3.3", optional = true }
epoll = "4.3.3"
event_monitor = { path = "event_monitor" }
hypervisor = { path = "hypervisor" }
libc = "0.2.155"
libc = "0.2.158"
log = { version = "0.4.22", features = ["std"] }
option_parser = { path = "option_parser" }
seccompiler = "0.4.0"

View File

@ -14,7 +14,7 @@ tdx = []
anyhow = "1.0.86"
byteorder = "1.5.0"
hypervisor = { path = "../hypervisor" }
libc = "0.2.155"
libc = "0.2.158"
linux-loader = { version = "0.11.0", features = ["bzimage", "elf", "pe"] }
log = "0.4.22"
serde = { version = "1.0.208", features = ["derive", "rc"] }

View File

@ -12,7 +12,7 @@ io_uring = ["dep:io-uring"]
byteorder = "1.5.0"
crc-any = "2.4.4"
io-uring = { version = "0.6.3", optional = true }
libc = "0.2.155"
libc = "0.2.158"
log = "0.4.22"
remain = "0.2.14"
serde = { version = "1.0.208", features = ["derive"] }

View File

@ -12,7 +12,7 @@ bitflags = "2.6.0"
byteorder = "1.5.0"
event_monitor = { path = "../event_monitor" }
hypervisor = { path = "../hypervisor" }
libc = "0.2.155"
libc = "0.2.158"
log = "0.4.22"
num_enum = "0.7.2"
pci = { path = "../pci" }

View File

@ -6,7 +6,7 @@ version = "0.1.0"
[dependencies]
flume = "0.11.0"
libc = "0.2.155"
libc = "0.2.158"
once_cell = "1.19.0"
serde = { version = "1.0.208", features = ["derive", "rc"] }
serde_json = "1.0.120"

View File

@ -20,7 +20,7 @@ igvm = { version = "0.3.3", optional = true }
igvm_defs = { version = "0.3.1", optional = true }
kvm-bindings = { version = "0.8.1", optional = true, features = ["serde"] }
kvm-ioctls = { version = "0.17.0", optional = true }
libc = "0.2.155"
libc = "0.2.158"
log = "0.4.22"
mshv-bindings = { git = "https://github.com/rust-vmm/mshv", tag = "v0.2.0", features = [
"fam-wrappers",

View File

@ -7,7 +7,7 @@ version = "0.1.0"
[dependencies]
epoll = "4.3.3"
getrandom = "0.2.14"
libc = "0.2.155"
libc = "0.2.158"
log = "0.4.22"
net_gen = { path = "../net_gen" }
rate_limiter = { path = "../rate_limiter" }

View File

@ -13,7 +13,7 @@ mshv = ["vfio-ioctls/mshv"]
anyhow = "1.0.86"
byteorder = "1.5.0"
hypervisor = { path = "../hypervisor" }
libc = "0.2.155"
libc = "0.2.158"
log = "0.4.22"
serde = { version = "1.0.208", features = ["derive"] }
thiserror = "1.0.62"

View File

@ -5,7 +5,7 @@ version = "0.1.0"
[dependencies]
epoll = "4.3.3"
libc = "0.2.155"
libc = "0.2.158"
log = "0.4.22"
thiserror = "1.0.62"
vmm-sys-util = "0.12.1"

View File

@ -7,7 +7,7 @@ version = "0.1.0"
[dependencies]
dirs = "5.0.1"
epoll = "4.3.3"
libc = "0.2.155"
libc = "0.2.158"
once_cell = "1.19.0"
serde = { version = "1.0.208", features = ["derive", "rc"] }
serde_json = "1.0.120"

View File

@ -5,7 +5,7 @@ name = "tracer"
version = "0.1.0"
[dependencies]
libc = "0.2.155"
libc = "0.2.158"
log = "0.4.22"
once_cell = "1.19.0"
serde = { version = "1.0.208", features = ["derive", "rc"] }

View File

@ -10,7 +10,7 @@ block = { path = "../block" }
clap = { version = "4.5.13", features = ["cargo", "wrap_help"] }
env_logger = "0.11.3"
epoll = "4.3.3"
libc = "0.2.155"
libc = "0.2.158"
log = "0.4.22"
option_parser = { path = "../option_parser" }
vhost = { version = "0.11.0", features = ["vhost-user-backend"] }

View File

@ -9,7 +9,7 @@ version = "0.1.0"
clap = { version = "4.5.13", features = ["cargo", "wrap_help"] }
env_logger = "0.11.3"
epoll = "4.3.3"
libc = "0.2.155"
libc = "0.2.158"
log = "0.4.22"
net_util = { path = "../net_util" }
option_parser = { path = "../option_parser" }

View File

@ -15,7 +15,7 @@ block = { path = "../block" }
byteorder = "1.5.0"
epoll = "4.3.3"
event_monitor = { path = "../event_monitor" }
libc = "0.2.155"
libc = "0.2.158"
log = "0.4.22"
mshv-ioctls = { git = "https://github.com/rust-vmm/mshv", tag = "v0.2.0", optional = true }
net_gen = { path = "../net_gen" }

View File

@ -5,7 +5,7 @@ name = "vm-allocator"
version = "0.1.0"
[dependencies]
libc = "0.2.155"
libc = "0.2.158"
vm-memory = "0.14.1"
[target.'cfg(target_arch = "aarch64")'.dependencies]

View File

@ -47,7 +47,7 @@ hypervisor = { path = "../hypervisor" }
igvm = { version = "0.3.3", optional = true }
igvm_defs = { version = "0.3.1", optional = true }
landlock = "0.4.0"
libc = "0.2.155"
libc = "0.2.158"
linux-loader = { version = "0.11.0", features = ["bzimage", "elf", "pe"] }
log = "0.4.22"
micro_http = { git = "https://github.com/firecracker-microvm/micro-http", branch = "main" }