[package]
edition = "2024"
name = "wisegate"
version = "0.12.0"
authors = ["davlgd"]
build = false
exclude = [
".github/",
"target/",
".gitignore",
"Cargo.lock",
"LICENSE",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance, secure reverse proxy with rate limiting and IP filtering"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/davlgd/wisegate"
[lib]
name = "wisegate"
path = "src/lib.rs"
[[bin]]
name = "wisegate"
path = "src/main.rs"
[[test]]
name = "comprehensive_integration_tests"
path = "tests/comprehensive_integration_tests.rs"
[dependencies.clap]
version = "4.5.54"
features = ["derive"]
[dependencies.hyper]
version = "1.8.1"
features = [
"server",
"http1",
]
[dependencies.hyper-util]
version = "0.1.19"
features = ["tokio"]
[dependencies.reqwest]
version = "0.13.1"
features = ["json"]
default-features = false
[dependencies.tokio]
version = "1.49.0"
features = [
"macros",
"rt-multi-thread",
"signal",
"time",
]
[dependencies.tracing]
version = "0.1.44"
[dependencies.tracing-subscriber]
version = "0.3.22"
features = [
"env-filter",
"json",
]
[dependencies.wisegate-core]
version = "0.12.0"
[dev-dependencies.base64]
version = "0.22"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true