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-06-03 01:52:10 +03:00
|
|
|
[features]
|
|
|
|
default = ["frida"]
|
2024-02-27 03:01:29 +02:00
|
|
|
dotnet = ["dep:csbindgen"]
|
2023-06-03 01:52:10 +03:00
|
|
|
frida = ["dep:frida", "dep:lazy_static", "dep:serde", "dep:serde_json"]
|
|
|
|
|
2023-05-23 17:21:14 +03:00
|
|
|
[dependencies]
|
2024-04-01 09:56:28 +00:00
|
|
|
frida = { version = "0.13.6", features = ["auto-download"], optional = true }
|
2023-06-03 01:52:10 +03:00
|
|
|
lazy_static = { version = "1.4.0", optional = true }
|
|
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
|
|
|
serde_json = { version = "1.0", optional = true }
|
2023-05-25 17:48:18 +03:00
|
|
|
|
2023-05-27 16:38:27 +03:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2023-05-27 21:45:02 +03:00
|
|
|
winapi = { version = "0.3.9", features = ["winnt", "libloaderapi"] }
|
2023-11-20 00:52:20 +00:00
|
|
|
windows-sys = { version = "0.52.0", features = ["Win32_System_ClrHosting"], optional = true }
|
2023-05-25 17:48:18 +03:00
|
|
|
|
2023-05-28 02:07:20 +03:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2024-03-04 01:12:39 +00:00
|
|
|
ctor = "0.2.7"
|
2023-05-28 02:07:20 +03:00
|
|
|
|
2023-05-25 17:48:18 +03:00
|
|
|
[build-dependencies]
|
2024-01-01 02:08:30 +00:00
|
|
|
goblin = "0.8.0"
|
2024-03-11 02:28:06 +00:00
|
|
|
csbindgen = { version = "1.9.1", optional = true}
|
2023-06-03 01:52:10 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-07-10 00:13:17 +00:00
|
|
|
pretty_assertions = "1.4.0"
|
2023-06-03 01:52:10 +03:00
|
|
|
mylib = { path = "tests/mylib" }
|