Files
socks5ws/Cargo.toml
dependabot[bot] f580c227f1 Bump tokio from 1.34.0 to 1.38.2
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.34.0 to 1.38.2.
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.34.0...tokio-1.38.2)

---
updated-dependencies:
- dependency-name: tokio
  dependency-version: 1.38.2
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-04-11 09:39:25 +03:00

29 lines
744 B
TOML

[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]
anyhow = "1.0.75"
async-stream = "0.3.3"
clap = { version = "4.3.21", features = ["derive"] }
ctrlc = "3.2.3"
fast-socks5 = "0.8.1"
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.38.2", features = ["io-std", "net", "rt-multi-thread", "macros"] }
tokio-stream = "0.1.11"
tokio-util = "0.7.4"
toml = "0.7.4"
windows-service = "0.6.0"
[profile.release]
opt-level = 3
debug = false
lto = true
strip = true