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: ```rust 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](LICENSE).