Skip to content

Commit 867bcb5

Browse files
authored
Update dependencies (#12)
* Bump bitflags to 2.6.0 * Bump afl to 0.15.10
1 parent e02c88c commit 867bcb5

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

Cargo.toml

+1-1
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.6.0"
1919
smallvec = { version = "1.11.0", features = ["const_generics", "union"] }
2020

2121
[dev-dependencies]

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Example usage:
8989

9090
```sh
9191
# Install `cargo-afl` (used below to build/run the fuzzing binary).
92-
cargo install afl
92+
cargo install cargo-afl
9393

9494
# Build the fuzzing binary (`target/release/rustc_apfloat-fuzz`).
9595
cargo afl build -p rustc_apfloat-fuzz --release

fuzz/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition.workspace = true
55
publish = false
66

77
[dependencies]
8-
afl = "0.12.16"
8+
afl = "0.15.10"
99
clap = { version = "4.1.13", features = ["derive"] }
1010
num-traits = "0.2.15"
1111
rustc_apfloat = { path = ".." }

src/lib.rs

+1
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)