Initial commit

This commit is contained in:
2022-09-24 19:23:53 +03:00
commit 80b5fb67b9
6 changed files with 808 additions and 0 deletions

17
Cargo.toml Normal file
View File

@@ -0,0 +1,17 @@
[package]
name = "socks5ws"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
fast-socks5 = "0.8.1"
flexi_logger = { version = "0.23.3", features = ["specfile_without_notification", "async"] }
log = "0.4.17"
serde = { version = "1.0.145", features = ["derive"] }
serde_derive = "1.0.145"
tokio = { version = "1.21.1", features = ["full", "winapi", "mio"] }
tokio-stream = "0.1.10"
tokio-util = "0.7.4"
toml = "0.5.9"