build: Bump libc from 0.2.138 to 0.2.139

Bumps [libc](https://github.com/rust-lang/libc) from 0.2.138 to 0.2.139.
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Commits](https://github.com/rust-lang/libc/compare/0.2.138...0.2.139)

---
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] 2023-01-05 23:03:41 +00:00
parent ec3520d8b2
commit 28eeb8a492
20 changed files with 21 additions and 21 deletions

4
Cargo.lock generated
View File

@ -506,9 +506,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]] [[package]]
name = "libc" name = "libc"
version = "0.2.138" version = "0.2.139"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db6d7e329c562c5dfab7a46a2afabc8b987ab9a4834c9d1ca04dc54c1546cef8" checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
[[package]] [[package]]
name = "libssh2-sys" name = "libssh2-sys"

View File

@ -30,7 +30,7 @@ clap = { version = "4.0.29", features = ["wrap_help","cargo","string"] }
epoll = "4.3.1" epoll = "4.3.1"
event_monitor = { path = "event_monitor" } event_monitor = { path = "event_monitor" }
hypervisor = { path = "hypervisor" } hypervisor = { path = "hypervisor" }
libc = "0.2.138" libc = "0.2.139"
log = { version = "0.4.17", features = ["std"] } log = { version = "0.4.17", features = ["std"] }
option_parser = { path = "option_parser" } option_parser = { path = "option_parser" }
seccompiler = "0.3.0" seccompiler = "0.3.0"

View File

@ -12,7 +12,7 @@ tdx = []
anyhow = "1.0.68" anyhow = "1.0.68"
byteorder = "1.4.3" byteorder = "1.4.3"
hypervisor = { path = "../hypervisor" } hypervisor = { path = "../hypervisor" }
libc = "0.2.138" libc = "0.2.139"
linux-loader = { version = "0.8.1", features = ["elf", "bzimage", "pe"] } linux-loader = { version = "0.8.1", features = ["elf", "bzimage", "pe"] }
log = "0.4.17" log = "0.4.17"
serde = { version = "1.0.151", features = ["rc", "derive"] } serde = { version = "1.0.151", features = ["rc", "derive"] }

View File

@ -9,7 +9,7 @@ default = []
[dependencies] [dependencies]
io-uring = "0.5.9" io-uring = "0.5.9"
libc = "0.2.138" libc = "0.2.139"
log = "0.4.17" log = "0.4.17"
qcow = { path = "../qcow" } qcow = { path = "../qcow" }
thiserror = "1.0.37" thiserror = "1.0.37"

View File

@ -11,7 +11,7 @@ arch = { path = "../arch" }
bitflags = "1.3.2" bitflags = "1.3.2"
byteorder = "1.4.3" byteorder = "1.4.3"
hypervisor = { path = "../hypervisor" } hypervisor = { path = "../hypervisor" }
libc = "0.2.138" libc = "0.2.139"
log = "0.4.17" log = "0.4.17"
phf = { version = "0.11.1", features = ["macros"] } phf = { version = "0.11.1", features = ["macros"] }
thiserror = "1.0.37" thiserror = "1.0.37"

View File

@ -5,6 +5,6 @@ authors = ["The Cloud Hypervisor Authors"]
edition = "2021" edition = "2021"
[dependencies] [dependencies]
libc = "0.2.138" libc = "0.2.139"
serde = { version = "1.0.151", features = ["rc", "derive"] } serde = { version = "1.0.151", features = ["rc", "derive"] }
serde_json = "1.0.89" serde_json = "1.0.89"

View File

@ -14,7 +14,7 @@ tdx = []
anyhow = "1.0.68" anyhow = "1.0.68"
byteorder = "1.4.3" byteorder = "1.4.3"
thiserror = "1.0.37" thiserror = "1.0.37"
libc = "0.2.138" libc = "0.2.139"
log = "0.4.17" log = "0.4.17"
kvm-ioctls = { version = "0.12.0", optional = true } kvm-ioctls = { version = "0.12.0", optional = true }
kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.6.0-tdx", features = ["with-serde", "fam-wrappers"], optional = true } kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.6.0-tdx", features = ["with-serde", "fam-wrappers"], optional = true }

View File

@ -7,7 +7,7 @@ edition = "2021"
[dependencies] [dependencies]
epoll = "4.3.1" epoll = "4.3.1"
getrandom = "0.2.8" getrandom = "0.2.8"
libc = "0.2.138" libc = "0.2.139"
log = "0.4.17" log = "0.4.17"
net_gen = { path = "../net_gen" } net_gen = { path = "../net_gen" }
rate_limiter = { path = "../rate_limiter" } rate_limiter = { path = "../rate_limiter" }

View File

@ -17,7 +17,7 @@ vfio-bindings = { git = "https://github.com/rust-vmm/vfio", branch = "main", fea
vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false } vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false }
vfio_user = { path = "../vfio_user" } vfio_user = { path = "../vfio_user" }
vmm-sys-util = "0.11.0" vmm-sys-util = "0.11.0"
libc = "0.2.138" libc = "0.2.139"
log = "0.4.17" log = "0.4.17"
serde = { version = "1.0.151", features = ["derive"] } serde = { version = "1.0.151", features = ["derive"] }
thiserror = "1.0.37" thiserror = "1.0.37"

View File

