Frida/frida_client/Cargo.toml
alterdekim 3c23c38d25 modified: Cargo.lock
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
2024-12-09 19:02:35 +03:00

22 lines
618 B
TOML

[package]
name = "frida_client"
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]
frida_core = { path = "../frida_core", package = "frida_core" }
aes-gcm = "0.10.3"
x25519-dalek = { version = "2.0.1", features = ["getrandom", "static_secrets"] }
base64 = "0.22.1"
tokio = { version = "1", features = ["full", "signal", "tracing"] }
tokio-util = "0.7.12"
env_logger = "0.9"
log = "0.4.20"