https://github.com/webbertakken/learning-rust
Nothing much to see here, just me learning Rust :)
https://github.com/webbertakken/learning-rust
Last synced: 10 months ago
JSON representation
Nothing much to see here, just me learning Rust :)
- Host: GitHub
- URL: https://github.com/webbertakken/learning-rust
- Owner: webbertakken
- License: mit
- Created: 2021-08-20T22:08:39.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-01-20T23:18:13.000Z (over 3 years ago)
- Last Synced: 2025-02-06T11:31:19.354Z (over 1 year ago)
- Language: Rust
- Homepage:
- Size: 4.31 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Learning Rust
Nothing much to see here, just me learning Rust :)
Each folder contains a Rust project.
The basics folder contains examples of most of the language's basics.

## Usage
### Prerequisites
- [cargo-watch](https://crates.io/crates/cargo-watch)
### Build & Run
Usage example
```shell
cd basics
cargo run
```
Alternatively, to run from the root directory
```shell
cargo run --manifest-path=basics/Cargo.toml
```
### Watch
Usage example
```shell
cd basics
cargo watch -x run
```
Alternatively, to run from the root directory
```shell
cargo watch -x 'run -- --manifest-path=basics/Cargo.toml'
```
Example usage for image processing
```shell
cd image-processing
cargo watch --ignore output -x 'run -- -v --blur .5 --fractal im
ages/pens.png output/pens.png'
```
## License
[MIT](./LICENSE) license