mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-09 08:46:54 +02:00
26 lines
426 B
TOML
26 lines
426 B
TOML
[package]
|
|
name = "tcp-proxy"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
license = "MPL-2.0"
|
|
authors = ["ZeroTier, Inc. <contact@zerotier.com>"]
|
|
|
|
[features]
|
|
|
|
[dependencies]
|
|
socket2 = "^0"
|
|
#tokio-uring = "0.5.0"
|
|
tokio = { version = "^1", default-features = false, features = [
|
|
"fs",
|
|
"io-util",
|
|
"io-std",
|
|
"net",
|
|
"rt",
|
|
"signal",
|
|
"sync",
|
|
"time",
|
|
"macros",
|
|
"rt-multi-thread",
|
|
] }
|
|
|
|
[dev-dependencies]
|