-
For completeness: I've tested this on various nightly versions, but I can't test it on anything newer than 2022-10-18, due to https://github.com/rust-lang/rust/issues/106576
-
InfluxDB
Purpose built for real-time analytics at any scale. InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
-
bevy_egui
This crate provides an Egui integration for the Bevy game engine. πΊπ¦ Please support the Ukrainian army: https://savelife.in.ua/en/
fwiw, I've had a blast using https://github.com/mvlabat/bevy_egui - you might find it easier as well.
-
my launcher
-
riverwm wayland compositor
-
It's pretty common to avoid macros as they can seem too magical a lot of the time. And with traits, there's experiments like miniserde which specifically avoid monomorphization overhead. I also see people who want to avoid having lots of dependencies relatively often.
-
-
perseus
A state-driven web development framework for Rust with full support for server-side rendering and static generation.
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
https://github.com/ggez/ggez/issues/1158 For this is it as simple as changing the methods to take &Image, .clone() it inside and use that or is cloning missing the point of the change?
-
ufmt (which I presume you're actually using on AVR) used to have a bug where it didn't correctly print larger numbers (https://github.com/japaric/ufmt/issues/28), but this actually seems to be a bug in the compiler, because something like this:
-
The main limitation of prepared statement is that you can only insert values, so you cannot dynamically construct the query depending on the parameters. For that, you can use a query builder such as sea-query, which should handle that.