An open API service indexing awesome lists of open source software.

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

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-shell

cargo init
cargo new

cargo build [--bin ]
cargo clean
cargo test
cargo bench

cargo update
cargo add
cargo search

cargo run [--bin ] [-- arg]

cargo doc [--open]
cargo fix
cargo fmt
cargo clippy
cargo check

cargo install
cargo uninstall

rustup doc [--open] [--no-deps]
rustup update [toolchain]
rustup toolchain list

rustdoc .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)