[package]
edition = "2024"
name = "kiaproxy"
version = "0.2.0"
authors = ["Keegan Bowen <carefuldata@protonmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "high performance and extremely light TCP load balancer proxy"
homepage = "https://carefuldata.com"
readme = "README.md"
keywords = [
"tcp",
"high-availability",
"ha",
"tls-passthrough",
"proxy",
]
categories = ["network-programming"]
license = "MIT"
repository = "https://github.com/jpegleg/kiaproxy"
[[bin]]
name = "kiaproxy"
path = "src/main.rs"
[dependencies.chrono]
version = "0.4.45"
[dependencies.signal-hook]
version = "0.4.4"
[dependencies.tokio]
version = "1.52.3"
features = [
"net",
"sync",
"rt-multi-thread",
"io-util",
"time",
"macros",
]
[dependencies.uuid]
version = "1.23.4"
features = ["v4"]