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
20 lines
542 B
TOML
20 lines
542 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"
|
|
serde_yaml = { workspace = true }
|
|
log = { workspace = true }
|
|
env_logger = { workspace = true }
|
|
tokio = { workspace = true }
|
|
frida_core = { path = "../frida_core" }
|
|
frida_client = { path = "../frida_client" }
|
|
frida_server = { path = "../frida_server" } |