You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like you could easily half the compilation time by not having a lib.rs and a main.rs in the same crate. I assume this setup results in rustc building the crate twice. Without that a cargo check is from me less then 10 seconds, a cargo build less then 20 seconds when having only a lib.rs. So the right strategy here seems to be having two crates, one for the wundergraph definition, and one for the final binary.
Example -> https://github.com/Farkal/test-wundergraph
The text was updated successfully, but these errors were encountered: