palisade 0.1.0

An HTTP reverse proxy built on hyper, tokio, and rustls
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "palisade"
version = "0.1.0"
authors = ["Kobby Pentangeli <kobbypentangeli@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An HTTP reverse proxy built on hyper, tokio, and rustls"
documentation = "https://docs.rs/palisade"
readme = "README.md"
keywords = [
    "proxy",
    "palisade",
    "http",
    "load-balancer",
    "hyper",
]
categories = [
    "network-programming",
    "web-programming::http-server",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kobby-pentangeli/palisade"

[lib]
name = "palisade"
path = "src/lib.rs"

[[bin]]
name = "palisade"
path = "src/main.rs"

[[test]]
name = "balancer"
path = "tests/balancer.rs"

[[test]]
name = "proxy"
path = "tests/proxy.rs"

[[test]]
name = "rate_limit"
path = "tests/rate_limit.rs"

[[test]]
name = "tls"
path = "tests/tls.rs"

[dependencies.bytes]
version = "1.11"

[dependencies.clap]
version = "4"
features = ["derive"]

[dependencies.governor]
version = "0.10"

[dependencies.http-body-util]
version = "0.1"

[dependencies.hyper]
version = "1"
features = ["full"]

[dependencies.hyper-rustls]
version = "0.27"
features = [
    "http1",
    "ring",
    "tls12",
    "logging",
]
default-features = false

[dependencies.hyper-util]
version = "0.1"
features = ["full"]

[dependencies.regex]
version = "1.12"

[dependencies.rustls]
version = "0.23"
features = [
    "ring",
    "logging",
    "tls12",
]
default-features = false

[dependencies.rustls-pki-types]
version = "1"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1.49"
features = ["full"]

[dependencies.tokio-rustls]
version = "0.26"
features = ["ring"]
default-features = false

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = [
    "env-filter",
    "json",
]

[dependencies.webpki-roots]
version = "1"

[dev-dependencies.rcgen]
version = "0.14"

[dev-dependencies.time]
version = "0.3.47"

[dev-dependencies.tokio]
version = "1"
features = ["full"]

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = [
    "env-filter",
    "fmt",
]