forked from benfred/remoteprocess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (35 loc) · 961 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "remoteprocess"
version = "0.4.5"
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 = []