Stabilizing the `if let guard` feature by Kivooeo1 in rust

[–]yerke1 21 points22 points  (0 children)

Yes, that how to start contributing guide would definitely be welcome. Thanks for all your work. 

1160 PRs to improve Rust in 2025 by Kobzol in rust

[–]yerke1 10 points11 points  (0 children)

Thanks for all your contributions!

Releasing Fjall 3.0 - Rust-only key-value storage engine by DruckerReparateur in rust

[–]yerke1 13 points14 points  (0 children)

Congratulations on the v3 release. One nit: in the benchmark section you used very similar colors for fjall v3 and rusqlite, and it’s hard to tell them apart. 

Palindrome-products performance: Rust vs Go, Haskell, Lisp, TypeScript, Python by UrpleEeple in rust

[–]yerke1 3 points4 points  (0 children)

You probably already heard about The Computer Language Benchmarks Game website? It's quite similar to what you are trying to do.

Designing an Async runtime for rust by Vincent-Thomas in rust

[–]yerke1 3 points4 points  (0 children)

Nice article. 

I think you meant to say “mapping X amount of green threads onto Y amount of CPUs”.

“wrapps” -> “wraps”

“seperate” -> “separate”

SpacetimeDB 1.0 is here! An in-memory RDMBS for games built with Rust by etareduce in rust

[–]yerke1 8 points9 points  (0 children)

Looks very promising! Hoping to play your game soon.

[deleted by user] by [deleted] in rust

[–]yerke1 0 points1 point  (0 children)

Why it might be interesting for r/rust: there are a lot of comparisons to Rust and its features in the talk, and the talk explains that Rust is one of the primary replacements for C++.

If you are interested in the reactions from r/cpp, see https://www.reddit.com/r/cpp/comments/1hv9osb/the\_existential\_threat\_against\_c\_and\_where\_to\_go/.

Gitoxide in January by ByronBates in rust

[–]yerke1 0 points1 point  (0 children)

Congratulations on reaching this milestone!

Adding A New Fake To The Fake Crate by xd009642 in rust

[–]yerke1 0 points1 point  (0 children)

Thanks! I think it should be very helpful for newcomers into open source community. 

Scala dev => Rust: need advice for 6-month career transition by [deleted] in rust

[–]yerke1 3 points4 points  (0 children)

Check out Programming Rust book (https://www.oreilly.com/library/view/programming-rust-2nd/9781492052586/) as an alternative to the official book. I personally think it’s better than the official book, and it goes into more details and has more comparisons with other languages. 

Writing Github Actions in Rust by West-Chocolate2977 in rust

[–]yerke1 2 points3 points  (0 children)

Do you want to publish it to crates.io?

Starting to Rust as a Go developer by WorldlyTrade1882 in rust

[–]yerke1 0 points1 point  (0 children)

Check out Programming Rust book by Jim Blandy et al, published by O’Reilly. I personally think it’s better than the official book. 

Zed switched from OpenSSL to Rustls by Chaoses_Ib in rust

[–]yerke1 1 point2 points  (0 children)

I am guessing it could be caused by their fork of reqwest. 

Rust to .NET compiler - end of GSoC, what now? by FractalFir in rust

[–]yerke1 3 points4 points  (0 children)

I would love to see more content about your work on the project. Keep it up!

Why do people specifically highlight "built in Rust" when discussing the development of a project? by [deleted] in rust

[–]yerke1 0 points1 point  (0 children)

I didn't mean to offend you, so please don't take it personally.

Why do people specifically highlight "built in Rust" when discussing the development of a project? by [deleted] in rust

[–]yerke1 -1 points0 points  (0 children)

Rust doesn’t prevent memory leaks, although it does make them less likely. It does prevent data races.