yeah22
yeah22

Reputation: 500

Default cargo output directory for binaries

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

Answers (1)

apetranzilla
apetranzilla

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

Related Questions