forked from benfred/remoteprocess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (35 loc) · 1.02 KB
/
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.10"
authors = ["Ben Frederickson <[email protected]>"]
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="2021"
[dependencies]
libc = "0.2"
log = "0.4"
proc-maps = "0.2.1"
read-process-memory = "0.1.4"
goblin = "0.5.3"
memmap = "0.7.0"
regex = ">=1.6.0"
[target.'cfg(target_os="macos")'.dependencies]
mach_o_sys = "0.1.1"
mach = "0.3.2"
libproc = "0.12"
[target.'cfg(target_os="linux")'.dependencies]
nix = {version = "0.25", default-features = false, features = ["ptrace", "sched", "signal"]}
object = "0.29"
addr2line = "0.18"
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 = []