-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (27 loc) · 1012 Bytes
/
Cargo.toml
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
[package]
name = "frost_link"
version = "1.0.0"
edition = "2021"
description = "FrostLink is a reverse proxy written in Rust that supports routing requests from a local server to a specified domain. With FrostLink, you can easily turn a local server running on a specific port, such as `localhost:3000`, into a publicly accessible website connected to `example.com`."
authors = ["Frost-Lord <ceo@frostproxy.com>"]
repository = "https://github.com/Frost-Lord/ArcticArch"
readme = "README.md"
keywords = ["reverse-proxy", "proxy", "https", "ssl", "tls"]
categories = ["command-line-utilities", "network-programming"]
[dependencies]
threadpool = "1.8.1"
tokio = { version = "1", features = ["full"] }
tokio-rustls = "0.22.0"
rustls = "0.19.0"
dotenv = "0.15.0"
lazy_static = "1.4.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
cookie = "0.15.1"
uuid = { version = "1.0", features = ["v4"] }
chrono = "0.4"
[dev-dependencies]
[profile.dev]
opt-level = 1
[profile.release]
opt-level = 3