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
So I run cargo build --release and then cargo install --path . thinking the install task will have significantly less work to do, however it rebuilds the entire codebase all over again.
What's the correct way to build and then install?
The text was updated successfully, but these errors were encountered:
@txtsd I believe you can just run cargo install, it will build automatically before installation. But I found this cargo issue: rust-lang/cargo#5667 cargo-install unnecessarily rebuilds everything
So I run
cargo build --release
and thencargo install --path .
thinking the install task will have significantly less work to do, however it rebuilds the entire codebase all over again.What's the correct way to build and then install?
The text was updated successfully, but these errors were encountered: