Rust (programming language)
Rust is a multi-paradigm, general-purpose programming language that emphasizes performance, type safety, and concurrency. It enforces memory safety—meaning that all references point to valid memory—without a garbage collector. To simultaneously enforce memory safety and prevent data races, its "borrow checker" tracks the object lifetime of all references in a program during compilation.
— Wikipedia
Learning path
Rust is practically unknown to me, learning materials:
-
The Rust Programming Language - The Rust Programming Language
-
Rust by the Numbers: The Rust Programming Language in 2021 - The New Stack
-
rust - How can I perform parallel asynchronous HTTP GET requests with reqwest? - Stack Overflow
-
Blandy - Programming Rust
Libraries and frameworks
- ratatui - TUI library for Rust