mirror of
https://github.com/dndx/phantun.git
synced 2025-01-19 14:29:32 +08:00
21 lines
547 B
TOML
21 lines
547 B
TOML
|
[package]
|
||
|
name = "phantun"
|
||
|
version = "0.1.0"
|
||
|
edition = "2018"
|
||
|
authors = ["Datong Sun <dndx@idndx.com>"]
|
||
|
license = "MIT OR Apache-2.0"
|
||
|
repository = "https://github.com/dndx/phantun"
|
||
|
readme = "README.md"
|
||
|
description = """
|
||
|
Turns transforms UDP stream into (fake) TCP streams that can go through
|
||
|
Layer 4 firewalls.
|
||
|
"""
|
||
|
[dependencies]
|
||
|
clap = "2.33.3"
|
||
|
socket2 = { version = "0.4.2", features = ["all"] }
|
||
|
fake-tcp = { path = "../fake-tcp" }
|
||
|
tokio-tun = "0.3.15"
|
||
|
tokio = { version = "1.11.0", features = ["full"] }
|
||
|
log = "0.4"
|
||
|
pretty_env_logger = "0.4.0"
|