/hello_rust

Hello系列之Rust:学习之旅,不定期提交代码

Primary LanguageRust

Hello系列之Rust: 卷起来

版本: rustc -V

升级: rustup update

卸载: rustup self uninstall

当前仓库使用版本: rustc 1.80.1 (3f5fd8dd4 2024-08-06)

创建项目: cargo new project_name

运行项目: cargo run [--release, 是否以release模式运行]

编译项目: cargo build [--release, 是否以release模式运行]

检测编译: cargo check

更新依赖: cargo update [-p regex, 更新指定依赖]