Felix Schütt
Felix Schütt
### Zig Version 0.10.0-dev.3361+c650ccfca ### Steps to Reproduce ``` curl https://ziglang.org/builds/zig-linux-x86_64-0.10.0-dev.3361+c650ccfca.tar.xz --out compiler.tar.gz curl https://ziglang.org/builds/zig-0.10.0-dev.3361+c650ccfca.tar.xz --out source.tar.gz tar -xvf compiler.tar.gz tar -xvf source.tar.gz cd zig-0.10.0-dev.3361+c650ccfca ../zig-linux-x86_64-0.10.0-dev.3361+c650ccfca/zig build -Dtarget=wasm32-wasi -Drelease ```...
I've tried bootstrapping zig (both the latest and the master version) and compiling it to WASM in order to run it in a browser context Repo: https://github.com/fschutt/zig2wapm/blob/b21366afede6ec3b334023705fe79e9ee299c433/.github/workflows/push.yaml ``` - name:...
Issue for discussing a possible set of CSS styling rules in order to override the default styling on `limn` widgets + possible implementation design. I want to style my application...
I don't have time to investigate this currently, but here:  ... the bottom of the rectangle doesn't get rendered for whatever reason. Probably a webrender mistake. The layout is...
Hi. I've followed this repository for a while and I think it's going in the right direction in order to have a GUI for Rust. My goal is to make...
This is a relatively big issue to tackle, especially on Linux. Currently, all OpenGl-based options don't have a menu, which looks a bit ugly. On Windows, this is ok, because...
Just wanted to ask: New versions of Python have added support for pattern matching ([PEP 622](https://www.python.org/dev/peps/pep-0622/#reference-implementation)): ```python def make_point_3d(pt): match pt: case (x, y): return Point3d(x, y, 0) case (x,...
If the file given to `wasmer create-exe [file]` is a PiritaFile, the resulting exe will contain all compiled atoms and filesystems and run as a standalone binary. #### TODO -...
This PR enables support of `PiritaFile`s with the `USE_PIRITA=1` flag, which will force the CLI to install the packages in the `PiritaFile` format (and convert them if backend support isn't...
I'm trying to remove any `panic!()` macros from my build to see how much the resulting size of the binary is affected. ```sh cargo install xargo rustup component add rust-src...