alterdekim ad9383777f
Some checks failed
gitea/Frida-android-native/pipeline/head There was a failure building this commit
modified: Cargo.lock
modified:   Cargo.toml
	modified:   src/client.rs
	modified:   src/main.rs
2024-10-13 18:34:00 +03:00

44 lines
1.1 KiB
TOML

[package]
name = "frida_android"
version = "0.1.2"
edition = "2021"
license = "Apache-2.0"
authors = ["alterdekim"]
keywords = ["tun", "network", "tunnel", "vpn"]
categories = ["network-programming", "asynchronous"]
readme = "README.md"
[lib]
crate-type = ["cdylib"]
path = "src/main.rs"
[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"
socket2 = "0.4"
log = "0.4.20"
futures = "0.3.30"
tun2 = { version = "3.1.4", features = ["async"] }
packet = "0.1.4"
crossbeam-channel = "0.5.13"
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"
log4rs = "1.3.0"
[target.'cfg(target_os="android")'.dependencies]
jni = "^0.20"
robusta_jni = "0.2.2"
nonblock = "0.2.0"