-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (35 loc) · 856 Bytes
/
Cargo.toml
File metadata and controls
40 lines (35 loc) · 856 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
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "ss"
version = "0.2.0"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1", features = ["full"] }
tokio-socks = "0.5"
tokio-rustls = "0.26"
tokio-util = { version = "0.7", features = ["codec"] }
tokio-tungstenite = { version = "0.26", default-features = false, features = [
"connect",
"__rustls-tls",
] }
futures = "0.3"
futures-core = "0.3"
futures-sink = "0.3"
futures-util = "0.3"
futures-channel = "0.3"
thiserror = "2"
structopt = { version = "0.3", default-features = false }
url = "2"
bytes = "1"
rustls-pemfile = "2"
rustls = "0.23"
log = "0.4"
env_logger = "0.11"
http = "1"
anyhow = "1"
tower = { version = "0.5", features = ["full"] }
byteorder = "1"
pin-project = "1"
[[bin]]
name = "ss"
path = "src/bin/main.rs"