raylib-rs icon indicating copy to clipboard operation
raylib-rs copied to clipboard

Project does not compile with serde enabled as a feature

Open RyanDeivert555 opened this issue 1 year ago • 1 comments

When having raylib = { version = "3.7.0", features = ["with_serde"]} in the Cargo.toml file in order to use serde on Raylib's structs (through the optional_serde_struct macro, the project will not compile. The compiler states that both Serialize and Deserialize are not in scope in the files of the library. Is this an oversight or is there something else I have to do for the program to compile? The files I added are screenshots of the error.

Screenshot 2023-06-14 102410 image

RyanDeivert555 avatar Jun 14 '23 17:06 RyanDeivert555

Incase anyone comes across this issue as well, it was fixed in https://github.com/deltaphc/raylib-rs/pull/117. The fix isn't in the latest release 3.7.0, so I've had to add this dependency through git

cargo add --git https://github.com/deltaphc/raylib-rs.git --rev 03240d0 raylib

The revision used here is the commit that introduced the fix. Feel free to use a more up to date revision

RMcTn avatar Oct 18 '23 20:10 RMcTn