todo
todo
- nightly rust
rustup toolchain install nightly
- rustfmt
rustup component add rustfmt
- clippy
rustup component add clippy
- outdated (可选)(自动检查依赖更新)
cargo install cargo-outdated
- 调试运行
cargo run
- 编译
cargo build --release
- Clippy
cargo clippy -- -D warnings
开发过程中会有部分东西写了但是还没写使用部分,所以开发的时候可以改为
cargo clippy -- -D warnings -A unused
- 格式化
cargo fmt
- 检查是否正确格式化
cargo fmt --check
- 检查依赖更新
cargo outdated