injectionforge/Cargo.toml
Dimitris Zervas b68121f658
Some checks failed
Rust / build (macos-latest) (push) Has been cancelled
Rust / build (ubuntu-latest) (push) Has been cancelled
Rust / build (windows-latest) (push) Has been cancelled
Update deps and fix frida-sys issue
2025-01-18 21:05:06 +02:00

42 lines
1008 B
TOML

[package]
name = "injectionforge"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[[bin]]
name = "standalone"
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]
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 }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["winnt", "libloaderapi"] }
windows-sys = { version = "0.59", features = [
"Win32_System_ClrHosting",
], optional = true }
[target.'cfg(unix)'.dependencies]
ctor = "0.2"
[build-dependencies]
goblin = "0.9"
build-target = "0.4"
serde = { version = "1.0", features = ["derive"] }
toml = "0.8"
[dev-dependencies]
pretty_assertions = "1.4"
mylib = { path = "tests/mylib" }