Skip to content

Commit

Permalink
Merge pull request #4771 from nicholasbishop/bishop-update-bitflags
Browse files Browse the repository at this point in the history
chore: Update bitflags dep to 2.0
  • Loading branch information
epage committed Mar 19, 2023
2 parents 9aee6d3 + 6878a19 commit 4c05dfb
Show file tree
Hide file tree
Showing 4 changed files with 12 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 Cargo.toml
Expand Up @@ -101,7 +101,7 @@ bench = false
[dependencies]
clap_derive = { path = "./clap_derive", version = "=4.1.9", optional = true }
clap_lex = { path = "./clap_lex", version = "0.3.0" }
bitflags = "1.2.0"
bitflags = "2.0.0"
unicase = { version = "2.6.0", optional = true }
strsim = { version = "0.10.0", optional = true }
is-terminal = { version = "0.4.1", optional = true }
Expand Down
1 change: 1 addition & 0 deletions src/builder/app_settings.rs
Expand Up @@ -63,6 +63,7 @@ pub(crate) enum AppSettings {
}

bitflags! {
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
struct Flags: u64 {
const SC_NEGATE_REQS = 1;
const SC_REQUIRED = 1 << 1;
Expand Down
1 change: 1 addition & 0 deletions src/builder/arg_settings.rs
Expand Up @@ -49,6 +49,7 @@ pub(crate) enum ArgSettings {
}

bitflags! {
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
struct Flags: u32 {
const REQUIRED = 1;
const GLOBAL = 1 << 3;
Expand Down

0 comments on commit 4c05dfb

Please sign in to comment.