-
#Zellij integration in #Rustlings 🪟
https://asciinema.org/a/902151
Works well with terminal text editors like #HelixEditor :helix:
Will be released soon ✨️
-
Released a new version of #OxiTraffic to use the new version of #SQLx that fixes the following database security vulnerability:
⚠️ RUSTSEC-2024-0363
https://rustsec.org/advisories/RUSTSEC-2024-0363.htmlAlso replaced Askama with #Rinja for the templates. The migration was trivial 😃
-
Ever wondered why the language server #RustAnalyzer isn't showing all errors, warnings and lints? 😕
This is especially an issue in #Rustlings where Rust-Analyzer only shows the diagnostics in some of the exercises.
Turns out, Rust-Analyzer uses `cargo check` under the hood which itself stops checking early unless you specify the `--keep-going` flag 🏃🏼
This is fixed in Rust-Analyzer now 😃
https://github.com/rust-lang/rust-analyzer/pull/17561
Thanks to @veykril 🤗
-
Yesterday, I submitted a PR to port #Rustlings to Clap:
https://github.com/rust-lang/rustlings/pull/1633
But @manpacket asked me to try #bpaf, so here is the second PR that ports to bpaf:
https://github.com/rust-lang/rustlings/pull/1634
Which one do you like more and why? 🤔
Vote here and with a 👍 reaction on one of the PRs.
-
I did benchmark a function in Julia with BechmarkTools, so JIT compilation is not the problem here.
I only need a good plotting library now in Rust. Don't get me wrong, #plotters is nice, but it needs more love :blobcattilt:
-
@smranaldi Update after 50 days:
I did my first big project with scientific computations in #RustLang. I did use #egui which fits perfectly for simulations with live plots.
#rayon is a must for load balanced multithreading. Multithreading in general is fearless with the type system with Arc, Mutex, atomics, channels etc. (unless you produce a deadlock).
I loved #indicatif for threadsafe progressbars for my long simulations. 100% CPU usage with fancy progressbars, I love it!
1/4
-
@smranaldi I have used Julia and would recommend it for this field. But I wanted to try Rust for numerical computations very soon. Check out #polars, #ndarray and #plotters.