With the recent ability for Rust to target AVR, it's time for me to bring my favorite feature of Rust to Arduino: async/await. Asynchronous code allows for doing (seemingly) multiple things at once, without the memory or CPU overhead of threads. (more…)
Read more »
This is totally unscientific and pretty useless. In real world, business
logic will dominate on performance side in any case. (more…)
Read more »
While trying to implement a long planned feature, an ad block in Angelfish, the Plasma Mobile webbrowser,
I was looking for a mostly complete and performant library that provides this functionality. (more…)
Read more »
If you're looking to write fast code in Rust, good news! Rust makes it really
easy to write really fast code. The focus on zero-cost abstractions, the
lack of implicit boxing and the static memory management means that even naïve
code is often faster than... (more…)
Read more »
A minimal CLI framework written in Rust. Contribute to ksk001100/seahorse development by creating an account on GitHub. (more…)
Read more »