# rust_study **Repository Path**: canexplorer/rust_study ## Basic Information - **Project Name**: rust_study - **Description**: rust学习 - **Primary Language**: Rust - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-10-19 - **Last Updated**: 2023-11-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # cargo命令 ## 构建 --release cargo build ## 运行 --release cargo run ## 类似eslint,lint工具检查代码可以优化的地方 cargo clippy ## 类似go fmt,代码格式化 cargo fmt ## 查看第三方库的版本和依赖关系 cargo tree ## 运行benchmark(基准测试,性能测试) cargo bench