Yeicor
Yeicor
My issue was that my project had a transitive dependency that optionally enables the `arboard` feature, but it does so by default and I have no way to change it...
Sure! but it will probably need to wait until the weekend, when I get some time on the computer.
The cargo registry seems to be corrupt. The workaround (until a new docker image is published) is: `docker run -it --rm -v $(pwd)":/root/src" -w /root/src notfl3/cargo-apk bash -c "rm -r...
`MTRenderer3` is intended for easy (and efficient) parallelization of singlethreaded `Render3` implementations, like my Dual-Contouring implementations. However, I tested it and, at least on my computer, using this `MTRenderer3` is...
> P.S. While testing the simplification algorithms, I realized that the vertices linking partitions are very close together (
It looks like `docker buildx build --platform=linux/arm64,linux/amd64 .` works (it should also work for more platforms). I guess the only change needed is to modify the Makefile: https://github.com/backube/volsync/blob/47f516f6a8bbb2ac2271e6b76862cf894030ad3e/Makefile#L169-L170 And Github...
I was thinking the same thing and ended up copying the whole function and commenting the `defer Logout()` line. I also moved the `validateState(...)` check after `FetchUser(...)` to let `CompleteUserAuth(...)`...