Skip to content

Commit

Permalink
Upgrade bitflags
Browse files Browse the repository at this point in the history
Summary: I need these newer versions in a package I want. Upgrade them so instead of having two copies floating around the repo (one we use, one as a dependency), we only have one.

Reviewed By: zertosh

Differential Revision: D62025056

fbshipit-source-id: 452d440cfa3b22f57f113568774c39fcb2fe2446
  • Loading branch information
ndmitchell authored and facebook-github-bot committed Aug 30, 2024
1 parent 466005d commit 72fe26f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion reverie-process/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "BSD-2-Clause"

[dependencies]
bincode = "1.3.3"
bitflags = { version = "2.4", features = ["serde"] }
bitflags = { version = "2.6", features = ["serde"] }
colored = "2.1.0"
futures = { version = "0.3.30", features = ["async-await", "compat"] }
libc = "0.2.139"
Expand Down
2 changes: 1 addition & 1 deletion reverie-syscalls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository = "https://github.com/facebookexperimental/reverie"
license = "BSD-2-Clause"

[dependencies]
bitflags = { version = "2.4", features = ["serde"] }
bitflags = { version = "2.6", features = ["serde"] }
derive_more = { version = "1.0.0", features = ["full"] }
libc = "0.2.139"
nix = "0.25"
Expand Down
2 changes: 1 addition & 1 deletion reverie/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ license = "BSD-2-Clause"
addr2line = "0.21"
anyhow = "1.0.86"
async-trait = "0.1.71"
bitflags = { version = "2.4", features = ["serde"] }
bitflags = { version = "2.6", features = ["serde"] }
byteorder = "1.3"
lazy_static = "1.4"
libc = "0.2.139"
Expand Down
2 changes: 1 addition & 1 deletion safeptrace/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository = "https://github.com/facebookexperimental/reverie"
license = "BSD-2-Clause"

[dependencies]
bitflags = { version = "2.4", features = ["serde"] }
bitflags = { version = "2.6", features = ["serde"] }
futures = { version = "0.3.30", features = ["async-await", "compat"] }
lazy_static = "1.4"
libc = "0.2.139"
Expand Down

0 comments on commit 72fe26f

Please sign in to comment.