** Speaker announcement ** Catch Cliff L. Biffle's talk 'Common Pitfalls of Rewriting Things In Rust' at RustWeek 2026!
Info & tickets: https://2026.rustweek.org/talks/cliff/
See you in Utrecht May 18-23, 2026!
** Speaker announcement ** Catch Cliff L. Biffle's talk 'Common Pitfalls of Rewriting Things In Rust' at RustWeek 2026!
Info & tickets: https://2026.rustweek.org/talks/cliff/
See you in Utrecht May 18-23, 2026!
`rilua` now has a WASM demo page:
https://wowemulation-dev.github.io/rilua/
So you can now try out our #lua in #rustlang implementation without any downloads.
maybe someone in #rustlang can explain cve-rs another way?
im not too familiar with rust myself so i dont want to lead u down the wrong direction, but &’static can be used in place of &’a because &’static (which lasts forever) is guaranteed to last &’a (which lasts within that forever)
the video explains that this is because of contravariance: https://en.wikipedia.org/wiki/Type_variance#Contravariant_method_parameter_type
i definitely had to watch the vid a couple of times to understand it 😅
Terminal now can help you with formal proofs and theorem provers 🤯
📐 **lean-tui** — A TUI for visualizing Lean programs and proofs
💯 Live proof trees, data/effect flow views & real-time updates from your editor
🦀 Written in Rust & built with @ratatui_rs
⭐ Source: https://codeberg.org/wvhulle/lean-tui
#rustlang #ratatui #tui #lean #theoremproving #cli #devtools #terminal
Rust debugging survey 2026 has launched
https://blog.rust-lang.org/2026/02/23/rust-debugging-survey-2026/
Fun #esp32 trick (on the s3 at least) - you can force it into download mode without having access to the GPIO0 wire; there's a RTC_CNTL_FORCE_DOWNLOAD_BOOT bit. In #rustlang with the esp-hal it looks like:
// force download mode after the reboot
peripherals::LPWR::regs().option1().modify(|_, w| {
w.force_download_boot().set_bit()
});
software_reset();