-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (21 loc) · 850 Bytes
/
Cargo.toml
File metadata and controls
26 lines (21 loc) · 850 Bytes
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
[package]
name = "proc-maps"
version = "0.4.0"
authors = ["Julia Evans <julia@jvns.ca>", "Ben Frederickson <github@benfrederickson.com>", "Adam Jensen <adam@acj.sh>"]
description = "Helper crate for getting virtual memory maps from processes"
license = "MIT"
homepage = "https://github.com/rbspy/proc-maps"
repository = "https://github.com/rbspy/proc-maps"
[dependencies]
libc = "0.2.54"
[target.'cfg(target_os="macos")'.dependencies]
anyhow = "1.0.40"
mach2 = "0.4.0"
libproc = "0.14.2"
[target.'cfg(windows)'.dependencies]
winapi = {version = "0.3", features = ["tlhelp32", "processthreadsapi", "handleapi", "impl-default", "dbghelp", "memoryapi", "sysinfoapi"]}
[target.'cfg(target_os="freebsd")'.build-dependencies]
bindgen = { version = "0.70.1", optional = true }
[features]
default = ["generate-bindings"]
generate-bindings = ["bindgen"]