mirror of
https://github.com/aljazceru/turso.git
synced 2026-02-02 14:54:23 +01:00
as nilskch points out in #1807, Rust 1.88.0 is stricter about alignment. because rust integers default to `i32`, we were casting a pointer to an `i32` as a pointer to an `i64` causing a panic when dereferenced due to misalignment as rust expects it to be 8 byte aligned.