Skip to content

Commit

Permalink
fix(deps): update rust crate bitflags to v2 (#31)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Vincent Tavernier <v.tavernier@pm.me>
  • Loading branch information
renovate[bot] and alixinne committed Apr 27, 2023
1 parent 0940b90 commit ec55a67
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
12 changes: 9 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion efivar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ edition = "2018"

[dependencies]
byteorder = "1.4.3"
bitflags = "1.3.2"
bitflags = "2.2.1"
failure = "0.1.8"

base64 = { version = "0.21.0", optional = true }
Expand Down
1 change: 1 addition & 0 deletions efivar/src/efi/variable_flags.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ use crate::Error;

bitflags! {
/// Possible attributes of EFI variables as a bitfield
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct VariableFlags : u32 {
const NON_VOLATILE = 0x1;
const BOOTSERVICE_ACCESS = 0x2;
Expand Down

0 comments on commit ec55a67

Please sign in to comment.