Cargo stuff
Notes on books
Docs (worth reading)
- https://doc.rust-lang.org/std/collections/
- https://doc.rust-lang.org/std/io/
- https://docs.rs/log/latest/log/
How to build X in Rust
- https://deno.com/blog/roll-your-own-javascript-runtime (Roll your own javascript runtime)
Concurrency
What X means in Rust?
https://github.com/pretzelhammer/rust-blog/blob/master/posts/sizedness-in-rust.md
Links
- https://github.com/sger/RustBooks#advanced-books
- https://hello-rust.show/
- https://www.youtube.com/c/JonGjengset
- https://github.com/rust-lang/rustlings
- https://github.com/Dhghomon/easy_rust/blob/master/README.md
- Wasm + rust https://github.com/rustwasm/book
- https://signoz.io/blog/opentelemetry-rust/
- https://github.com/hyperium/tonic/blob/master/examples/helloworld-tutorial.md (grpc + Rust)
- https://tokio.rs/tokio/topics/tracing
- Fat Pointers: https://stackoverflow.com/questions/57754901/what-is-a-fat-pointer
- https://cheats.rs/#idiomatic-rust
Books
- https://www.manning.com/books/refactoring-to-rust
- https://rust-unofficial.github.io/patterns/
- https://github.com/rust-lang-nursery/rust-cookbook
My Projects
- Databook: Using wasm as a plugin interface (with wit). Server running with grpc and tracing setup
Random Rust concepts
Random low-level concepts
Libraries
- https://hyper.rs - Fast and safe HTTP for the Rust language.
- https://pest.rs/ - pest is a general purpose parser written in Rust with a focus on accessibility, correctness, and performance. It uses parsing expression grammars (or PEG) as input, which are similar in spirit to regular expressions, but which offer the enhanced expressivity needed to parse complex languages.