https://github.com/f2calv/playground-rust
Rust learnings
https://github.com/f2calv/playground-rust
rust rust-lang
Last synced: about 1 month ago
JSON representation
Rust learnings
- Host: GitHub
- URL: https://github.com/f2calv/playground-rust
- Owner: f2calv
- License: unlicense
- Created: 2022-10-10T12:13:51.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-08T14:20:59.000Z (over 3 years ago)
- Last Synced: 2025-01-26T07:46:46.755Z (over 1 year ago)
- Topics: rust, rust-lang
- Language: Dockerfile
- Homepage:
- Size: 48.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rust Playground
Learning Rust via;
- https://www.rust-lang.org/learn;
- [the official book](https://doc.rust-lang.org/book/)
- [the rustlings course](https://github.com/rust-lang/rustlings/)
- [rust by example](https://doc.rust-lang.org/stable/rust-by-example/)
- [@letsgetrusty](https://www.youtube.com/@letsgetrusty)
- [@codetothemoon](https://www.youtube.com/@codetothemoon)
## Local Development via vscode devcontainer
- Install vscode
- Install [Remote Development Extension Pack for vscode](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.vscode-remote-extensionpack)
- Rust has loads of small files which will give you performance problems when working in a container with a mounted volume, so mount the repository in a virtual volume;
- In vscode press F1 and select 'Dev Containers: Clone Repository in Container Volume', enter this repo URL.
- After the container image has built you are ready to Rust!