Reputation: 500
I downloaded a Rust project and built it with cargo build
. I have not configured Rust beforehand. Where can I find the output binaries?
Upvotes: 6
Views: 8931
Reputation: 5959
They'll be under target/debug
or target/release
depending on which configuration you built - if the command was just cargo build
, then target/debug
.
Upvotes: 8