parry icon indicating copy to clipboard operation
parry copied to clipboard

Please move `partitioning` and `transformation` behind an `alloc` feature instead of forcing `std`

Open ProfElements opened this issue 2 years ago • 3 comments

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 HashSetin 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

ProfElements avatar May 31 '22 02:05 ProfElements

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

Bombfuse avatar Mar 20 '23 20:03 Bombfuse

transformation is still completely behind std but partitioning is no longer behind std

ProfElements avatar Mar 31 '23 01:03 ProfElements

I try to address this issue in #170

hatmajster avatar Nov 05 '23 17:11 hatmajster