Skip to content

Commit 0080baa

Browse files
committed
nits
1 parent 13f5628 commit 0080baa

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

regex-capi/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ A C API for Rust's regular expression library.
1212
"""
1313
workspace = ".."
1414
edition = "2021"
15+
rust-version = "1.65"
1516

1617
[lib]
1718
name = "rure"

regex-capi/src/macros.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ macro_rules! ffi_fn {
1818
} else {
1919
"UNABLE TO SHOW RESULT OF PANIC.".to_owned()
2020
};
21-
let _ = writeln!(&mut io::stderr(), "panic unwind caught, aborting: {msg:?}");
21+
let _ = writeln!(
22+
&mut io::stderr(),
23+
"panic unwind caught, aborting: {msg:?}"
24+
);
2225
unsafe { abort() }
2326
}
2427
}

0 commit comments

Comments
 (0)