modified: frida_cli/Cargo.toml modified: frida_client/Cargo.toml modified: frida_client/src/client.rs deleted: frida_client/src/main.rs modified: frida_core/Cargo.toml new file: frida_core/src/lib.rs modified: frida_core/src/tun.rs modified: frida_gui/Cargo.toml modified: frida_lib/Cargo.toml modified: frida_server/Cargo.toml
58 lines
1.4 KiB
TOML
58 lines
1.4 KiB
TOML
[package]
|
|
name = "frida_core"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
license-file = "../LICENSE.md"
|
|
authors = ["alterwain"]
|
|
keywords = ["tun", "network", "tunnel", "vpn"]
|
|
categories = ["network-programming", "asynchronous"]
|
|
readme = "../README.md"
|
|
|
|
[lib]
|
|
crate-type = ["staticlib", "cdylib", "lib"]
|
|
|
|
[dependencies]
|
|
clap = "2.33"
|
|
aes-gcm = "0.10.3"
|
|
tokio = { version = "1", features = ["full", "signal", "tracing"] }
|
|
tokio-util = "0.7.12"
|
|
serde = "1.0"
|
|
serde_derive = "1.0.190"
|
|
rand = { version = "0.8.5", features = ["small_rng", "getrandom", "std_rng"] }
|
|
block-modes = "0.8"
|
|
block-padding = "0.2"
|
|
generic-array = "0.14"
|
|
env_logger = "0.9"
|
|
log = "0.4.20"
|
|
futures = "0.3.30"
|
|
packet = "0.1.4"
|
|
async-channel = "2.3.1"
|
|
hex = "0.4"
|
|
serde_yaml = "0.9.34"
|
|
x25519-dalek = { version = "2.0.1", features = ["getrandom", "static_secrets"] }
|
|
base64 = "0.22.1"
|
|
chrono = "0.4.38"
|
|
console-subscriber = "0.4.0"
|
|
network-interface = "2.0.0"
|
|
tun = { version = "0.7.5", features = ["async"] }
|
|
|
|
[target.'cfg(target_os="windows")'.dependencies]
|
|
iced = { version = "0.13.1", features = ["tokio"] }
|
|
dirs = "5.0.1"
|
|
tray-item = "0.10.0"
|
|
wintun = "0.5.0"
|
|
|
|
[target.'cfg(target_os="windows")'.build-dependencies]
|
|
embed-resource = "2.3"
|
|
|
|
[target.'cfg(target_os="darwin")'.dependencies]
|
|
tun-tap = "0.1.4"
|
|
|
|
[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" |