Files
waffle2k dcbcff98a6
CI / Build and Test (gcc, g++, ubuntu-latest) (push) Failing after 31s
CI / Code Coverage (push) Skipped
Build and Publish Docker Image / build-and-test (push) Failing after 1m7s
Build and Publish Docker Image / build-and-push-image (push) Skipped
Build and Publish Docker Image / security-scan (push) Skipped
Add Rust port of the finger daemon
Tokio-based reimplementation in rust/, mirroring the C++ handler and
ban-tracker logic (directory-traversal checks, case-insensitive plan
lookup, rolling-window IP ban tracking, allowlist parsing) along with
its full test suite. Includes a matching multi-stage Dockerfile.
2026-07-23 21:24:55 -07:00

15 lines
244 B
TOML

[package]
name = "finger"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "finger"
path = "src/main.rs"
[dependencies]
tokio = { version = "1", features = ["rt", "macros", "net", "io-util", "time", "signal"] }
[profile.release]
lto = true