pox/Cargo.toml

24 lines
485 B
TOML
Raw Normal View History

2023-03-25 13:26:58 +01:00
[package]
name = "rustyneedle"
version = "0.1.0"
edition = "2021"
[lib]
name = "tetanus"
crate-type = ["cdylib"]
2023-03-25 13:26:58 +01:00
path = "src/lib.rs"
[[bin]]
name = "needle"
2023-03-27 02:44:35 +02:00
path = "src/needle/main.rs"
2023-03-25 13:26:58 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.1.13", features = ["derive"] }
ctor = "0.1.26"
retour = "0.1" # plain detour doesn't work on latest nightly? idk
elf = "0.7.2"
2023-03-25 13:26:58 +01:00
nix = "0.26.2"
proc-maps = "0.3.0"