[package] name = "staticrocket" version = "0.3.1" edition = "2021" license = "0BSD" # https://crates.io/category_slugs categories = [ "web-programming::http-server" ] keywords = [ "web", "server", "service" ] repository = "https://repos.qrnch.tech/pub/staticrocket" description = "Simple http server for serving static content." rust-version = "1.64" exclude = [ ".fossil-settings", ".efiles", ".fslckout", "www", "bacon.toml", "run.sh", "rustfmt.toml" ] # https://doc.rust-lang.org/cargo/reference/manifest.html#the-badges-section [badges] maintenance = { status = "passively-maintained" } [profile.release] lto = true strip = "debuginfo" codegen-units = 1 [dependencies] clap = { version = "4.5.13", features = [ "derive", "env", "string", "wrap_help" ] } qsu = { version = "0.7.0", features = [ "clap", "installer", "rocket", "systemd" ] } rocket = { version = "0.5.1" } shellexpand = { version = "3.1.0" } tokio = { version = "1.41.1", features = [ "rt-multi-thread" ] } [lints.clippy] all = { level = "warn", priority = -1 } pedantic = { level = "warn", priority = -1 } nursery = { level = "warn", priority = -1 } cargo = { level = "warn", priority = -1 } multiple_crate_versions = "allow"