-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (37 loc) · 1.05 KB
/
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
36
37
38
39
[package]
name = "minirps"
version = "0.2.1"
edition = "2021"
authors = ["Marco Di Pillo Tomic <marcodpt@protonmail.com>"]
license = "MIT"
description = "Mini reverse proxy server written in rust"
readme = "README.md"
homepage = "https://github.com/marcodpt/minirps"
repository = "https://github.com/marcodpt/minirps"
keywords = [
"reverse-proxy",
"server",
"single-binary",
"axum",
"minijinja"
]
categories = ["web-programming::http-server"]
[dependencies]
openssl = { version = "0.10", features = ["vendored"] }
tokio = { version = "1", features = ["full"] }
tower-http = { version = "0", features = ["cors"] }
axum = { version = "0", features = ["matched-path", "original-uri", "query"] }
axum-server = { version = "0", features = ["tls-openssl"] }
clap = {version = "4", features = ["derive"]}
toml = "0"
serde = "1"
serde_derive = "1"
serde_json = "1"
serde_urlencoded = "0"
mime_guess = "2"
minijinja = { version = "2", features = ["loader"] }
reqwest = { version = "0", features = ["blocking"] }
glob-match = "0"
chrono = "0"
[profile.release]
opt-level = 3