Skip to content

Commit bde838a

Browse files
committed
Bump bitflags to 2.4.0
1 parent 2ced82c commit bde838a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ repository = "https://github.com/rust-lang/rustc_apfloat"
1515
description = "Rust port of C++ llvm::APFloat library"
1616

1717
[dependencies]
18-
bitflags = "1.3.2"
18+
bitflags = "2.4.0"
1919
smallvec = { version = "1.11.0", features = ["const_generics", "union"] }
2020

2121
[dev-dependencies]

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ bitflags! {
5454
/// result of an operation that signals the invalid operation exception
5555
/// shall be a quiet NaN."
5656
#[must_use]
57+
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Debug)]
5758
pub struct Status: u8 {
5859
const OK = 0x00;
5960
const INVALID_OP = 0x01;

0 commit comments

Comments
 (0)