Elias Gabriel Amaral da Silva
Elias Gabriel Amaral da Silva
I note that `Game` has the following methods: ```rust fn interact(&mut self, _input: &mut Self::Input, _window: &mut Window) fn update(&mut self, _window: &Window) ``` But `load::Task::run` can only be called...
For an ui element made out of `graphics::Canvas`, is it better to 1. build a new `ui::Canvas` 2. make it so that `ui::Image` can accept either `graphics::Image` or `graphics::Canvas` 3....
I submitted #104 to avoid copying the buffer every time I submit a texture to the gpu, but it turns out that each gpu backend receives a `&image::DynamicImage` and performs...
### Description Clicking the tray icon should minimize the window (like other apps with systray support, such as Telegram). This is not the same issue as having Nativefier minimize to...
`pest_derive` currently generates a `Rule` enum without a corresponding `enum Rule` anywhere in the code. That way, there is no natural place for inserting attributes and custom derive. My suggestion...
Flyway features [repeatable migrations](https://flywaydb.org/documentation/tutorials/repeatable) for defining objects in the db that can simply be tracked as is from the source code (typically because they are stateless, like `CREATE OR REPLACE...
Can kbct disable a key, instead of mapping it to something else?
I didn't find this in the docs so I thought about asking! Is cactusref's approach fundamentally incompatible with multithreading, or it's just that currently the implementation is focusing in single-threaded...
Rapier uses Rayon's parallel iterators to parallelize the engine (through the macros [`par_iter!` and `par_iter_mut!`](https://github.com/dimforge/rapier/blob/958fba8ed43328e7e33bb9585a735577fa1061e1/src/lib.rs#L70-L90), which either calls `.iter()` or `.par_iter()` (or the mutable equivalents). But Bevy also has parallel...
When using migration frameworks like [Refinery](https://github.com/rust-db/refinery) one usually don't list the entire DB schema at once but create incremental migrations that alter parts of the schema at time. Am I...