35 lines
841 B
TOML
35 lines
841 B
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"
|
|
base64 = { workspace = true }
|
|
x25519-dalek = { workspace = true }
|
|
rand = { workspace = true }
|
|
serde_derive = { workspace = true }
|
|
serde = { workspace = true }
|
|
log = { workspace = true }
|
|
tokio = { workspace = true }
|
|
|
|
[target.'cfg(target_os="windows")'.dependencies]
|
|
wintun = "0.5.0"
|
|
|
|
[target.'cfg(target_os="linux")'.dependencies]
|
|
tokio-tun = "0.12.1"
|
|
|
|
[target.'cfg(target_os="android")'.dependencies]
|
|
filedescriptor = "0.8.2"
|
|
|
|
[target.'cfg(target_os="macos")'.build-dependencies]
|
|
cc = "1.2.13" |