[[bin]]
name = "logprox"
path = "src/main.rs"
[dependencies.axum]
features = ["macros"]
version = "0.7"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.regex]
version = "1.5"
[dependencies.reqwest]
features = ["json"]
version = "0.11"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.tempfile]
version = "3.17"
[dependencies.tokio]
features = ["full"]
version = "1.36"
[dependencies.tower]
version = "0.5"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
features = ["json"]
version = "0.3"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.tokio-test]
version = "0.4"
[lib]
name = "logprox"
path = "src/lib.rs"
[package]
authors = ["Bryan Lott <bryan@bryanlott.dev>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["web-programming::http-server", "network-programming"]
description = "A blazing-fast HTTP proxy with conditional logging and request control"
documentation = "https://docs.rs/logprox"
edition = "2021"
exclude = ["config.yaml", ".github/", "benches/", "tests/"]
homepage = "https://github.com/bryan-lott/logprox"
keywords = ["proxy", "http", "logging", "monitoring", "api-gateway"]
license = "GPL-3.0"
name = "logprox"
readme = "README.md"
repository = "https://github.com/bryan-lott/logprox"
version = "0.1.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]