[package]
edition = "2024"
rust-version = "1.85"
name = "getargv"
version = "0.2.6"
authors = ["CamJN <getargv@narzt.cam>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Correctly access another process' args on macOS"
homepage = "https://getargv.narzt.cam/"
documentation = "https://docs.rs/getargv"
readme = "README.md"
keywords = [
"argv",
"arguments",
"macOS",
"KERN_PROCARGS2",
"sysctl",
]
categories = [
"api-bindings",
"os::macos-apis",
]
license = "BSD-3-Clause"
repository = "https://github.com/getargv/getargv.rs/"
[package.metadata.docs.rs]
targets = [
"x86_64-apple-darwin",
"aarch64-apple-darwin",
]
[lib]
name = "getargv"
path = "src/lib.rs"
[[bin]]
name = "test_child"
path = "src/bin/test_child.rs"
[[example]]
name = "getargv"
path = "examples/getargv.rs"
[[test]]
name = "printing"
path = "tests/printing.rs"
[dependencies.libc]
version = "~0.2.169"
[dev-dependencies.clap]
version = "~4.5.30"
features = ["cargo"]
[target.'cfg(target_vendor = "apple")'.dependencies.getargv-sys]
version = "~0.5.6"