Skip to content

Commit 36ce32a

Browse files
dependabot[bot]stefano-garzarella
authored andcommitted
build(deps): bump the vm-virtio group across 1 directory with 3 updates
Updates the requirements on [vmm-sys-util](https://github.com/rust-vmm/vmm-sys-util), [bindgen](https://github.com/rust-lang/rust-bindgen) and [criterion](https://github.com/bheisler/criterion.rs) to permit the latest version. Updates `vmm-sys-util` to 0.13.0 - [Release notes](https://github.com/rust-vmm/vmm-sys-util/releases) - [Changelog](https://github.com/rust-vmm/vmm-sys-util/blob/main/CHANGELOG.md) - [Commits](rust-vmm/vmm-sys-util@v0.13.0...v0.13.0) Updates `bindgen` to 0.72.0 - [Release notes](https://github.com/rust-lang/rust-bindgen/releases) - [Changelog](https://github.com/rust-lang/rust-bindgen/blob/main/CHANGELOG.md) - [Commits](rust-lang/rust-bindgen@v0.71.0...v0.72.0) Updates `criterion` to 0.6.0 - [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md) - [Commits](bheisler/criterion.rs@0.5.1...0.6.0) --- updated-dependencies: - dependency-name: vmm-sys-util dependency-version: 0.13.0 dependency-type: direct:production dependency-group: vm-virtio - dependency-name: bindgen dependency-version: 0.72.0 dependency-type: direct:production dependency-group: vm-virtio - dependency-name: criterion dependency-version: 0.6.0 dependency-type: direct:production dependency-group: vm-virtio ... Signed-off-by: dependabot[bot] <support@github.com> [SG] replaced deprecated `criterion::black_box` Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
1 parent 02a90c3 commit 36ce32a

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ codegen-units = 1
1616

1717
[workspace.dependencies]
1818
vm-memory = "0.16.0"
19-
vmm-sys-util = "0.13.0"
19+
vmm-sys-util = "0.14.0"

virtio-bindings/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ virtio-v4_14_0 = []
1616
virtio-v5_0_0 = []
1717

1818
[build-dependencies]
19-
bindgen = "0.71.0"
19+
bindgen = "0.72.0"
2020

2121
[dependencies]

virtio-queue/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ log = "0.4.17"
1919
virtio-bindings = { path="../virtio-bindings", version = "0.2.5" }
2020

2121
[dev-dependencies]
22-
criterion = "0.5.1"
22+
criterion = "0.6.0"
2323
vm-memory = { workspace = true, features = ["backend-mmap", "backend-atomic"] }
2424
memoffset = "0.9.0"
2525

virtio-queue/benches/queue/mod.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
// Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
// SPDX-License-Identifier: Apache-2.0 OR BSD-3-Clause
33

4-
use criterion::{black_box, BatchSize, Criterion};
4+
use std::hint::black_box;
5+
6+
use criterion::{BatchSize, Criterion};
57
use virtio_queue::{Queue, QueueOwnedT, QueueT};
68
use vm_memory::{GuestAddress, GuestMemory, GuestMemoryMmap};
79

0 commit comments

Comments
 (0)