-
Why is the debug directory 3GB when all I have is a 2d circle that moves with the mouse? |
Beta Was this translation helpful? Give feedback.
Answered by
MrGVSV
Dec 14, 2023
Replies: 1 comment 1 reply
-
Unfortunately that's just the nature of Rust programming. Rust caches the builds of all dependencies including debug symbols. Every now and then, you can try and run |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
archsolar
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Unfortunately that's just the nature of Rust programming. Rust caches the builds of all dependencies including debug symbols. Every now and then, you can try and run
cargo clean
to clear it out and build from scratch again.