Skip to content

Latest commit

 

History

History
21 lines (12 loc) · 664 Bytes

README.markdown

File metadata and controls

21 lines (12 loc) · 664 Bytes

Irssi Rust Interface Build Status

A Rust crate for writing modules for the Irssi IRC client.

Compiling the example module

To download and build the example hello world module:

$ git clone https://github.com/ahf/irssi-rust.git
$ cd irssi-rust
$ cargo build --example hello_world

Copy the generated libhello_world.so to ~/.irssi/modules/:

$ cp ./target/debug/examples/libhello_world.so ~/.irssi/modules/

You should now be able to start your Irssi and run /LOAD hello_world.

Authors