We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13f5628 commit 0080baaCopy full SHA for 0080baa
regex-capi/Cargo.toml
@@ -12,6 +12,7 @@ A C API for Rust's regular expression library.
12
"""
13
workspace = ".."
14
edition = "2021"
15
+rust-version = "1.65"
16
17
[lib]
18
name = "rure"
regex-capi/src/macros.rs
@@ -18,7 +18,10 @@ macro_rules! ffi_fn {
} else {
19
"UNABLE TO SHOW RESULT OF PANIC.".to_owned()
20
};
21
- let _ = writeln!(&mut io::stderr(), "panic unwind caught, aborting: {msg:?}");
+ let _ = writeln!(
22
+ &mut io::stderr(),
23
+ "panic unwind caught, aborting: {msg:?}"
24
+ );
25
unsafe { abort() }
26
}
27
0 commit comments