Open tazz4843 opened 3 years ago
Adding raylib as a git dependency
[dependencies.raylib]
git = "https://github.com/Ewpratten/raylib-rs"
branch = "windows_xcompile"
works fine, but adding it as a normal dependency
[dependencies]
raylib = "3.5.0"
fails with the above error.
I'm not sure how you ended up on my fork, and not upstream..
Anyways, please don't use my git url or branch (ewpratten/raylib-rs
). Those are designed to support two Ludum Dare games that require some hacks to make everything work.
Use this instead:
[dependencies]
raylib = { version = "3.5", git = "https://github.com/deltaphc/raylib-rs" }
@deltaphc you probably want to close this
Used
cross build --target x86_64-pc-windows-gnu
to invoke the build, and it throws this errorUsing version 3.5.0, getting the same issue as in #66 but it doesn't seem to be fixed for me.