Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: set bindgen target Rust version
This addresses two potential issues: - First, because bindgen bindings may have different size and alignment on different platforms, asserting them at compile time breaks cross-platform compatibility. Therefore, we want to be able to defer such assertions to the runtime, so the same bindings code is reusable accross platforms. - Second, this shields us against bindgen silently introducing undesired MSRV bumps.
- Loading branch information