[package]
edition = "2021"
rust-version = "1.56"
name = "read-process-memory"
version = "0.2.0"
authors = ["Ted Mielczarek <ted@mielczarek.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Read memory from another process."
homepage = "https://github.com/rbspy/read-process-memory"
readme = "README.md"
license = "MIT"
repository = "https://github.com/rbspy/read-process-memory"
[lib]
name = "read_process_memory"
path = "src/lib.rs"
[[bin]]
name = "test"
path = "src/bin/test.rs"
[[example]]
name = "read-process-bytes"
path = "examples/read-process-bytes.rs"
[[example]]
name = "read-self"
path = "examples/read-self.rs"
[dependencies.libc]
version = "0.2"
[dependencies.log]
version = "0.4"
[target.'cfg(target_os="macos")'.dependencies.mach2]
version = "0.6.0"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = [
"Win32_Foundation",
"Win32_System_Diagnostics_Debug",
"Win32_System_Threading",
]