mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-11-04 19:11:11 +00:00
build: bump libc from 0.2.127 to 0.2.129
Bumps [libc](https://github.com/rust-lang/libc) from 0.2.127 to 0.2.129. - [Release notes](https://github.com/rust-lang/libc/releases) - [Commits](https://github.com/rust-lang/libc/compare/0.2.127...0.2.129) --- 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:
parent
dde2eb531b
commit
3d9c9d720f
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -487,9 +487,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "libc"
|
name = "libc"
|
||||||
version = "0.2.127"
|
version = "0.2.129"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "505e71a4706fa491e9b1b55f51b95d4037d0821ee40131190475f692b35b009b"
|
checksum = "64de3cc433455c14174d42e554d4027ee631c4d046d43e3ecc6efc4636cdc7a7"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "libssh2-sys"
|
name = "libssh2-sys"
|
||||||
|
@ -22,7 +22,7 @@ clap = { version = "3.2.16", features = ["wrap_help","cargo"] }
|
|||||||
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.127"
|
libc = "0.2.129"
|
||||||
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.2.0"
|
seccompiler = "0.2.0"
|
||||||
|
@ -12,7 +12,7 @@ tdx = []
|
|||||||
anyhow = "1.0.60"
|
anyhow = "1.0.60"
|
||||||
byteorder = "1.4.3"
|
byteorder = "1.4.3"
|
||||||
hypervisor = { path = "../hypervisor" }
|
hypervisor = { path = "../hypervisor" }
|
||||||
libc = "0.2.127"
|
libc = "0.2.129"
|
||||||
linux-loader = { version = "0.4.0", features = ["elf", "bzimage", "pe"] }
|
linux-loader = { version = "0.4.0", features = ["elf", "bzimage", "pe"] }
|
||||||
log = "0.4.17"
|
log = "0.4.17"
|
||||||
serde = { version = "1.0.143", features = ["rc", "derive"] }
|
serde = { version = "1.0.143", features = ["rc", "derive"] }
|
||||||
|
@ -9,7 +9,7 @@ default = []
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
io-uring = "0.5.3"
|
io-uring = "0.5.3"
|
||||||
libc = "0.2.127"
|
libc = "0.2.129"
|
||||||
log = "0.4.17"
|
log = "0.4.17"
|
||||||
qcow = { path = "../qcow" }
|
qcow = { path = "../qcow" }
|
||||||
thiserror = "1.0.32"
|
thiserror = "1.0.32"
|
||||||
|
@ -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.127"
|
libc = "0.2.129"
|
||||||
log = "0.4.17"
|
log = "0.4.17"
|
||||||
versionize = "0.1.6"
|
versionize = "0.1.6"
|
||||||
versionize_derive = "0.1.4"
|
versionize_derive = "0.1.4"
|
||||||
|
@ -5,6 +5,6 @@ authors = ["The Cloud Hypervisor Authors"]
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libc = "0.2.127"
|
libc = "0.2.129"
|
||||||
serde = { version = "1.0.143", features = ["rc", "derive"] }
|
serde = { version = "1.0.143", features = ["rc", "derive"] }
|
||||||
serde_json = "1.0.83"
|
serde_json = "1.0.83"
|
||||||
|
@ -14,7 +14,7 @@ tdx = []
|
|||||||
anyhow = "1.0.60"
|
anyhow = "1.0.60"
|
||||||
byteorder = "1.4.3"
|
byteorder = "1.4.3"
|
||||||
thiserror = "1.0.32"
|
thiserror = "1.0.32"
|
||||||
libc = "0.2.127"
|
libc = "0.2.129"
|
||||||
log = "0.4.17"
|
log = "0.4.17"
|
||||||
kvm-ioctls = { version = "0.11.0", optional = true }
|
kvm-ioctls = { version = "0.11.0", optional = true }
|
||||||
kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.5.0-tdx", features = ["with-serde", "fam-wrappers"], optional = true }
|
kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.5.0-tdx", features = ["with-serde", "fam-wrappers"], optional = true }
|
||||||
|
@ -7,7 +7,7 @@ edition = "2021"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
epoll = "4.3.1"
|
epoll = "4.3.1"
|
||||||
getrandom = "0.2.7"
|
getrandom = "0.2.7"
|
||||||
libc = "0.2.127"
|
libc = "0.2.129"
|
||||||
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" }
|
||||||
|
@ -16,7 +16,7 @@ hypervisor = { path = "../hypervisor" }
|
|||||||
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.10.0"
|
vmm-sys-util = "0.10.0"
|
||||||
libc = "0.2.127"
|
libc = "0.2.129"
|
||||||
log = "0.4.17"
|
log = "0.4.17"
|
||||||
serde = { version = "1.0.143", features = ["derive"] }
|
serde = { version = "1.0.143", features = ["derive"] }
|
||||||
thiserror = "1.0.32"
|
thiserror = "1.0.32"
|
||||||
|
@ -10,7 +10,7 @@ path = "src/qcow.rs"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
byteorder = "1.4.3"
|
byteorder = "1.4.3"
|
||||||
libc = "0.2.127"
|
libc = "0.2.129"
|
||||||
log = "0.4.17"
|
log = "0.4.17"
|
||||||
remain = "0.2.4"
|
remain = "0.2.4"
|
||||||
vmm-sys-util = "0.10.0"
|
vmm-sys-util = "0.10.0"
|
||||||
|
@ -4,6 +4,6 @@ version = "0.1.0"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libc = "0.2.127"
|
libc = "0.2.129"
|
||||||
log = "0.4.17"
|
log = "0.4.17"
|
||||||
vmm-sys-util = "0.10.0"
|
vmm-sys-util = "0.10.0"
|
||||||
|
@ -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.127"
|
libc = "0.2.129"
|
||||||
once_cell = "1.13.0"
|
once_cell = "1.13.0"
|
||||||
ssh2 = { version = "0.9.3", features = ["vendored-openssl"] }
|
ssh2 = { version = "0.9.3", features = ["vendored-openssl"] }
|
||||||
vmm-sys-util = "0.10.0"
|
vmm-sys-util = "0.10.0"
|
||||||
|
@ -5,7 +5,7 @@ authors = ["The Cloud Hypervisor Authors"]
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libc = "0.2.127"
|
libc = "0.2.129"
|
||||||
log = "0.4.17"
|
log = "0.4.17"
|
||||||
serde = { version = "1.0.143", features = ["rc"] }
|
serde = { version = "1.0.143", features = ["rc"] }
|
||||||
serde_derive = "1.0.142"
|
serde_derive = "1.0.142"
|
||||||
|
@ -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.127"
|
libc = "0.2.129"
|
||||||
log = "0.4.17"
|
log = "0.4.17"
|
||||||
remain = "0.2.4"
|
remain = "0.2.4"
|
||||||
thiserror = "1.0.32"
|
thiserror = "1.0.32"
|
||||||
|
@ -9,7 +9,7 @@ block_util = { path = "../block_util" }
|
|||||||
clap = { version = "3.2.16", features = ["wrap_help","cargo"] }
|
clap = { version = "3.2.16", features = ["wrap_help","cargo"] }
|
||||||
env_logger = "0.9.0"
|
env_logger = "0.9.0"
|
||||||
epoll = "4.3.1"
|
epoll = "4.3.1"
|
||||||
libc = "0.2.127"
|
libc = "0.2.129"
|
||||||
log = "0.4.17"
|
log = "0.4.17"
|
||||||
option_parser = { path = "../option_parser" }
|
option_parser = { path = "../option_parser" }
|
||||||
qcow = { path = "../qcow" }
|
qcow = { path = "../qcow" }
|
||||||
|
@ -8,7 +8,7 @@ edition = "2021"
|
|||||||
clap = { version = "3.2.16", features = ["wrap_help","cargo"] }
|
clap = { version = "3.2.16", features = ["wrap_help","cargo"] }
|
||||||
env_logger = "0.9.0"
|
env_logger = "0.9.0"
|
||||||
epoll = "4.3.1"
|
epoll = "4.3.1"
|
||||||
libc = "0.2.127"
|
libc = "0.2.129"
|
||||||
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" }
|
||||||
|
@ -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.3"
|
io-uring = "0.5.3"
|
||||||
libc = "0.2.127"
|
libc = "0.2.129"
|
||||||
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" }
|
||||||
|
@ -5,7 +5,7 @@ authors = ["The Chromium OS Authors"]
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libc = "0.2.127"
|
libc = "0.2.129"
|
||||||
vm-memory = "0.8.0"
|
vm-memory = "0.8.0"
|
||||||
|
|
||||||
[target.'cfg(target_arch = "aarch64")'.dependencies]
|
[target.'cfg(target_arch = "aarch64")'.dependencies]
|
||||||
|
@ -29,7 +29,7 @@ event_monitor = { path = "../event_monitor" }
|
|||||||
gdbstub = { version = "0.6.2", optional = true }
|
gdbstub = { version = "0.6.2", optional = true }
|
||||||
gdbstub_arch = { version = "0.2.3", optional = true }
|
gdbstub_arch = { version = "0.2.3", optional = true }
|
||||||
hypervisor = { path = "../hypervisor" }
|
hypervisor = { path = "../hypervisor" }
|
||||||
libc = "0.2.127"
|
libc = "0.2.129"
|
||||||
linux-loader = { version = "0.4.0", features = ["elf", "bzimage", "pe"] }
|
linux-loader = { version = "0.4.0", 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" }
|
||||||
|
Loading…
Reference in New Issue
Block a user