@ -10,7 +10,7 @@ path = "src/qcow.rs"
[dependencies] [dependencies]
byteorder = "1.4.3" byteorder = "1.4.3"
libc = "0.2.138" libc = "0.2.139"
log = "0.4.17" log = "0.4.17"
remain = "0.2.6" remain = "0.2.6"
vmm-sys-util = "0.11.0" vmm-sys-util = "0.11.0"

View File

@ -4,6 +4,6 @@ version = "0.1.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]
libc = "0.2.138" libc = "0.2.139"
log = "0.4.17" log = "0.4.17"
vmm-sys-util = "0.11.0" vmm-sys-util = "0.11.0"

View File

@ -7,7 +7,7 @@ edition = "2021"
[dependencies] [dependencies]
dirs = "4.0.0" dirs = "4.0.0"
epoll = "4.3.1" epoll = "4.3.1"
libc = "0.2.138" libc = "0.2.139"
once_cell = "1.16.0" once_cell = "1.16.0"
serde = { version = "1.0.151", features = ["rc", "derive"] } serde = { version = "1.0.151", features = ["rc", "derive"] }
serde_json = "1.0.89" serde_json = "1.0.89"

View File

@ -5,7 +5,7 @@ authors = ["The Cloud Hypervisor Authors"]
edition = "2021" edition = "2021"
[dependencies] [dependencies]
libc = "0.2.138" libc = "0.2.139"
log = "0.4.17" log = "0.4.17"
once_cell = "1.16.0" once_cell = "1.16.0"
serde = { version = "1.0.151", features = ["rc", "derive"] } serde = { version = "1.0.151", features = ["rc", "derive"] }

View File

@ -5,7 +5,7 @@ authors = ["The Cloud Hypervisor Authors"]
edition = "2021" edition = "2021"
[dependencies] [dependencies]
libc = "0.2.138" libc = "0.2.139"
log = "0.4.17" log = "0.4.17"
serde = { version = "1.0.151", features = ["rc"] } serde = { version = "1.0.151", features = ["rc"] }
serde_derive = "1.0.149" serde_derive = "1.0.149"

View File

@ -8,7 +8,7 @@ license = "Apache-2.0"
[dependencies] [dependencies]
byteorder = "1.4.3" byteorder = "1.4.3"
crc32c = "0.6.3" crc32c = "0.6.3"
libc = "0.2.138" libc = "0.2.139"
log = "0.4.17" log = "0.4.17"
remain = "0.2.6" remain = "0.2.6"
thiserror = "1.0.37" thiserror = "1.0.37"

View File

@ -9,7 +9,7 @@ block_util = { path = "../block_util" }
clap = { version = "4.0.29", features = ["wrap_help","cargo"] } clap = { version = "4.0.29", features = ["wrap_help","cargo"] }
env_logger = "0.10.0" env_logger = "0.10.0"
epoll = "4.3.1" epoll = "4.3.1"
libc = "0.2.138" libc = "0.2.139"
log = "0.4.17" log = "0.4.17"
option_parser = { path = "../option_parser" } option_parser = { path = "../option_parser" }
qcow = { path = "../qcow" } qcow = { path = "../qcow" }

View File

@ -8,7 +8,7 @@ edition = "2021"
clap = { version = "4.0.29", features = ["wrap_help","cargo"] } clap = { version = "4.0.29", features = ["wrap_help","cargo"] }
env_logger = "0.10.0" env_logger = "0.10.0"
epoll = "4.3.1" epoll = "4.3.1"
libc = "0.2.138" libc = "0.2.139"
log = "0.4.17" log = "0.4.17"
net_util = { path = "../net_util" } net_util = { path = "../net_util" }
option_parser = { path = "../option_parser" } option_parser = { path = "../option_parser" }

View File

@ -15,7 +15,7 @@ byteorder = "1.4.3"
epoll = "4.3.1" epoll = "4.3.1"
event_monitor = { path = "../event_monitor" } event_monitor = { path = "../event_monitor" }
io-uring = "0.5.9" io-uring = "0.5.9"
libc = "0.2.138" libc = "0.2.139"
log = "0.4.17" log = "0.4.17"
net_gen = { path = "../net_gen" } net_gen = { path = "../net_gen" }
net_util = { path = "../net_util" } net_util = { path = "../net_util" }

View File

@ -5,7 +5,7 @@ authors = ["The Chromium OS Authors"]
edition = "2021" edition = "2021"
[dependencies] [dependencies]
libc = "0.2.138" libc = "0.2.139"
vm-memory = "0.10.0" vm-memory = "0.10.0"
[target.'cfg(target_arch = "aarch64")'.dependencies] [target.'cfg(target_arch = "aarch64")'.dependencies]

View File

@ -26,7 +26,7 @@ event_monitor = { path = "../event_monitor" }
gdbstub = { version = "0.6.3", optional = true } gdbstub = { version = "0.6.3", optional = true }
gdbstub_arch = { version = "0.2.4", optional = true } gdbstub_arch = { version = "0.2.4", optional = true }
hypervisor = { path = "../hypervisor" } hypervisor = { path = "../hypervisor" }
libc = "0.2.138" libc = "0.2.139"
linux-loader = { version = "0.8.1", features = ["elf", "bzimage", "pe"] } linux-loader = { version = "0.8.1", features = ["elf", "bzimage", "pe"] }
log = "0.4.17" log = "0.4.17"
micro_http = { git = "https://github.com/firecracker-microvm/micro-http", branch = "main" } micro_http = { git = "https://github.com/firecracker-microvm/micro-http", branch = "main" }