injectionforge/Cargo.toml

42 lines
1008 B
TOML
Raw Permalink Normal View History

[package]
name = "injectionforge"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[[bin]]
name = "standalone"
2023-05-25 17:48:18 +03:00
path = "src/main.rs"
[features]
default = ["frida", "frida-auto-download"]
frida = ["dep:frida", "dep:lazy_static", "dep:serde", "dep:serde_json"]
frida-auto-download = ["frida/auto-download"]
[dependencies]
2025-01-18 21:05:06 +02:00
frida = { version = "0.16", optional = true }
lazy_static = { version = "1.5.0", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
2023-05-25 17:48:18 +03:00
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["winnt", "libloaderapi"] }
2025-01-18 21:05:06 +02:00
windows-sys = { version = "0.59", features = [
"Win32_System_ClrHosting",
], optional = true }
2023-05-25 17:48:18 +03:00
2023-05-28 02:07:20 +03:00
[target.'cfg(unix)'.dependencies]
2025-01-18 21:05:06 +02:00
ctor = "0.2"
2023-05-28 02:07:20 +03:00
2023-05-25 17:48:18 +03:00
[build-dependencies]
2025-01-18 21:05:06 +02:00
goblin = "0.9"
build-target = "0.4"
serde = { version = "1.0", features = ["derive"] }
2025-01-18 21:05:06 +02:00
toml = "0.8"
[dev-dependencies]
2025-01-18 21:05:06 +02:00
pretty_assertions = "1.4"
mylib = { path = "tests/mylib" }