-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 784 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (25 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "socks5ws"
version = "0.1.1"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.98"
async-stream = "0.3.6"
clap = { version = "4.5.42", features = ["derive"] }
ctrlc = "3.4.7"
fast-socks5 = "=1.0.0-rc.0"
flexi_logger = { version = "0.31.2", features = ["specfile_without_notification", "async"] }
log = "0.4.27"
serde = { version = "1.0.219", features = ["derive"] }
serde_derive = "1.0.219"
tokio = { version = "1.47.0", features = ["io-std", "net", "rt-multi-thread", "macros"] }
tokio-stream = { version = "0.1.17", features = ["net"]}
tokio-util = "0.7.15"
toml = "0.9.4"
windows-service = "0.8.0"
[profile.release]
opt-level = 3
debug = false
lto = true
strip = true