This is an Emacs dynamic module written in Rust that aims to streamline development of other Emacs dynamic modules.
** Installation Building:
cargo build
Load the module in Emacs:
(module-load "/path/to/emacs-rs-module/target/debug/libemacsrsmodule.dylib")
** Live reloading another module To be reloadable, the module must export an entry point named =emacsrsmodule_init=. See [[file:example-rs-module][example-rs-module]].
Run this in Emacs after each =cargo build= to reload the module:
(rs-module/load "/path/to/my-module/target/debug/libmy_module.dylib")