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
31 lines
697 B
TOML
31 lines
697 B
TOML
[package]
|
|
name = "frida_lib"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
license-file = "../LICENSE.md"
|
|
authors = ["alterwain"]
|
|
keywords = ["tun", "network", "tunnel", "vpn"]
|
|
categories = ["network-programming", "asynchronous"]
|
|
readme = "../README.md"
|
|
workspace = "../"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
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"
|