process-read-write allow you to read and write bytes from another processes, it also enables you to monitor a specefic process using ptrace, geting a real-time list a list of all the system calls made by that process.
use process_read_write;fnmain(){let pid:i32=1234;// id of app
let addr:usize=0x70eb856006c0;// address of value to read
//let pid = get_proc_by_name("SomeRandomGame");
let pid =process_read_write::get_proc_by_id(pid);let health =process_read_write::read_addr(pid,addr,4);println!("READING MEMORY: {:?}",health);}