rust - 如何删除使用 cargo install 安装的二进制文件?

标签 rust rust-cargo

rustfmt 这样的箱子在用 cargo install 安装后如何删除

最佳答案

全局二进制包,如 rustfmt可以使用命令 cargo uninstall [options] <spec> 删除.使用 cargo help uninstall以获取更多详细信息。

关于rust - 如何删除使用 cargo install 安装的二进制文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44664638/

相关文章:

rust - 相同代码 : spurious compile time errors? 的 cargo 构建

rust - 如何将 SystemTime::now() 转换为整数类型?

split - 在 Rust 中将拆分解包为元组?

rust - 如何处理 Rust/Cargo 中的 3rd 方静态 C 库依赖项?

rust - 使用沙沙本体时如何减少或加快重建速度?

multithreading - 在 Rayon 线程内调用 `Arc::new()` 会导致垃圾编译器错误

rust - 什么是 crate 属性,我应该在哪里添加它?

Rust 包使用不稳定库功能 'iter_nth_back'

git - 如何在 Cargo 中使用相对的 git 子模块路径?

rust - cargo 日志消息存储在哪里?