From a7e2375d686b13d212d7fd07631dda9bbb373e15 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Aug 2023 00:59:31 +0000 Subject: [PATCH] build(deps): update bitflags requirement from 1.2 to 2.4 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.4.0) --- 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..b3d915b96 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.4" 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"] }