CodingRust项目配置管理 2023-09-07 Source Edit History 命令 rustup更新 Rust: rustup update cargo创建项目: cargo new world_hello 运行项目: cargo run release 模式 cargo run --release cargo build --release 检查代码: cargo check 手动编译 cargo build ./target/debug/world_hello