dndx-phantun/fake-tcp/Cargo.toml

26 lines
609 B
TOML
Raw Normal View History

[package]
name = "fake-tcp"
2022-10-25 08:35:49 -07:00
version = "0.5.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 = """
A TUN interface based, user space, asynchronous and high performance TCP stack that allows
packet oriented tunneling with minimum overhead.
"""
[features]
benchmark = []
[dependencies]
bytes = "1"
pnet = "0.34"
2021-12-05 06:57:23 -08:00
tokio = { version = "1.14", features = ["full"] }
rand = { version = "0.8", features = ["small_rng"] }
log = "0.4"
internet-checksum = "0.2"
tokio-tun = "0.11"
flume = "0.11"