[package]
edition = "2021"
name = "cloudillo-proxy"
version = "0.8.9"
authors = ["Szilárd Hajba <szilu@symbion.hu>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reverse proxy with TLS for proxying HTTP and WebSocket traffic in the Cloudillo platform"
homepage = "https://cloudillo.org"
readme = "README.md"
keywords = [
"cloudillo",
"proxy",
"reverse-proxy",
"tls",
"websocket",
]
categories = [
"web-programming",
"network-programming",
]
license = "LGPL-3.0-only"
repository = "https://github.com/cloudillo/cloudillo-rs"
[lib]
name = "cloudillo_proxy"
path = "src/lib.rs"
[dependencies.axum]
version = "0.8"
features = [
"http2",
"macros",
]
[dependencies.cloudillo-core]
version = "0.8.9"
[dependencies.cloudillo-types]
version = "0.8.9"
features = ["server"]
[dependencies.hyper]
version = "1.8"
[dependencies.hyper-rustls]
version = "0.27"
[dependencies.hyper-util]
version = "0.1"
features = [
"client",
"client-legacy",
"http1",
"http2",
]
[dependencies.rustls]
version = "0.23"
[dependencies.rustls-pki-types]
version = "1.14"
features = ["alloc"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_with]
version = "3.16"
[dependencies.tokio]
version = "1"
features = ["rt"]
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2"