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"
- Host: GitHub
- URL: https://github.com/pmuens/rust-lists
- Owner: pmuens
- Created: 2022-11-27T17:38:58.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-11-29T09:12:13.000Z (almost 3 years ago)
- Last Synced: 2025-06-25T05:42:12.839Z (4 months ago)
- Language: Rust
- Size: 9.77 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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-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 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)