# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "process-read-write" version = "0.1.3" authors = ["Squar3"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "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." readme = "README.md" keywords = [ "gamedev", "process", "read-memory", "write-memory", "game-hacking", ] license = "GPL-3.0-or-later" repository = "https://github.com/FatSquare/read-write-memory-rs" [lib] name = "process_read_write" path = "src/lib.rs" [[bin]] name = "process-read-write" path = "src/main.rs" [[example]] name = "read_example" path = "examples/read_example.rs" [[example]] name = "watch_proc_example" path = "examples/watch_proc_example.rs" [[example]] name = "write_example" path = "examples/write_example.rs" [dependencies.nix] version = "0.27.1" features = [ "uio", "process", "term", "ptrace", ] [dependencies.serde_json] version = "1.0.111" [dependencies.sysinfo] version = "0.30.5"