parry
parry copied to clipboard
Please move `partitioning` and `transformation` behind an `alloc` feature instead of forcing `std`
partitioning
is the easier of the two, as its just replacing std
with alloc
and importing Vec
/vec
transformation
would have to be changed slightly as you use HashMap
and HashSet
in a number of places. This might be able to be transition to hashbrown's HashMap
and HashSet
types.
I haven't looked into parry
dependencies but it doesn't seem that much of it requires std
. A quick skim of it seems to just be spade for the transformation
module
I saw that parry has no_std support in features now, is it fully no_std now? Was wondering if this issue was fixed or still needs fixed
transformation is still completely behind std but partitioning is no longer behind std
I try to address this issue in #170