From 7b526476e42659c10a425fb8b57f2c379c7251d4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Apr 2023 00:57:58 +0000 Subject: [PATCH] Update bitflags requirement from 1.2 to 2.2 in /lib/kpi 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.2.1) --- updated-dependencies: - dependency-name: bitflags dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- lib/kpi/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/kpi/Cargo.toml b/lib/kpi/Cargo.toml index 8e8dbac9a..d2966538a 100644 --- a/lib/kpi/Cargo.toml +++ b/lib/kpi/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" [dependencies] x86 = { version = "0.52", features = ["unstable"] } abomonation = { git="https://github.com/hunhoffe/abomonation.git", branch="no-std", default-features = false } -bitflags = "1.2" +bitflags = "2.2" core2 = { version = "0.3", default-features = false, features = [ "alloc" ] } serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] } serde_cbor = { version = "0.11", default-features = false, features = ["alloc"] }