[package]
edition = "2024"
name = "osxmem"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A macOS library for reading and writing process memory using the Mach kernel APIs."
readme = "README.md"
keywords = [
"memory",
"mach",
"macos",
"process",
]
categories = [
"os::macos-apis",
"development-tools::debugging",
]
license = "MIT"
repository = "https://github.com/zaidzdz/osxmem"
[package.metadata.docs.rs]
targets = ["x86_64-apple-darwin"]
[lib]
name = "osxmem"
path = "src/lib.rs"
[[example]]
name = "basic_example"
path = "examples/basic_example.rs"
[target.'cfg(target_os = "macos")'.dependencies.libproc]
version = "0.14.11"
[target.'cfg(target_os = "macos")'.dependencies.mach]
version = "0.3.2"