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
After running cargo build, I wanted to find the build it made.
My first guess was that it would be in builds/, but there was such folder.
The output from cargo build did not say where it put it either.
I looked through the folders and finally found it in target/release/. To me, that's not a very intuitive name considering the command is called cargo build.
Have you considered using a more intuitive name, like builds/? Or maybe have cargo build say where it put it after it has finished?
The text was updated successfully, but these errors were encountered:
Since the target/ directory is so pervasive now, we can't simply change it. However, we are considering some changes for the layout of target directory, like splitting the intermediate build caches and he final artifact directory. See some more discussions in
Or maybe have cargo build say where it put it after it has finished?
Regarding adding more messages, there are also complaints about Cargo being too verbose. We have some other discussions of revmaping the console output.
After running
cargo build
, I wanted to find the build it made.My first guess was that it would be in
builds/
, but there was such folder.The output from
cargo build
did not say where it put it either.I looked through the folders and finally found it in
target/release/
. To me, that's not a very intuitive name considering the command is called cargo build.Have you considered using a more intuitive name, like
builds/
? Or maybe havecargo build
say where it put it after it has finished?The text was updated successfully, but these errors were encountered: