Files
http-rs/Cargo.toml
rattatwinko a671182b07
All checks were successful
Compile to Binary / build-linux (push) Successful in 51s
Compile to Binary / build-linux-musl (push) Successful in 1m13s
Compile to Binary / build-windows (push) Successful in 1m31s
cargo.toml ; minsize this
2026-03-16 15:39:00 +01:00

21 lines
314 B
TOML

[package]
name = "http-rs"
version = "0.1.0"
author="rattatwinko"
edition = "2024"
[dependencies]
logger-rust = "0.2.12"
mime_guess = "2.0.5"
threadpool = "1.8.1"
tiny_http = "0.12.0"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true
debug = false
incremental = false