-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathCargo.toml
45 lines (38 loc) · 1.13 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
42
43
44
45
[package]
name = "remoteprocess"
version = "0.5.0"
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.4"
read-process-memory = "0.1.6"
goblin = "0.9"
regex = ">=1.8.3"
cfg-if = "1.0.0"
[target.'cfg(target_os="macos")'.dependencies]
mach_o_sys = "0.1.1"
mach = "0.3.2"
libproc = "0.14"
[target.'cfg(target_os="linux")'.dependencies]
nix = {version = "0.26", default-features = false, features = ["ptrace", "sched", "signal"]}
object = "0.36"
addr2line = "0.24"
lazy_static = "1.5.0"
memmap2 = "0.9.4"
[target.'cfg(windows)'.dependencies]
winapi = {version = "0.3", features = ["winbase", "consoleapi", "wincon", "handleapi", "timeapi", "processenv", "errhandlingapi" ]}
[dev-dependencies]
env_logger = "0.11"
[target.'cfg(target_os="freebsd")'.dev-dependencies]
mark-flaky-tests = "1"
[features]
default = []
unwind = []