mirror of
https://github.com/aramperes/onetun.git
synced 2025-09-09 06:38:32 -04:00
WIP on UDP and multi-port-forward support
This commit is contained in:
parent
c4a5e634ab
commit
cb09bb8857
5 changed files with 197 additions and 28 deletions
18
Cargo.lock
generated
18
Cargo.lock
generated
|
@ -488,6 +488,12 @@ version = "2.4.1"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
|
||||
|
||||
[[package]]
|
||||
name = "minimal-lexical"
|
||||
version = "0.1.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9c64630dcdd71f1a64c435f54885086a0de5d6a12d104d69b165fb7d5286d677"
|
||||
|
||||
[[package]]
|
||||
name = "miniz_oxide"
|
||||
version = "0.4.4"
|
||||
|
@ -520,6 +526,17 @@ dependencies = [
|
|||
"winapi",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "nom"
|
||||
version = "7.0.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7ffd9d26838a953b4af82cbeb9f1592c6798916983959be223a7124e992742c1"
|
||||
dependencies = [
|
||||
"memchr",
|
||||
"minimal-lexical",
|
||||
"version_check",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "ntapi"
|
||||
version = "0.3.6"
|
||||
|
@ -583,6 +600,7 @@ dependencies = [
|
|||
"futures",
|
||||
"lockfree",
|
||||
"log",
|
||||
"nom",
|
||||
"pretty_env_logger",
|
||||
"rand",
|
||||
"smoltcp",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue