Add integration test for lib injection

This commit is contained in:
Dimitris Zervas
2023-06-03 18:02:46 +03:00
parent 9180d62d67
commit 141bf26048
9 changed files with 109 additions and 21 deletions

View File

@@ -18,8 +18,7 @@ managed_lib = ["dep:windows-sys"]
frida = ["dep:frida", "dep:lazy_static", "dep:serde", "dep:serde_json"]
[dependencies]
# frida = { version = "0.4.0", features = ["auto-download"] }
frida = { git = "https://github.com/frida/frida-rust", features = ["auto-download"], optional = true }
frida = { version = "0.4.1", features = ["auto-download"], optional = true }
lazy_static = { version = "1.4.0", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
@@ -39,3 +38,4 @@ cc = "1.0.67"
[dev-dependencies]
pretty_assertions = "1.1.0"
mylib = { path = "tests/mylib" }
# escargot = "0.5.7"