-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
35 lines (32 loc) · 851 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
32
33
34
35
[package]
name = "proxyboi"
version = "0.5.1-alpha.0"
description = "A super simple reverse proxy with TLS support"
authors = ["Sven-Hendrik Haase <[email protected]>"]
repository = "https://github.com/svenstaro/proxyboi"
license = "MIT"
readme = "README.md"
keywords = ["reverse-proxy", "proxy", "https", "ssl", "tls"]
categories = ["command-line-utilities", "network-programming"]
edition = "2021"
[profile.release]
lto = true
opt-level = 'z'
codegen-units = 1
panic = 'abort'
[dependencies]
clap = { version = "4", features = ["derive", "cargo", "wrap_help", "env"] }
actix-web = { version= "3", features = ["rustls"] }
simplelog = "0.12"
log = "0.4"
futures = "0.3"
chrono = "0.4"
url = "2"
yansi = "1"
Inflector = "0.11"
thiserror = "1"
anyhow = "1"
webpki = "0.21"
rustls = { version = "0.18" }
[dev-dependencies]
pretty_assertions = "1.1"