2023-05-23 17:21:14 +03:00
|
|
|
[package]
|
|
|
|
name = "frida-deepfreeze-rs"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
2023-05-23 19:41:28 +03:00
|
|
|
[[bin]]
|
|
|
|
name = "standalone"
|
2023-05-25 17:48:18 +03:00
|
|
|
path = "src/main.rs"
|
2023-05-23 19:41:28 +03:00
|
|
|
|
2023-05-23 17:21:14 +03:00
|
|
|
[dependencies]
|
2023-05-26 15:36:34 +03:00
|
|
|
# frida = { version = "0.4.0", features = ["auto-download"] }
|
|
|
|
# frida-sys = { version = "0.4.0", features = ["auto-download", "frida-build"] }
|
|
|
|
frida = { git = "https://github.com/dzervas/frida-rust", features = ["auto-download"] }
|
|
|
|
# frida-sys = { git = "https://github.com/frida/frida-rust", features = ["auto-download"] }
|
2023-05-23 17:21:14 +03:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
ctor = "0.2.0"
|
2023-05-25 17:48:18 +03:00
|
|
|
|
|
|
|
# [target.'cfg(unix)'.build-dependencies]
|
|
|
|
|
|
|
|
# [target.'cfg(windows)'.build-dependencies]
|
|
|
|
# pelite = "0.10.0"
|
|
|
|
[build-dependencies]
|
|
|
|
goblin = "0.6.1"
|