Use upstream frida/frida-rust repo
This commit is contained in:
parent
a21fca1ea1
commit
85c4aef520
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
/target
|
/target
|
||||||
|
__handlers__
|
||||||
|
@ -12,7 +12,7 @@ path = "src/main.rs"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# frida = { version = "0.4.0", features = ["auto-download"] }
|
# frida = { version = "0.4.0", features = ["auto-download"] }
|
||||||
frida = { git = "https://github.com/dzervas/frida-rust", features = ["auto-download"] }
|
frida = { git = "https://github.com/frida/frida-rust", features = ["auto-download"] }
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
|
@ -5,7 +5,7 @@ fn main() {
|
|||||||
let args: Vec<String> = std::env::args().collect();
|
let args: Vec<String> = std::env::args().collect();
|
||||||
|
|
||||||
if args.len() < 2 {
|
if args.len() < 2 {
|
||||||
println!("Usage: {} <PID>", args[0]);
|
eprintln!("Usage: {} <PID>", args[0]);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user