2024-02-09 00:14:41 +01:00
|
|
|
[package]
|
|
|
|
name = "expose-dir-via-http"
|
2024-09-27 16:43:34 +02:00
|
|
|
version = "1.0.15"
|
2024-02-09 00:14:41 +01:00
|
|
|
edition = "2021"
|
|
|
|
|
2024-04-14 08:30:35 +02:00
|
|
|
[lints.rust]
|
|
|
|
unsafe_code = "forbid"
|
|
|
|
|
|
|
|
[lints.clippy]
|
2024-05-07 21:00:03 +02:00
|
|
|
pedantic = { level = "warn", priority = -1 }
|
2024-04-14 08:30:35 +02:00
|
|
|
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
|