-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
30 lines (27 loc) · 946 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
[package]
name = "ptrace-inject"
version = "0.1.2"
edition = "2021"
authors = ["Artemis Vellacott <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Shared library injection for *nix using ptrace."
repository = "https://github.com/Artemis21/ptrace-inject"
documentation = "https://docs.rs/ptrace-inject"
readme = "README.md"
keywords = ["dll-injection", "unix", "linux", "library", "command-line"]
[[bin]]
name = "ptrace-inject"
required-features = ["cli"]
[features]
cli = ["clap", "pretty_env_logger", "clap-verbosity-flag", "color-eyre"]
[dependencies]
clap = { version = "4", features = ["derive"], optional = true }
clap-verbosity-flag = { version = "2", optional = true }
color-eyre = { version = "0.6", optional = true }
eyre = "0.6"
libloading = "0.7"
log = "0.4"
nix = { version = "0.26", default-features = false, features = ["ptrace"] }
pete = "0.9"
pretty_env_logger = { version = "0.4", optional = true }
procfs = "0.15"