Skip to content

Commit 4273ba1

Browse files
committed
Remove _Unwind_Resume for now - it causes issues on iOS.
1 parent 646b599 commit 4273ba1

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ inherits = "release"
2525
lto = false
2626

2727
[workspace.package]
28-
version = "0.1.0"
28+
version = "0.1.1"
2929
edition = "2021"
3030
authors = ["JourneyApps"]
3131
keywords = ["sqlite", "powersync"]

crates/loadable/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ pub fn __rust_alloc_error_handler(_: core::alloc::Layout) -> ! {
4040

4141
// Not used, but must be defined in some cases. Most notably when using native sqlite3 and loading
4242
// the extension.
43-
#[allow(non_upper_case_globals)]
44-
#[no_mangle]
45-
pub static mut _Unwind_Resume: *mut core::ffi::c_void = core::ptr::null_mut();
43+
// #[allow(non_upper_case_globals)]
44+
// #[no_mangle]
45+
// pub static mut _Unwind_Resume: *mut core::ffi::c_void = core::ptr::null_mut();
4646

0 commit comments

Comments
 (0)