You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cargo.toml currently sets rkyv-serialize-no-std = ["rkyv/size_32"] which prevents using rkyv with any other pointer size. It is best practice for libraries to not set the pointer size and allow binaries to choose the pointer size themselves. For myself, I patched this to rkyv-serialize-no-std = ["rkyv"], although I imagine that testing might require it to still be set in some circumstances?
The text was updated successfully, but these errors were encountered:
Cargo.toml currently sets
rkyv-serialize-no-std = ["rkyv/size_32"]
which prevents usingrkyv
with any other pointer size. It is best practice for libraries to not set the pointer size and allow binaries to choose the pointer size themselves. For myself, I patched this torkyv-serialize-no-std = ["rkyv"]
, although I imagine that testing might require it to still be set in some circumstances?The text was updated successfully, but these errors were encountered: