From fd854c7339c189bf9e27a898d6aff8bb433a14d1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 29 Mar 2024 23:33:33 +0000 Subject: [PATCH] build: Bump byteorder from 1.4.3 to 1.5.0 Bumps [byteorder](https://github.com/BurntSushi/byteorder) from 1.4.3 to 1.5.0. - [Changelog](https://github.com/BurntSushi/byteorder/blob/master/CHANGELOG.md) - [Commits](https://github.com/BurntSushi/byteorder/compare/1.4.3...1.5.0) --- updated-dependencies: - dependency-name: byteorder dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- arch/Cargo.toml | 2 +- block/Cargo.toml | 2 +- devices/Cargo.toml | 2 +- hypervisor/Cargo.toml | 2 +- pci/Cargo.toml | 2 +- virtio-devices/Cargo.toml | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1cb7bd4bf..3c561e688 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -408,9 +408,9 @@ checksum = "d32a994c2b3ca201d9b263612a374263f05e7adde37c4707f693dcd375076d1f" [[package]] name = "byteorder" -version = "1.4.3" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "cc" diff --git a/arch/Cargo.toml b/arch/Cargo.toml index e332f56f5..0e6c14f81 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -11,7 +11,7 @@ tdx = [] [dependencies] anyhow = "1.0.79" -byteorder = "1.4.3" +byteorder = "1.5.0" hypervisor = { path = "../hypervisor" } libc = "0.2.153" linux-loader = { version = "0.11.0", features = ["elf", "bzimage", "pe"] } diff --git a/block/Cargo.toml b/block/Cargo.toml index b7b699d65..41530c6d2 100644 --- a/block/Cargo.toml +++ b/block/Cargo.toml @@ -9,7 +9,7 @@ default = [] io_uring = ["dep:io-uring"] [dependencies] -byteorder = "1.4.3" +byteorder = "1.5.0" crc-any = "2.4.4" io-uring = { version = "0.6.2", optional = true } libc = "0.2.153" diff --git a/devices/Cargo.toml b/devices/Cargo.toml index 11568d796..942afbcac 100644 --- a/devices/Cargo.toml +++ b/devices/Cargo.toml @@ -9,7 +9,7 @@ acpi_tables = { git = "https://github.com/rust-vmm/acpi_tables", branch = "main" anyhow = "1.0.79" arch = { path = "../arch" } bitflags = "2.4.2" -byteorder = "1.4.3" +byteorder = "1.5.0" event_monitor = { path = "../event_monitor" } hypervisor = { path = "../hypervisor" } libc = "0.2.153" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 5add33c84..60cad550b 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -13,7 +13,7 @@ tdx = [] [dependencies] anyhow = "1.0.79" -byteorder = "1.4.3" +byteorder = "1.5.0" 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.153" diff --git a/pci/Cargo.toml b/pci/Cargo.toml index b8be19a23..9e7708705 100644 --- a/pci/Cargo.toml +++ b/pci/Cargo.toml @@ -11,7 +11,7 @@ mshv = ["vfio-ioctls/mshv"] [dependencies] anyhow = "1.0.79" -byteorder = "1.4.3" +byteorder = "1.5.0" hypervisor = { path = "../hypervisor" } vfio-bindings = { git = "https://github.com/rust-vmm/vfio", branch = "main", features = ["fam-wrappers"] } vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false } diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index b4eaa2d33..062254d72 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -11,7 +11,7 @@ default = [] anyhow = "1.0.79" arc-swap = "1.5.1" block = { path = "../block" } -byteorder = "1.4.3" +byteorder = "1.5.0" epoll = "4.3.3" event_monitor = { path = "../event_monitor" } libc = "0.2.153"