2021-09-19 00:36:40 -07:00
|
|
|
[package]
|
|
|
|
name = "fake-tcp"
|
2024-11-20 07:04:08 -08:00
|
|
|
version = "0.6.0"
|
2021-10-21 03:41:42 -07:00
|
|
|
edition = "2021"
|
2021-09-19 00:36:40 -07:00
|
|
|
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.
|
|
|
|
"""
|
2021-09-20 08:03:39 -07:00
|
|
|
|
|
|
|
[features]
|
|
|
|
benchmark = []
|
|
|
|
|
2021-09-19 00:36:40 -07:00
|
|
|
[dependencies]
|
|
|
|
bytes = "1"
|
2024-11-20 07:02:19 -08:00
|
|
|
pnet = "0"
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
rand = { version = "0", features = ["small_rng"] }
|
|
|
|
log = "0"
|
|
|
|
internet-checksum = "0"
|
|
|
|
tokio-tun = "0"
|
|
|
|
flume = "0"
|