injectionforge/Cargo.toml

28 lines
609 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"
2023-05-28 02:07:20 +03:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2023-05-25 17:48:18 +03:00
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["winnt", "libloaderapi"] }
2023-05-25 17:48:18 +03:00
2023-05-28 02:07:20 +03:00
[target.'cfg(unix)'.dependencies]
ctor = "0.2.0"
2023-05-25 17:48:18 +03:00
[build-dependencies]
goblin = "0.6.1"