modified: Cargo.lock modified: Cargo.toml modified: frida_cli/Cargo.toml modified: frida_client/Cargo.toml modified: frida_client/src/client.rs modified: frida_core/Cargo.toml modified: frida_lib/Cargo.toml modified: frida_server/Cargo.toml modified: frida_server/src/server.rs
26 lines
546 B
TOML
26 lines
546 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"
|
|
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"
|