Add frida log handling

This commit is contained in:
Dimitris Zervas
2023-05-28 02:07:20 +03:00
parent c10945f2e0
commit a21fca1ea1
3 changed files with 68 additions and 5 deletions

16
Cargo.lock generated
View File

@@ -226,6 +226,8 @@ dependencies = [
"frida",
"goblin",
"lazy_static",
"serde",
"serde_json",
"winapi",
]
@@ -854,6 +856,20 @@ name = "serde"
version = "1.0.163"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
version = "1.0.163"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.16",
]
[[package]]
name = "serde_json"