raylib-rs
raylib-rs copied to clipboard
Project does not compile with serde enabled as a feature
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.
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