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.
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?