This crate provides access to the new Emacs module
functionality recently
introduced in Emacs 25.
lib
project, say my_fancy_module
Cargo.toml
in an editor, and:
crate-type = ["cdylib"]
to the [lib]
sectiontoml
libc = "0.2.34"
emacs = { path = "$EMB_PATH" }
Add the following to your src/lib.rs
:
```` Rust
extern crate libc;
extern crate emacs;
use emacs::{Env, Result, EmacsVal};
emacspluginisGPLcompatible!(); emacsmoduleinit!(init);
pub fn init(env: &mut Env) -> Result
env.provide("my-fancy-module") } ````
cargo build
target/debug/libmy_fancy_module.dylib
to target/debug/libmy_fancy_module.so
(require 'my-fancy-module "/path/to/libmy_fancy_module.so")
.
Note that this requires Emacs to be configured and compiled with
the --with-modules
flag.For a more elaborate example, check out test-module.
shell
cargo build --all
shell
bin/test.sh
cargo-watch
):
shell
cargo watch -x 'build --all' -s bin/test.sh