book
rust
book | rust | |
---|---|---|
635 | 2,723 | |
14,871 | 96,479 | |
1.3% | 1.1% | |
9.3 | 10.0 | |
14 days ago | 5 days ago | |
Rust | Rust | |
GNU General Public License v3.0 or later | GNU General Public License v3.0 or later |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
book
-
Building a Single-Threaded Web Server | Rust Programming
Welcome to Building a Single-Threaded Web Server. This lab is a part of the Rust Book. You can practice your Rust skills in LabEx.
-
Why I Prefer RST to Markdown
The link below (https://github.com/rust-lang/book/tree/main/tools) could imply the book was written as Word .docx with named styles, which enabled transformation into markdown for the mdBook?
-
Rust for Rustaceans
agreed, and the book is pretty upfront about it being for more intermediate readers. i felt like i hit the sweet spot for this book after having gone through the rust programming language [0], zero to production in rust [1], and having worked on a few larger rust projects. all three books are really good in their own way.
[0] https://doc.rust-lang.org/book/
-
Up(sun) and running with Rust: The game-changer in systems programming
Explore "The Rust Programming Language" official book
-
Rust Core Concepts List
The Rust Programming Language Book: https://doc.rust-lang.org/book/
-
How to Write Tests
Welcome to How to Write Tests. This lab is a part of the Rust Book. You can practice your Rust skills in LabEx.
-
How does Rust go “from” here “into” there
The Rust book
- Rust Book maintainer ignore user request to fix installation guide
-
Learning Rust: A clean start
My first port of call was to google learn rust which lead me to "the book". The book is a first steps guide written by the rust community for newbies (or Rustlings as they're called) to gain a 'solid grasp of the language'.
-
Prodzilla: From Zero to Prod with Rust and Shuttle
Before Prodzilla, I’d read 'The Book' a couple of times, and had made my way through Rustlings, but hadn’t yet built a serious project in Rust.
rust
-
Understanding Rust and Building a Simple Calculator API from Scratch
Install Rust: To get started with Rust, you need to install it on your computer. Rust provides an installer called rustup that makes it easy to get started. You can download the installer from rust-lang.org.
-
An Optimization That's Impossible in Rust
I never heard of "German strings" in place of the small string optimization before! And there had been way too many proposals to add such types to the standard library [1] [2] [3] [4]. My understanding is that:
1. Both `Vec` and `String` should share the same layout as part of the standard library's contract.
2. Unlike `String`, the equivalent optimization for `Vec` is more questionable especially when T might be any type. C++ standard libraries frequently do implement multiple layouts for std::string but not for std::vector for the same reason.
3. Rust never allows an implicit copying of `String` in the first place, which greatly benefits from the SSO, so the lack of SSO in Rust is less important compared to C++.
[1] https://github.com/rust-lang/rust/issues/4991
[2] https://github.com/rust-lang/rust/issues/20198
[3] https://github.com/rust-lang/rfcs/pull/2990
[4] https://github.com/rust-lang/unsafe-code-guidelines/issues/4...
-
Reading Files in Rust
Rust: Install Rust from rust-lang.org.
-
Setup your own Standalone/Local Stellar Blockchain to test different Smart Contracts & dApps
Which is an implementation of Language Server Protocol for Rust programming language. It provide a lot of useful features for your development in Rust, such as code completion, syntax highlighting, inlay hints, etc. You can checkout the manual of rust analyzer to know more about it.
-
Rust's Ugly Syntax (2023)
If you encounter compiler errors that are misleading in their suggestions, or have proposals for better output in specific cases, please file a ticket: https://github.com/rust-lang/rust/issues?q=is%3Aissue+label%...
-
From Julia to Rust
Author here!
I have no idea why this blog is making the rounds again and I've learned a lot of Rust since, see my (badly benchmarked!) presentation at this year's Scientific Computing in Rust 2024:
https://www.youtube.com/watch?v=bdsBhqKOe7A
and a PR I sent in for the Rust compiler to speed it up for some low hanging fruit:
https://github.com/rust-lang/rust/pull/110477
I'll have to revisit this blog at some point and see what I should update, as well as a "From Rust to Julia" post for those that want to venture into that world as well.
- Testes de Integração no Symfony com Testcontainers
-
Postgres Foreign Data Wrappers with Wasm
Wrappers is an open source project that simplifies the creation of Postgres Foreign Data Wrappers using Rust.
-
Rust vs Go? Which should you choose in 2024
Rust is a high-level programming language with a strong focus on memory safety created by Graydon Hoare, a former Mozilla employee as a personal project in 2006. Memory-safe languages like Rust have been recommended by the United States Department.
-
Why am I writing a Rust compiler in C?
> Not sure I follow - isn't rustc still only a compiler frontend to LLVM, like clang is for C/C++?
The rustc source tree currently includes LLVM, GCC, and Cranelift backends: https://github.com/rust-lang/rust/blob/c6db1ca3c93ad69692a4c...
(Cranelift itself is written in Rust.)
What are some alternatives?
rust-by-example - Learn Rust with examples (Live code editor included)
carbon-lang - Carbon Language's main repository: documents, design, implementation, and related tools. (NOTE: Carbon Language is experimental; see README)
Rustlings - :crab: Small exercises to get you used to reading and writing Rust code!
zig - General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.
solana-program-library - A collection of Solana programs maintained by Solana Labs
Nim - Nim is a statically typed compiled systems programming language. It combines successful concepts from mature languages like Python, Ada and Modula. Its design focuses on efficiency, expressiveness, and elegance (in that order of priority).
nomicon - The Dark Arts of Advanced and Unsafe Rust Programming
Odin - Odin Programming Language
github-cheat-sheet - A list of cool features of Git and GitHub.
Elixir - Elixir is a dynamic, functional language for building scalable and maintainable applications
too-many-lists - Learn Rust by writing Entirely Too Many linked lists
Rustup - The Rust toolchain installer