citra-scripting 0.1.0

A Rust interface to Citra's scripting interface.
Documentation

Citra Scripting for Rust

A basic interface to Citra's scripting interface.

Requires ZMQ 4.2.0+ to be installed.

Examples

Reading a section of memory:

    let connection = CitraConnection::connect().expect("Got error while connecting");

    let memory = connection
        .read_memory(0x100000, 4)
        .expect("Failed to read memory");

    assert_eq!(memory.len(), 4);

License

Available under the MIT license.