https://github.com/devforfu/rust
Rust Playground
https://github.com/devforfu/rust
Last synced: about 1 year ago
JSON representation
Rust Playground
- Host: GitHub
- URL: https://github.com/devforfu/rust
- Owner: devforfu
- Created: 2021-05-13T20:10:46.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-03T15:17:03.000Z (almost 5 years ago)
- Last Synced: 2025-02-09T01:42:42.318Z (over 1 year ago)
- Language: Rust
- Size: 114 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rust Playground
A repository created to implement snippets and small programs while reading the following Rust books.
1. [The Rust Programming Language.](https://doc.rust-lang.org/book/)
2. [Programming Rust, 2nd Edition.](https://www.oreilly.com/library/view/programming-rust-2nd/9781492052586/)
## Contents
The project is organized as a bunch of Rust crates. Each folder is (somewhat loosely) dedicated to a certain
language topic. Some are more involved, while others are just small snippets.
* `fern_sim` - toy example to show Rust modules layout;
* `smart_pointers` - figuring out how Rust pointers work;
* `structs` - playing around with structs and enums;
* `oop` - structuring code in the OOP way;
* `concurrency` - practicing concurrency primitives;
* `minigrep` - an example from Rust's CLI book;
* `web` - a trivial web-server;
* `advanced` - an umbrella crate for everything else.