modified: frida_cli/Cargo.toml modified: frida_cli/src/main.rs modified: frida_client/Cargo.toml modified: frida_client/src/client.rs new file: frida_client/src/lib.rs renamed: frida_cli/src/config/mod.rs -> frida_core/src/config.rs modified: frida_core/src/device.rs modified: frida_core/src/lib.rs modified: frida_core/src/linux_tun.rs renamed: frida_cli/src/obfs.rs -> frida_core/src/obfs.rs renamed: frida_cli/src/udp.rs -> frida_core/src/udp.rs modified: frida_core/src/win_tun.rs
22 lines
559 B
TOML
22 lines
559 B
TOML
[package]
|
|
name = "frida_cli"
|
|
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 = "../"
|
|
|
|
[dependencies]
|
|
clap = "2.33"
|
|
env_logger = "0.9"
|
|
log = "0.4.20"
|
|
serde = "1.0"
|
|
serde_derive = "1.0.190"
|
|
serde_yaml = "0.9.34"
|
|
tokio = { version = "1", features = ["full", "signal", "tracing"] }
|
|
tokio-util = "0.7.12"
|
|
frida_core = { path = "../frida_core" }
|
|
frida_client = { path = "../frida_client" } |