dimforge / parry

2D and 3D collision-detection library for Rust.
https://parry.rs
Apache License 2.0
529 stars 93 forks source link

Export `size_32/size_64` features from `rkyv` #147

Open bonsairobo opened 11 months ago

bonsairobo commented 11 months ago

These features determine how usize is serialized, and they are mutually exclusive. If a downstream crate tries to enable size_64, they will get a compile error because, by default, parry enables size_32.

bonsairobo commented 11 months ago

This has become lower priority for me because it's easy enough to just not use usize in archived types.