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
41 lines
1.0 KiB
TOML
41 lines
1.0 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]
|
|
futures = "0.3.30"
|
|
chrono = "0.4.38"
|
|
tun = { version = "0.7.5", features = ["async"] }
|
|
base64 = { workspace = true }
|
|
x25519-dalek = { workspace = true }
|
|
rand = { workspace = true }
|
|
serde_derive = { workspace = true }
|
|
serde = { workspace = true }
|
|
|
|
[target.'cfg(target_os="windows")'.dependencies]
|
|
iced = { version = "0.13.1", features = ["tokio"] }
|
|
dirs = "6.0.0"
|
|
tray-item = "0.10.0"
|
|
wintun = "0.5.0"
|
|
|
|
[target.'cfg(target_os="windows")'.build-dependencies]
|
|
embed-resource = "3.0.1"
|
|
|
|
[target.'cfg(target_os="macos")'.dependencies]
|
|
nix = { version = "0.29.0", features = ["socket"] }
|
|
|
|
[target.'cfg(target_os="linux")'.dependencies]
|
|
tokio-tun = "0.12.1"
|
|
|
|
[target.'cfg(target_os="android")'.dependencies]
|
|
libc = "0.2"
|
|
filedescriptor = "0.8.2" |