[package] name = "futmem" version = "0.1.0" edition = "2021" description = "Read-only live-memory inspector for the FIFA 17 process (preservation / reverse-engineering tooling)" publish = false # An EMPTY [workspace] table makes this crate its own workspace root. # Without it, cargo walks up the directory tree, finds # /home/alex/Documents/OpenFUT/Cargo.toml, sees that futmem is not in its # `members` list, and refuses to build. That parent manifest is untracked and # must not be edited, so we opt out from this side instead. [workspace] [dependencies] # memchr is the ONLY dependency, and it earns its place. # A `find` sweep covers roughly 3 GB of resident memory. The naive # `windows(n).position(...)` search runs at a few hundred MB/s; memchr's # memmem uses SIMD (AVX2 on this box) and runs an order of magnitude faster, # which turns a multi-minute sweep into a few seconds. # Everything else (argument parsing for four subcommands, /proc//maps # parsing, hex dumping) is a few dozen lines of std and does not justify # pulling in clap or a proc-maps crate. memchr = "2" [profile.release] opt-level = 3