injectionforge/Cargo.toml
2023-05-30 17:02:17 +03:00

28 lines
607 B
TOML

[package]
name = "frida-deepfreeze-rs"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[[bin]]
name = "standalone"
path = "src/main.rs"
[dependencies]
# frida = { version = "0.4.0", features = ["auto-download"] }
frida = { git = "https://github.com/frida/frida-rust", features = ["auto-download"] }
lazy_static = "1.4.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["winnt", "libloaderapi"] }
[target.'cfg(unix)'.dependencies]
ctor = "0.2.0"
[build-dependencies]
goblin = "0.6.1"