Files
http-rs/Cargo.toml
rattatwinko a025ca2ec4
All checks were successful
Compile to Binary / build-linux (push) Successful in 57s
Compile to Binary / build-linux-musl (push) Successful in 1m14s
Compile to Binary / build-windows (push) Successful in 1m38s
Implement clap for command line argument parsing, and cleanup of path traversal logic, now readable
2026-03-18 09:52:13 +01:00

24 lines
442 B
TOML

[package]
name = "http-rs"
version = "0.1.0"
author="rattatwinko"
edition = "2024"
[dependencies]
clap = {version = "4.5.55", features = ["derive"]}
logger-rust = "0.2.12"
mime_guess = "2.0.5"
serde = { version = "1.0.228", features = ["derive"]}
threadpool = "1.8.1"
tiny_http = "0.12.0"
tinytemplate = "1.2.1"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true
debug = false
incremental = false