From eeee320e091778ae0ce47bcacf6b2e151d187cf0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Mar 2023 21:25:59 +0000 Subject: [PATCH] build(deps): update bitflags requirement in /crates/shim-kvm Updates the requirements on [bitflags](https://github.com/bitflags/bitflags) to permit the latest version. - [Release notes](https://github.com/bitflags/bitflags/releases) - [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md) - [Commits](https://github.com/bitflags/bitflags/compare/1.2.0...2.0.0) --- updated-dependencies: - dependency-name: bitflags dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/shim-kvm/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/shim-kvm/Cargo.toml b/crates/shim-kvm/Cargo.toml index aad82ad18..62933b5d9 100644 --- a/crates/shim-kvm/Cargo.toml +++ b/crates/shim-kvm/Cargo.toml @@ -14,7 +14,7 @@ dbg = [] [dependencies] aes-gcm = { version = "0.9", features = ["force-soft"], default-features = false } array-const-fn-init = { version = "0.1", default-features = false } -bitflags = { version = "1.2", default-features = false } +bitflags = { version = "2.0", default-features = false } const-default = { version = "1.0", features = ["derive"], default-features = false } crt0stack = { version = "0.1", default-features = false } goblin = { version = "0.5", features = ["elf64"], default-features = false }