https://github.com/pmuens/rust-in-action
Code written while following the book "Rust in Action" by Tim McNamara
https://github.com/pmuens/rust-in-action
Last synced: 5 months ago
JSON representation
Code written while following the book "Rust in Action" by Tim McNamara
- Host: GitHub
- URL: https://github.com/pmuens/rust-in-action
- Owner: pmuens
- Created: 2022-11-24T15:23:42.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-11-27T14:10:59.000Z (almost 3 years ago)
- Last Synced: 2025-02-17T10:47:53.728Z (8 months ago)
- Language: Rust
- Size: 10.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rust in Action
Code written while following the book ["Rust in Action"](https://www.manning.com/books/rust-in-action) by Tim McNamara.
## Useful Commands
```sh
nix-shellcargo init
cargo newcargo build [--bin ]
cargo clean
cargo test
cargo benchcargo update
cargo add
cargo searchcargo run [--bin ] [-- arg]
cargo doc [--open]
cargo fix
cargo fmt
cargo clippy
cargo checkcargo install
cargo uninstallrustup doc [--open] [--no-deps]
rustup update [toolchain]
rustup toolchain listrustdoc .rs
```## Useful Resources
- [Rust By Example](https://doc.rust-lang.org/rust-by-example)
- [The Rust Programming Language](https://doc.rust-lang.org/book)
- [rust-lang/rustlings](https://github.com/rust-lang/rustlings)
- [Rust Cookbook](https://rust-lang-nursery.github.io/rust-cookbook)
- [Rust Design Patterns](https://rust-unofficial.github.io/patterns)
- [ctjhoa/rust-learning](https://github.com/ctjhoa/rust-learning)
- [Rust for Professionals](https://overexact.com/rust-for-professionals)
- [The Little Book of Rust Books](https://lborb.github.io/book)
- [Learn Rust With Entirely Too Many Linked Lists](https://rust-unofficial.github.io/too-many-lists)