2021-09-19 00:36:40 -07:00
|
|
|
[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"
|
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"
|
2023-08-27 05:00:51 +00:00
|
|
|
pnet = "0.34"
|
2021-12-05 06:57:23 -08:00
|
|
|
tokio = { version = "1.14", features = ["full"] }
|
2021-12-05 06:37:11 -08:00
|
|
|
rand = { version = "0.8", features = ["small_rng"] }
|
2021-09-19 00:36:40 -07:00
|
|
|
log = "0.4"
|
2021-12-05 06:37:11 -08:00
|
|
|
internet-checksum = "0.2"
|
2023-10-30 08:38:52 +00:00
|
|
|
tokio-tun = "0.11"
|
2023-08-17 08:26:48 +00:00
|
|
|
flume = "0.11"
|