Martin Lindhe
Martin Lindhe
Update as of today (ebiten 2.3.1, tinygo 0.23) # On Windows ``` ❯ tinygo run .\cmd\app\main.go # github.com/hajimehoshi/ebiten/v2/internal/glfw ..\..\..\go\pkg\mod\github.com\hajimehoshi\ebiten\[email protected]\internal\glfw\notexternaldll_windows.go:51:22: UserCacheDir not declared by package os ``` # On Linux ```...
I hit the same issue, worked around it by moving the static folder to the workspace root, and symlinking it to the project root. Having a workspace declared in Cargo.toml...
Some basic 32-bit support has been committed recently. Far from all 32-bit ops are implemented yet.
I totally agree. Cairo came as a consequence of using gtk-rs. I'd prefer to switch gui framework at this time
Yea, I agree. We'd want as much code as possible in rust.
@xiorcal consider https://github.com/gen2brain/beeep for more recent development
Another xxd feature that I find is most lacking is -r (reverse hexdump). Using it you can convert a hexdump into a binary, like this: xxd file > file.hex cat...
There is also the community driven fork at https://github.com/golang-jwt/jwt
I just came here to report the same. It is triggered by gopkg.in/yaml.v2 aka https://github.com/go-yaml/yaml Here is output on my machine, tinygo 0.24: ``` ld.lld: warning: duplicate /export option: hypot...
I worked around the issue with ```rust fn val_deserializer, { let s = String::deserialize(d)?; match &s[..] { "" => Ok(0), _ => Ok(s.parse::().unwrap()), } } ```