mirror of
https://github.com/mailscope/kumomta.git
synced 2026-09-12 21:42:13 +00:00
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)
18 lines
428 B
TOML
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}
|