-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (27 loc) · 872 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
[package]
name = "yxorp"
authors = ["Pufferfish <puffish@puffish.net>"]
version = "0.2.0"
edition = "2021"
license = "AGPL-3.0"
repository = "https://github.com/pufmat/yxorp"
categories = ["web-programming", "network-programming", "command-line-utilities"]
description = "A reverse proxy with live reload and TLS support."
[dependencies]
anyhow = "1.0.86"
futures-util = "0.3.30"
http-body-util = "0.1.1"
hyper = { version = "1.3.1", features = ["full"] }
hyper-util = { version = "0.1.5", features = ["tokio", "server-auto"] }
itertools = "0.13.0"
pin-project = "1.1.5"
rustls-pemfile = "2.1.2"
serde = { version = "1.0.203", features = ["derive"] }
tokio = { version = "1.37.0", features = ["rt-multi-thread", "net", "macros", "signal"] }
tokio-rustls = "0.26.0"
tokio-util = "0.7.11"
toml = "0.8.13"
wildmatch = "2.3.4"
[profile.release]
lto = true
codegen-units = 1