expose-dir-via-http/Cargo.toml

25 lines
460 B
TOML
Raw Permalink Normal View History

2024-02-09 00:14:41 +01:00
[package]
name = "expose-dir-via-http"
2024-09-03 21:14:56 +02:00
version = "1.0.5"
2024-02-09 00:14:41 +01:00
edition = "2021"
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
todo = "warn"
unwrap_used = "warn"
2024-02-09 00:14:41 +01:00
[dependencies]
2024-03-02 08:41:14 +01:00
actix-web = { version = "4", features = ["experimental-io-uring"] }
actix-files = "0.6"
clap = { version = "4", features = ["cargo", "derive"] }
2024-02-09 00:14:41 +01:00
[profile.release]
lto = true
debug = false
strip = true
panic = "unwind"
codegen-units = 1