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

https://github.com/pmuens/rust-lists

Code written while following "Learn Rust by writing Entirely Too Many Linked Lists"
https://github.com/pmuens/rust-lists

Last synced: 3 months ago
JSON representation

Code written while following "Learn Rust by writing Entirely Too Many Linked Lists"

Awesome Lists containing this project

README

          

# Rust Lists

Code written while following ["Learn Rust by writing Entirely Too Many Linked Lists"](https://rust-unofficial.github.io/too-many-lists).

## 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
```

## 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)