28 lines
807 B
TOML
28 lines
807 B
TOML
[package]
|
|
name = "process_reader"
|
|
version = "0.1.0"
|
|
authors = ["Gabriele Svelto"]
|
|
edition = "2018"
|
|
license = "MPL-2.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
goblin = { version = "0.7", features = ["elf32", "elf64", "pe32", "pe64"] }
|
|
memoffset = "0.9"
|
|
thiserror = "1.0"
|
|
|
|
[target."cfg(any(target_os = \"linux\", target_os = \"android\"))".dependencies]
|
|
libc = "0.2"
|
|
scroll = "0.12"
|
|
|
|
[target."cfg(target_os = \"windows\")".dependencies]
|
|
windows-sys = { version = "0.52", features = [
|
|
"Win32_Foundation",
|
|
"Win32_System_Diagnostics_Debug",
|
|
"Win32_System_ProcessStatus",
|
|
] }
|
|
mozilla-central-workspace-hack = { version = "0.1", optional = true }
|
|
|
|
[target."cfg(target_os = \"macos\")".dependencies]
|
|
mach2 = { version = "0.4" }
|