pox/Cargo.toml

30 lines
649 B
TOML
Raw Normal View History

2023-03-25 13:26:58 +01:00
[package]
name = "rustyneedle"
2023-03-30 05:43:30 +02:00
version = "0.2.0"
2023-03-25 13:26:58 +01:00
edition = "2021"
[lib]
name = "rustyneedle"
path = "src/lib.rs"
2023-03-25 13:26:58 +01:00
[[bin]]
name = "needle"
2023-03-27 02:44:35 +02:00
path = "src/needle/main.rs"
required-features = ["bin"]
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]
elf = "0.7.2"
retour = "0.1" # plain detour doesn't work on latest nightly? idk
proc-maps = "0.3.0"
libloading = "0.7.4"
tracing = "0.1.37"
tracing-subscriber = "0.3.16"
nix = { version = "0.26.2", optional = true }
clap = { version = "4.1.13", features = ["derive"], optional = true }
[features]
rc = ["dep:nix"]
bin = ["rc", "dep:clap"]