Files
kumomta/crates/proxy-server/Cargo.toml
T
Wez Furlong eb54cc74d9 proxy-server: raise NOFILE soft limit to match hard limit
This makes the startup behavior consistent with kumod and tsa-daemon,
which can help with "Too many open files" errors in systems without
any explicit tunings for the proxy server.

It is still a good idea to explicitly tune that value up, and it is
something we should put into a systemd unit when we get around to
shipping one of those for the proxy server (#188)
2025-09-18 15:54:18 +01:00

18 lines
428 B
TOML

[package]
name = "proxy-server"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = {workspace=true}
clap = {workspace=true}
env_logger = {workspace=true}
libc = {workspace=true}
log = {workspace=true}
nix = {workspace=true, features=["resource", "user"]}
socksv5 = {workspace=true}
tokio = {workspace=true, features=["full", "tracing"]}
[target.'cfg(target_os = "linux")'.dependencies]
tokio-splice = {workspace=true}