Hi, I'm using datamancer to process some data and I want process this data in my ImGui application running it as a thread, the problem is that `datamancer.group` calls `arrange` which calls `sortBys` which calls `sortRecurse` which calls `sortRecurseImpl` which calls `sortRecurse` back and so on My question is how can I use these procedures in my thread? I tried `{.cast(gcsafe).}` outside all my code but it didn't seem to work and I'm not even sure if datamancer would work on a thread Should I look for the exact line that isn't gcsafe, fork datamancer and fix it?