hot-lib-reloader-rs icon indicating copy to clipboard operation
hot-lib-reloader-rs copied to clipboard

Reload Rust code without app restarts. For faster feedback cycles.

Results 11 hot-lib-reloader-rs issues
Sort by recently updated
recently updated
newest added

Add support for #[cfg_attr(feature="reload", no_mangle)] README contains example how to use feature flag on one side of API, it would be nice if feature could be used on the other...

The `hot-egui` example crashes on reload, if `eframe` is updated to version any version above `0.19.0` (`0.20.0`, `0.21.0` or `0.22.0`), with the following error: ``` Running `target\debug\hot-egui.exe` error: process didn't...

I've been experimenting with the following [`Iced`](https://github.com/iced-rs/iced) sample code, but it keeps crashing at every `lib` reload. I can't figure out if I'm mistaking something or if it's due to...

On *nix you can overwrite a file that's being read by another process. https://stackoverflow.com/questions/2028874/what-happens-to-an-open-file-handle-on-linux-if-the-pointed-file-gets-moved-or-d This should mean that the compiler can output a new dynamic library without hitting errors because...

Hey all, I've been getting the error above any time I try to use the hot reloading in the nannou example (and my own nannou app). I was able to...

The `hot_functions_from_file!` macro is very helpful, but it only works on single files (which most non-trivial projects grow out of quite quickly). If a user wants to break up their...

I was trying to use this library for a project that uses syscalls, libc, nix etc (e.g. shared memory, mutex). also, tokio async and unsafe are used across my project....

Currently impl methods are not supported, only plain functions. impl methods can be declared as no mangle as well so there is no reason to not support them. This will...

Running on Ubuntu 20.04 When testing out the bevy example, if I add commands to the parameters for player_movement_system then the application seg faults. This happens for any change to...

I was trying to integrate hot-lib-reloader into my bevy project and got to the point where everything compiled and ran, but the hot reloading wasn't working. After trying to fix...