deltaphc / raylib-rs

Rust bindings for raylib
Other
715 stars 123 forks source link

Project does not compile with serde enabled as a feature #159

Open RyanDeivert555 opened 1 year ago

RyanDeivert555 commented 1 year ago

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

RMcTn commented 8 months ago

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