injectionforge/Cargo.toml

24 lines
488 B
TOML
Raw Normal View History

[package]
name = "frida-deepfreeze-rs"
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"
[dependencies]
2023-05-26 15:36:34 +03:00
# frida = { version = "0.4.0", features = ["auto-download"] }
frida = { git = "https://github.com/dzervas/frida-rust", features = ["auto-download"] }
lazy_static = "1.4.0"
ctor = "0.2.0"
2023-05-25 17:48:18 +03:00
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["winnt"] }
2023-05-25 17:48:18 +03:00
[build-dependencies]
goblin = "0.6.1"