forked from JeninSutradhar/fortifynet_proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 708 Bytes
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 708 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
[package]
name = "fortifynet_proxy"
version = "2.0.0"
edition = "2021"
license = "MIT"
authors = ["Jenin Sutradhar"]
description = "A flexible asynchronous proxy server library written in Rust."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1", features = ["full"] }
hyper = { version = "0.14", features = ["client","http1","server","tcp"] }
log = "0.4"
env_logger = "0.10"
thiserror = "1"
anyhow = "1"
rustls = "0.21"
tokio-rustls = "0.24"
tokio-tungstenite = { version = "0.20", features = ["native-tls"] }
warp = "0.3"
futures = "0.3"
url = "2.5"
# socks5-impl = "0.6.0"
rustls-pemfile = "0.2"
tokio-socks = "0.5.2"