Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vitalegi/rust-playground
Playground from 0 to hero(?) with Rust
https://github.com/vitalegi/rust-playground
Last synced: 1 day ago
JSON representation
Playground from 0 to hero(?) with Rust
- Host: GitHub
- URL: https://github.com/vitalegi/rust-playground
- Owner: vitalegi
- Created: 2023-07-22T12:55:33.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-07-25T10:14:56.000Z (over 1 year ago)
- Last Synced: 2023-07-25T10:56:47.593Z (over 1 year ago)
- Language: Rust
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# README
Collection of samples to improve mastery of rust programming language & its ecosystem.
## How to start a project
```powershell
$project_name="hello_world"
cargo new $project_name
cd $project_name
```## Common commands
### Clean
```
cargo clean
```### Build
Will generate a _dev_ build, available under `.\target\debug`
```
cargo build
```### Release
Will generate a _prod_ build, available under `.\target\release`
```
cargo build --release
```### Run
```
cargo run
```### Check code
```
cargo check
```### Build dependencies documentation
```
cargo doc --open
```