Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
现在,我使用的唯一方法是 cargo clean然后再cargo build一次。
cargo clean
cargo build
您还可以删除target包含所有构建工件的目录。
target
有两种方法可以进行干净的编译:
如果您使用 Mac 或 Linux,请使用以下命令删除目录目标
rm -rf 目标
使用以下命令清理和构建货物:
cargo clean && cargo build --release