langston-barrrett.github.io
Rust
Links
- blessed.rs
- Rust Container Cheat Sheet
- Rustonomicon
- Rust Tips and Tricks
- The Rust CLI Book
- The Rust Performance Book
- actions-rs
- Atomics in Rust
- Rust Design Patterns
- Periodic Table of Rust Types
- Rust Cheat Sheet
- Rust Anthology
- High Assurance Rust
- String Rosetta Stone
Tools
- Cargo
- cargo audit
- cargo bloat
- cargo outdated
- cargo udeps: Find unused dependencies in Cargo.toml
- rustup
- Clippy
- rls: Deprecated, use rust-analyzer.
Papers
- Rustbelt
- RustHorn: CHC-based Verification for Rust Programs
Libraries
Visibility
Options:
pub
pub(crate)
pub(in {crate,self,super}::<path>)
pub(self)
(equivalent to notpub
)pub(super)
(equivalent topub(in super)
)
See also the rustc
unreachable_pub
lint.