mirror of
https://github.com/dndx/phantun.git
synced 2025-01-18 22:09:30 +08:00
22 lines
622 B
TOML
22 lines
622 B
TOML
[package]
|
|
name = "phantun"
|
|
version = "0.2.5"
|
|
edition = "2021"
|
|
authors = ["Datong Sun <dndx@idndx.com>"]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/dndx/phantun"
|
|
readme = "README.md"
|
|
description = """
|
|
Transforms UDP stream into (fake) TCP streams that can go through
|
|
Layer 3 & Layer 4 (NAPT) firewalls/NATs.
|
|
"""
|
|
[dependencies]
|
|
clap = { version = "3.0", features = ["cargo"] }
|
|
socket2 = { version = "0.4", features = ["all"] }
|
|
fake-tcp = { path = "../fake-tcp", version = "0.2" }
|
|
tokio = { version = "1.14", features = ["full"] }
|
|
log = "0.4"
|
|
pretty_env_logger = "0.4"
|
|
tokio-tun = "0.5"
|
|
num_cpus = "1.13"
|