modified: Cargo.lock
modified: frida_core/Cargo.toml modified: frida_lib/Cargo.toml renamed: frida_lib/src/android.rs -> frida_lib/src/lib.rs deleted: frida_lib/src/main.rs
This commit is contained in:
parent
900ef12715
commit
a3e17fbbc6
18
Cargo.lock
generated
18
Cargo.lock
generated
@ -1620,14 +1620,10 @@ dependencies = [
|
||||
"generic-array",
|
||||
"hex",
|
||||
"iced",
|
||||
"jni 0.20.0",
|
||||
"log",
|
||||
"log4rs",
|
||||
"nix",
|
||||
"nonblock",
|
||||
"packet",
|
||||
"rand",
|
||||
"robusta_jni",
|
||||
"serde",
|
||||
"serde_derive",
|
||||
"serde_yaml",
|
||||
@ -1647,6 +1643,20 @@ version = "0.2.0"
|
||||
[[package]]
|
||||
name = "frida_lib"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"frida_client",
|
||||
"frida_core",
|
||||
"hex",
|
||||
"jni 0.20.0",
|
||||
"log4rs",
|
||||
"nonblock",
|
||||
"robusta_jni",
|
||||
"serde",
|
||||
"serde_derive",
|
||||
"serde_yaml",
|
||||
"tokio",
|
||||
"tokio-util",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "frida_server"
|
||||
|
@ -48,10 +48,4 @@ embed-resource = "2.3"
|
||||
nix = { version = "0.29.0", features = ["socket"] }
|
||||
|
||||
[target.'cfg(target_os="linux")'.dependencies]
|
||||
tokio-tun = "0.12.1"
|
||||
|
||||
[target.'cfg(target_os="android")'.dependencies]
|
||||
jni = "^0.20"
|
||||
robusta_jni = "0.2.2"
|
||||
nonblock = "0.2.0"
|
||||
log4rs = "1.3.0"
|
||||
tokio-tun = "0.12.1"
|
@ -11,6 +11,20 @@ workspace = "../"
|
||||
|
||||
[lib]
|
||||
crate-type = ["cdylib"]
|
||||
path = "src/android.rs"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
hex = "0.4"
|
||||
serde_yaml = "0.9.34"
|
||||
serde = "1.0"
|
||||
serde_derive = "1.0.190"
|
||||
tokio = { version = "1", features = ["full", "signal", "tracing"] }
|
||||
tokio-util = "0.7.12"
|
||||
frida_core = { path = "../frida_core" }
|
||||
frida_client = { path = "../frida_client" }
|
||||
|
||||
[target.'cfg(target_os="android")'.dependencies]
|
||||
jni = "^0.20"
|
||||
robusta_jni = "0.2.2"
|
||||
nonblock = "0.2.0"
|
||||
log4rs = "1.3.0"
|
||||
|
@ -1,3 +0,0 @@
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user