I quite like "#[deny[clippy::unwrap_used)]", outside test code, but it does require me to break my habit of just letting code panic on unexpected conditions, instead of noticing them and returning an error.
I quite like "#[deny[clippy::unwrap_used)]", outside test code, but it does require me to break my habit of just letting code panic on unexpected conditions, instead of noticing them and returning an error.
Pitfalls of Safe Rust
https://corrode.dev/blog/pitfalls-of-safe-rust/
Discussions: https://discu.eu/q/https://corrode.dev/blog/pitfalls-of-safe-rust/
I think I found something weird & scary with `#[target_feature]`. Is this expected?
This feels like it should *at minimum* trigger a lint. How am I supposed to know whether trait impls added extra safety preconditions — especially when using `dyn/impl Trait` and/or an unsealed trait?
Nice new milestone for #embedded #Rust development: defmt 1.0 has been released. The crate enables logging for microcontrollers without text or number formatting on the device – instead, the device sends numbers of interned strings to the host, which composes log messages.
1.0 is not only a stable release, but also enables logging #CBOR data into diagnostic notation on the host.
Rust dev - Tauri event system for ArkSync
My article about the experience of Rust integration into a C++ code base
https://clickhouse.com/blog/rust
Discussions: https://discu.eu/q/https://clickhouse.com/blog/rust
Rust finally has trait upcasting and target_feature in stable with 1.8.6!
https://blog.rust-lang.org/2025/04/03/Rust-1.86.0.html
#rustlang #rust
@thezerobit interesting, thanks. I recently began building my first REST API so learning, learning, learning and have GraphQL on my list to look into.
No reason I can't offer both at least in the short term so your comments are welcome.
One issue I guess is the level of support, esp for a novice.
I found a actix + utoipa have helped a lot as I'm coding on a Rust backend. Do you know if there are similar tools to help with #GraphQL+ #Rustlang?
#Rust 1.86.0 released by @rust - New features: trait upcasting, HashMaps and slices indexing multiple elements mutably, safe functions marked with #[target_feature], debug assertions that pointers are non-null when required for soundness, make missing_abi lint warn by default, etc. https://blog.rust-lang.org/2025/04/03/Rust-1.86.0.html #RustLang #OpenSource #cybersecurity #software #engineering #tech
made another little #video about my media proxy that allows me to have my own little Youtube/Peertube on my website
if you like #RustLang and want to come along for a quick code review, you're gonna enjoy this
https://bram.dingelstad.works/videos/making-syrinx-my-media-proxy/
#rustlang 's new 'get_disjoint_mut' looks like it will simplify some of the previously painful Rustisms:
https://doc.rust-lang.org/stable/std/primitive.slice.html#method.get_disjoint_mut
Being a graphics noob, I was wondering why colors rendered perfectly on my Windows machine but looked off on my 10-year-old Mac. Turns out it was all about color spaces. I had to manually handle the conversion. Here’s a more accurate rendering. #rustlang #wgpu #creativeCoding #generativeArt #rendering
Rust 1.86 just released: https://blog.rust-lang.org/2025/04/03/Rust-1.86.0.html and it stabilizes trait upcasting - especially useful in connection to the Any trait #rustlang
I'll start by posting some of my earlier progress here to catch this timeline up. I've started another round of rendering practice, this time with wgpu, and audio will be a key focus from the beginning, not an afterthought. This is the mandatory triangle! #rustlang #wgpu #creativeCoding #generativeArt
What do you call MongoDB in a terminal?
**tongo** — A TUI for navigating and manipulating MongoDB.
Supports fuzzy search, multiple sessions, customizations & more!
Written in Rust & built with @ratatui_rs
Is there a tool, which finds spelling errors in clippy lints?
I have a bunch of lints in my Cargo.toml and I'm never sure that I didn't make any typos...