FFI Code Review Review Workflow 1. Check Cargo.toml -- Note Rust edition (2024 has breaking changes to extern blocks and unsafe attributes), (bindgen, cc, pkg-config), ( , ), and key 2. Check build.rs -- Verify link directives ( , ), bindgen configuration, and C source compilation 3. Check extern blocks -- Verify calling conventions, symbol declarations, and safety annotations 4. Check type layout -- Every type crossing FFI must be or a primitive FFI type 5. Check string and pointer handling -- CStr/CString usage, null checks, ownership transfers 6. Check callbacks -- pointers, panic safety a…