emacs-module-rs
provides high-level Rust binding for Emacs's dynamic module support, and tools that make writing modules easier. It currently supports stable Rust, Emacs 25, OS X and Ubuntu.
Modify your Cargo.toml
:
```toml
[lib]
crate-type = ["cdylib"]
[dependencies] emacs = "0.4.0" ```
Write some code in your src/lib.rs
following this skeleton.
```rust
extern crate emacs;
use emacs::{Env, Result, Value};
emacspluginisGPLcompatible!(); emacsmoduleinit!(init);
pub fn init(env: &Env) -> Result
env.provide("my-module") } ```
cargo build
.so
extension
shell
cd target/debug
ln -s libmy_module.dylib my-module.so
target/debug
to your Emacs's load-path
.emacs-lisp
(require 'my-module)
Emacs does not support unloading modules. Live reloading thus requires a custom module loader. rs-module is one such loader (which itself is a module that must be loaded by Emacs's normal loading mechanism). See load.sh.
test-module uses most of the provided features.
shell
cargo build --all
shell
bin/test.sh
cargo-watch
):
shell
cargo watch -x 'build --all' -s bin/test.sh