dndx-phantun/phantun/Cargo.toml

25 lines
702 B
TOML
Raw Normal View History

[package]
name = "phantun"
2022-10-25 08:22:55 -07:00
version = "0.6.0"
2021-10-21 03:41:42 -07:00
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 = "4.0", features = ["cargo"] }
socket2 = { version = "0.5", features = ["all"] }
fake-tcp = { path = "../fake-tcp", version = "0.5" }
tokio = { version = "1.14", features = ["full"] }
tokio-util = "0.7"
log = "0.4"
pretty_env_logger = "0.5"
tokio-tun = "0.11"
num_cpus = "1.13"
2022-04-16 01:41:19 -07:00
neli = "0.6"
nix = { version = "0.28", features = ["net"] }