mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-20 18:04:19 +01:00
as nilskch points out in #1807, Rust 1.88.0 is stricter about alignment checks. 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. Reviewed-by: Preston Thorpe (@PThorpe92) Closes #2064