https://github.com/zoltan-nz/rust-playground
https://github.com/zoltan-nz/rust-playground
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zoltan-nz/rust-playground
- Owner: zoltan-nz
- Created: 2021-12-23T04:12:29.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-02-21T06:17:18.000Z (8 months ago)
- Last Synced: 2025-02-21T07:23:51.220Z (8 months ago)
- Language: Rust
- Size: 31.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rust Playground
```
cargo init
```https://crates.io/crates/cargo-edit
```
cargo install cargo-edit
```https://github.com/casey/just
```
cargo install just
```https://doc.rust-lang.org/book/ch14-03-cargo-workspaces.html
```
cargo install cargo-workspaces
``````
cargo new app
cargo new --lib my-lib
```https://github.com/dtolnay/cargo-expand
```
cargo install cargo-expand
```Linting
```
cargo clippy
```