socks5ws/Cargo.toml

29 lines
744 B
TOML
Raw Normal View History

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]
2023-08-17 20:09:44 +00:00
anyhow = "1.0.75"
2022-09-28 11:52:37 +00:00
async-stream = "0.3.3"
2023-08-16 06:32:17 +00:00
clap = { version = "4.3.21", 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-08-16 06:32:17 +00:00
flexi_logger = { version = "0.25.6", features = ["specfile_without_notification", "async"] }
log = "0.4.20"
serde = { version = "1.0.183", features = ["derive"] }
serde_derive = "1.0.183"
tokio = { version = "1.31.0", 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