程序开发者手册——Rust

202 阅读1分钟

rustc、rustup、cargo 三者的关系

  • rustc:rust 编译器,类似 node
  • rustup:rust 版本管理器,类似 nvm
  • cargo:包管理器,类似 npm

常用命令

  • rustc --version 查看版本
  • rustup update 更新到最新版本
  • rustup self uninstall 卸载当前系统中安装的 Rust 工具链,包括稳定版(stable)、测试版(beta)和夜间版(nightly)等

实践问题记录

tauri app 运行 rbatis 编译错误help: there is a method with a simil - 掘金

  1. error[E0658]: use of unstable library feature 'lazy_cell'

    完全卸载rustup,二进制文件和工具链。安装最新Rust版本。重新编译。