2022-09-24 16:23:53 +00:00
|
|
|
[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]
|
2022-09-28 11:52:37 +00:00
|
|
|
async-stream = "0.3.3"
|
2022-09-29 08:16:17 +00:00
|
|
|
clap = { version = "4.0.2", features = ["derive"] }
|
2022-09-29 07:58:42 +00:00
|
|
|
ctrlc = "3.2.3"
|
2022-09-24 16:23:53 +00:00
|
|
|
fast-socks5 = "0.8.1"
|
2023-07-11 07:20:33 +00:00
|
|
|
flexi_logger = { version = "0.25.5", features = ["specfile_without_notification", "async"] }
|
2022-09-24 16:23:53 +00:00
|
|
|
log = "0.4.17"
|
|
|
|
serde = { version = "1.0.145", features = ["derive"] }
|
|
|
|
serde_derive = "1.0.145"
|
2023-02-04 00:58:47 +00:00
|
|
|
tokio = { version = "1.24.2", features = ["io-std", "net", "rt-multi-thread", "macros"] }
|
2023-01-10 07:25:36 +00:00
|
|
|
tokio-stream = "0.1.11"
|
2022-09-24 16:23:53 +00:00
|
|
|
tokio-util = "0.7.4"
|
2023-07-11 07:20:33 +00:00
|
|
|
toml = "0.7.4"
|
|
|
|
windows-service = "0.6.0"
|
2022-09-25 14:52:34 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = 3
|
|
|
|
debug = false
|
|
|
|
lto = true
|
|
|
|
strip = true
|