remoteprocess 0.4.4

cross platform api for getting information on a running processes
Documentation
[package]
name = "remoteprocess"
version = "0.4.4"
authors = ["Ben Frederickson <github@benfrederickson.com>"]
repository = "https://github.com/benfred/remoteprocess"
homepage = "https://github.com/benfred/remoteprocess"
description = "cross platform api for getting information on a running processes"
readme = "README.md"
license = "MIT"
build="build.rs"
edition="2018"

[dependencies]
libc = "0.2"
log = "0.4"
proc-maps = "0.1.7"
benfred-read-process-memory = "0.2.1"
goblin = "0.4.1"
memmap = "0.7.0"
regex = "1"

[target.'cfg(target_os="macos")'.dependencies]
mach_o_sys = "0.1.1"
mach = "0.3.2"
libproc = "0.9"

[target.'cfg(target_os="linux")'.dependencies]
nix="0.22"
object = "0.26"
addr2line = "0.16"
lazy_static = "1.4.0"

[target.'cfg(windows)'.dependencies]
winapi = {version = "0.3", features = ["winbase", "consoleapi", "wincon", "handleapi", "timeapi", "processenv" ]}

[dev-dependencies]
env_logger = "0.9"

[features]
default = []
unwind = []